Skip to content

Commit 1d40fc3

Browse files
committed
Escaping brackets
1 parent 8a1abee commit 1d40fc3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/purview/quickstart-data-share-dotnet.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Next, create a C# .NET console application in Visual Studio:
6565
The below code will create a data share that you can send to internal or external users.
6666
To use it, be sure to fill out these variables:
6767
68-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
68+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
6969
- **sentShareName** - a name for your new data share
7070
- **description** - an optional description for your data share
7171
- **collectionName** - the name of the collection where your share will be housed.
@@ -117,7 +117,7 @@ var sentShare = await sentShareClient.CreateOrUpdateAsync(sentShareName, Request
117117
The below code will add a data asset to a share you're sending.
118118
To use it, be sure to fill out these variables:
119119

120-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
120+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
121121
- **sentShareName** - the name of the data share where you'll add the asset
122122
- **assetName** - a name for the asset you'll be adding
123123
- **senderStorageResourceId** - the [resource ID for the storage account](../storage/common/storage-account-get-info.md#get-the-resource-id-for-a-storage-account) where the data asset is stored
@@ -167,7 +167,7 @@ await assetsClient.CreateAsync(WaitUntil.Started, sentShareName, assetName, Requ
167167
The below code will send an invitation to a data share.
168168
To use it, be sure to fill out these variables:
169169

170-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
170+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
171171
- **sentShareName** - the name of the data share you're sending
172172
- **assetName** - a name for your invitation
173173
- **targetEmail** or **targetActiveDirectoryId and targetObjectId** - the email address **or** objectId and tenantId for the user or service principal that will receive the data share. TenantId is optional.
@@ -209,7 +209,7 @@ await sentShareInvitationsClient.CreateOrUpdateAsync(sentShareName, invitationNa
209209
The below code will allow you to view your sent invitations.
210210
To use it, be sure to fill out these variables:
211211

212-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
212+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
213213
- **sentShareName** - the name share that an invitation was sent for
214214

215215
```C# Snippet:Azure_Analytics_Purview_Share_Samples_04_Namespaces
@@ -238,7 +238,7 @@ var targetEmail = responseInvitationDocument.RootElement.GetProperty("name");
238238
The below code will allow you to view your received invitations.
239239
To use it, be sure to fill out these variables:
240240

241-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
241+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
242242

243243
```C# Snippet:Azure_Analytics_Purview_Share_Samples_05_Namespaces
244244
using Azure.Identity;
@@ -255,7 +255,7 @@ var receivedInvitations = receivedInvitationsClient.GetReceivedInvitations();
255255
The below code will allow you to receive a data share.
256256
To use it, be sure to fill out these variables:
257257

258-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
258+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
259259
- **receivedShareName** - a name for the share that is being received
260260
- **sentShareLocation** - the region where the share is housed. It should be the same region as the sent share and will be one of [Microsoft Purview's available regions](https://azure.microsoft.com/global-infrastructure/services/?products=purview&regions=all).
261261
- **collectionName** - the name of the collection where your share will be housed.
@@ -322,7 +322,7 @@ var receivedShare = await receivedShareClient.CreateAsync(receivedShareName, Req
322322
The below code will allow you to view your accepted shares.
323323
To use it, be sure to fill out these variables:
324324

325-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
325+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
326326
- **sentShareName** - the name of the share you would like to view
327327

328328
```C# Snippet:Azure_Analytics_Purview_Share_Samples_07_Namespaces
@@ -350,7 +350,7 @@ var receiverEmail = JsonDocument.Parse(acceptedSentShare).RootElement.GetPropert
350350
The below code will allow you to see the assets received from a share.
351351
To use it, be sure to fill out these variables:
352352

353-
- **endpoint** - "https://<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
353+
- **endpoint** - "https://\<my-account-name>.purview.azure.com/share". Replace **\<my-account-name>** with the name of your Microsoft Purview instance
354354
- **receivedShareName** - the name of the share you would like to view the assets from
355355
- **assetMappingName** - consumer provided input that is used as identifier for the created asset mapping
356356
- **receiverContainerName** - the name of the container where the assets were housed

0 commit comments

Comments
 (0)