├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── O365-UWP-Unified-API-Snippets.sln ├── O365-UWP-Unified-API-Snippets ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── AuthenticationHelper.cs ├── Batching │ ├── BatchingSnippets.cs │ └── BatchingStories.cs ├── Contacts │ ├── OrganizationSnippets.cs │ └── OrganizationStories.cs ├── Extensions │ ├── ExtensionSnippets.cs │ └── ExtensionStories.cs ├── Groups │ ├── GroupSnippets.cs │ └── GroupStories.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── O365-UWP-Unified-API-Snippets.csproj ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── ResultToBrushConverter.cs ├── StoryDefinition.cs ├── Users │ ├── UserSnippets.cs │ └── UserStories.cs ├── ViewModelBase.cs ├── project.json └── project.lock.json ├── README.md └── readme-images ├── ClientTenant.png ├── appId_and_redirectURI.png └── copy_icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets.sln -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/App.xaml -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/App.xaml.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/StoreLogo.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/AuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/AuthenticationHelper.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Batching/BatchingSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Batching/BatchingSnippets.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Batching/BatchingStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Batching/BatchingStories.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Contacts/OrganizationSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Contacts/OrganizationSnippets.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Contacts/OrganizationStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Contacts/OrganizationStories.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Extensions/ExtensionSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Extensions/ExtensionSnippets.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Extensions/ExtensionStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Extensions/ExtensionStories.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Groups/GroupSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Groups/GroupSnippets.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Groups/GroupStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Groups/GroupStories.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/MainPage.xaml -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/MainPage.xaml.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/O365-UWP-Unified-API-Snippets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/O365-UWP-Unified-API-Snippets.csproj -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Package.appxmanifest -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Properties/Default.rd.xml -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/ResultToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/ResultToBrushConverter.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/StoryDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/StoryDefinition.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Users/UserSnippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Users/UserSnippets.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/Users/UserStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/Users/UserStories.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/ViewModelBase.cs -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/project.json -------------------------------------------------------------------------------- /O365-UWP-Unified-API-Snippets/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/O365-UWP-Unified-API-Snippets/project.lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/README.md -------------------------------------------------------------------------------- /readme-images/ClientTenant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/readme-images/ClientTenant.png -------------------------------------------------------------------------------- /readme-images/appId_and_redirectURI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/readme-images/appId_and_redirectURI.png -------------------------------------------------------------------------------- /readme-images/copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/uwp-csharp-snippets-rest-sample/HEAD/readme-images/copy_icon.png --------------------------------------------------------------------------------