PipelineWriter Class
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.
PipelineWriter allows the caller to provide an asynchronous stream of objects as input to a Pipeline.
public ref class PipelineWriter abstract
public abstract class PipelineWriter
type PipelineWriter = class
Public MustInherit Class PipelineWriter
- Inheritance
-
PipelineWriter
Constructors
PipelineWriter() |
Properties
Count |
Returns the number of objects currently in the underlying stream. |
IsOpen |
Check if the stream is open for further writes. |
MaxCapacity |
Get the capacity of the stream. |
WaitHandle |
Signaled when buffer space is available in the underlying stream. |
Methods
Close() |
Close the stream. |
Flush() |
Flush the buffered data from the stream. Closed streams may be flushed, but disposed streams may not. |
Write(Object) |
Write a single object into the underlying stream. |
Write(Object, Boolean) |
Write multiple objects to the underlying stream. |