SecureConversationServiceCredential.SecurityContextClaimTypes Свойство

Определение

Возвращает коллекцию утверждений Type для сериализации файлов cookie.

public:
 property System::Collections::ObjectModel::Collection<Type ^> ^ SecurityContextClaimTypes { System::Collections::ObjectModel::Collection<Type ^> ^ get(); };
public System.Collections.ObjectModel.Collection<Type> SecurityContextClaimTypes { get; }
member this.SecurityContextClaimTypes : System.Collections.ObjectModel.Collection<Type>
Public ReadOnly Property SecurityContextClaimTypes As Collection(Of Type)

Значение свойства

Collection<Type>

Коллекция утверждений Type для сериализации куки-файлов.

Примеры

В следующем примере кода показано, как возвратить это свойство.

static void Configure(ServiceHost serviceHost)
{
    /*
     * There are certain settings that cannot be configured via app.config.
     * The security state encoder is one of them.
     * Plug in a SecurityStateEncoder that uses the configured certificate
     * to protect the security context token state.
     *
     * Note: You don't need a security state encoder for cookie mode.  This was added to the
     * sample to illustrate how you would plug in a custom security state encoder should
     * your scenario require one.
     * */
    serviceHost.Credentials.SecureConversationAuthentication.SecurityStateEncoder =
            new CertificateSecurityStateEncoder(serviceHost.Credentials.ServiceCertificate.Certificate);
   Collection<Type> myClaimTypes = new Collection<Type>();
    myClaimTypes = serviceHost.Credentials.SecureConversationAuthentication.SecurityContextClaimTypes;
}

Комментарии

Для сериализации утверждений в файлы cookie SCT Windows Communication Foundation (WCF) используется DataContractSerializer в качестве значения по умолчанию. Так как ресурс утверждения является расширяемым, WCF позволяет предоставить список известных типов ресурсов. Это упрощает работу DataContractSerializer при десериализации утверждений в куки-файлы и позволяет возвращать исходные строго типизированные объекты.

Применяется к