PowerTCP Mail for .NET
SendBufferSize Property
See Also  Send comments on this topic.
Dart.PowerTCP.Mail Namespace > Tcp Class : SendBufferSize Property




Gets and sets the size of the system send buffer.

Syntax

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.

Remarks

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.

Requirements

Target Platforms: Microsoft .NET Framework 2.0

See Also

Documentation Version 3.2
© 2010 Dart Communications. All Rights Reserved.