HMACException Constructor
This exception is thrown when the HMAC value included in the request does not match the value calculated on the server. Usually this happens when some value, such as the subscriber ID or signing key, was incorrect when creating the original HMAC value.

Namespace: HotDocs.Sdk.Server.Contracts
Assembly: HotDocs.Sdk.Server.Contracts (in HotDocs.Sdk.Server.Contracts.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public HMACException(
	string hmac,
	string calculatedHMAC,
	params Object[] paramList
)

Parameters

hmac
Type: OnlineSystem String
This is a hash key used to authenticate the request made to HotDocs Core Services.
calculatedHMAC
Type: OnlineSystem String
The HMAC key calculated by the service.
paramList
Type:  OnlineSystem Object 
An array of parameters that were included in the request.
See Also