<net.pipe>
指定命名管道激活服务的配置设置,命名管道激活服务将管理命名管道连接的生存期,并处理通过命名管道到达的激活请求。
configuration
<system.serviceModel.activation>
<net.pipe>
语法
<configuration>
<system.serviceModel.activation>
<net.pipe maxPendingAccepts="Integer"
maxPendingConnections="Integer"
receiveTimeout="TimeSpan">
<allowAccounts>
<!-- LocalSystem account -->
<add securityIdentifier="S-1-5-18" />
<!-- LocalService account -->
<add securityIdentifier="S-1-5-19" />
<!-- Administrators account -->
<add securityIdentifier="S-1-5-20" />
<!-- Network Service account -->
<add securityIdentifier="S-1-5-32-544" />
<!-- IIS_IUSRS account (Vista only) -->
<add securityIdentifier="S-1-5-32-568" />
</allowAccounts>
</net.pipe>
</system.serviceModel.activation>
</configuration>
类型
Type
特性和元素
下列各节描述了特性、子元素和父元素。
特性
属性 | 说明 |
---|---|
maxPendingAccepts |
一个整数,指定共享服务侦听终结点上的最大未完成并发接受线程数。 默认值为 2。 |
maxPendingConnections |
一个整数,指定可等待调度的最大连接数。 默认值为 100。 |
receiveTimeout |
TimeSpan,它将为读取组帧数据并执行来自基础连接的连接调度指定超时值。 默认值为“00:00:10” |
子元素
元素 | 说明 |
---|---|
<allowAccounts> | 配置元素的集合,其中包含 securityIdentifier 属性,以便为承载 WCF 服务并被授予了对该共享服务的连接访问权限的进程指定用户帐户。 |
父元素
元素 | 说明 |
---|---|
<system.serviceModel.activation> | 包含侦听器进程 SMSvcHost.exe 的配置设置。 |