StreamProviderDirection Enum
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.
Identifies whether a stream provider is read-only, read-write, or write-only.
public enum StreamProviderDirection
type StreamProviderDirection =
Public Enum StreamProviderDirection
- Inheritance
-
StreamProviderDirection
Fields
Name | Value | Description |
---|---|---|
None | 0 | None. |
ReadOnly | 1 | This provider can receive messages but cannot send them. |
WriteOnly | 2 | This provider can send messages but cannot receive them. |
ReadWrite | 3 | This provider can both send and receive messages. |