Skip to content

Commit 7b91cda

Browse files
authored
Merge branch 'dev' into v1.0/pipelinebuild/80520
2 parents af7b7a7 + fa59e6c commit 7b91cda

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To begin making requests with the library, you will need to initialize a **Graph
2626

2727
## IAuthenticationProvider
2828

29-
The authentication provider is responsible for authenticating requests before sending them to the service. The Microsoft Graph .NET Client Library doesn't implement any authentication by default. Instead, you will need to retrieve access tokens for the service via the authentication library of your choice or by coding against one of the authentication endpoints directly. Please [read here](https://developer.microsoft.com/en-us/graph/docs/concepts/auth_overview) for more details about authenticating the Microsoft Graph service.
29+
The authentication provider is responsible for authenticating requests before sending them to the service. The Microsoft Graph .NET Client Library doesn't implement any authentication by default. Instead, you will need to retrieve access tokens for the service via the authentication library of your choice or by coding against one of the authentication endpoints directly. Please [read here](https://docs.microsoft.com/en-us/graph/auth/) for more details about authenticating the Microsoft Graph service.
3030

3131
### DelegateAuthenticationProvider
3232

@@ -45,7 +45,7 @@ var graphServiceClient = new GraphServiceClient(new DelegateAuthenticationProvid
4545

4646
## Resource model
4747

48-
Microsoft Graph service resource are represented by property bag model classes of the same name in the client library. For example, the [user resource](https://graph.microsoft.io/en-us/docs/api-reference/v1.0/resources/user) is represented by the [user class](../src/Microsoft.Graph/Models/Generated/User.cs) in the client library. Each of these model classes contain properties that represent the properties of the resources they represent.
48+
Microsoft Graph service resource are represented by property bag model classes of the same name in the client library. For example, the [user resource](https://docs.microsoft.com/en-us/graph/api/resources/users) is represented by the [user class](../src/Microsoft.Graph/Generated/model/User.cs) in the client library. Each of these model classes contain properties that represent the properties of the resources they represent.
4949

5050
These classes are used for serializing and deserializing the resources in requests to the service. They do not contain any logic to issue requests.
5151

@@ -67,7 +67,7 @@ You get the first request builder from the `GraphServiceClient` object. For exam
6767

6868
The call will return an `IUserRequestBuilder` object. From Me you can continue to chain the request builders.
6969

70-
The [Microsoft Graph service documentation](https://graph.microsoft.io/en-us/docs) has more details about the full functionality of the API.
70+
The [Microsoft Graph API documentation](https://docs.microsoft.com/en-us/graph/api/overview) has more details about the full functionality of the API.
7171

7272

7373
### 2. Request calls

0 commit comments

Comments
 (0)