GAC.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Security / Policy / GAC.cs / 1 / GAC.cs

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

// 
// GacInstalled is an IIdentity representing whether or not an assembly is installed in the Gac 
//
 
namespace System.Security.Policy {
    using System.Runtime.Remoting;
    using System;
    using System.Security; 
    using System.Security.Util;
    using System.IO; 
    using System.Collections; 
    using GacIdentityPermission = System.Security.Permissions.GacIdentityPermission;
    using System.Runtime.CompilerServices; 

    [Serializable]
    [System.Runtime.InteropServices.ComVisible(true)]
    sealed public class GacInstalled : IIdentityPermissionFactory, IBuiltInEvidence 
    {
        public GacInstalled() 
        { 
        }
 
        public IPermission CreateIdentityPermission( Evidence evidence )
        {
            return new GacIdentityPermission();
        } 

        public override bool Equals(Object o) 
        { 
            if (o is GacInstalled)
                return true; 
            return false;
        }

        public override int GetHashCode() 
        {
            return 0; 
        } 

        public Object Copy() 
        {
            return new GacInstalled();
        }
 
        internal SecurityElement ToXml()
        { 
            SecurityElement elem = new SecurityElement( this.GetType().FullName ); 
            elem.AddAttribute( "version", "1" );
            return elem; 
        }

        /// 
        int IBuiltInEvidence.OutputToBuffer( char[] buffer, int position, bool verbose ) 
        {
            buffer[position] = BuiltInEvidenceHelper.idGac; 
            return position + 1; 
        }
 
        /// 
        int IBuiltInEvidence.GetRequiredSize(bool verbose)
        {
            return 1; 
        }
 
        ///  
        int IBuiltInEvidence.InitFromBuffer( char[] buffer, int position )
        { 
            return position;
        }

        public override String ToString() 
        {
            return ToXml().ToString(); 
        } 
    }
} 

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