I hereby claim:
- I am bc3tech on github.
- I am bc3tech (https://keybase.io/bc3tech) on keybase.
- I have a public key ASCSTWD7wwesrmgFZ7Ll25M2_poVYMb9NL2g_yECZytX2wo
To claim this, I am signing this object:
/// <summary> | |
/// Created to handle *named* configuration | |
/// </summary> | |
public static class ServiceCollectionExtensions | |
{ | |
/// <summary> | |
/// Registers a type that will have all of its <see cref="IConfigureOptions{TOptions}"/>, | |
/// <see cref="IPostConfigureOptions{TOptions}"/>, and <see cref="IValidateOptions{TOptions}"/> | |
/// registered. | |
/// </summary> |
I hereby claim:
To claim this, I am signing this object:
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"profiles": [ |
using Microsoft.Band; | |
using Windows.UI.Xaml.Media.Imaging; | |
namespace App | |
{ | |
enum BandType | |
{ | |
Band1, | |
Band2 | |
} |
using DomXmlDocument = Windows.Data.Xml.Dom.XmlDocument; | |
private static DomXmlDocument CombineNotifications(List<XDocument> notificationXmlsToReturn) | |
{ | |
// Per https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868253.aspx#include_both_a_square_and_wide_notification_in_the_payload | |
// Make the 'binding' elements in each siblings in the new one | |
var notificationXmlDocument = notificationXmlsToReturn.FirstOrDefault()?.ToDomXmlDocument(); | |
if (notificationXmlDocument != null) | |
{ | |
var visualTag = notificationXmlDocument.GetElementsByTagName("visual").SingleOrDefault(); |
<?xml version="1.0" encoding="utf-8"?> | |
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Keywords> | |
<Keyword>property prop propr 6</Keyword> | |
</Keywords> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> | |
</SnippetTypes> |
/// <summary> | |
/// Determines whether the instance is defined as a value for its enumeration | |
/// </summary> | |
/// <param name="input">The input.</param> | |
/// <returns></returns> | |
/// <example> | |
/// <code lang="c#"> | |
/// enum MyEnum { | |
/// Value1 = 1, | |
/// } |