コード例 #1
0
ファイル: RestResource.cs プロジェクト: orospakr/sharpify
 public override string Path()
 {
     return(ShopifyAPIContext.UriPathJoin(ParentResource.InstanceOrVerbPath(ParentInstance.Id.ToString()), ShopifyAPIContext.Pluralize(Name)));
 }
コード例 #2
0
ファイル: RestResource.cs プロジェクト: orospakr/sharpify
 public string InstanceOrVerbPath(string id)
 {
     return(ShopifyAPIContext.UriPathJoin(Path(), id));
 }
コード例 #3
0
ファイル: RestResource.cs プロジェクト: orospakr/sharpify
 public async Task CallAction(T instance, string action)
 {
     await Context.CallRaw(HttpMethod.Post,
                           Context.GetRequestContentType(),
                           ShopifyAPIContext.UriPathJoin(InstancePath(instance.Id.Value), action), FullParameters(), null);
 }
コード例 #4
0
ファイル: RestResource.cs プロジェクト: orospakr/sharpify
 public virtual string Path()
 {
     return(ShopifyAPIContext.UriPathJoin(Context.AdminPath(), ShopifyAPIContext.Pluralize(Name)));
 }