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
<!-- https://github.com/vedmack/yadcf/issues/680 --> | |
<html> | |
<head> | |
<title>DTYADCF</title> | |
<link href="https://cdn.datatables.net/v/dt/jq-3.7.0/dt-2.0.2/datatables.min.css" rel="stylesheet"> | |
<script src="https://cdn.datatables.net/v/dt/jq-3.7.0/dt-2.0.2/datatables.min.js"></script> | |
<style> | |
.hide { |
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
{ | |
"#info": { | |
"title": "Hello World 2!!!", | |
"updated": "Nov 24 2020" | |
}, | |
"img": "this is the  and this is the [link](#)", | |
"menu": ["[Home](#section-1) [Section 1](#section-1) [Section 2](#section-2) [Page 1](/about)"], | |
"title": "# Hello World 2!!!", | |
"subtitle": [ | |
"_It is a long **established fact** that a reader will be distracted by the readable content of a page when looking at its layout._" |
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
public class ForwardedForKnownNetworkOptions | |
{ | |
public string Prefix { get; set; } | |
public int PrefixLength { get; set; } | |
} |
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
// | |
// This is a combination of two things: | |
// | |
// A slight alteration of the implementation of DefaultAuthorizationPolicyProvider that creates a new PermissionRequirement similar to the PolicyServer's for later use with IPolicyServerRuntimeClient in a requirement handler. | |
// But only if theres a subject claim. | |
// | |
// A slight alteration of the ClaimsAuthorizationRequirement. | |
// Works identically to the default implemenation, but only if theres no subject claim. | |
// |