@@ -65,12 +65,12 @@ private string _Url
65
65
/// <code>
66
66
/// var options = new ContentstackOptions()
67
67
/// {
68
- /// ApiKey = " api_key" ,
69
- /// DeliveryToken = " delivery_token"
70
- /// Environment = " environment"
68
+ /// ApiKey = " api_key" ,
69
+ /// DeliveryToken = " delivery_token"
70
+ /// Environment = " environment"
71
71
/// }
72
72
/// ContentstackClient stack = new ContentstackClient(options);
73
- /// ContentType contentType = stack.ContentType(" contentType_name" );
73
+ /// ContentType contentType = stack.ContentType(" contentType_name" );
74
74
/// </code>
75
75
/// </example>
76
76
public ContentstackClient ( IOptions < ContentstackOptions > options )
@@ -161,8 +161,8 @@ public ContentstackClient(ContentstackOptions options) :
161
161
/// <param name="environment">Environment name</param>
162
162
/// <example>
163
163
/// <code>
164
- /// ContentstackClient stack = new ContentstackClient(" api_key", " delivery_token", " environment" );
165
- /// ContentType contentType = stack.ContentType(" contentType_name" );
164
+ /// ContentstackClient stack = new ContentstackClient(" api_key", " delivery_token", " environment" );
165
+ /// ContentType contentType = stack.ContentType(" contentType_name" );
166
166
/// </code>
167
167
/// </example>
168
168
public ContentstackClient ( string apiKey , string deliveryToken , string environment , string host = null , ContentstackRegion region = ContentstackRegion . US , string version = null , int ? timeout = null , WebProxy proxy = null ) :
@@ -267,7 +267,7 @@ internal void SetConfig(Config cnfig)
267
267
/// <returns>Current instance of Asset, this will be useful for a chaining calls.</returns>
268
268
/// <example>
269
269
/// <code>
270
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
270
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
271
271
/// Asset asset = stack.Asset();
272
272
/// </code>
273
273
/// </example>
@@ -285,8 +285,8 @@ internal Asset Asset()
285
285
/// </summary>
286
286
/// <example>
287
287
/// <code>
288
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
289
- /// var param = new Dictionary< string, object> ();
288
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
289
+ /// var param = new Dictionary< string, object> ();
290
290
/// param.Add("include_global_field_schema",true);
291
291
/// param.Add("limit", 10);
292
292
/// param.Add("skip", 10);
@@ -401,8 +401,8 @@ private async Task<JObject> GetLivePreviewData()
401
401
/// <returns>Current instance of ContentType, this will be useful for a chaining calls.</returns>
402
402
/// <example>
403
403
/// <code>
404
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
405
- /// ContentType contentType = stack.ContentType(" contentType_name" );
404
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
405
+ /// ContentType contentType = stack.ContentType(" contentType_name" );
406
406
/// </code>
407
407
/// </example>
408
408
public ContentType ContentType ( String contentTypeName )
@@ -434,8 +434,8 @@ public GlobalFieldQuery GlobalFieldQuery()
434
434
/// <returns>Current instance of Asset, this will be useful for a chaining calls.</returns>
435
435
/// <example>
436
436
/// <code>
437
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
438
- /// Asset asset = stack.Asset(" asset_uid" );
437
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
438
+ /// Asset asset = stack.Asset(" asset_uid" );
439
439
/// </code>
440
440
/// </example>
441
441
public Asset Asset ( String Uid )
@@ -450,7 +450,7 @@ public Asset Asset(String Uid)
450
450
/// <returns>Current instance of Asset, this will be useful for a chaining calls.</returns>
451
451
/// <example>
452
452
/// <code>
453
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
453
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
454
454
/// AssetLibrary assetLibrary = stack.AssetLibrary();
455
455
/// </code>
456
456
/// </example>
@@ -466,7 +466,7 @@ public AssetLibrary AssetLibrary()
466
466
/// <returns>Current instance of Taxonomy, this will be useful for a chaining calls.</returns>
467
467
/// <example>
468
468
/// <code>
469
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
469
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
470
470
/// Taxonomy taxonomy = stack.Taxonomy();
471
471
/// </code>
472
472
/// </example>
@@ -482,7 +482,7 @@ public Taxonomy Taxonomies()
482
482
/// <returns>Version</returns>
483
483
/// <example>
484
484
/// <code>
485
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
485
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
486
486
/// String url = stack.GetVersion();
487
487
/// </code>
488
488
/// </example>
@@ -497,7 +497,7 @@ public string GetVersion()
497
497
/// <returns>stack application key</returns>
498
498
/// <example>
499
499
/// <code>
500
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
500
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
501
501
/// String url = stack.GetApplicationKey();
502
502
/// </code>
503
503
/// </example>
@@ -519,7 +519,7 @@ public LivePreviewConfig GetLivePreviewConfig()
519
519
/// <returns>access token</returns>
520
520
/// <example>
521
521
/// <code>
522
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
522
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
523
523
/// String accessToken = stack.GetAccessToken();
524
524
/// </code>
525
525
/// </example>
@@ -534,7 +534,7 @@ public string GetAccessToken()
534
534
/// <returns>stack environment</returns>
535
535
/// <example>
536
536
/// <code>
537
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
537
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
538
538
/// String environment = stack.GetEnvironment();
539
539
/// </code>
540
540
/// </example>
@@ -549,8 +549,8 @@ public string GetEnvironment()
549
549
/// <param name="key">key to be remove from header</param>
550
550
/// <example>
551
551
/// <code>
552
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
553
- /// stack.RemoveHeader(" custom_header_key" );
552
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
553
+ /// stack.RemoveHeader(" custom_header_key" );
554
554
/// </code>
555
555
/// </example>
556
556
public void RemoveHeader ( string key )
@@ -567,8 +567,8 @@ public void RemoveHeader(string key)
567
567
/// <param name="value">header value against given header name.</param>
568
568
/// <example>
569
569
/// <code>
570
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
571
- /// stack.SetHeader(" custom_key", " custom_value" );
570
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
571
+ /// stack.SetHeader(" custom_key", " custom_value" );
572
572
/// </code>
573
573
/// </example>
574
574
public void SetHeader ( string key , string value )
@@ -588,7 +588,7 @@ public void SetHeader(string key, string value)
588
588
/// <param name="query">Query parameter containing hash and content type UID </param>
589
589
/// <example>
590
590
/// <code>
591
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
591
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
592
592
/// stack.LivePreviewQuery(query);
593
593
/// </code>
594
594
/// </example>
@@ -641,8 +641,8 @@ public async Task LivePreviewQueryAsync(Dictionary<string, string> query)
641
641
/// <param name="StartFrom">Start from.</param>
642
642
/// <example>
643
643
/// <code>
644
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
645
- /// stack.SyncRecursiveLanguage(" SyncType", " Locale" );
644
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
645
+ /// stack.SyncRecursiveLanguage(" SyncType", " Locale" );
646
646
/// </code>
647
647
/// </example>
648
648
public async Task < SyncStack > SyncRecursive ( String Locale = null , SyncType SyncType = SyncType . All , string ContentTypeUid = null , DateTime ? StartFrom = null )
@@ -659,8 +659,8 @@ public async Task<SyncStack> SyncRecursive(String Locale = null, SyncType SyncTy
659
659
/// <param name="paginationToken">Pagination token.</param>
660
660
/// <example>
661
661
/// <code>
662
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
663
- /// stack.SyncPaginationTokenn(" pagination_token" );
662
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
663
+ /// stack.SyncPaginationTokenn(" pagination_token" );
664
664
/// </code>
665
665
/// </example>
666
666
@@ -676,8 +676,8 @@ public async Task<SyncStack> SyncPaginationToken(string paginationToken)
676
676
/// <param name="SyncToken">Sync token.</param>
677
677
/// <example>
678
678
/// <code>
679
- /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
680
- /// stack.SyncToken(" sync_token" );
679
+ /// ContentstackClient stack = new ContentstackClinet(" api_key", " delivery_token", " environment" );
680
+ /// stack.SyncToken(" sync_token" );
681
681
/// </code>
682
682
/// </example>
683
683
public async Task < SyncStack > SyncToken ( string SyncToken )
0 commit comments