 | DataUpdateServiceDeletePendingAddress Method |
Deletes a pending address change record.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic ResultAddress DeletePendingAddress(
int addressNo,
string authKey
)
Public Function DeletePendingAddress (
addressNo As Integer,
authKey As String
) As ResultAddress
public:
ResultAddress^ DeletePendingAddress(
int addressNo,
String^ authKey
)
public function DeletePendingAddress(
addressNo : int,
authKey : String
) : ResultAddress
function DeletePendingAddress(addressNo, authKey);
Parameters
- addressNo
- Type: SystemInt32
An address number. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
ResultAddress
A
ResultAddress object.
Exceptions
Remarks
This method deletes the pending address change record identified by
addressNo. A pending address
change record is created by one of the insert or update routines in
DataUpdateService.
Success or failure is obtained by checking ResultAddress.Status.
Additional error information is contained in ResultAddress.ErrorType.
The authorization key provided must be linked to an administrator role.
See Also