$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "propertyEditors", | |
"description": "An array of Umbraco Property Editors", | |
"type": "object", | |
"properties": { | |
"name": { | |
"description": "The friendly name of the property editor, shown in the Umbraco backoffice", | |
"type": "string" | |
}, |
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 Microsoft.Extensions.Options; | |
using Microsoft.AspNetCore.HttpOverrides; | |
using Lib.AspNetCore.CloudFlareConnectingIp; | |
namespace Microsoft.AspNetCore.Builder | |
{ | |
public static class CloudFlareConnectingIpExtensions | |
{ | |
public static IApplicationBuilder UseCloudFlareConnectingIp(this IApplicationBuilder app) |
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 interface ISmtpMailDeliverySettings | |
{ | |
string Host { get; } | |
int Port { get; } | |
string Username { get; } | |
string Password { get; } | |
bool EnableSSL { get; } | |
} |