コード例 #1
0
 public Builder ForCustomNativeAd(string templateId, Action <CustomNativeTemplateAd, string> callback)
 {
     TemplateIds.Add(templateId);
     CustomNativeTemplateClickHandlers[templateId] = callback;
     AdTypes.Add(NativeAdType.CustomTemplate);
     return(this);
 }
コード例 #2
0
 public Builder ForCustomNativeAd(string templateId)
 {
     TemplateIds.Add(templateId);
     AdTypes.Add(NativeAdType.CustomTemplate);
     return(this);
 }