Enables TCP_NODELAY (Nagle's algorithm) on the underlying socket.
            
            
            
            
            
            
            
            
            'Declaration
 
Public Property TcpNoDelay As Boolean
             
        
            
            'Usage
 
Dim instance As Connection
Dim value As Boolean
 
instance.TcpNoDelay = value
 
value = instance.TcpNoDelay
             
        
            
            public bool TcpNoDelay {get; set;}
             
        
            
            public: __property bool get_TcpNoDelay();
public: __property void set_TcpNoDelay( 
   bool value
);
             
        
            
            public:
property bool TcpNoDelay {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
If the connection has not yet been established, the value will be
            stored and set after the socket has been created.