| Methods / Methods for Custom Attributes | 
IWFWorkflowService svc = GetWorkflowService();
string customID = …// for example, "013933F128C3415F81D6F545594D4CB6";
string name = …// for example,"/pd:myFields/pd:Name" or "Approval"
try
	{
    Object obj = svc.GetCustomAttr(customID,name);
	}
catch (Exception ex)
	{
    Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
	}