You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/overview.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ To begin making requests with the library, you will need to initialize a **Graph
26
26
27
27
## IAuthenticationProvider
28
28
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.
30
30
31
31
### DelegateAuthenticationProvider
32
32
@@ -45,7 +45,7 @@ var graphServiceClient = new GraphServiceClient(new DelegateAuthenticationProvid
45
45
46
46
## Resource model
47
47
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.
49
49
50
50
These classes are used for serializing and deserializing the resources in requests to the service. They do not contain any logic to issue requests.
51
51
@@ -67,7 +67,7 @@ You get the first request builder from the `GraphServiceClient` object. For exam
67
67
68
68
The call will return an `IUserRequestBuilder` object. From Me you can continue to chain the request builders.
69
69
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.
0 commit comments