internal UserNamePasswordServiceCredential(UserNamePasswordServiceCredential other)
 {
     this.includeWindowsGroups = true;
     this.maxCachedLogonTokens = 0x80;
     this.cachedLogonTokenLifetime = DefaultCachedLogonTokenLifetime;
     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;
 }
Exemplo n.º 2
0
 internal UserNamePasswordServiceCredential(UserNamePasswordServiceCredential other)
 {
     this.includeWindowsGroups     = true;
     this.maxCachedLogonTokens     = 0x80;
     this.cachedLogonTokenLifetime = DefaultCachedLogonTokenLifetime;
     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;
 }