コード例 #1
0
        public HTTPRequestEventArgs(string AUID)
        {
            clp_params_request = false;
            clp_params         = null;

            action_type     = RequestActionType.none;
            action_executed = false;

            this.AUID = AUID;
        }
コード例 #2
0
ファイル: RequestId.cs プロジェクト: thomaspmorgan/eca-kmt2
 /// <summary>
 /// Creates a new request id with the id of the object and request id and request action types.
 /// </summary>
 /// <param name="id">The id of the participant or dependent.</param>
 /// <param name="requestIdType">The request id type.</param>
 /// <param name="actionType">The request action type.</param>
 public RequestId(int id, RequestIdType requestIdType, RequestActionType actionType)
 {
     this.Id = id;
     this.RequestActionType = actionType;
     this.RequestIdType     = requestIdType;
 }