Dart.PowerTCP.SslSockets Namespace > Tcp Class : SendBufferSize Property |
Gets and sets the size of the system send buffer.
[Visual Basic]
<DefaultValueAttribute()>
<CategoryAttribute("Socket Options")>
<DescriptionAttribute("Gets and Sets the size of the system send buffer.")>
Public Property SendBufferSize As Integer
[C#]
[DefaultValueAttribute()]
[CategoryAttribute("Socket Options")]
[DescriptionAttribute("Gets and Sets the size of the system send buffer.")]
public int SendBufferSize {get; set;}
[C++]
[DefaultValueAttribute()]
[CategoryAttribute("Socket Options")]
[DescriptionAttribute("Gets and Sets the size of the system send buffer.")]
public: __property int get_SendBufferSize();
public: __property void set_SendBufferSize(
int value
);
[C++/CLI]
[DefaultValueAttribute()]
[CategoryAttribute("Socket Options")]
[DescriptionAttribute("Gets and Sets the size of the system send buffer.")]
public:
property int SendBufferSize {
int get();
void set (int 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 Send multiple times.
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Send comments on this topic.
Documentation version 1.1.2.0.
© 2008 Dart Communications. All rights reserved.