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

Definition

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:
 virtual void OnWriterCompleted(Action<Exception ^, System::Object ^> ^ callback, System::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);
[<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 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