System.ServiceModel.Security.UserNamePasswordServiceCredential.UserNamePasswordServiceCredential C# (CSharp) Method

UserNamePasswordServiceCredential() private method

private UserNamePasswordServiceCredential ( UserNamePasswordServiceCredential other ) : System.Globalization
other UserNamePasswordServiceCredential
return System.Globalization
        internal UserNamePasswordServiceCredential(UserNamePasswordServiceCredential other)
        {
            this.includeWindowsGroups = other.includeWindowsGroups;
            this.membershipProvider = other.membershipProvider;
            this.validationMode = other.validationMode;
            this.validator = other.validator;
            this.cacheLogonTokens = other.cacheLogonTokens;
            this.maxCachedLogonTokens = other.maxCachedLogonTokens;
            this.cachedLogonTokenLifetime = other.cachedLogonTokenLifetime;
            this.isReadOnly = other.isReadOnly;
        }

Same methods

UserNamePasswordServiceCredential::UserNamePasswordServiceCredential ( ) : System.Globalization