public Endpoint()

in RESTProxy/Models/Endpoint.cs [76:97]


        public Endpoint(
            string tenantId,
            string tenantFriendlyName,
            EndpointType endpointType,
            string clientId,
            string clientSecretEncrypted,
            string clientSecretCertificateThumbprint,
            string readOnlySecurityGroupAlias,
            string readWriteSecurityGroupAlias)
        {
            this.TenantId = tenantId;
            this.TenantFriendlyName = tenantFriendlyName;
            this.Type = endpointType;
            this.ClientId = clientId;
            this.ClientSecretEncrypted = clientSecretEncrypted;
            this.ReadOnlySecurityGroupAlias = readOnlySecurityGroupAlias;
            this.ReadWriteSecurityGroupAlias = readWriteSecurityGroupAlias;
            this.ClientSecretCertificateThumbrint = clientSecretCertificateThumbprint;
            this.AccessToken = string.Empty;
            this.ValidThru = DateTime.Now;
            this.AsyncLock = new AsyncLock();
        }