public GetWorkflowExecutionHistoryResult Unmarshall(JsonUnmarshallerContext context)
        {
            GetWorkflowExecutionHistoryResult result = new GetWorkflowExecutionHistoryResult();

            result.History = HistoryUnmarshaller.GetInstance().Unmarshall(context);
            return(result);
        }
コード例 #2
0
 public static HistoryUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new HistoryUnmarshaller();
     }
     return(instance);
 }
コード例 #3
0
 private static void UnmarshallResult(JsonUnmarshallerContext context,GetWorkflowExecutionHistoryResponse response)
 {                   
   response.History = HistoryUnmarshaller.GetInstance().Unmarshall(context);
   return;
 }