예제 #1
0
 internal void Set(CredentialsInternal?other)
 {
     if (other != null)
     {
         Id    = other.Value.Id;
         Token = other.Value.Token;
         Type  = other.Value.Type;
         SystemAuthCredentialsOptions = other.Value.SystemAuthCredentialsOptions;
         ExternalType = other.Value.ExternalType;
     }
 }
예제 #2
0
 public void Set(Credentials other)
 {
     if (other != null)
     {
         m_ApiVersion = AuthInterface.CredentialsApiLatest;
         Id           = other.Id;
         Token        = other.Token;
         Type         = other.Type;
         SystemAuthCredentialsOptions = other.SystemAuthCredentialsOptions;
         ExternalType = other.ExternalType;
     }
 }