IIS7UserPrincipal.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Hosting / IIS7UserPrincipal.cs / 1 / IIS7UserPrincipal.cs

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

namespace System.Web.Hosting { 
    using System; 
    using System.Text;
    using System.Collections.Generic; 
    using System.Security.Principal;

    internal sealed class IIS7UserPrincipal : IPrincipal {
 
        // user object fields
        private IIdentity _identity; 
        private IIS7WorkerRequest _wr; 

        internal IIS7UserPrincipal(IIS7WorkerRequest wr, IIdentity identity) { 
            _wr = wr;
            _identity = identity;
        }
 
        //
        //  IPrincipal implementations 
        // 

        public IIdentity Identity { 
            get { return _identity; }
        }

        public bool IsInRole(String role) { 
            return _wr.IsUserInRole(role);
        } 
    } 
}


                        

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