コード例 #1
0
ファイル: CMSClient.cs プロジェクト: djsteinmetz/headstart
 public Task <ListPage <Asset> > ListAssetsOnChild(ParentResourceType parentType, string parentID, ResourceType type, string ID, ListArgsPageOnly args, string token) =>
 ListAsync <Asset>(args, token, "assets", parentType.ToString(), parentID, type.ToString(), ID);
コード例 #2
0
ファイル: ResourceType.cs プロジェクト: timothywlee/headstart
 public ParentAttribute(ParentResourceType type)
 {
     ParentType = type;
 }
コード例 #3
0
ファイル: CMSClient.cs プロジェクト: djsteinmetz/headstart
 public Task <ListPage <Document <T> > > ListDocumentsOnChild <T>(string schemaID, ParentResourceType parentType, string parentID, ResourceType type, string ID, ListArgsPageOnly args, string token) =>
 ListAsync <Document <T> >(args, token, "schemas", schemaID, "documents", parentType.ToString(), parentID, type.ToString(), ID);