Beispiel #1
0
 public CreateUserRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName, string password)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.countryId            = countryId;
     this.userName             = userName;
     this.password             = password;
 }
Beispiel #2
0
 public string GenerateSalt(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader)
 {
     VCover.AuthenticationRef.GenerateSaltRequest inValue = new VCover.AuthenticationRef.GenerateSaltRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     VCover.AuthenticationRef.GenerateSaltResponse retVal = ((VCover.AuthenticationRef.AuthenticationSoap)(this)).GenerateSalt(inValue);
     return(retVal.GenerateSaltResult);
 }
Beispiel #3
0
 public string DecryptPassword(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string encryptedPassword, string salt)
 {
     VCover.AuthenticationRef.DecryptPasswordRequest inValue = new VCover.AuthenticationRef.DecryptPasswordRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     inValue.encryptedPassword    = encryptedPassword;
     inValue.salt = salt;
     VCover.AuthenticationRef.DecryptPasswordResponse retVal = ((VCover.AuthenticationRef.AuthenticationSoap)(this)).DecryptPassword(inValue);
     return(retVal.DecryptPasswordResult);
 }
Beispiel #4
0
 public int RetrieveUser(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName)
 {
     VCover.AuthenticationRef.RetrieveUserRequest inValue = new VCover.AuthenticationRef.RetrieveUserRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     inValue.countryId            = countryId;
     inValue.userName             = userName;
     VCover.AuthenticationRef.RetrieveUserResponse retVal = ((VCover.AuthenticationRef.AuthenticationSoap)(this)).RetrieveUser(inValue);
     return(retVal.RetrieveUserResult);
 }
Beispiel #5
0
 public int CreateUser(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName, string password)
 {
     VCover.AuthenticationRef.CreateUserRequest inValue = new VCover.AuthenticationRef.CreateUserRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     inValue.countryId            = countryId;
     inValue.userName             = userName;
     inValue.password             = password;
     VCover.AuthenticationRef.CreateUserResponse retVal = ((VCover.AuthenticationRef.AuthenticationSoap)(this)).CreateUser(inValue);
     return(retVal.CreateUserResult);
 }
Beispiel #6
0
 public GenerateSaltRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader)
 {
     this.AuthenticationHeader = AuthenticationHeader;
 }
Beispiel #7
0
 public DecryptPasswordRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string encryptedPassword, string salt)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.encryptedPassword    = encryptedPassword;
     this.salt = salt;
 }
Beispiel #8
0
 public EncryptPasswordRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string password, string salt)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.password             = password;
     this.salt = salt;
 }
Beispiel #9
0
 public RetrieveUserRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.countryId            = countryId;
     this.userName             = userName;
 }