| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Socket Options")> <DescriptionAttribute("Gets and Sets the size of the system send buffer.")> <DefaultValueAttribute()> Public Property SendBufferSize As Integer | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Tcp Dim value As Integer instance.SendBufferSize = value value = instance.SendBufferSize | |
| C# | |
|---|---|
[CategoryAttribute("Socket Options")] [DescriptionAttribute("Gets and Sets the size of the system send buffer.")] [DefaultValueAttribute()] public int SendBufferSize {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
[CategoryAttribute("Socket Options")] [DescriptionAttribute("Gets and Sets the size of the system send buffer.")] [DefaultValueAttribute()] public: __property int get_SendBufferSize(); public: __property void set_SendBufferSize( int value ); | |
| C++/CLI | |
|---|---|
[CategoryAttribute("Socket Options")] [DescriptionAttribute("Gets and Sets the size of the system send buffer.")] [DefaultValueAttribute()] public: property int SendBufferSize { int get(); void set ( int value); } | |
Property Value
The size of the system send buffer in bytes. The default is 8192.This property sets the size of the system send buffer. The default is 8192 which means that if the total data's bytes you are sending exceeds this you will need to call Tcp.Send multiple times.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code