DSPMetadata TryResolveServiceOperation Method
Returns a service operation specified by its name.

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

public bool TryResolveServiceOperation(
	string name,
	out ServiceOperation serviceOperation
)

Parameters

name
Type: OnlineSystem String
The name of the service operation to find.
serviceOperation
Type: OnlineSystem.Data.Services.Providers ServiceOperation 
The service operation instance found.

Return Value

Type: OnlineBoolean
true if the service operation was found or false otherwise.

Implements

OnlineIDataServiceMetadataProvider TryResolveServiceOperation(String, ServiceOperation )
Remarks

The implementation of this method should be very fast as it will get called for many requests. It should also be fast for non-existing service operations to avoid possible DoS attacks on the service.
See Also