Internet Engineering Task Force (IETF) D. Hardt, Ed.
Request for Comments: 6749 Microsoft
Obsoletes: 5849 October 2012
Category: Standards Track
ISSN: 2070-1721
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 enum Order | |
{ | |
Ascending, | |
Descending | |
} |
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
// | |
// _oo0oo_ | |
// o8888888o | |
// 88" . "88 | |
// (| -_- |) | |
// 0\ = /0 | |
// ___/`---'\___ | |
// .' \\| |// '. | |
// / \\||| : |||// \ | |
// / _||||| -:- |||||- \ |
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 MultipleXmlDocumentationProvider : IDocumentationProvider, IModelDocumentationProvider | |
{ | |
// 多個 XPathNavigator | |
private IList<XPathNavigator> _documentNavigators = new List<XPathNavigator>(); | |
private const string TypeExpression = "/doc/members/member[@name='T:{0}']"; | |
private const string MethodExpression = "/doc/members/member[@name='M:{0}']"; | |
private const string PropertyExpression = "/doc/members/member[@name='P:{0}']"; | |
private const string FieldExpression = "/doc/members/member[@name='F:{0}']"; | |
private const string ParameterExpression = "param[@name='{0}']"; |
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
REM 建立容器 | |
docker run --name myc -it microsoft/windowsservercore cmd | |
REM 列出容器 (執行中的容器) | |
docker ps | |
REM 列出容器 (所有的的容器) |
This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling