diff --git a/Study.DelegateSeries.MarkdownDoc/Properties/launchSettings.json b/Study.DelegateSeries.MarkdownDoc/Properties/launchSettings.json
index 3e53cba..e68a617 100644
--- a/Study.DelegateSeries.MarkdownDoc/Properties/launchSettings.json
+++ b/Study.DelegateSeries.MarkdownDoc/Properties/launchSettings.json
@@ -4,7 +4,7 @@
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:8431",
- "sslPort": 44371
+ "sslPort": 0
}
},
"profiles": {
@@ -18,7 +18,7 @@
"Study.DelegateSeries.MarkdownDoc": {
"commandName": "Project",
"launchBrowser": true,
- "applicationUrl": "https://localhost:5001;http://localhost:5000",
+ "applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
diff --git a/Study.DelegateSeries.MarkdownDoc/wwwroot/Default.html b/Study.DelegateSeries.MarkdownDoc/wwwroot/Default.html
new file mode 100644
index 0000000..ac46516
--- /dev/null
+++ b/Study.DelegateSeries.MarkdownDoc/wwwroot/Default.html
@@ -0,0 +1,22 @@
+
+
+
+
+ 委托学习
+
+
+
+
+
+
+
+ 内容加载中.......
+
+
+
\ No newline at end of file
diff --git a/Study.DelegateSeries.MarkdownDoc/wwwroot/Index.html b/Study.DelegateSeries.MarkdownDoc/wwwroot/DelegateStudy.html
similarity index 60%
rename from Study.DelegateSeries.MarkdownDoc/wwwroot/Index.html
rename to Study.DelegateSeries.MarkdownDoc/wwwroot/DelegateStudy.html
index 66ea90a..6b791bf 100644
--- a/Study.DelegateSeries.MarkdownDoc/wwwroot/Index.html
+++ b/Study.DelegateSeries.MarkdownDoc/wwwroot/DelegateStudy.html
@@ -2,9 +2,9 @@
-
+ 委托基础
- index.html
+ 委托基础
\ No newline at end of file
diff --git a/Study.DelegateSeries.MarkdownDoc/wwwroot/DelegateStudy.md b/Study.DelegateSeries.MarkdownDoc/wwwroot/DelegateStudy.md
new file mode 100644
index 0000000..39788ec
--- /dev/null
+++ b/Study.DelegateSeries.MarkdownDoc/wwwroot/DelegateStudy.md
@@ -0,0 +1,15 @@
+# 委托系列学习
+------
+## 委托基础
+> 学习委托的概念,学习委托的基本语法和基本使用方法,
+> 主要从概念上弄透委托。其它相关概念与高级用法专门学习。
+> [详细教程](/DelegateStudy.html)
+
+## 匿名方法
+## 泛型委托
+## Fun、Action、Private
+## Lambda 表达式
+## 事件与委托
+## 接口与委托
+## 委托总结
+
diff --git a/Study.DelegateSeries.MarkdownDoc/wwwroot/script/LoadMarkdown.js b/Study.DelegateSeries.MarkdownDoc/wwwroot/script/LoadMarkdown.js
new file mode 100644
index 0000000..b03e0c1
--- /dev/null
+++ b/Study.DelegateSeries.MarkdownDoc/wwwroot/script/LoadMarkdown.js
@@ -0,0 +1,10 @@
+function LoadMarkdown(markdownfile) {
+ /// 获取用户名称
+ $.get(
+ markdownfile,
+ function (data) {
+ $('.md_render').html(marked(data));
+ },
+ "text"
+ );
+}
\ No newline at end of file
diff --git a/Study.DelegateSeries.MarkdownDoc/wwwroot/script/jquery/jquery-3.4.1.js b/Study.DelegateSeries.MarkdownDoc/wwwroot/script/jquery/jquery-3.4.1.js
new file mode 100644
index 0000000..773ad95
--- /dev/null
+++ b/Study.DelegateSeries.MarkdownDoc/wwwroot/script/jquery/jquery-3.4.1.js
@@ -0,0 +1,10598 @@
+/*!
+ * jQuery JavaScript Library v3.4.1
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright JS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2019-05-01T21:04Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var document = window.document;
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var concat = arr.concat;
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML