public CreateUserRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName, string password) { this.AuthenticationHeader = AuthenticationHeader; this.countryId = countryId; this.userName = userName; this.password = password; }
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); }
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); }
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); }
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); }
public GenerateSaltRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader) { this.AuthenticationHeader = AuthenticationHeader; }
public DecryptPasswordRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string encryptedPassword, string salt) { this.AuthenticationHeader = AuthenticationHeader; this.encryptedPassword = encryptedPassword; this.salt = salt; }
public EncryptPasswordRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string password, string salt) { this.AuthenticationHeader = AuthenticationHeader; this.password = password; this.salt = salt; }
public RetrieveUserRequest(VCover.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName) { this.AuthenticationHeader = AuthenticationHeader; this.countryId = countryId; this.userName = userName; }