StreamUpgradeInitiator Class

Definition

To implement a custom upgrade initiator, inherit from this abstract base class.

public ref class StreamUpgradeInitiator abstract
public abstract class StreamUpgradeInitiator
type StreamUpgradeInitiator = class
Public MustInherit Class StreamUpgradeInitiator
Inheritance
StreamUpgradeInitiator
Derived

Remarks

An example of a stream upgrade is to build a compression stream directly on top of the transport stream. This class is used with StreamUpgradeAcceptor and StreamUpgradeProvider to implement a custom stream upgrade.

For a detailed description of the upgrade process, see StreamUpgradeProvider.

Constructors

StreamUpgradeInitiator()

Initializes a new instance of the StreamUpgradeInitiator class.

Methods

BeginInitiateUpgrade(Stream, AsyncCallback, Object)

This abstract method can be implemented to do asynchronous processing that initiates an upgrade.

EndInitiateUpgrade(IAsyncResult)

This method is the asynchronous callback method that is called after BeginInitiateUpgrade(Stream, AsyncCallback, Object) has completed.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetNextUpgrade()

Returns the content type of the next upgrade to be performed.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
InitiateUpgrade(Stream)

Initiates the upgrade of the stream by requesting the other end of its connection to upgrade the channel transport layer.

InitiateUpgradeAsync(Stream)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also