Gets or sets a value that specifies the size of the system send buffer.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property SendBufferSize As Integer |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As SocketOption
Dim value As Integer
instance.SendBufferSize = value
value = instance.SendBufferSize |
| C# | |
|---|
public int SendBufferSize {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property int get_SendBufferSize();
public: __property void set_SendBufferSize(
int value
); |
| C++/CLI | |
|---|
public:
property int SendBufferSize {
int get();
void set ( int value);
} |
Property Value
An integer with a default value of 8192.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also