For Babelfish Release 1.11.1.3

DefinitionAPIClientTryReadFromFileSystemAsync Method

Attempts to read the Definition file from the local file system. Because this method is async, and we can't have 'out' variables on async methods, this method instead returns a tuple. .Item1 is a boolean indicating if it was successful. .Item2 is the ResponseIntermediateObject (if successful) containing the definition file.

Definition

Namespace: Scopos.BabelFish.APIClients
Assembly: BabelFish (in BabelFish.dll) Version: 1.11.1.4+b1da393815f6638555a663d9a94167ecabea5695
C#
protected override Task<Tuple<bool, ResponseIntermediateObject?>> TryReadFromFileSystemAsync(
	Request request
)

Parameters

request  Request

Return Value

TaskTupleBoolean, ResponseIntermediateObject

Exceptions

ArgumentExceptionParameter request must be of type GetDefinitionPublicRequest

See Also