共用方式為


<allowAccounts> 的 <add>

指定裝載 WCF 服務並獲得共用服務連線存取權之處理序的使用者帳戶。

<configuration>
  <system.serviceModel.activation>
    <net.pipe>
      <allowAccounts>
        <add>

Syntax

<allowAccounts>
  <add securityIdentifier="String" />
</allowAccounts>

屬性和項目

下列章節說明屬性、子元素和父元素。

屬性

屬性 描述
securityIdentifier 字串,指定用於識別使用者帳戶的唯一識別碼。 預設值為 LocalSystem、Administrators、NS、LS 和 IIS_USRS。

子元素

無。

父項目

元素 描述
<allowAccounts> 組態項目的集合,其中包含 securityIdentifier 屬性,此屬性可為裝載 WCF 服務且已授權可連線共用服務的處理序指定使用者帳戶。

範例

下列組態範例會新增使用者帳戶的五個預設識別項到此集合中。

<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>

另請參閱