Click or drag to resize

RemWorkflowCheckWorkItem Method

Paperwork .Net Kütüphanesi
Manuel adımın durumunu getirir.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_GenericResult CheckWorkItem(
	string workitemId
)

Parameters

workitemId
Type: SystemString
İş adımı numarası.

Return Value

Type: a_GenericResult
Examples
C#
public void CheckWorkItem()
{
    string workitemId = "AC000100012917F5";
    a_GenericResult retVal = p.rWorkflow.CheckWorkItem(workitemId);
    if (retVal.ErrorCode != 0)
        throw new Exception(retVal.Message);
    else
        Console.WriteLine(retVal.Result);
}
See Also