Reference links example with a [number][1], or with a [link name
] or [like this].
The following references were used during the writing of this RFC:
- [and again, number][1]
- [
link name
] - [like this]
using CsvHelper.Configuration.Attributes; | |
using System; | |
namespace EPiServer.Reference.Commerce.Site.Infrastructure.Reporting | |
{ | |
public class OrderLineItemRecord | |
{ | |
[Name("Line Item Id")] | |
public int LineItemId { get; set; } |
using System; | |
using System.Collections.Generic; | |
using Bynder.ContentTypes; | |
using Newtonsoft.Json.Linq; | |
namespace Bynder | |
{ | |
// This is the default metadata mapper, you can use it as a base class or replace it | |
public class BynderAssetMetaDataMapper : IBynderAssetMetaDataMapper | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.Configuration; | |
using System.Linq; | |
using EPiServer.PlugIn; | |
using EPiServer.ServiceLocation; | |
using EPiServer.Web; | |
using EPiServer.Framework.Blobs; | |
using EPiServer.Azure.Blobs; |
#!/bin/bash | |
## This script is developed from my Raspberry Pi script - for the Orange Pi PC | |
## But see the blog - you have to use a particular version of Debian | |
## and scripts - then expand, reboot and use this script having given it execute | |
## permissions. See http://tech.scargill.net/orange-pi-pc-battle-of-the-pis/ | |
## Latest updates removing need for some manual work - thanks to Antonio Fragola. | |
# Get time as a UNIX timestamp (seconds elapsed since Jan 1, 1970 0:00 UTC) | |
startTime="$(date +%s)" |
Import-Module -Name D:\Temp\ACME-posh\ACMEPowerShell.psd1 | |
$domain = "mydomain.com" | |
$certificiatePassword = "abcd1234" | |
$email = "[email protected]" | |
$vault = "D:\Vault\{0}\{1}" -f $domain, [guid]::NewGuid() | |
mkdir $vault | |
cd $vault | |
Initialize-ACMEVault -BaseURI https://acme-v01.api.letsencrypt.org/ | |
New-ACMERegistration -Contacts mailto:$email |
{ | |
"d":{ | |
"__type":"UGC.Logic.Web.ResponseMessage", | |
"Success":true, | |
"ResponseHeader":"Success", | |
"ResponseBody":"", | |
"ReturnData":[ | |
{ | |
"StartHour":10, | |
"StartMinute":0, |