DicomObjects.NET10 Documentation
DicomObjects Namespace / DicomGlobal Class / TcpNoDelay Property



In This Topic
    TcpNoDelay Property
    In This Topic
    Controls whether TCP_NODELAY is enabled on DicomObjects network sockets.
    Syntax
    'Declaration
     
    
    Public Shared Property TcpNoDelay As Boolean
    'Usage
     
    
    Dim value As Boolean
     
    DicomGlobal.TcpNoDelay = value
     
    value = DicomGlobal.TcpNoDelay
    public static bool TcpNoDelay {get; set;}
    public:
    static property bool TcpNoDelay {
       bool get();
       void set (    bool value);
    }
    Remarks

    When set to true, DicomObjects disables Nagle's algorithm on TCP sockets, causing small packets to be sent immediately rather than being buffered briefly and combined.

    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