CodeConnectAccess
Specifies the network resource access that is granted to code.
                namespace System.Security.Policy
{
    public class CodeConnectAccess
    {
        public static readonly string AnyScheme;
        public static readonly int DefaultPort;
        public static readonly int OriginPort;
        public static readonly string OriginScheme;
        public int Port => 0;
        public string Scheme => null;
        public CodeConnectAccess(string allowScheme, int allowPort)
        {
        }
        public static CodeConnectAccess CreateAnySchemeAccess(int allowPort)
        {
            return null;
        }
        public static CodeConnectAccess CreateOriginSchemeAccess(int allowPort)
        {
            return null;
        }
        public override bool Equals(object o)
        {
            return base.Equals(o);
        }
        public override int GetHashCode()
        {
            return base.GetHashCode();
        }
    }
}