IDevicePacketStream.Buffering Property
Enables or disables Nagle's buffering algorithm on the stream. By default it is enabled.
Namespace: Microsoft.SmartDevice.DeviceAgentTransport
Assembly: Microsoft.SmartDevice.DeviceAgentTransport (in Microsoft.SmartDevice.DeviceAgentTransport.dll)
Syntax
'Declaration
Property Buffering As Boolean
'Usage
Dim instance As IDevicePacketStream
Dim value As Boolean
value = instance.Buffering
instance.Buffering = value
bool Buffering { get; set; }
property bool Buffering {
bool get ();
void set (bool value);
}
function get Buffering () : boolean
function set Buffering (value : boolean)
Property Value
Type: System.Boolean
Returns true for enabled, false for disabled.
Remarks
Use true for enabled, false for disabled.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.