ClientChannelSinkStack.AsyncProcessResponse(ITransportHeaders, Stream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Requests asynchronous processing of a method call on the sinks that are in the current sink stack.
public:
virtual void AsyncProcessResponse(System::Runtime::Remoting::Channels::ITransportHeaders ^ headers, System::IO::Stream ^ stream);
public void AsyncProcessResponse (System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream);
[System.Security.SecurityCritical]
public void AsyncProcessResponse (System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream);
abstract member AsyncProcessResponse : System.Runtime.Remoting.Channels.ITransportHeaders * System.IO.Stream -> unit
override this.AsyncProcessResponse : System.Runtime.Remoting.Channels.ITransportHeaders * System.IO.Stream -> unit
[<System.Security.SecurityCritical>]
abstract member AsyncProcessResponse : System.Runtime.Remoting.Channels.ITransportHeaders * System.IO.Stream -> unit
override this.AsyncProcessResponse : System.Runtime.Remoting.Channels.ITransportHeaders * System.IO.Stream -> unit
Public Sub AsyncProcessResponse (headers As ITransportHeaders, stream As Stream)
Parameters
- headers
- ITransportHeaders
The headers that are retrieved from the server response stream.
- stream
- Stream
The stream that is returning from the transport sink.
Implements
- Attributes
Exceptions
The current sink stack is empty.
Remarks
The AsyncProcessResponse method initializes asynchronous processing on the top sink in the current sink stack. For additional information, see IClientChannelSink.AsyncProcessResponse.