SspiSecurityToken.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 / SspiSecurityToken.cs / 1 / SspiSecurityToken.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
namespace System.ServiceModel.Security.Tokens
{ 
    using System.IdentityModel.Claims;
    using System.ServiceModel; 
    using System.IdentityModel.Policy; 
    using System.IdentityModel.Tokens;
    using System.Collections.Generic; 
    using System.Collections.ObjectModel;
    using System.Security.Principal;
    using System.Net;
 
    public class SspiSecurityToken : SecurityToken
    { 
        string id; 
        TokenImpersonationLevel impersonationLevel;
        bool allowNtlm; 
        NetworkCredential networkCredential;
        bool extractGroupsForWindowsAccounts;
        bool allowUnauthenticatedCallers = SspiSecurityTokenProvider.DefaultAllowUnauthenticatedCallers;
        DateTime effectiveTime; 
        DateTime expirationTime;
 
        public SspiSecurityToken(TokenImpersonationLevel impersonationLevel, bool allowNtlm, NetworkCredential networkCredential) 
        {
            this.impersonationLevel = impersonationLevel; 
            this.allowNtlm = allowNtlm;
            this.networkCredential = SecurityUtils.GetNetworkCredentialsCopy(networkCredential);
            this.effectiveTime = DateTime.UtcNow;
            this.expirationTime = this.effectiveTime.AddHours(10); 
        }
 
        public SspiSecurityToken(NetworkCredential networkCredential, bool extractGroupsForWindowsAccounts, bool allowUnauthenticatedCallers) 
        {
            this.networkCredential = SecurityUtils.GetNetworkCredentialsCopy(networkCredential); 
            this.extractGroupsForWindowsAccounts = extractGroupsForWindowsAccounts;
            this.allowUnauthenticatedCallers = allowUnauthenticatedCallers;
            this.effectiveTime = DateTime.UtcNow;
            this.expirationTime = this.effectiveTime.AddHours(10); 
        }
 
        public override string Id 
        {
            get 
            {
                if (this.id == null)
                    this.id = SecurityUniqueId.Create().Value;
                return this.id; 
            }
        } 
 
        public override DateTime ValidFrom
        { 
            get { return this.effectiveTime; }
        }

        public override DateTime ValidTo 
        {
            get { return this.expirationTime; } 
        } 

        public bool AllowUnauthenticatedCallers 
        {
            get
            {
                return this.allowUnauthenticatedCallers; 
            }
        } 
 
        public TokenImpersonationLevel ImpersonationLevel
        { 
            get
            {
                return this.impersonationLevel;
            } 
        }
 
        public bool AllowNtlm 
        {
            get 
            {
                return this.allowNtlm;
            }
        } 

        public NetworkCredential NetworkCredential 
        { 
            get
            { 
                return this.networkCredential;
            }
        }
 
        public bool ExtractGroupsForWindowsAccounts
        { 
            get 
            {
                return this.extractGroupsForWindowsAccounts; 
            }
        }

        public override ReadOnlyCollection SecurityKeys 
        {
            get 
            { 
                return EmptyReadOnlyCollection.Instance;
            } 
        }
    }
}

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