├── B2CNETCoreWebApp ├── wwwroot │ ├── js │ │ ├── site.min.js │ │ └── site.js │ ├── favicon.ico │ ├── lib │ │ ├── bootstrap │ │ │ └── dist │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ └── LICENSE.txt │ │ ├── jquery │ │ │ └── .bower.json │ │ └── jquery-validation │ │ │ └── .bower.json │ └── css │ │ ├── site.min.css │ │ └── site.css ├── Views │ ├── _ViewStart.cshtml │ ├── Home │ │ ├── Customer.cshtml │ │ ├── Employee.cshtml │ │ ├── Partner.cshtml │ │ ├── Privacy.cshtml │ │ ├── About.cshtml │ │ └── Contact.cshtml │ ├── _ViewImports.cshtml │ └── Shared │ │ ├── Error.cshtml │ │ └── _LoginPartial.cshtml ├── appsettings.Development.json ├── Models │ └── ErrorViewModel.cs ├── B2CNETCoreWebApp.csproj ├── appsettings.json ├── Program.cs └── Properties │ └── launchSettings.json ├── .vs ├── ProjectSettings.json ├── restore.dg └── AADGuide-CodeSamples │ └── v15 │ └── sqlite3 │ └── storage.ide ├── ADFSTodoSPA ├── TodoSPA │ ├── App │ │ ├── Views │ │ │ ├── Home.html │ │ │ └── UserData.html │ │ └── Scripts │ │ │ ├── indexCtrl.js │ │ │ ├── userDataCtrl.js │ │ │ ├── homeCtrl.js │ │ │ ├── todoListSvc.js │ │ │ └── app.js │ ├── Global.asax │ ├── DAL │ │ ├── TodoListServiceInitializer.cs │ │ └── TodoListServiceContext.cs │ ├── Models │ │ └── AppModels.cs │ ├── Startup.cs │ ├── Global.asax.cs │ └── App_Start │ │ └── WebApiConfig.cs ├── AppCreationScripts │ └── Config.ps1 ├── CONTRIBUTING.md └── LICENSE ├── ADFSWebAPIServer ├── Views │ ├── _ViewStart.cshtml │ └── Shared │ │ └── Error.cshtml ├── favicon.ico ├── Global.asax ├── Scripts │ └── _references.js ├── Areas │ └── HelpPage │ │ ├── Views │ │ ├── Help │ │ │ ├── DisplayTemplates │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── TextSample.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ └── ModelDescriptionLink.cshtml │ │ │ ├── ResourceModel.cshtml │ │ │ └── Api.cshtml │ │ ├── _ViewStart.cshtml │ │ └── Shared │ │ │ └── _Layout.cshtml │ │ ├── ModelDescriptions │ │ ├── SimpleTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── CollectionModelDescription.cs │ │ ├── ParameterAnnotation.cs │ │ ├── EnumValueDescription.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── ModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── ParameterDescription.cs │ │ └── ModelNameAttribute.cs │ │ ├── SampleGeneration │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ └── HelpPageAreaRegistration.cs ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── Startup.cs ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Controllers │ ├── HomeController.cs │ └── ADFSController.cs ├── Content │ └── Site.css └── Global.asax.cs ├── B2CVideoPortal ├── Views │ ├── _ViewStart.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _LoginPartial.cshtml │ └── Home │ │ └── Claims.cshtml ├── favicon.ico ├── Global.asax ├── Scripts │ └── _references.js ├── components │ ├── Persona │ │ ├── Persona.Person.jpg │ │ ├── Persona.Person2.png │ │ ├── Persona.Tiny.html │ │ ├── Persona.Square.Tiny.html │ │ ├── Persona.ExtraSmall.html │ │ ├── Persona.Square.ExtraSmall.html │ │ ├── Persona.html │ │ ├── Persona.Presence.Dnd.html │ │ ├── Persona.Small.html │ │ ├── Persona.Square.html │ │ ├── Persona.Presence.Away.html │ │ ├── Persona.Presence.Busy.html │ │ ├── Persona.Presence.Blocked.html │ │ ├── Persona.Presence.Offline.html │ │ ├── Persona.Presence.Available.html │ │ ├── Persona.Presence.Square.Away.html │ │ ├── Persona.Presence.Square.Busy.html │ │ ├── Persona.Presence.Square.Dnd.html │ │ ├── Persona.Square.Small.html │ │ ├── Persona.Presence.Square.Blocked.html │ │ ├── Persona.Presence.Square.Offline.html │ │ ├── Persona.Presence.Square.Available.html │ │ ├── Persona.Large.html │ │ ├── Persona.Square.Large.html │ │ ├── Persona.ExtraLarge.html │ │ └── Persona.Square.ExtraLarge.html │ ├── PeoplePicker │ │ ├── PeoplePicker.Searching.png │ │ └── PeoplePicker.json │ ├── Spinner │ │ ├── Spinner.json │ │ ├── Spinner.html │ │ └── Spinner.less │ ├── DatePicker │ │ ├── DatePicker.html │ │ └── DatePicker.json │ ├── Overlay │ │ ├── Overlay.html │ │ ├── Overlay.Dark.html │ │ ├── Overlay.None.html │ │ ├── Overlay.json │ │ └── Overlay.less │ ├── Label │ │ ├── Label.html │ │ ├── Label.Disabled.html │ │ ├── Label.Required.html │ │ ├── Label.json │ │ └── Label.less │ ├── ProgressIndicator │ │ ├── ProgressIndicator.json │ │ └── ProgressIndicator.html │ ├── Breadcrumb │ │ ├── Breadcrumb.json │ │ └── Breadcrumb.html │ ├── Table │ │ └── Table.json │ ├── Link │ │ ├── Link.html │ │ ├── Link.Hero.html │ │ ├── Link.json │ │ └── Link.less │ ├── NavBar │ │ └── NavBar.json │ ├── TextField │ │ ├── TextField.Underlined.html │ │ ├── TextField.Multiline.html │ │ ├── TextField.html │ │ └── TextField.Placeholder.html │ ├── SearchBox │ │ ├── SearchBox.json │ │ └── SearchBox.html │ ├── ChoiceField │ │ ├── ChoiceField.html │ │ ├── ChoiceField.Selected.html │ │ ├── ChoiceField.Checkbox.html │ │ ├── ChoiceField.Disabled.html │ │ ├── ChoiceField.Checkbox.Selected.html │ │ └── ChoiceField.Checkbox.Disabled.html │ ├── Dropdown │ │ ├── Dropdown.json │ │ ├── Dropdown.html │ │ └── Dropdown.Disabled.html │ ├── Button │ │ ├── Button.html │ │ ├── Button.Hero.html │ │ ├── Button.Command.html │ │ ├── Button.Compound.html │ │ └── Button.Primary.html │ ├── ListItem │ │ ├── ListItem.Document.html │ │ ├── Jquery.ListItem.js │ │ ├── ListItem.html │ │ ├── ListItem.Selectable.html │ │ ├── ListItem.json │ │ ├── ListItem.Unread.html │ │ ├── ListItem.Unseen.html │ │ ├── ListItem.Selected.html │ │ └── ListItem.Image.html │ ├── List │ │ ├── List.json │ │ └── List.less │ ├── Pivot │ │ ├── Pivot.html │ │ ├── Pivot.Tabs.html │ │ ├── Pivot.Large.html │ │ ├── Pivot.Tabs.Large.html │ │ ├── Pivot.json │ │ └── jquery.Pivot.js │ ├── Toggle │ │ ├── Toggle.html │ │ ├── Toggle.TextLeft.html │ │ └── Toggle.json │ ├── OrgChart │ │ ├── OrgChart.json │ │ └── OrgChart.less │ ├── PersonaCard │ │ └── PersonaCard.json │ ├── ContextualMenu │ │ ├── ContextualMenu.html │ │ └── ContextualMenu.json │ ├── Callout │ │ ├── Callout.Peek.html │ │ ├── Callout.html │ │ └── Callout.Close.html │ ├── CommandBar │ │ └── CommandBar.json │ └── Panel │ │ └── Panel.json ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── App_Start │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── Startup.cs ├── Content │ └── Site.css ├── Global.asax.cs ├── Controllers │ └── HomeController.cs ├── less │ ├── _Fabric.Utilities.less │ ├── _Fabric.Icons.Font.less │ ├── _Fabric.ZIndex.Variables.less │ └── _Fabric.Grid.less └── PolicyAuthHelpers │ └── PolicyAuthorize.cs ├── ClaimsWebApp ├── Views │ ├── _ViewStart.cshtml │ ├── Account │ │ └── SignOutCallback.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _LoginPartial.cshtml │ └── UserProfile │ │ ├── Relogin.cshtml │ │ └── Index.cshtml ├── favicon.ico ├── Global.asax ├── Scripts │ └── _references.js ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── Startup.cs ├── Service References │ └── AzureAD │ │ └── ConnectedService.json ├── App_Start │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── Content │ ├── sass │ │ ├── _Fabric.Common.scss │ │ ├── Fabric.Utilities.Output.scss │ │ ├── Fabric.Grid.Output.scss │ │ ├── _Fabric.Grid.scss │ │ ├── _Fabric.Utilities.scss │ │ ├── _Fabric.ZIndex.Variables.scss │ │ └── Fabric.Icons.Font.Output.scss │ └── Site.css ├── Global.asax.cs └── Models │ └── ApplicationDbContext.cs ├── WebAPIServerSingleTenant ├── Views │ ├── _ViewStart.cshtml │ └── Shared │ │ └── Error.cshtml ├── favicon.ico ├── Global.asax ├── Scripts │ └── _references.js ├── Areas │ └── HelpPage │ │ ├── Views │ │ ├── Help │ │ │ ├── DisplayTemplates │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── TextSample.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ └── ModelDescriptionLink.cshtml │ │ │ ├── ResourceModel.cshtml │ │ │ └── Api.cshtml │ │ ├── _ViewStart.cshtml │ │ └── Shared │ │ │ └── _Layout.cshtml │ │ ├── ModelDescriptions │ │ ├── SimpleTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── CollectionModelDescription.cs │ │ ├── ParameterAnnotation.cs │ │ ├── EnumValueDescription.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── ModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── ParameterDescription.cs │ │ └── ModelNameAttribute.cs │ │ ├── SampleGeneration │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ └── HelpPageAreaRegistration.cs ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── Startup.cs ├── Controllers │ ├── HomeController.cs │ └── AADController.cs ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Content │ └── Site.css ├── Models │ └── ApplicationDbContext.cs └── Global.asax.cs ├── HelloAADB2C ├── Assets │ ├── StoreLogo.png │ ├── SplashScreen.scale-200.png │ ├── LockScreenLogo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Wide310x150Logo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ └── Square44x44Logo.targetsize-24_altform-unplated.png ├── App.xaml ├── project.json └── MainPage.xaml ├── ADFSWebAPIClient ├── Assets │ ├── StoreLogo.png │ ├── SplashScreen.scale-200.png │ ├── LockScreenLogo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Wide310x150Logo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ └── Square44x44Logo.targetsize-24_altform-unplated.png ├── App.xaml ├── project.json └── MainPage.xaml ├── CoreWebAPIClient ├── Assets │ ├── StoreLogo.png │ ├── SplashScreen.scale-200.png │ ├── LockScreenLogo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Wide310x150Logo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ └── Square44x44Logo.targetsize-24_altform-unplated.png ├── App.xaml ├── project.json └── MainPage.xaml ├── HelloAzureAD ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── StoreLogo.scale-100.png │ ├── WideLogo.scale-100.png │ └── SplashScreen.scale-100.png ├── App.xaml ├── project.json └── MainPage.xaml ├── WebAPIClientSingleTenant ├── Assets │ ├── StoreLogo.png │ ├── SplashScreen.scale-200.png │ ├── LockScreenLogo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Wide310x150Logo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ └── Square44x44Logo.targetsize-24_altform-unplated.png ├── App.xaml ├── project.json └── MainPage.xaml ├── CoreWebAPISignedJWTs ├── appsettings.json ├── appsettings.Development.json ├── CoreWebAPISignedJWTs.csproj ├── Program.cs └── Properties │ └── launchSettings.json ├── AboutMePasswordGrant ├── packages.config ├── App.config ├── Properties │ └── Settings.settings └── Program.cs ├── JwtCracker ├── Properties │ └── Settings.settings ├── packages.config ├── Program.cs └── App.config ├── GraphTreeView ├── Properties │ └── Settings.settings ├── Program.cs ├── packages.config ├── App.config └── Constants.cs └── CoreWebAPIServer ├── Controllers └── AADController.cs ├── appsettings.json ├── Program.cs ├── web.config └── Properties └── launchSettings.json /B2CNETCoreWebApp/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /B2CNETCoreWebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /ADFSTodoSPA/TodoSPA/App/Views/Home.html: -------------------------------------------------------------------------------- 1 |
You have successfully signed out.
6 | -------------------------------------------------------------------------------- /WebAPIClientSingleTenant/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahelland/AADGuide-CodeSamples/HEAD/WebAPIClientSingleTenant/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- 1 | @using WebAPIServerSingleTenant.Areas.HelpPage 2 | @model ImageSample 3 | 4 |5 | @Model.Text 6 |-------------------------------------------------------------------------------- /B2CVideoPortal/components/PeoplePicker/PeoplePicker.Searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahelland/AADGuide-CodeSamples/HEAD/B2CVideoPortal/components/PeoplePicker/PeoplePicker.Searching.png -------------------------------------------------------------------------------- /B2CVideoPortal/components/Spinner/Spinner.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Spinner", 3 | "notes": "An animating activity indicator.", 4 | "template": "Spinner.html", 5 | "class": "ms-Spinner" 6 | } 7 | -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahelland/AADGuide-CodeSamples/HEAD/WebAPIServerSingleTenant/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ADFSTodoSPA/TodoSPA/App/Scripts/indexCtrl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module('todoApp') 3 | .controller('indexCtrl', ['$scope', 'adalAuthenticationService', function ($scope, adalService) { 4 | 5 | }]); -------------------------------------------------------------------------------- /B2CNETCoreWebApp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |
Use this page to detail your site's privacy policy.
7 | -------------------------------------------------------------------------------- /HelloAADB2C/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahelland/AADGuide-CodeSamples/HEAD/HelloAADB2C/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ADFSWebAPIClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahelland/AADGuide-CodeSamples/HEAD/ADFSWebAPIClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ADFSWebAPIServer/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- 1 | @using ADFSWebAPIServer.Areas.HelpPage.ModelDescriptions 2 | @model SimpleTypeModelDescription 3 | @Model.Documentation -------------------------------------------------------------------------------- /CoreWebAPIClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahelland/AADGuide-CodeSamples/HEAD/CoreWebAPIClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- 1 | @using WebAPIServerSingleTenant.Areas.HelpPage 2 | @model TextSample 3 | 4 |5 | @Model.Text 6 |-------------------------------------------------------------------------------- /ADFSTodoSPA/TodoSPA/App/Scripts/userDataCtrl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module('todoApp') 3 | .controller('userDataCtrl', ['$scope', 'adalAuthenticationService', function ($scope, adalService) { 4 | 5 | 6 | }]); -------------------------------------------------------------------------------- /B2CNETCoreWebApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /ADFSWebAPIServer/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages 3 | Layout = "~/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /B2CNETCoreWebApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /B2CVideoPortal/components/DatePicker/DatePicker.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- 1 | @using WebAPIServerSingleTenant.Areas.HelpPage.ModelDescriptions 2 | @model SimpleTypeModelDescription 3 | @Model.Documentation -------------------------------------------------------------------------------- /AboutMePasswordGrant/App.config: -------------------------------------------------------------------------------- 1 | 2 |Sample not available.
13 | } -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |Sample not available.
13 | } -------------------------------------------------------------------------------- /ClaimsWebApp/Views/UserProfile/Relogin.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.Azure.ActiveDirectory.GraphClient 2 | 3 | @{ 4 | ViewBag.Title = "User Profile"; 5 | } 6 |9 | The token for accessing the Graph API has expired. 10 | Click @Html.ActionLink("here", "RefreshSession", "UserProfile", null, null) to sign-in and get a new access token. 11 |
12 | -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- 1 | namespace WebAPIServerSingleTenant.Areas.HelpPage.ModelDescriptions 2 | { 3 | public class KeyValuePairModelDescription : ModelDescription 4 | { 5 | public ModelDescription KeyModelDescription { get; set; } 6 | 7 | public ModelDescription ValueModelDescription { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /B2CVideoPortal/components/Link/Link.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Link", 3 | "notes": "", 4 | "template": "Link.html", 5 | "class": "ms-Link", 6 | "wrapBranches": true, 7 | "fileOrder": [ 8 | "Link.html", 9 | "Link.Hero.html" 10 | ], 11 | "branches": [ 12 | { 13 | "name": "Hero", 14 | "class": "ms-Link--hero", 15 | "default": true 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /WebAPIServerSingleTenant/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | 4 | namespace WebAPIServerSingleTenant.Areas.HelpPage.ModelDescriptions 5 | { 6 | public interface IModelDocumentationProvider 7 | { 8 | string GetDocumentation(MemberInfo member); 9 | 10 | string GetDocumentation(Type type); 11 | } 12 | } -------------------------------------------------------------------------------- /B2CVideoPortal/components/TextField/TextField.html: -------------------------------------------------------------------------------- 1 | 2 | 3 || Display Name | 12 |@Model.DisplayName | 13 |
| First Name | 16 |@Model.GivenName | 17 |
| Last Name | 20 |@Model.Surname | 21 |
7 |
7 |
7 |
7 |
7 |
7 |
7 |
7 |
7 |
7 |
7 | | Claim Type | 12 |Claim Value | 13 |
|---|---|
| @claim.Type | 19 |@claim.Value | 20 |
7 |
7 |
7 |
7 |
7 |
7 |
7 | 10 | @Html.ActionLink("Help Page Home", "Index") 11 |
12 |@Model.Documentation
16 |
7 | 10 | @Html.ActionLink("Help Page Home", "Index") 11 |
12 |@Model.Documentation
16 |
7 | 15 | @Html.ActionLink("Help Page Home", "Index") 16 |
17 |15 | @Html.ActionLink("Help Page Home", "Index") 16 |
17 |
7 | Uploaded 2 items to Alton's OneDrive
7 |
7 | All of your favorite people
7 |Message body is optional. If help documentation is available, consider adding a link to learn more at the bottom.
11 |Possible enumeration values:
5 | 6 || Name | Value | Description |
|---|---|---|
| @value.Name | 15 |
16 | @value.Value 17 | |
18 |
19 | @value.Documentation 20 | |
21 |
Possible enumeration values:
5 | 6 || Name | Value | Description |
|---|---|---|
| @value.Name | 15 |
16 | @value.Value 17 | |
18 |
19 | @value.Documentation 20 | |
21 |
{{userInfo.userName}}
6 |aud:{{userInfo.profile.aud}}
7 |iss:{{userInfo.profile.iss}}
8 |iat:{{userInfo.profile.iat}}
9 |nbf:{{userInfo.profile.nbf}}
10 |exp:{{userInfo.profile.exp}}
11 |ver:{{userInfo.profile.ver}}
12 |tid:{{userInfo.profile.tid}}
13 |amr:{{userInfo.profile.amr}}
14 |oid:{{userInfo.profile.oid}}
15 |upn:{{userInfo.profile.upn}}
16 |unique_name:{{userInfo.profile.unique_name}}
17 |sub:{{userInfo.profile.sub}}
18 |family_name:{{userInfo.profile.family_name}}
19 |given_name:{{userInfo.profile.given_name}}
20 |pwd_exp:{{userInfo.profile.pwd_exp}}
21 |pwd_url:{{userInfo.profile.pwd_url}}
22 | 23 |
12 | Request ID: @Model.RequestId
13 |
18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |
20 |21 | Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application. 22 |
23 | -------------------------------------------------------------------------------- /B2CVideoPortal/components/Callout/Callout.Close.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |All of your favorite people
7 |Message body is optional. If help documentation is available, consider adding a link to learn more at the bottom.
14 |Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |