PipeReader.OnWriterCompleted(Action<Exception,Object>, Object) 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.
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
- 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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.