PipeReader.OnWriterCompleted(Action<Exception,Object>, Object) Method

Definition

Caution

OnWriterCompleted may not be invoked on all implementations of PipeReader. This will be removed in a future release.

Caution

OnWriterCompleted has been deprecated and may not be invoked on all implementations of PipeReader.

Registers a callback that executes when the PipeWriter side of the pipe is completed.

public:
 abstract void OnWriterCompleted(Action<Exception ^, System::Object ^> ^ callback, System::Object ^ state);
public:
 virtual void OnWriterCompleted(Action<Exception ^, System::Object ^> ^ callback, System::Object ^ state);
public abstract void OnWriterCompleted (Action<Exception,object> callback, object state);
[System.Obsolete("OnWriterCompleted may not be invoked on all implementations of PipeReader. This will be removed in a future release.")]
public virtual void OnWriterCompleted (Action<Exception,object> callback, object state);
[System.Obsolete("OnWriterCompleted may not be invoked on all implementations of PipeReader. This will be removed in a future release.")]
public virtual void OnWriterCompleted (Action<Exception?,object?> callback, object? state);
[System.Obsolete("OnWriterCompleted has been deprecated and may not be invoked on all implementations of PipeReader.")]
public virtual void OnWriterCompleted (Action<Exception?,object?> callback, object? state);
abstract member OnWriterCompleted : Action<Exception, obj> * obj -> unit
[<System.Obsolete("OnWriterCompleted may not be invoked on all implementations of PipeReader. This will be removed in a future release.")>]
abstract member OnWriterCompleted : Action<Exception, obj> * obj -> unit
override this.OnWriterCompleted : Action<Exception, obj> * obj -> unit
[<System.Obsolete("OnWriterCompleted has been deprecated and may not be invoked on all implementations of PipeReader.")>]
abstract member OnWriterCompleted : Action<Exception, obj> * obj -> unit
override this.OnWriterCompleted : Action<Exception, obj> * obj -> unit
Public MustOverride Sub OnWriterCompleted (callback As Action(Of Exception, Object), state As Object)
Public Overridable Sub OnWriterCompleted (callback As Action(Of Exception, Object), state As Object)

Parameters

callback
Action<Exception,Object>

The callback to register.

state
Object

The state object to pass to callback when it's invoked.

Attributes

Remarks

Important

OnWriterCompleted may not be invoked on all implementations of PipeWriter. This method will be removed in a future release.

Applies to