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: CommunityToolkit.Graph.Uwp/CommunityToolkit.Graph.Uwp.csproj
+12-14Lines changed: 12 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,19 @@
6
6
<Description>
7
7
This library provides Microsoft Graph UWP XAML controls. It is part of the Windows Community Toolkit.
8
8
9
-
Classes:
10
-
- GraphPresenter:
11
-
- LoginButton: The Login Control leverages MSAL libraries to support the sign-in processes for Microsoft Graph and beyond.
9
+
Controls:
10
+
- GraphPresenter: A specialized ContentPresenter for fetching and displaying data from Microsoft Graph.
11
+
- LoginButton: The Login Control leverages the global authentication provider to support the sign-in processes for Microsoft Graph and beyond.
12
12
- PersonView: The PersonView control displays a user photo and can display their name and e-mail.
13
-
- PeoplePicker: The PeoplePicker Control is a simple control that allows for selection of one or more users.
13
+
- PeoplePicker: The PeoplePicker Control is a simple control that allows for selection users.
14
+
15
+
Extensions:
16
+
- FrameworkElement.IsVisibleWhen(ProviderState): Extension on FrameworkElement for toggling visibility in response to changes in the global authentcation provider.
17
+
18
+
Triggers:
19
+
- ProviderStateTrigger: StateTrigger for reacting to changes in the global authentcation provider.
14
20
</Description>
15
-
<PackageTags>UWP Toolkit Windows Controls MSAL Microsoft Graph AadLogin ProfileCard Person PeoplePicker Login</PackageTags>
21
+
<PackageTags>UWP Community Toolkit Windows Controls Microsoft Graph Login Person PeoplePicker Presenter</PackageTags>
// Note: some interfaces from the Graph SDK don't implement IBaseRequestBuilder properly, see https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/722
75
75
if(RequestBuilder!=null)
76
76
{
77
-
varrequest=newBaseRequest(
78
-
RequestBuilder.RequestUrl,
79
-
RequestBuilder.Client);// TODO: Do we need separate Options here?
0 commit comments