ServerChannelSinkStack.Push(IServerChannelSink, Object) Método
Definição
Envia o coletor especificado e as informações associadas a ele por push para a pilha de coletores.Pushes the specified sink and information associated with it onto the sink stack.
public:
virtual void Push(System::Runtime::Remoting::Channels::IServerChannelSink ^ sink, System::Object ^ state);
public void Push (System.Runtime.Remoting.Channels.IServerChannelSink sink, object state);
[System.Security.SecurityCritical]
public void Push (System.Runtime.Remoting.Channels.IServerChannelSink sink, object state);
abstract member Push : System.Runtime.Remoting.Channels.IServerChannelSink * obj -> unit
override this.Push : System.Runtime.Remoting.Channels.IServerChannelSink * obj -> unit
[<System.Security.SecurityCritical>]
abstract member Push : System.Runtime.Remoting.Channels.IServerChannelSink * obj -> unit
override this.Push : System.Runtime.Remoting.Channels.IServerChannelSink * obj -> unit
Public Sub Push (sink As IServerChannelSink, state As Object)
Parâmetros
- sink
- IServerChannelSink
O coletor a ser enviado por push para a pilha de coletores.The sink to push onto the sink stack.
- state
- Object
Informações geradas no lado de solicitação que são necessárias no lado de resposta.Information generated on the request side that is needed on the response side.
Implementações
- Atributos
Comentários
As informações geradas no lado da solicitação e especificadas no state parâmetro são retornadas no state parâmetro do AsyncProcessResponse método no coletor correspondente.The information generated on the request side and specified in the state parameter is returned in the state parameter of the AsyncProcessResponse method on the corresponding sink.