This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<system.diagnostics> | |
<trace autoflush="true" /> | |
<sources> | |
<source name="System.Net"> | |
<listeners> | |
<add name="System.Net"/> | |
</listeners> | |
</source> | |
<source name="System.Net.HttpListener"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In the box at the top: | |
//cdn.auth0.com/js/lock/10.13.0/lock.min.js | |
Code follows: | |
var domain = 'xxx.auth0.com'; | |
var clientID = '1gB0...wB7FjSa5P'; | |
var options = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<TrustFrameworkPolicy | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
xmlns="http://schemas.microsoft.com/online/cpim/schemas/2013/06" | |
PolicySchemaVersion="0.3.0.0" | |
TenantId="my-b2c.onmicrosoft.com" | |
PolicyId="B2C_1A_PasswordReset" | |
PublicPolicyUri="http://my-b2c.onmicrosoft.com/B2C_1A_PasswordReset"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void button1_Click(object sender, EventArgs e) | |
{ | |
System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage(); | |
try | |
{ | |
mailMessage.From = new System.Net.Mail.MailAddress("[email protected]", "[email protected]"); | |
mailMessage.To.Add("my-email"); | |
mailMessage.Subject = "Hullo"; | |
mailMessage.Body = "This is a test"; | |
mailMessage.IsBodyHtml = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.IdentityServer.ClaimsPolicy.Engine.AttributeStore; | |
using System; | |
using System.Collections.Generic; | |
using System.IdentityModel; | |
namespace CAStore | |
{ | |
public class CAS : IAttributeStore | |
{ | |
public IAsyncResult BeginExecuteQuery(string query, string[] parameters, AsyncCallback callback, object state) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": [], | |
"info": { | |
"name": "Maths WebAPI", | |
"_postman_id": "47568f67-6685-f39a-8d7f-2cd76a9b281a", | |
"description": "", | |
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
}, | |
"item": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<configSections> | |
<section name="microsoft.identityModel" type="Microsoft.IdentityModel.Configuration.MicrosoftIdentityModelSection, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
</configSections> | |
<location path="FederationMetadata"> | |
<system.web> | |
<authorization> | |
<allow users="*" /> | |
</authorization> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using Swashbuckle; | |
using Swashbuckle.Swagger; | |
using System.Web.Http.Description; | |
namespace TodoListService |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using Swashbuckle; | |
using Swashbuckle.Swagger; | |
using System.Web.Http.Description; | |
namespace TodoListService |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": [], | |
"info": { | |
"name": "ADFS Public - Implicit - ADFS 4.0 Release", | |
"_postman_id": "44d70984-95c6-375e-af63-ff5bd98e8238", | |
"description": "", | |
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" | |
}, | |
"item": [ | |
{ |
NewerOlder