Opalis Quick Integration Kit 3.0
Gets the value of the inputs as the specified type.

Namespace:  Opalis.QuickIntegrationKit
Assembly:  Opalis.QuickIntegrationKit(in Opalis.QuickIntegrationKit.dll) Version: 3.0.0.0 (3.1.0.1)

Syntax

C#
T 
As<T>()
Visual Basic (Declaration)
Function 
As(
Of T) 
As T
Visual C++
generic<
typename T>
T 
As()

Type Parameters

T

Return Value

The input value converted to the specified type

Examples

CopyC#
public 
void Execute(IOpalisRequest
request, IOpalisResponse response) 
{
	FileInfo file = request.Inputs[

"File"].As<FileInfo>();

return file.Length;
}

See Also