Inheritance: object, System.ComponentModel.INotifyPropertyChanged
コード例 #1
0
 public AssetRouteResponse(ResultClass result) : base(result)
 {
 }
コード例 #2
0
 public AuthLogoutResponse(ResultClass result) : base(result)
 {
 }
コード例 #3
0
 public AuthAuthenticateResponse(ResultClass result)
     : base(result)
 {
 }
コード例 #4
0
 public AssetUploadResponse(ResultClass result, WorklistAsset asset, string displayUrl) : base(result)
 {
     this.asset      = asset;
     this.displayUrl = displayUrl;
 }
コード例 #5
0
 public WorkflowUpdateResponse(ResultClass result)
     : base(result)
 {
 }
コード例 #6
0
 public WorkflowDeleteResponse(ResultClass result)
     : base(result)
 {
 }
コード例 #7
0
 public WorkflowReadResponse(ResultClass result, Dictionary <int, WorkflowData> workflows)
     : base(result)
 {
     this.workflows = workflows;
 }
コード例 #8
0
 public AssetUndeleteResponse(ResultClass result)
     : base(result)
 {
 }
コード例 #9
0
 public AssetReadByIdResponse(ResultClass result, WorklistAsset asset)
     : base(result)
 {
     this.asset = asset;
 }
コード例 #10
0
 public AssetExistsResponse(ResultClass result, bool assetExists, int assetId)
     : base(result)
 {
     this.exists  = assetExists;
     this.assetId = assetId;
 }
コード例 #11
0
 public AssetAttachResponse(ResultClass result, string displayUrl)
     : base(result)
 {
     this.displayUrl = displayUrl;
 }
コード例 #12
0
 public AssetFieldsResponse(ResultClass result, List <AssetsField> fields)
     : base(result)
 {
     this.fields = fields;
 }
コード例 #13
0
 public AssetBranchResponse(ResultClass result, WorklistAsset asset)
     : base(result)
 {
     this.asset = asset;
 }
コード例 #14
0
 public AssetExecuteWorkflowCommandResponse(ResultClass result, cpWorkflowActionRequired requiredAction, int publishingSessionId, WorklistAsset asset) : base(result)
 {
     this.requiredAction      = requiredAction;
     this.publishingSessionId = publishingSessionId;
     this.asset = asset;
 }
コード例 #15
0
 public WorkflowReadByIdResponse(ResultClass result, WorkflowData workflow)
     : base(result)
 {
     this.workflow = workflow;
 }
コード例 #16
0
 public ResultClass(ResultClass resultClass)
 {
     this.ErrorMessage = resultClass.ErrorMessage;
       this.ResultCode = resultClass.ResultCode;
       this.InternalCode = resultClass.InternalCode;
 }
コード例 #17
0
 public AssetReadResponse(ResultClass result)
     : base(result)
 {
 }