Gets or sets a value that indicates whether out-of-band (urgent) data is read as normal in-line data.
Syntax
Visual Basic (Declaration) | |
---|
Public Property OutOfBandInline As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As TcpSocketOption
Dim value As Boolean
instance.OutOfBandInline = value
value = instance.OutOfBandInline |
C# | |
---|
public bool OutOfBandInline {get; set;} |
Managed Extensions for C++ | |
---|
public: __property bool get_OutOfBandInline();
public: __property void set_OutOfBandInline(
bool value
); |
C++/CLI | |
---|
public:
property bool OutOfBandInline {
bool get();
void set ( bool value);
} |
Property Value
True if urgent data is to be read as normal in-line data, otherwise false. The default value is false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also