Skip to content

Commit 834b6c5

Browse files
committed
Workaround to xref issue
1 parent ae558ce commit 834b6c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

powerapps-docs/developer/data-platform/xrm-tooling/use-xrm-tooling-to-execute-web-request.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ search.app:
2626

2727
The <xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient> class object is used to perform actions on your Dynamics 365 data such as create, update, retrieve or delete data.
2828

29-
You can now use the <xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient>.<xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient.ExecuteCrmWebRequest(HttpMethod,String,String,Dictionary,String)> method to execute a web request against XRM web API.
29+
You can now use the <xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient>.[ExecuteCrmWebRequest](/dotnet/api/microsoft.xrm.tooling.connector.crmserviceclient.executecrmwebrequest) method to execute a web request against XRM web API.
3030

31-
The following code sample demonstrates how you can execute a web request using <xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient.ExecuteCrmWebRequest> method.
31+
The following code sample demonstrates how you can execute a web request using [ExecuteCrmWebRequest](/dotnet/api/microsoft.xrm.tooling.connector.crmserviceclient.executecrmwebrequest) method.
3232

3333
>[!NOTE]
3434
> This method is only applicable when the authentication type is specified as `OAuth` or `Certificate`.
3535
3636
## Create a record
3737

38-
The following code sample demonstrates how to create a record using the <xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient>.<xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient.ExecuteCrmWebRequest> method. In this example, you will create an account, and then display the ID in the response object.
38+
The following code sample demonstrates how to create a record using the <xref:Microsoft.Xrm.Tooling.Connector.CrmServiceClient>.[ExecuteCrmWebRequest](/dotnet/api/microsoft.xrm.tooling.connector.crmserviceclient.executecrmwebrequest) method. In this example, you will create an account, and then display the ID in the response object.
3939

4040
```csharp
4141
Dictionary<string, List<string>> ODataHeaders = new Dictionary<string, List<string>>() {

0 commit comments

Comments
 (0)