ClientBase<TChannel>.ChannelBase<T> Methods
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
The ClientBase<TChannel>.ChannelBase<T> generic type exposes the following members.
| Name | Description | |
|---|---|---|
|
BeginInvoke | Starts an asynchronous call of a specified method by name. |
|
EndInvoke | Completes an asynchronous invocation by name of a specified method. |
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
IChannel.GetProperty<TProperty> | Returns a typed object requested, if present, from the appropriate layer in the channel stack. |
|
IClientChannel.BeginDisplayInitializationUI | An asynchronous call to begin using a user interface to obtain credential information. |
|
IClientChannel.DisplayInitializationUI | A call to a user interface to obtain credential information. |
|
IClientChannel.EndDisplayInitializationUI | Called when the call to BeginDisplayInitializationUI has finished. |
|
ICommunicationObject.Abort | Causes a communication object to transition immediately from its current state into the closed state. |
|
ICommunicationObject.BeginClose(AsyncCallback, Object) | Begins an asynchronous operation to close a communication object. |
|
ICommunicationObject.BeginClose(TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to close a communication object with a specified time-out. |
|
ICommunicationObject.BeginOpen(AsyncCallback, Object) | Begins an asynchronous operation to open a communication object. |
|
ICommunicationObject.BeginOpen(TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to open a communication object within a specified interval of time. |
|
ICommunicationObject.Close() | Causes a communication object to transition from its current state into the closed state. |
|
ICommunicationObject.Close(TimeSpan) | Causes a communication object to transition from its current state into the closed state. |
|
ICommunicationObject.EndClose | Completes an asynchronous operation to close a communication object. |
|
ICommunicationObject.EndOpen | Completes an asynchronous operation to open a communication object. |
|
ICommunicationObject.Open() | Causes a communication object to transition from the created state into the opened state. |
|
ICommunicationObject.Open(TimeSpan) | Causes a communication object to transition from the created state into the opened state within a specified interval of time. |
|
IDisposable.Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources associated with the channel. |
|
IOutputChannel.BeginSend(Message, AsyncCallback, Object) | Begins an asynchronous operation to transmit a message to the destination of the output channel. |
|
IOutputChannel.BeginSend(Message, TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to transmit a message to the destination of the output channel within a specified interval of time. |
|
IOutputChannel.EndSend | Completes an asynchronous operation to transmit a message to the destination of the output channel. |
|
IOutputChannel.Send(Message) | Transmits a message to the destination of the output channel. |
|
IOutputChannel.Send(Message, TimeSpan) | Sends a message on the current output channel within a specified interval of time. |
|
IRequestChannel.BeginRequest(Message, AsyncCallback, Object) | Begins an asynchronous operation to transmit a request message to the reply-side of a request-reply message exchange. |
|
IRequestChannel.BeginRequest(Message, TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to transmit a request message to the reply-side of a request-reply message exchange within a specified interval of time. |
|
IRequestChannel.EndRequest | Completes an asynchronous operation to return a message-based response to a transmitted request. |
|
IRequestChannel.Request(Message) | Sends a message-based request and returns the correlated message-based response. |
|
IRequestChannel.Request(Message, TimeSpan) | Sends a message-based request and returns the correlated message-based response within a specified interval of time. |
Show: