mscorlib(4.0.0.0) API with additions
IServerChannelSinkStack.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
9  {
14  [SecurityCritical]
15  void Push(IServerChannelSink sink, object state);
16 
21  [SecurityCritical]
22  object Pop(IServerChannelSink sink);
23 
27  [SecurityCritical]
28  void Store(IServerChannelSink sink, object state);
29 
33  [SecurityCritical]
34  void StoreAndDispatch(IServerChannelSink sink, object state);
35 
38  [SecurityCritical]
40  }
41 }
Definition: __Canon.cs:3
void Push(IServerChannelSink sink, object state)
Pushes the specified sink and information associated with it onto the sink stack.
Provides the stack functionality for a stack of server channel sinks.
Provides methods used for security and transport sinks.
void ServerCallback(IAsyncResult ar)
Presents a callback delegate to handle a callback after a message has been dispatched asynchronously.
Represents the status of an asynchronous operation.
Definition: IAsyncResult.cs:9
object Pop(IServerChannelSink sink)
Pops the information associated with all the sinks from the sink stack up to and including the specif...
Provides the stack functionality for a stack of server response channel sinks.
void StoreAndDispatch(IServerChannelSink sink, object state)
Stores a message sink and its associated state, and then dispatches a message asynchronously,...
void Store(IServerChannelSink sink, object state)
Stores a message sink and its associated state for later asynchronous processing.