Send Method
See Also 
SourceCode.Net Namespace > SocketConnection Class : Send Method



data
start
length

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Protected Overridable Sub Send( _
   ByVal data() As Byte, _
   ByVal start As Integer, _
   ByVal length As Integer _
) 
Visual Basic (Usage) Copy Code
Dim instance As SocketConnection
Dim data() As Byte
Dim start As Integer
Dim length As Integer
 
instance.Send(data, start, length)
C#  
protected virtual void Send( 
   byte[] data,
   int start,
   int length
)
C++/CLI  
protected:
virtual void Send( 
   array<byte>^ data,
   int start,
   int length
) 

Parameters

data
start
length

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also