共用方式為


<serviceCredentials>

指定要用於驗證 (Authenticate) 服務的認證,以及用戶端認證的驗證 (Validation) 相關設定。

<configuration>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <serviceCredentials>

Syntax

<serviceCredentials type="String">
  <clientCertificate>
  </clientCertificate>
  <issuedTokenAuthentication>
  </issuedTokenAuthentication>
  <peer>
  </peer>
  <secureConversationAuthentication>
  </secureConversationAuthentication>
  <serviceCertificate>
  </serviceCertificate>
  <userNameAuthentication>
  </userNameAuthentication>
  <windowsAuthentication>
  </windowsAuthentication>
</serviceCredentials>

屬性和項目

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

屬性

屬性 描述
type 字串,指定這個組態項目的型別。

子元素

元素 描述
<clientCertificate> 指定當用戶端憑證可在超出範圍使用時,要使用的憑證。 這個項目也會指定用戶端憑證驗證設定。 此項目的型別為 X509InitiatorCertificateServiceElement
<issuedTokenAuthentication> 指定這個服務的目前發行的權杖。 此項目的型別為 IssuedTokenServiceElement
<peer> 指定對等節點的目前認證。 此項目的型別為 PeerCredentialElement
<secureConversationAuthentication> 指定安全對話的目前認證。 此項目的型別為 SecureConversationServiceElement
<serviceCertificate> 指定服務用來識別本身的憑證。 此項目的型別為 X509RecipientCertificateServiceElement
<userNameAuthentication> 指定使用者名稱密碼驗證的設定。 此項目的型別為 UserNameServiceElement
<windowsAuthentication> 指定 Windows 認證驗證的設定。 此項目的型別為 WindowsServiceElement

父項目

元素 描述
<behavior> 指定行為項目。

另請參閱