NuGardt SoftwareProwlService VerifyBegin Method NuGardt
Verify an API key is valid. For the sake of adding a notification do not call verify first; it costs you an API call. You should only use verify to confirm an API key is valid in situations like a user entering an API key into your program. If it's not valid while posting the notification, you will get the appropriate error.

Namespace: NuGardt.Prowl.API
Assembly: NuGardt.Prowl.API (in NuGardt.Prowl.API.dll) Version: 1.0.0.1 (1.0.0.1)
Syntax

public static IAsyncResult VerifyBegin(
	Object Key,
	string ApiKey,
	AsyncCallback Callback,
	string ProviderKey = null,
	bool NoSSL = false
)

Parameters

Key
Type: OnlineSystem Object
Your own Key for tracking asynchronous calls.
ApiKey
Type: OnlineSystem String
he user's API key. A 40-byte hexadecimal string.
Callback
Type: OnlineSystem AsyncCallback
Method to call on completion or failure.
ProviderKey (Optional)
Type: OnlineSystem String
Your provider API key. Only necessary if you have been whitelisted.
NoSSL (Optional)
Type: OnlineSystem Boolean
Optional (Default: False). Call the query without utilizing SSL (encryption).

Return Value

Type: OnlineIAsyncResult
Returns an System.IAsyncResult.
Remarks

See Also