Specifies a value indicating whether a delay occurs when send or receive buffers are not full.
<microsoft.web.services3> Element
  <messaging> Element
    <transports> Element
      <add> Element for <transports>
<noDelay enabled />
Attributes and Elements
Attributes
| Attribute | Description | 
|---|---|
enabled  | 
Required attribute. true to disable the use of the Nagle algorithm and use EXCLUSIVEADDRUSE to prevent port hijacking; otherwise false. The default is true.  | 
Child Elements
None.
Parent Elements
| Element | Description | 
|---|---|
Adds a SOAP transport to the system.  | 
Example
The following code example adds the soap.tcp transport to the system and disables the use of the Nagle algorithm and uses EXCLUSIVEADDRUSE to prevent port hijacking.
<configuration>
  <microsoft.web.services3>
    <messaging>
      <transports>
        <add scheme="soap.tcp" >
          <noDelay enabled="true" />
        </add>
      </transports>
    </messaging>
  </microsoft.web.services3>
</configuration>