Skip to content

Commit

Permalink
CTC-2504 Rename new WS MAPI code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
jancerman committed Jul 24, 2024
1 parent ca25ec0 commit ad92ec3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// DocSection: cm_api_v2_get_web_spotlight_status
// Tip: Find more about .NET SDKs at https://kontent.ai/learn/net
using Kontent.Ai.Management;

Expand All @@ -8,5 +7,4 @@
ProjectId = "<YOUR_PROJECT_ID>"
});

var response = await client.GetWebSpotlightStatusAsync();
// EndDocSection
var response = await client.GetWebSpotlightStatusAsync();
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// DocSection: cm_api_v2_put_web_spotlight_activate
// Tip: Find more about .NET SDKs at https://kontent.ai/learn/net
using Kontent.Ai.Management;

Expand All @@ -16,5 +15,4 @@
RootType = reference
}

var response = await client.ActivateWebSpotlightAsync(model);
// EndDocSection
var response = await client.ActivateWebSpotlightAsync(model);
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// DocSection: cm_api_v2_put_web_spotlight_deactivate
// Tip: Find more about .NET SDKs at https://kontent.ai/learn/net
using Kontent.Ai.Management;

Expand All @@ -8,5 +7,4 @@
ProjectId = "<YOUR_PROJECT_ID>"
});

var response = await client.DeactivateWebSpotlightAsync();
// EndDocSection
var response = await client.DeactivateWebSpotlightAsync();

0 comments on commit ad92ec3

Please sign in to comment.