WrappedKeySecurityTokenParameters.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Security / Tokens / WrappedKeySecurityTokenParameters.cs / 1 / WrappedKeySecurityTokenParameters.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------

 
namespace System.ServiceModel.Security.Tokens
{ 
    using System.IdentityModel.Selectors; 
    using System.ServiceModel;
    using System.IdentityModel.Tokens; 
    using System.ServiceModel.Security;

    class WrappedKeySecurityTokenParameters : SecurityTokenParameters
    { 
        protected WrappedKeySecurityTokenParameters(WrappedKeySecurityTokenParameters other)
            : base(other) 
        { 
            // empty
        } 

        public WrappedKeySecurityTokenParameters()
            : base()
        { 
            this.InclusionMode = SecurityTokenInclusionMode.Once;
        } 
 
        internal protected override bool HasAsymmetricKey { get { return false; } }
        internal protected override bool SupportsClientAuthentication { get { return false; } } 
        internal protected override bool SupportsServerAuthentication { get { return true; } }
        internal protected override bool SupportsClientWindowsIdentity { get { return false; } }

        protected override SecurityTokenParameters CloneCore() 
        {
            return new WrappedKeySecurityTokenParameters(this); 
        } 

        internal protected override SecurityKeyIdentifierClause CreateKeyIdentifierClause(SecurityToken token, SecurityTokenReferenceStyle referenceStyle) 
        {
            return base.CreateKeyIdentifierClause(token, referenceStyle);
        }
 
        protected internal override void InitializeSecurityTokenRequirement(SecurityTokenRequirement requirement)
        { 
            throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotImplementedException()); 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK