已修改28个文件
已添加77个文件
已删除2个文件
| | |
| | | using Newtonsoft.Json.Linq; |
| | | using Dapper; |
| | | using FastReport; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using Newtonsoft.Json.Linq; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Data; |
| | | using System.Linq; |
| | | using System.Management; |
| | | using System.Net; |
| | | using System.Net.Http; |
| | | using System.Threading.Tasks; |
| | | using System.Web; |
| | | using System.Web.Http; |
| | | using VueWebApi.DLL.BLL; |
| | |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[FastReportæå°] |
| | | [Route(template: "PrintOrder")] |
| | | [HttpPost] |
| | | [HiddenApi] |
| | | public void PrintOrder([FromBody] JObject obj) |
| | | { |
| | | try |
| | | { |
| | | string username = obj["username"].ToString(); //ç»å½ç¨æ· |
| | | string mesordercode = obj["mesordercode"].ToString(); //å·¥åç¶æç |
| | | PrintMessage dt = GridReportBLL.MesOrderFastReportPrintSearch(username, mesordercode); |
| | | if (dt.data == null) |
| | | { |
| | | throw new Exception(dt.Message); |
| | | } |
| | | Report report = new Report(); |
| | | //report.PrintSettings.Printer = ((String)report.GetColumnValue("Microsoft XPS Document Writer")); |
| | | //é»è®¤ä¸æ¾ç¤ºæå°æºéæ©é¡µé¢ |
| | | //string filename = this.Server.MapPath("~/bin/YLDH.frx");//è°ç¨æ¥è¡¨ |
| | | //report.PrintSettings.Printer = ((String)report.GetColumnValue("Microsoft XPS Document Writer")); |
| | | //report.PrintSettings.Printer = ((String)report.GetColumnValue("192.168.1.109/Canon G2010 series")); |
| | | report.PrintSettings.Printer = ((String)report.GetColumnValue("")); //è·åæ¬å°é»è®¤æå°æº |
| | | string reportLabel = System.Web.HttpContext.Current.Server.MapPath("/grf/Rework.frx"); |
| | | LogHelper.WriteLogData("æä»¶å°åï¼"+ reportLabel); |
| | | //FastReport.EnvironmentSettings eSet = new EnvironmentSettings(); |
| | | //eSet.ReportSettings.ShowProgress = false; |
| | | report.Load(reportLabel); |
| | | report.PrintSettings.ShowDialog = true; |
| | | //report.Load(filename); |
| | | dt.data.TableName = "Table1"; // ä¸å®è¦è®¾ç½®è¡¨åç§° |
| | | DataSet ds = new DataSet(); |
| | | ds.Tables.Add(dt.data); |
| | | report.RegisterData(ds); |
| | | report.Print(); |
| | | report.Dispose(); |
| | | LogHelper.WriteLogData("åºååéè¿5"); |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | |
| | | throw; |
| | | } |
| | | |
| | | } |
| | | #endregion |
| | | } |
| | | } |
| | |
| | | /// <summary> |
| | | /// Excel导å
¥æä»¶ä¸ä¼ ãæ¨¡æ¿éªè¯ãæ°æ®éãéªè¯ |
| | | /// </summary> |
| | | /// <param name="files">ä¸ä¼ æä»¶</param> |
| | | /// <param name="FileCode">æä»¶ç¼ç </param> |
| | | /// <param name="files">ä¸ä¼ æä»¶</param> |
| | | /// <returns></returns> |
| | | [Route(template: "ExcelModelCheck")] |
| | | [HttpPost] |
| | |
| | | else if (Directory.Exists(path) == false)//妿ä¸åå¨å°±å建fileæä»¶å¤¹ |
| | | { |
| | | Directory.CreateDirectory(path); //æ·»å æä»¶å¤¹ |
| | | files.SaveAs(savePath); //å°éæ©çæä»¶ä¿åå°æå®æä»¶å¤¹ä¸ |
| | | mes.code = "200"; |
| | | mes.Message = "æä»¶ä¸ä¼ æåï¼"; |
| | | } |
| | | else if (Directory.Exists(savePath) == true) //妿åå¨éåæä»¶å°±æç¤º |
| | | { |
| | |
| | | /// <param name="FileCode">æä»¶ç¼ç </param> |
| | | /// <param name="FileName">æä»¶åç§°</param> |
| | | /// <returns></returns> |
| | | [HiddenApi] |
| | | [Route(template: "ExcelCheckData")] |
| | | [HttpPost] |
| | | public HttpResponseMessage ExcelCheckData(string FileCode = null, string FileName = null) |
| | | { |
| | | string message = ""; |
| | |
| | | /// <param name="FileCode">æä»¶ç¼ç </param> |
| | | /// <param name="FileName">æä»¶åç§°</param> |
| | | /// <returns></returns> |
| | | [HiddenApi] |
| | | [Route(template: "ExcelImportSubmit")] |
| | | [HttpPost] |
| | | public HttpResponseMessage ExcelImportSubmit(string FileCode = null, string FileName = null) |
| | | { |
| | | var username = HttpContext.Current.Request.Cookies["admin"].Value.ToString(); //ç»å½ç¨æ·å |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Net; |
| | | using System.Net.Http; |
| | | using System.Web.Http; |
| | | using VueWebApi.DLL.BLL; |
| | | using VueWebApi.Models; |
| | | using VueWebApi.Tools; |
| | | |
| | | namespace VueWebApi.Controllers |
| | | { |
| | | [RoutePrefix(prefix: "api/KanBanManagerent")] |
| | | [ControllerGroup("çµåçæ¿", "å¨çº¿æ¥å£")] |
| | | public class KanBanManagerentController : ApiController |
| | | { |
| | | //å®ä¹å
¨å±ä¿¡æ¯è¿ååé |
| | | ToMessage mes = new ToMessage(); |
| | | RedisHelper redis = new RedisHelper(); |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,çäº§è½¦é´æ¥æ¾äº§çº¿æ¥å£] |
| | | /// <summary> |
| | | /// 大å²è½¦é´ç»¼åçæ¿,çäº§è½¦é´æ¥æ¾äº§çº¿æ¥å£ |
| | | /// </summary> |
| | | /// <param name="shopcode">车é´ç¼ç </param> |
| | | /// <returns></returns> |
| | | [Route(template: "ShopSearchLine")] |
| | | [HttpGet] |
| | | public HttpResponseMessage ShopSearchLine(string shopcode) |
| | | { |
| | | mes = KanBanManagerentBLL.ShopSearchLine(shopcode); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å·¦ä¸äº§çº¿å 工任塿¥å£] |
| | | /// <summary> |
| | | /// 大å²è½¦é´ç»¼åçæ¿,å·¦ä¸äº§çº¿å 工任塿¥å£ |
| | | /// </summary> |
| | | /// <param name="json">æäº¤æ°æ®(åèå·¥åºå®ä¹å
³èå·¥ä½ç«æäº¤)</param> |
| | | /// <returns></returns> |
| | | [Route(template: "LineSearchTopLeftData")] |
| | | [HttpGet] |
| | | public HttpResponseMessage LineSearchTopLeftData(List<ObjectData> json) |
| | | { |
| | | mes = KanBanManagerentBLL.LineSearchTopLeftData(json); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å·¦ä¸å表æ¥å£] |
| | | /// <summary> |
| | | /// 大å²è½¦é´ç»¼åçæ¿,å·¦ä¸å表æ¥å£ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route(template: "LineSearchBottomLeftData")] |
| | | [HttpGet] |
| | | public HttpResponseMessage LineSearchBottomLeftData() |
| | | { |
| | | mes = KanBanManagerentBLL.LineSearchBottomLeftData(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£] |
| | | /// <summary> |
| | | /// 大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route(template: "LineSearchTopRightData")] |
| | | [HttpGet] |
| | | public HttpResponseMessage LineSearchTopRightData() |
| | | { |
| | | mes = KanBanManagerentBLL.LineSearchTopRightData(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£] |
| | | [Route(template: "LineSearchBottomRightData")] |
| | | [HttpGet] |
| | | public HttpResponseMessage LineSearchBottomRightData() |
| | | { |
| | | mes = KanBanManagerentBLL.LineSearchBottomRightData(); |
| | | return TJson.toJson(mes); |
| | | } |
| | | #endregion |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Web; |
| | | |
| | | namespace VueWebApi.DDKanBanModel |
| | | { |
| | | public class ShopTopLeft |
| | | { |
| | | public string linecode { get; set; } |
| | | public string linename { get; set; } |
| | | public string lineworkcont { get; set; } |
| | | public List<TreeOne> children { get; set; } |
| | | } |
| | | public class TreeOne |
| | | { |
| | | public string saleordercode { set; get; } |
| | | public string workcode { set; get; } |
| | | public string partnumber { set; get; } |
| | | public string partname { set; get; } |
| | | public string partspec { set; get; } |
| | | public string uom { get; set; } |
| | | public string qty { get; set; } |
| | | public List<TreeTwo> children { get; set; } |
| | | } |
| | | public class TreeTwo |
| | | { |
| | | public string stepseq { set; get; } |
| | | public string stepcode { set; get; } |
| | | public string stepname { set; get; } |
| | | public string planqty { set; get; } |
| | | public string goodqty { set; get; } |
| | | public string ngqty { set; get; } |
| | | } |
| | | } |
| | |
| | | return GridReportDAL.MesOrderPrintSearch(username,mesordercode); |
| | | } |
| | | #endregion |
| | | |
| | | #region[FastReportæå°] |
| | | public static PrintMessage MesOrderFastReportPrintSearch(string username, string mesordercode) |
| | | { |
| | | return GridReportDAL.MesOrderFastReportPrintSearch(username, mesordercode); |
| | | } |
| | | #endregion |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Web; |
| | | using VueWebApi.DLL.DAL; |
| | | using VueWebApi.Models; |
| | | using VueWebApi.Tools; |
| | | |
| | | namespace VueWebApi.DLL.BLL |
| | | { |
| | | public class KanBanManagerentBLL |
| | | { |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,çäº§è½¦é´æ¥æ¾äº§çº¿æ¥å£] |
| | | public static ToMessage ShopSearchLine(string shopcode) |
| | | { |
| | | return KanBanManagerentDAL.ShopSearchLine(shopcode); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å·¦ä¸äº§çº¿å 工任塿¥å£] |
| | | public static ToMessage LineSearchTopLeftData(List<ObjectData> json) |
| | | { |
| | | return KanBanManagerentDAL.LineSearchTopLeftData(json); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å·¦ä¸å表æ¥å£] |
| | | public static ToMessage LineSearchBottomLeftData() |
| | | { |
| | | return KanBanManagerentDAL.LineSearchBottomLeftData(); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£] |
| | | public static ToMessage LineSearchTopRightData() |
| | | { |
| | | return KanBanManagerentDAL.LineSearchTopRightData(); |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£] |
| | | public static ToMessage LineSearchBottomRightData() |
| | | { |
| | | return KanBanManagerentDAL.LineSearchBottomRightData(); |
| | | } |
| | | #endregion |
| | | } |
| | | } |
| | |
| | | case "4"://徿¥åä½ |
| | | Message = ImportExcelData.Four(savePath, out StuCode); |
| | | break; |
| | | case "6.1"://ä»åºå®ä¹ |
| | | case "6"://ä»åºãåºä½å®ä¹ |
| | | Message = ImportExcelData.SixOne(savePath, out StuCode); |
| | | break; |
| | | case "6.2"://åºä½å®ä¹ |
| | | Message = ImportExcelData.SixTwo(savePath, out StuCode); |
| | | break; |
| | | case "7"://容å¨å®ä¹ |
| | | Message = ImportExcelData.Seven(savePath, out StuCode); |
| | |
| | | case "3"://工使¸
å |
| | | list = ImportExcelData.ThreeData(savePath, out stuCode, out message, out count); |
| | | break; |
| | | case "4"://便¹æ¸
å |
| | | case "4"://徿¥å使¸
å |
| | | list = ImportExcelData.FourData(savePath, out stuCode, out message, out count); |
| | | break; |
| | | case "5"://å®¢æ·æ¸
å |
| | | list = ImportExcelData.FiveData(savePath, out stuCode, out message, out count); |
| | | break; |
| | | case "6.1"://ä»åºå®ä¹ |
| | | case "6"://ä»åºãåºä½å®ä¹ |
| | | list = ImportExcelData.SixOneData(savePath, out stuCode, out message, out count); |
| | | break; |
| | | case "6.2"://åºåºå®ä¹ |
| | | list = ImportExcelData.SixTwoData(savePath, out stuCode, out message, out count); |
| | | break; |
| | | case "6.3"://åºä½å®ä¹ |
| | | list = ImportExcelData.SixThreeData(savePath, out stuCode, out message, out count); |
| | | break; |
| | | case "7"://容å¨å®ä¹ |
| | | list = ImportExcelData.SevenData(savePath, out stuCode, out message, out count); |
| | |
| | | case "3"://工使¸
å |
| | | Message = ImportExcelData.ThreeSubmit(savePath, User, out StuCode); |
| | | break; |
| | | case "4"://便¹æ¸
å |
| | | case "4"://徿¥å使¸
å |
| | | Message = ImportExcelData.FourSubmit(savePath, User, out StuCode); |
| | | break; |
| | | case "5"://å®¢æ·æ¸
å |
| | | Message = ImportExcelData.FiveSubmit(savePath, User, out StuCode); |
| | | break; |
| | | case "6.1"://ä»åºå®ä¹ |
| | | case "6"://ä»åºãåºä½å®ä¹ |
| | | Message = ImportExcelData.SixOneSubmit(savePath, User, out StuCode); |
| | | break; |
| | | case "6.2"://åºåºå®ä¹ |
| | | Message = ImportExcelData.SixTwoSubmit(savePath, User, out StuCode); |
| | | break; |
| | | case "6.3"://åºä½å®ä¹ |
| | | Message = ImportExcelData.SixThreeSubmit(savePath, User, out StuCode); |
| | | break; |
| | | case "7"://容å¨å®ä¹ |
| | | Message = ImportExcelData.SevenSubmit(savePath, User, out StuCode); |
| | |
| | | public static GridMessage gidmes = new GridMessage(); //å®ä¹å
¨å±è¿åä¿¡æ¯å¯¹è±¡ |
| | | public static string strProcName = ""; //å®ä¹å
¨å±sqlåé |
| | | public static List<SqlParameter> listStr = new List<SqlParameter>(); //å®ä¹å
¨å±åæ°éå |
| | | |
| | | public static SqlParameter[] parameters; //å®ä¹å
¨å±SqlParameteråæ°æ°ç» |
| | | |
| | | |
| | |
| | | return mes; |
| | | } |
| | | #endregion |
| | | |
| | | #region[FastReportæå°] |
| | | public static PrintMessage MesOrderFastReportPrintSearch(string username, string mesordercode) |
| | | { |
| | | string sql = ""; |
| | | var dynamicParams = new DynamicParameters(); |
| | | PrintMessage ms = new PrintMessage(); |
| | | //è·åå·¥åå·¥åºä»»å¡æ°æ® |
| | | sql = @"select A.seq,A.wo_code,P.partcode,P.partname,P.partspec,R.name as routename,M.plan_qty as orderqty,@username as lm_user,@createdate as lm_date, |
| | | B.stepcode,B.stepname,A.plan_qty,(case when A.good_qty=0 then '' end) as good_qty,(case when A.ng_qty=0 then '' end) as ng_qty,A.wo_code+';'+B.stepcode as stepqrcode |
| | | from TK_Wrk_Step A |
| | | left join TK_Wrk_Man M on A.wo_code=M.wo_code |
| | | left join TFlw_Rout R on A.route_code=R.code |
| | | left join TMateriel_Info P on M.materiel_code=P.partcode |
| | | left join TStep B on A.step_code=B.stepcode |
| | | where A.wo_code=@mesordercode "; |
| | | dynamicParams.Add("@username", username); |
| | | dynamicParams.Add("@createdate", DateTime.Now.ToString()); |
| | | dynamicParams.Add("@mesordercode", mesordercode); |
| | | DataTable data = DapperHelper.selectdata(sql, dynamicParams); |
| | | if (data.Rows.Count > 0) |
| | | { |
| | | ms.code = "200"; |
| | | ms.Message = "æ¥è¯¢æåï¼"; |
| | | ms.data = data; |
| | | } |
| | | else |
| | | { |
| | | ms.code = "300"; |
| | | ms.Message = "æ çäº§ä»»å¡æ°æ®ï¼"; |
| | | ms.data = null; |
| | | } |
| | | |
| | | return ms; |
| | | } |
| | | #endregion |
| | | |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using Dapper; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Data; |
| | | using System.Data.SqlClient; |
| | | using System.Linq; |
| | | using System.Web; |
| | | using VueWebApi.DDKanBanModel; |
| | | using VueWebApi.Models; |
| | | using VueWebApi.Tools; |
| | | |
| | | namespace VueWebApi.DLL.DAL |
| | | { |
| | | public class KanBanManagerentDAL |
| | | { |
| | | public static DataTable dt; //å®ä¹å
¨å±åédt |
| | | public static bool res; //å®ä¹å
¨å±åédt |
| | | public static ToMessage mes = new ToMessage(); //å®ä¹å
¨å±è¿åä¿¡æ¯å¯¹è±¡ |
| | | public static string strProcName = ""; //å®ä¹å
¨å±sqlåé |
| | | public static List<SqlParameter> listStr = new List<SqlParameter>(); //å®ä¹å
¨å±åæ°éå |
| | | public static SqlParameter[] parameters; //å®ä¹å
¨å±SqlParameteråæ°æ°ç» |
| | | |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,çäº§è½¦é´æ¥æ¾äº§çº¿æ¥å£] |
| | | public static ToMessage ShopSearchLine(string shopcode) |
| | | { |
| | | string sql = ""; |
| | | string search = ""; |
| | | var dynamicParams = new DynamicParameters(); |
| | | try |
| | | { |
| | | if (shopcode != "" && shopcode != null) //车é´ç¼ç ä¸ä¸ºç©º |
| | | { |
| | | search += "where wksp_code=@shopcode "; |
| | | dynamicParams.Add("@shopcode", shopcode); |
| | | } |
| | | //车é´ç¼ç è·åäº§çº¿ä¿¡æ¯ |
| | | sql = @"select code ,name from TEqpInfo " + search; |
| | | var data = DapperHelper.selectdata(sql, dynamicParams); |
| | | mes.code = "200"; |
| | | mes.Message = "æ¥è¯¢æå!"; |
| | | mes.data = data; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | mes.code = "300"; |
| | | mes.count = 0; |
| | | mes.Message = e.Message; |
| | | mes.data = null; |
| | | } |
| | | return mes; |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å·¦ä¸äº§çº¿å 工任塿¥å£] |
| | | public static ToMessage LineSearchTopLeftData(List<ObjectData> json) |
| | | { |
| | | string sql = ""; |
| | | string search = ""; |
| | | var dynamicParams = new DynamicParameters(); |
| | | try |
| | | { |
| | | if (json == null || json.Count <= 0) //产线ç¼ç ä¸ä¸ºç©º |
| | | { |
| | | List<ShopTopLeft> list = new List<ShopTopLeft>(); |
| | | //è·åäº§çº¿ä¿¡æ¯ |
| | | for (int i = 0; i < json.Count; i++) |
| | | { |
| | | ShopTopLeft line = new ShopTopLeft(); |
| | | line.linecode = json[i].code; |
| | | line.linename = json[i].name; |
| | | //è·å产线ä¸å¼å·¥æ»åé |
| | | sql = @"select COUNT(*) cont from( |
| | | select distinct B.rout_code,M.wo_code from TFlw_Rteqp A |
| | | inner join TFlw_Rtdt B on A.step_code=B.step_code |
| | | inner join TK_Wrk_Man M on B.rout_code=M.route_code |
| | | where M.status<>'CLOSED' and M.is_delete<>'1' and A.eqp_code=@linecode) as A"; |
| | | dynamicParams.Add("@linecode", json[i].code); |
| | | var data = DapperHelper.selectdata(sql, dynamicParams); |
| | | if (data.Rows.Count > 0 && decimal.Parse(data.Rows[0]["CONT"].ToString())>0) |
| | | { |
| | | line.lineworkcont=data.Rows[0]["CONT"].ToString(); //产线æ»åé |
| | | line.children = new List<TreeOne>(); |
| | | //æ¥è¯¢äº§çº¿ä¸å·¥åä¿¡æ¯ |
| | | sql = @"select distinct E.saleOrderCode,P.wo_code,P.plan_qty,M.partcode,M.partname,M.partspec,T.name as uomname from TFlw_Rteqp A |
| | | inner join TFlw_Rtdt B on A.step_code=B.step_code |
| | | inner join TK_Wrk_Man P on B.rout_code=P.route_code |
| | | left join TMateriel_Info M on P.materiel_code=M.partcode |
| | | left join TUom T on M.uom_code=T.code |
| | | left join TKimp_Ewo E on P.m_po=E.wo |
| | | where P.status<>'CLOSED' and P.status<>'NEW' and P.is_delete<>'1' and A.eqp_code=@linecode"; |
| | | dynamicParams.Add("@linecode", json[i].code); |
| | | var data0 = DapperHelper.selectdata(sql, dynamicParams); |
| | | if (data0.Rows.Count > 0) |
| | | { |
| | | for (int j = 0; j < data0.Rows.Count; j++) |
| | | { |
| | | string saleOrderCode = data0.Rows[j]["SALEORDERCODE"].ToString();//éå®è®¢åå· |
| | | string wo_code = data0.Rows[j]["WO_CODE"].ToString();//å·¥åå· |
| | | string plan_qty = data0.Rows[j]["PLAN_QTY"].ToString();//任塿°é |
| | | string partcode = data0.Rows[j]["PARTCODE"].ToString();//产åç¼ç |
| | | string partname = data0.Rows[j]["PARTNAME"].ToString();//产ååç§° |
| | | string partspec = data0.Rows[j]["PARTSPEC"].ToString();//产åè§æ ¼ |
| | | string uomname = data0.Rows[j]["UOMNAME"].ToString();//åä½åç§° |
| | | TreeOne lineone = new TreeOne(); |
| | | lineone.saleordercode = saleOrderCode; |
| | | lineone.workcode = wo_code; |
| | | lineone.qty = plan_qty; |
| | | lineone.partnumber = partcode; |
| | | lineone.partname = partname; |
| | | lineone.partspec = partspec; |
| | | lineone.uom = uomname; |
| | | line.children.Add(lineone); |
| | | lineone.children = new List<TreeTwo>(); |
| | | |
| | | //æ¥æ°å·¥åä¸å·¥åºä¿¡æ¯ |
| | | sql = @"select A.seq,T.stepcode,T.stepname,A.plan_qty,A.good_qty,A.ng_qty |
| | | from TK_Wrk_Step A |
| | | left join TStep T on A.step_code=T.stepcode |
| | | where A.wo_code=@wo_code"; |
| | | dynamicParams.Add("@linecode", wo_code); |
| | | var data1 = DapperHelper.selectdata(sql, dynamicParams); |
| | | for (int k = 0; k < data1.Rows.Count; k++) |
| | | { |
| | | string stepseq= data1.Rows[k]["SEQ"].ToString();//å·¥åºåºå· |
| | | string stepcode = data1.Rows[k]["STEPCODE"].ToString();//å·¥åºç¼ç |
| | | string stepname = data1.Rows[k]["STEPNAME"].ToString();//å·¥åºåç§° |
| | | string planqty = data1.Rows[k]["PLAN_QTY"].ToString();//任塿°é |
| | | string good_qty = data1.Rows[k]["GOOD_QTY"].ToString();//æ¥å·¥æ°é |
| | | string ng_qty = data1.Rows[k]["NG_QTY"].ToString();//ä¸è¯æ°é |
| | | TreeTwo linetwo = new TreeTwo(); |
| | | linetwo.stepseq = stepseq; |
| | | linetwo.stepcode = stepcode; |
| | | linetwo.stepname = stepname; |
| | | linetwo.planqty = planqty; |
| | | linetwo.goodqty = good_qty; |
| | | linetwo.ngqty = ng_qty; |
| | | lineone.children.Add(linetwo); |
| | | } |
| | | } |
| | | list.Add(line); |
| | | } |
| | | else |
| | | { |
| | | mes.code = "300"; |
| | | mes.Message = "å½åäº§çº¿ä¸æ å¨ç产任å¡!"; |
| | | mes.data = null; |
| | | return mes; |
| | | } |
| | | } |
| | | else |
| | | { |
| | | mes.code = "300"; |
| | | mes.Message = "å½åäº§çº¿ä¸æ å¨ç产任å¡!"; |
| | | mes.data = null; |
| | | return mes; |
| | | } |
| | | } |
| | | } |
| | | else |
| | | { |
| | | mes.code = "300"; |
| | | mes.Message = "äº§çº¿åæ°ä¸è½ä¸ºç©º!"; |
| | | mes.data = null; |
| | | } |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | mes.code = "300"; |
| | | mes.count = 0; |
| | | mes.Message = e.Message; |
| | | mes.data = null; |
| | | } |
| | | return mes; |
| | | } |
| | | #endregion\ |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å·¦ä¸å表æ¥å£] |
| | | public static ToMessage LineSearchBottomLeftData() |
| | | { |
| | | string sql = ""; |
| | | try |
| | | { |
| | | //è·åä»»å¡åè¡¨ä¿¡æ¯ |
| | | sql = @"select A.*,ROW_NUMBER() OVER(ORDER BY (case when A.warning<=2 then A.planenddate end) asc ,A.planstartdate asc) AS RowNum from( |
| | | select A.status,A.lm_date,E.saleOrderCode,A.wo_code,M.partcode,M.partname,M.partspec,U.name, |
| | | A.plan_qty,B.good_qty,B.ng_qty,E.planstartdate,E.planenddate, datediff(day,getdate(),E.planenddate) warning |
| | | from TK_Wrk_Man A |
| | | inner join TK_Wrk_Step B on A.wo_code=B.wo_code |
| | | inner join TKimp_Ewo E on A.m_po=E.wo |
| | | left join TMateriel_Info M on A.materiel_code=M.partcode |
| | | left join TUom U on M.uom_code=U.code |
| | | where A.status<>'CLOSED' and A.is_delete<>'1' and B.isend='Y' |
| | | )as A "; |
| | | var data = DapperHelper.selecttable(sql); |
| | | mes.code = "200"; |
| | | mes.Message = "æ¥è¯¢æå!"; |
| | | mes.data = data; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | mes.code = "300"; |
| | | mes.count = 0; |
| | | mes.Message = e.Message; |
| | | mes.data = null; |
| | | } |
| | | return mes; |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£] |
| | | public static ToMessage LineSearchTopRightData() |
| | | { |
| | | string sql = ""; |
| | | var dynamicParams = new DynamicParameters(); |
| | | try |
| | | { |
| | | //è·åäº§åæ¥å·¥top5ä¿¡æ¯ |
| | | sql = @"select top 5 A.partname,isnull(sum(A.good_qty),0) as good_qty from( |
| | | select M.partname,A.good_qty from TK_Wrk_Record A |
| | | inner join TK_Wrk_Step S on A.wo_code=S.wo_code and A.step_code=S.step_code |
| | | inner join TMateriel_Info M on A.materiel_code=M.partcode |
| | | where A.style='B' and S.isend='Y' |
| | | union all |
| | | select M.partname,A.sqty as good_qty from TK_Wrk_OutRecord A |
| | | inner join TK_Wrk_Step S on A.wo_code=S.wo_code and A.step_code=S.step_code |
| | | inner join TMateriel_Info M on A.materiel_code=M.partcode |
| | | where A.style='S' and S.isend='Y' |
| | | ) as A group by A.partname order by good_qty desc"; |
| | | var data = DapperHelper.selecttable(sql); |
| | | mes.code = "200"; |
| | | mes.Message = "æ¥è¯¢æå!"; |
| | | mes.data = data; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | mes.code = "300"; |
| | | mes.count = 0; |
| | | mes.Message = e.Message; |
| | | mes.data = null; |
| | | } |
| | | return mes; |
| | | } |
| | | #endregion |
| | | |
| | | #region[大å²è½¦é´ç»¼åçæ¿,å³ä¸topæè¡æ¥å£] |
| | | public static ToMessage LineSearchBottomRightData() |
| | | { |
| | | string sql = ""; |
| | | var dynamicParams = new DynamicParameters(); |
| | | try |
| | | { |
| | | //è·åæ¥å·¥ä¸è¯top5ä¿¡æ¯ |
| | | sql = @"select isnull(COUNT(checkitem_name),0) cont,checkitem_name from TStepCheckRecordSub |
| | | group by checkitem_name order by cont desc"; |
| | | var data = DapperHelper.selecttable(sql); |
| | | mes.code = "200"; |
| | | mes.Message = "æ¥è¯¢æå!"; |
| | | mes.data = data; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | mes.code = "300"; |
| | | mes.count = 0; |
| | | mes.Message = e.Message; |
| | | mes.data = null; |
| | | } |
| | | return mes; |
| | | } |
| | | #endregion |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | ãæ¶é´ã:2022-07-26 15:58:17,388 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 15:58:17 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 15:58:17,678 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 15:58:17 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 15:58:17,982 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 15:58:17 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 15:58:18,353 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 15:58:18 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 15:58:18,883 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 15:58:18 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:37:51,787 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 16:37:51 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:37:52,013 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 16:37:52 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:37:53,195 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 16:37:53 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:37:53,699 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 16:37:53 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:37:54,063 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 16:37:54 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:37:55,092 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿4 |
| | | æ¶é´ï¼2022-07-26 16:37:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 16:38:34,697 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 10 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿5 |
| | | æ¶é´ï¼2022-07-26 16:38:34 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:33:57,474 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 19:33:57 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:33:57,851 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 19:33:57 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:33:58,271 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 19:33:58 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:33:58,583 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 19:33:58 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:33:59,181 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 19:33:59 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:34:03,126 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿4 |
| | | æ¶é´ï¼2022-07-26 19:34:03 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:23,177 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 19:37:23 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:23,546 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 19:37:23 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:23,906 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 19:37:23 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:24,187 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 19:37:24 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:25,243 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 19:37:25 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:27,175 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿4 |
| | | æ¶é´ï¼2022-07-26 19:37:27 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:37:29,192 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿5 |
| | | æ¶é´ï¼2022-07-26 19:37:29 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:25,163 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 19:42:25 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:25,556 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 19:42:25 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:25,822 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 19:42:25 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:26,355 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 19:42:26 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:26,726 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 19:42:26 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:27,668 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿4 |
| | | æ¶é´ï¼2022-07-26 19:42:27 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:42:35,661 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿5 |
| | | æ¶é´ï¼2022-07-26 19:42:35 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:05,984 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 19:58:05 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:06,407 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 19:58:06 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:07,342 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 19:58:07 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:07,947 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 19:58:07 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:08,513 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 19:58:08 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:09,571 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿4 |
| | | æ¶é´ï¼2022-07-26 19:58:09 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 19:58:15,703 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 18 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿5 |
| | | æ¶é´ï¼2022-07-26 19:58:15 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,272 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿0 |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,427 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿ |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,432 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:æä»¶å°åï¼D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\grf\Rework.frx |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,434 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿1 |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,521 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿2 |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,524 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿3 |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:49:55,530 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿4 |
| | | æ¶é´ï¼2022-07-26 20:49:55 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 20:50:27,311 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 9 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿5 |
| | | æ¶é´ï¼2022-07-26 20:50:27 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 21:18:24,955 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 17 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:æä»¶å°åï¼D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\grf\Rework.frx |
| | | æ¶é´ï¼2022-07-26 21:18:24 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 21:19:15,553 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 15 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:æä»¶å°åï¼D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\grf\Rework.frx |
| | | æ¶é´ï¼2022-07-26 21:19:15 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 21:20:37,841 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:æä»¶å°åï¼D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\grf\Rework.frx |
| | | æ¶é´ï¼2022-07-26 21:20:37 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | | ãæ¶é´ã:2022-07-26 21:20:38,213 |
| | | ã级å«ã:ERROR |
| | | ãç±»åã:æ¥å¿è®°å½ |
| | | ã线ç¨IDã: 19 |
| | | ãæä»¶å°åã:D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Tools\LogHelper.cs 第37è¡ |
| | | ãæ¥å¿å
容ã:åºååéè¿5 |
| | | æ¶é´ï¼2022-07-26 21:20:38 |
| | | ãæ¥è®°è¯¦ç»ãï¼ |
| | | --------------------------------------------------------------------------------------------------------------- |
| | |
| | | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| | | <PropertyGroup> |
| | | <_PublishTargetUrl>D:\ç½ç«åå¸\XKDMesApi</_PublishTargetUrl> |
| | | <History>True|2022-07-21T09:53:41.1464086Z;True|2022-07-21T17:43:33.5311479+08:00;True|2022-07-21T16:09:07.7687640+08:00;True|2022-07-21T16:04:47.9317019+08:00;True|2022-07-21T15:58:21.2359033+08:00;True|2022-07-21T15:56:07.7425829+08:00;True|2022-07-21T15:51:34.7108381+08:00;True|2022-07-21T15:48:57.5735708+08:00;True|2022-07-21T15:44:25.8205030+08:00;True|2022-07-21T15:25:51.4222269+08:00;True|2022-07-21T15:22:36.8818295+08:00;True|2022-07-21T15:19:28.8532774+08:00;True|2022-07-21T14:57:45.7532568+08:00;True|2022-07-21T11:16:12.0900762+08:00;True|2022-07-21T10:10:40.4714948+08:00;True|2022-07-21T10:00:19.5258058+08:00;True|2022-07-14T14:34:28.5093226+08:00;True|2022-07-14T13:59:59.7754985+08:00;True|2022-07-14T12:46:29.6685284+08:00;True|2022-07-14T09:22:25.9079652+08:00;True|2022-07-14T09:22:04.6797478+08:00;True|2022-07-14T09:10:45.0177607+08:00;True|2022-07-14T08:41:43.3026713+08:00;True|2022-07-14T08:27:32.7454972+08:00;True|2022-07-14T08:21:58.6572366+08:00;True|2022-07-14T08:17:59.2904747+08:00;True|2022-07-14T08:12:39.8483472+08:00;True|2022-06-30T15:04:41.6941982+08:00;True|2022-06-24T16:39:01.1080301+08:00;True|2022-06-17T13:23:15.1455451+08:00;True|2022-06-17T13:22:18.5517557+08:00;True|2022-06-17T13:19:27.7323818+08:00;True|2022-06-17T13:12:24.1252779+08:00;True|2022-06-17T13:09:20.4234258+08:00;True|2022-06-17T13:06:49.9869509+08:00;True|2022-06-17T12:58:54.6964621+08:00;False|2022-06-17T12:58:10.6767711+08:00;False|2022-06-17T12:57:08.9747950+08:00;False|2022-06-17T12:56:18.4650121+08:00;False|2022-06-17T12:55:57.9981927+08:00;True|2022-06-13T14:21:36.5610928+08:00;True|2022-06-13T11:41:39.4210151+08:00;True|2022-06-11T02:35:03.4727934+08:00;True|2022-06-11T02:31:13.7362660+08:00;True|2022-06-11T02:30:58.3616790+08:00;True|2022-06-11T01:57:04.4951468+08:00;True|2022-06-10T13:27:13.2097124+08:00;</History> |
| | | <History>True|2022-07-25T07:35:49.6958399Z;True|2022-07-25T15:30:40.4444876+08:00;True|2022-07-25T13:33:38.4068153+08:00;True|2022-07-22T15:00:56.7326322+08:00;True|2022-07-22T14:51:18.0169121+08:00;True|2022-07-22T14:26:08.4246205+08:00;True|2022-07-22T14:23:05.0897016+08:00;True|2022-07-22T14:18:18.7806854+08:00;True|2022-07-22T14:09:29.7924367+08:00;True|2022-07-22T14:02:26.6403133+08:00;True|2022-07-22T13:56:40.0887615+08:00;True|2022-07-22T13:50:10.7852190+08:00;True|2022-07-22T11:38:25.6671780+08:00;True|2022-07-22T10:55:36.7947659+08:00;True|2022-07-21T17:53:41.1464086+08:00;True|2022-07-21T17:43:33.5311479+08:00;True|2022-07-21T16:09:07.7687640+08:00;True|2022-07-21T16:04:47.9317019+08:00;True|2022-07-21T15:58:21.2359033+08:00;True|2022-07-21T15:56:07.7425829+08:00;True|2022-07-21T15:51:34.7108381+08:00;True|2022-07-21T15:48:57.5735708+08:00;True|2022-07-21T15:44:25.8205030+08:00;True|2022-07-21T15:25:51.4222269+08:00;True|2022-07-21T15:22:36.8818295+08:00;True|2022-07-21T15:19:28.8532774+08:00;True|2022-07-21T14:57:45.7532568+08:00;True|2022-07-21T11:16:12.0900762+08:00;True|2022-07-21T10:10:40.4714948+08:00;True|2022-07-21T10:00:19.5258058+08:00;True|2022-07-14T14:34:28.5093226+08:00;True|2022-07-14T13:59:59.7754985+08:00;True|2022-07-14T12:46:29.6685284+08:00;True|2022-07-14T09:22:25.9079652+08:00;True|2022-07-14T09:22:04.6797478+08:00;True|2022-07-14T09:10:45.0177607+08:00;True|2022-07-14T08:41:43.3026713+08:00;True|2022-07-14T08:27:32.7454972+08:00;True|2022-07-14T08:21:58.6572366+08:00;True|2022-07-14T08:17:59.2904747+08:00;True|2022-07-14T08:12:39.8483472+08:00;True|2022-06-30T15:04:41.6941982+08:00;True|2022-06-24T16:39:01.1080301+08:00;True|2022-06-17T13:23:15.1455451+08:00;True|2022-06-17T13:22:18.5517557+08:00;True|2022-06-17T13:19:27.7323818+08:00;True|2022-06-17T13:12:24.1252779+08:00;True|2022-06-17T13:09:20.4234258+08:00;True|2022-06-17T13:06:49.9869509+08:00;True|2022-06-17T12:58:54.6964621+08:00;False|2022-06-17T12:58:10.6767711+08:00;False|2022-06-17T12:57:08.9747950+08:00;False|2022-06-17T12:56:18.4650121+08:00;False|2022-06-17T12:55:57.9981927+08:00;True|2022-06-13T14:21:36.5610928+08:00;True|2022-06-13T11:41:39.4210151+08:00;True|2022-06-11T02:35:03.4727934+08:00;True|2022-06-11T02:31:13.7362660+08:00;True|2022-06-11T02:30:58.3616790+08:00;True|2022-06-11T01:57:04.4951468+08:00;True|2022-06-10T13:27:13.2097124+08:00;</History> |
| | | </PropertyGroup> |
| | | <ItemGroup> |
| | | <File Include="Areas/HelpPage/HelpPage.css"> |
| | |
| | | <File Include="bin/FastReport.Editor.dll"> |
| | | <publishTime>06/30/2022 13:48:04</publishTime> |
| | | </File> |
| | | <File Include="bin/FastReport.Service.dll"> |
| | | <publishTime>06/30/2022 13:48:36</publishTime> |
| | | </File> |
| | | <File Include="bin/FastReport.Service.dll.config"> |
| | | <publishTime>06/30/2022 13:48:08</publishTime> |
| | | </File> |
| | | <File Include="bin/FastReport.VSDesign.dll"> |
| | | <publishTime>06/30/2022 13:48:34</publishTime> |
| | | </File> |
| | | <File Include="bin/FastReport.Web.dll"> |
| | | <publishTime>06/30/2022 13:48:36</publishTime> |
| | | </File> |
| | |
| | | <File Include="bin/log4net.dll"> |
| | | <publishTime>12/17/2021 18:45:06</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.AspNetCore.Http.Abstractions.dll"> |
| | | <publishTime>11/13/2018 01:29:00</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.AspNetCore.Http.Features.dll"> |
| | | <publishTime>11/13/2018 01:28:58</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.AspNetCore.Mvc.Abstractions.dll"> |
| | | <publishTime>11/13/2018 01:40:10</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.AspNetCore.Routing.Abstractions.dll"> |
| | | <publishTime>11/13/2018 01:38:16</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.Bcl.AsyncInterfaces.dll"> |
| | | <publishTime>10/20/2020 02:40:36</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll"> |
| | | <publishTime>09/05/2018 16:10:50</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.Extensions.Primitives.dll"> |
| | | <publishTime>11/11/2018 08:26:36</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.Net.Http.Headers.dll"> |
| | | <publishTime>11/13/2018 01:28:58</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.Web.Infrastructure.dll"> |
| | | <publishTime>07/25/2012 11:48:56</publishTime> |
| | | </File> |
| | | <File Include="bin/Microsoft.Win32.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/netstandard.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/Newtonsoft.Json.dll"> |
| | | <publishTime>04/22/2019 01:06:16</publishTime> |
| | |
| | | <File Include="bin/Swashbuckle.Core.dll"> |
| | | <publishTime>07/08/2017 01:30:56</publishTime> |
| | | </File> |
| | | <File Include="bin/System.AppContext.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Buffers.dll"> |
| | | <publishTime>02/19/2020 10:05:18</publishTime> |
| | | </File> |
| | | <File Include="bin/System.CodeDom.dll"> |
| | | <publishTime>10/23/2021 07:52:04</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Collections.Concurrent.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Collections.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Collections.NonGeneric.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Collections.Specialized.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.ComponentModel.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.ComponentModel.EventBasedAsync.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.ComponentModel.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.ComponentModel.TypeConverter.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Console.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Data.Common.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.Contracts.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.Debug.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.FileVersionInfo.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.PerformanceCounter.dll"> |
| | | <publishTime>10/20/2020 02:49:34</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.Process.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.StackTrace.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.TextWriterTraceListener.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.Tools.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.TraceSource.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Diagnostics.Tracing.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Drawing.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Dynamic.Runtime.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Globalization.Calendars.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Globalization.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Globalization.Extensions.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.Compression.dll"> |
| | | <publishTime>11/05/2016 12:56:08</publishTime> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.Compression.ZipFile.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.FileSystem.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.FileSystem.DriveInfo.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.FileSystem.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.FileSystem.Watcher.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.IsolatedStorage.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.MemoryMappedFiles.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.Pipelines.dll"> |
| | | <publishTime>11/26/2020 10:00:22</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.Pipes.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.IO.UnmanagedMemoryStream.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Linq.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Linq.Expressions.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Linq.Parallel.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Linq.Queryable.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Memory.dll"> |
| | | <publishTime>02/19/2020 10:05:18</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Http.dll"> |
| | | <publishTime>11/05/2016 18:56:30</publishTime> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Http.Formatting.dll"> |
| | | <publishTime>05/28/2022 07:41:34</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.NameResolution.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.NetworkInformation.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Ping.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Requests.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Security.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.Sockets.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.WebHeaderCollection.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.WebSockets.Client.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Net.WebSockets.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Numerics.Vectors.dll"> |
| | | <publishTime>05/15/2018 13:29:44</publishTime> |
| | | </File> |
| | | <File Include="bin/System.ObjectModel.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Reflection.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Reflection.Extensions.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Reflection.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Resources.Reader.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Resources.ResourceManager.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Resources.Writer.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.CompilerServices.Unsafe.dll"> |
| | | <publishTime>02/19/2020 10:05:16</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.CompilerServices.VisualC.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Extensions.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Handles.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.InteropServices.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.InteropServices.RuntimeInformation.dll"> |
| | | <publishTime>11/05/2016 12:57:00</publishTime> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Numerics.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Serialization.Formatters.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Serialization.Json.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Serialization.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Runtime.Serialization.Xml.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Claims.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Cryptography.Algorithms.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Cryptography.Csp.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Cryptography.Encoding.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Cryptography.Primitives.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Cryptography.X509Certificates.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.Principal.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Security.SecureString.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Text.Encoding.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Text.Encoding.Extensions.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Text.Encodings.Web.dll"> |
| | | <publishTime>05/15/2018 21:29:52</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Text.RegularExpressions.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Channels.dll"> |
| | | <publishTime>10/20/2020 02:46:24</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Overlapped.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Tasks.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Tasks.Extensions.dll"> |
| | | <publishTime>02/19/2020 10:05:18</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Tasks.Parallel.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Thread.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.ThreadPool.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Threading.Timer.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.ValueTuple.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Web.Cors.dll"> |
| | | <publishTime>11/28/2018 12:58:44</publishTime> |
| | |
| | | <File Include="bin/System.Web.WebPages.Razor.dll"> |
| | | <publishTime>11/28/2018 13:04:24</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Xml.ReaderWriter.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Xml.XDocument.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Xml.XmlDocument.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Xml.XmlSerializer.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Xml.XPath.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/System.Xml.XPath.XDocument.dll"> |
| | | <publishTime>12/24/2021 15:38:29</publishTime> |
| | | </File> |
| | | <File Include="bin/VueWebApi.dll"> |
| | | <publishTime>07/21/2022 17:53:36</publishTime> |
| | | <publishTime>07/27/2022 08:43:00</publishTime> |
| | | </File> |
| | | <File Include="bin/VueWebApi.dll.config"> |
| | | <publishTime>06/15/2022 15:31:43</publishTime> |
| | | </File> |
| | | <File Include="bin/VueWebApi.pdb"> |
| | | <publishTime>07/21/2022 17:53:36</publishTime> |
| | | <publishTime>07/27/2022 08:43:00</publishTime> |
| | | </File> |
| | | <File Include="bin/VueWebApi.xml"> |
| | | <publishTime>06/16/2022 14:26:01</publishTime> |
| | | <publishTime>07/27/2022 08:43:00</publishTime> |
| | | </File> |
| | | <File Include="bin/WebActivatorEx.dll"> |
| | | <publishTime>02/08/2013 16:42:28</publishTime> |
| | |
| | | <File Include="DisplayViewReport.html"> |
| | | <publishTime>06/29/2022 20:36:27</publishTime> |
| | | </File> |
| | | <File Include="Excel/ä»åºåºä½æ¸
å.xls"> |
| | | <publishTime>07/25/2022 13:45:20</publishTime> |
| | | </File> |
| | | <File Include="Excel/徿¥åä½.xls"> |
| | | <publishTime>07/25/2022 12:46:29</publishTime> |
| | | </File> |
| | | <File Include="Excel/ç¨æ·æ¸
å.xls"> |
| | | <publishTime>07/20/2022 10:52:30</publishTime> |
| | | </File> |
| | | <File Include="Excel/è§è²æ¸
å.xls"> |
| | | <publishTime>07/20/2022 11:30:06</publishTime> |
| | | <publishTime>07/22/2022 11:26:24</publishTime> |
| | | </File> |
| | | <File Include="favicon.ico"> |
| | | <publishTime>06/10/2022 08:20:24</publishTime> |
| | |
| | | <File Include="grf/program/data_from_url.grf"> |
| | | <publishTime>06/30/2022 09:09:37</publishTime> |
| | | </File> |
| | | <File Include="grf/Rework.frx"> |
| | | <publishTime>07/26/2022 14:37:33</publishTime> |
| | | </File> |
| | | <File Include="grf/SummaryToDetail/ChartBar.grf"> |
| | | <publishTime>06/30/2022 09:09:37</publishTime> |
| | | </File> |
| | |
| | | <publishTime>06/10/2022 08:20:24</publishTime> |
| | | </File> |
| | | <File Include="Web.config"> |
| | | <publishTime>07/21/2022 17:53:40</publishTime> |
| | | <publishTime>07/27/2022 08:43:06</publishTime> |
| | | </File> |
| | | </ItemGroup> |
| | | </Project> |
| | |
| | | new ScoreReport("2","ç¨æ·æ¸
å"), |
| | | new ScoreReport("3","工使¸
å"), |
| | | new ScoreReport("4","徿¥åä½"), |
| | | new ScoreReport("6.1","ä»åºå®ä¹"), |
| | | new ScoreReport("6.2","åºä½å®ä¹"), |
| | | new ScoreReport("6","ä»åºåºä½æ¸
å"), |
| | | new ScoreReport("7","容å¨å®ä¹"), |
| | | new ScoreReport("8","åè´§æ¡£æ¡"), |
| | | new ScoreReport("9","è®¾å¤æ¸
å"), |
| | |
| | | ISheet sheet = Workbook.GetSheetAt(0); |
| | | //第ä¸è¡ä¸ºæ é¢è¡ |
| | | IRow headerRow = sheet.GetRow(0); |
| | | if (headerRow == null) |
| | | { |
| | | return table; |
| | | } |
| | | int cellCount = headerRow.LastCellNum; |
| | | int rowCount = sheet.LastRowNum; |
| | | |
| | |
| | | { |
| | | IRow row = sheet.GetRow(i); |
| | | DataRow dataRow = table.NewRow(); |
| | | if (row != null) |
| | | if (row != null&&row.Cells.Count>0) |
| | | { |
| | | for (int j = row.FirstCellNum; j < cellCount; j++) |
| | | { |
| | |
| | | ISheet sheet = Workbook.GetSheetAt(0); |
| | | //第ä¸è¡ä¸ºæ é¢è¡ |
| | | IRow headerRow = sheet.GetRow(0); |
| | | if (headerRow == null) |
| | | { |
| | | return list; |
| | | } |
| | | int cellCount = headerRow.LastCellNum; |
| | | int rowCount = sheet.LastRowNum; |
| | | |
| | |
| | | { |
| | | IRow row = sheet.GetRow(i); |
| | | DataRow dataRow = table.NewRow(); |
| | | if (row != null) |
| | | if (row != null&&row.Cells.Count>0) |
| | | { |
| | | for (int j = row.FirstCellNum; j < cellCount; j++) |
| | | { |
| | |
| | | } |
| | | else |
| | | { |
| | | for (int m = 0; m < 2; m++) |
| | | for (int m = 0; m < count; m++) |
| | | { |
| | | DataTable table = new DataTable(); |
| | | //å®ä½å¨ç¬¬ä¸ä¸ªsheet |
| | | ISheet sheet = Workbook.GetSheetAt(m); |
| | | //第ä¸è¡ä¸ºæ é¢è¡ |
| | | IRow headerRow = sheet.GetRow(0); |
| | | if (headerRow == null) |
| | | { |
| | | return list; |
| | | } |
| | | int cellCount = headerRow.LastCellNum; |
| | | int rowCount = sheet.LastRowNum; |
| | | |
| | |
| | | { |
| | | IRow row = sheet.GetRow(i); |
| | | DataRow dataRow = table.NewRow(); |
| | | if (row != null) |
| | | if (row != null&&row.Cells.Count>0) |
| | | { |
| | | for (int j = row.FirstCellNum; j < cellCount; j++) |
| | | { |
| | |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 6) |
| | | List<DataTable> excelTable = new List<DataTable>(); |
| | | excelTable = ImportExcel.ExcelToTableList(FileCode); |
| | | if (excelTable.Count != 4) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "导å
¥æ¨¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥sheetæ°"; |
| | | return Message; |
| | | |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | else if (excelTable[0].Columns.Count != 4) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·çç»æ¨¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "ç¨æ·ç¼å·(å¯ä¸)") |
| | | else if (excelTable[1].Columns.Count != 10) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "ç¨æ·å§å") |
| | | else if (excelTable[0].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·çç»æ¨¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "å¯ç ") |
| | | else if (excelTable[0].Columns[1].ColumnName != "çç»ç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·çç»æ¨¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{çç»ç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[4].ColumnName != "ææºå·") |
| | | else if (excelTable[0].Columns[2].ColumnName != "çç»åç§°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·çç»æ¨¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{çç»åç§°}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[5].ColumnName != "é®ç®±") |
| | | else if (excelTable[0].Columns[3].ColumnName != "çç»æè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·çç»æ¨¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第4ååºä¸º{çç»æè¿°}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[6].ColumnName != "æå±ç»ç»") |
| | | else if (excelTable[1].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[7].ColumnName != "å¨èç¶æ") |
| | | else if (excelTable[1].Columns[1].ColumnName != "ç¨æ·ç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{ç¨æ·ç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[8].ColumnName != "å·¥èµç±»å") |
| | | else if (excelTable[1].Columns[2].ColumnName != "ç¨æ·å§å") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{ç¨æ·å§å}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[3].ColumnName != "å¨èç¶æ") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第4ååºä¸º{å¨èç¶æ}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[4].ColumnName != "å¯ç ") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第5ååºä¸º{å¯ç }"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[5].ColumnName != "ææºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第6ååºä¸º{ææºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[6].ColumnName != "é®ç®±") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第7ååºä¸º{é®ç®±}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[7].ColumnName != "ç»ç»ç¼ç ") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第8ååºä¸º{ç»ç»ç¼ç }"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[8].ColumnName != "å·¥èµç±»å") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第9ååºä¸º{å·¥èµç±»å}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[9].ColumnName != "ç¨æ·ç»ç¼ç ") |
| | | { |
| | | code = "300"; |
| | | Message = "ç¨æ·æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第10ååºä¸º{ç¨æ·ç»ç¼ç }"; |
| | | return Message; |
| | | } |
| | | else |
| | | { |
| | |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 4) |
| | | List<DataTable> excelTable = new List<DataTable>(); |
| | | excelTable = ImportExcel.ExcelToTableList(FileCode); |
| | | if (excelTable.Count != 4) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "导å
¥æ¨¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥sheetæ°"; |
| | | return Message; |
| | | |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | else if (excelTable[0].Columns.Count != 3) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "è§è²ç±»å模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "è§è²ç¼å·(å¯ä¸)") |
| | | else if (excelTable[1].Columns.Count != 5) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "模æ¿è§è²æ¸
åä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "è§è²åç§°(å¯ä¸)") |
| | | else if (excelTable[0].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "è§è²ç±»å模æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "è§è²ç±»å") |
| | | else if (excelTable[0].Columns[1].ColumnName != "è§è²ç±»åç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "è§è²ç±»å模æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{è§è²ç±»åç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[0].Columns[2].ColumnName != "è§è²ç±»ååç§°") |
| | | { |
| | | code = "300"; |
| | | Message = "è§è²ç±»å模æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{è§è²ç±»ååç§°}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "è§è²æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[1].ColumnName != "è§è²ç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "è§è²æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{è§è²ç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[2].ColumnName != "è§è²å§å") |
| | | { |
| | | code = "300"; |
| | | Message = "è§è²æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{è§è²å§å}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[3].ColumnName != "è§è²ç±»åç¼ç ") |
| | | { |
| | | code = "300"; |
| | | Message = "è§è²æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第4ååºä¸º{è§è²ç±»åç¼ç }"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[1].Columns[4].ColumnName != "è§è²æè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "è§è²æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第5ååºä¸º{è§è²æè¿°}"; |
| | | return Message; |
| | | } |
| | | else |
| | | { |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,便¹æ¸
忍¡æ¿ã |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,徿¥å使¸
忍¡æ¿ã |
| | | public static string Four(string FileCode, out string code) |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 5) |
| | | List<DataTable> excelTable = new List<DataTable>(); |
| | | excelTable = ImportExcel.ExcelToTableList(FileCode); |
| | | if (excelTable.Count != 2) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "导å
¥æ¨¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥sheetæ°"; |
| | | return Message; |
| | | |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | else if (excelTable[0].Columns.Count != 7) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "便¹ç¼å·(å¯ä¸)") |
| | | else if (excelTable[0].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "便¹åç§°ï¼å¯ä¸ï¼") |
| | | else if (excelTable[0].Columns[1].ColumnName != "徿¥åä½ç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{徿¥åä½ç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "è¡¥å
æè¿°") |
| | | else if (excelTable[0].Columns[2].ColumnName != "徿¥åä½åç§°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{徿¥åä½åç§°}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[4].ColumnName.Trim() != "便¹ç±»åï¼å¤å便¹,å¤è´ä¾æ¹ï¼") |
| | | else if (excelTable[0].Columns[3].ColumnName != "徿¥åä½å±æ§") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第4ååºä¸º{徿¥åä½å±æ§}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[0].Columns[4].ColumnName != "è系人") |
| | | { |
| | | code = "300"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第5ååºä¸º{è系人}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[0].Columns[5].ColumnName != "èç³»æ¹å¼") |
| | | { |
| | | code = "300"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第6ååºä¸º{èç³»æ¹å¼}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable[0].Columns[6].ColumnName != "å°å") |
| | | { |
| | | code = "300"; |
| | | Message = "徿¥å使¨¡æ¿ä¸ç¬¦åè§èï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第7ååºä¸º{å°å}"; |
| | | return Message; |
| | | } |
| | | else |
| | | { |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,å®¢æ·æ¸
忍¡æ¿ã |
| | | public static string Five(string FileCode, out string code) |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 4) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "客æ·ç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "客æ·åç§°ï¼å¯ä¸ï¼") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "è¡¥å
æè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else |
| | | { |
| | | code = "200"; |
| | | Message = "æ¨¡æ¿æ£éªéè¿"; |
| | | } |
| | | return Message; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,ä»åºå®ä¹æ¨¡æ¿ã |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,ä»åºãåºä½å®ä¹æ¨¡æ¿ã |
| | | public static string SixOne(string FileCode, out string code) |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 4) |
| | | List<DataTable> excelTable = new List<DataTable>(); |
| | | excelTable = ImportExcel.ExcelToTableList(FileCode); |
| | | if (excelTable.Count != 4) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "ä»åºç¼ç (å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "ä»åºåç§°ï¼å¯ä¸ï¼") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "åè½æè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else |
| | | { |
| | | code = "200"; |
| | | Message = "æ¨¡æ¿æ£éªéè¿"; |
| | | } |
| | | return Message; |
| | | } |
| | | #endregion |
| | | Message = "导å
¥æ¨¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥sheetæ°"; |
| | | return Message; |
| | | |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,åºåºå®ä¹æ¨¡æ¿ã |
| | | public static string SixTwo(string FileCode, out string code) |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 6) |
| | | } |
| | | else if (excelTable[0].Columns.Count != 4) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ä»åºæ¸
忍¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | else if (excelTable[1].Columns.Count != 5) |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "åºä½æ¸
忍¡æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åååæ®µæ°"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "åºåºç¼ç (å¯ä¸)") |
| | | else if (excelTable[0].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ç¨æ·çç»æ¨¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "åºåºåç§°ï¼å¯ä¸ï¼") |
| | | else if (excelTable[0].Columns[1].ColumnName != "ä»åºç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ä»åºæ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{ä»åºç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "åè½æè¿°") |
| | | else if (excelTable[0].Columns[2].ColumnName != "ä»åºåç§°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ä»åºæ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{ä»åºåç§°}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[4].ColumnName != "ä»åºç¼ç ") |
| | | else if (excelTable[0].Columns[3].ColumnName != "ä»åºæè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "ä»åºæ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第4ååºä¸º{ä»åºæè¿°}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[5].ColumnName != "ä»åºåç§°") |
| | | else if (excelTable[1].Columns[0].ColumnName != "åºå·") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "åºä½æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第1ååºä¸º{åºå·}"; |
| | | return Message; |
| | | } |
| | | else |
| | | { |
| | | code = "200"; |
| | | Message = "æ¨¡æ¿æ£éªéè¿"; |
| | | } |
| | | return Message; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcel模æ¿ä¸ä¼ éªè¯,åºä½å®ä¹æ¨¡æ¿ã |
| | | public static string SixThree(string FileCode, out string code) |
| | | { |
| | | string Message = ""; |
| | | code = ""; |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | if (excelTable.Columns.Count != 6) |
| | | else if (excelTable[1].Columns[1].ColumnName != "åºä½ç¼å·(å¯ä¸)") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "åºä½æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第2ååºä¸º{åºä½ç¼å·(å¯ä¸)}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[0].ColumnName != "åºå·") |
| | | else if (excelTable[1].Columns[2].ColumnName != "åºä½å§å") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "åºä½æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第3ååºä¸º{åºä½å§å}"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[1].ColumnName != "åºä½ç¼ç (å¯ä¸)") |
| | | else if (excelTable[1].Columns[3].ColumnName != "æå±ä»åºç¼ç ") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "åºä½æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第4ååºä¸º{æå±ä»åºç¼ç }"; |
| | | return Message; |
| | | } |
| | | else if (excelTable.Columns[2].ColumnName != "åºä½åç§°ï¼å¯ä¸ï¼") |
| | | else if (excelTable[1].Columns[4].ColumnName != "åºä½æè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[3].ColumnName != "åè½æè¿°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[4].ColumnName != "åºåºç¼ç ") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | } |
| | | else if (excelTable.Columns[5].ColumnName != "åºåºåç§°") |
| | | { |
| | | code = "300"; |
| | | Message = "模æ¿ä¸ç¬¦åè§è,è¯·æ£æ¥åå"; |
| | | Message = "åºä½æ¸
忍¡æ¿ï¼è¡¨å¤´ä¿¡æ¯ä¸ç¬¦åè§è,第5ååºä¸º{åºä½æè¿°}"; |
| | | return Message; |
| | | } |
| | | else |
| | | { |
| | |
| | | index++; |
| | | item.Seq = index.ToString(); |
| | | } |
| | | StuCode = "300"; |
| | | StuCode = "301"; |
| | | message = "æ°æ®éªè¯å¤±è´¥"; |
| | | } |
| | | else |
| | |
| | | index++; |
| | | item.Seq = index.ToString(); |
| | | } |
| | | StuCode = "300"; |
| | | StuCode = "301"; |
| | | message = "æ°æ®éªè¯å¤±è´¥"; |
| | | } |
| | | else |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,便¹æ¸
åã |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,徿¥å使¸
åã |
| | | public static List<ExcelErro> FourData(string FileCode, out string StuCode, out string message, out int count) |
| | | { |
| | | message = ""; |
| | |
| | | count = 0; |
| | | string sql = ""; |
| | | DataTable dt; |
| | | var dynamicParams = new DynamicParameters(); |
| | | List<ExcelErro> list = new List<ExcelErro>(); |
| | | DataTable excelTable = new DataTable(); |
| | | list = ImportExcel.ExcelToTableErro(FileCode); //éªè¯Excelæ°æ®å¿
å¡«åæ®µæ¯å¦ä¸ºç©ºãå¯ä¸å段æ¯å¦éå¤ |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); //è·åExcelæ°æ® |
| | | for (int i = 0; i < excelTable.Rows.Count; i++) |
| | | { |
| | | if (excelTable.Rows[i][1].ToString().Trim() != null && excelTable.Rows[i][1].ToString().Trim() != "") |
| | | { |
| | | sql = @"select code from TCustomer where code=@code"; |
| | | |
| | | dynamicParams.Add("@code", excelTable.Rows[i][1].ToString().Trim()); |
| | | dt = DapperHelper.selectdata(sql, dynamicParams); |
| | | if (dt.Rows.Count > 0) |
| | | { |
| | | ExcelErro erro = new ExcelErro(); |
| | | erro.RoeNumber = "/"; |
| | | erro.ErrorField = "{徿¥åä½ç¼ç (å¯ä¸)}"; |
| | | erro.ErrorCont = "徿¥åä½è¡¨:{徿¥åä½ç¼ç (å¯ä¸)}åæ®µ" + excelTable.Rows[i][1].ToString().Trim() + "å·²åå¨"; |
| | | list.Add(erro); |
| | | } |
| | | } |
| | | } |
| | | if (list.Count > 0) |
| | | { |
| | | int index = 0; |
| | | foreach (ExcelErro item in list) |
| | | { |
| | | index++; |
| | | item.Seq = index.ToString(); |
| | | } |
| | | StuCode = "301"; |
| | | message = "æ°æ®éªè¯å¤±è´¥"; |
| | | } |
| | | else |
| | | { |
| | | StuCode = "200"; |
| | | message = "æ°æ®éªè¯æå"; |
| | | count = excelTable.Rows.Count; |
| | | } |
| | | return list; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,å®¢æ·æ¸
åã |
| | | public static List<ExcelErro> FiveData(string FileCode, out string StuCode, out string message, out int count) |
| | | { |
| | | message = ""; |
| | | StuCode = ""; |
| | | count = 0; |
| | | string sql = ""; |
| | | DataTable dt; |
| | | List<ExcelErro> list = new List<ExcelErro>(); |
| | | |
| | | return list; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,ä»åºå®ä¹ã |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,ä»åºãåºä½å®ä¹ã |
| | | public static List<ExcelErro> SixOneData(string FileCode, out string StuCode, out string message, out int count) |
| | | { |
| | | message = ""; |
| | | StuCode = ""; |
| | | count = 0; |
| | | string sql = ""; |
| | | var dynamicParams = new DynamicParameters(); |
| | | DataTable dt; |
| | | List<ExcelErro> list = new List<ExcelErro>(); |
| | | |
| | | return list; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,åºåºå®ä¹ã |
| | | public static List<ExcelErro> SixTwoData(string FileCode, out string StuCode, out string message, out int count) |
| | | { |
| | | message = ""; |
| | | StuCode = ""; |
| | | count = 0; |
| | | string sql = ""; |
| | | DataTable dt; |
| | | List<ExcelErro> list = new List<ExcelErro>(); |
| | | |
| | | return list; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelä¸ä¼ æ°æ®éªè¯,åºä½å®ä¹ã |
| | | public static List<ExcelErro> SixThreeData(string FileCode, out string StuCode, out string message, out int count) |
| | | { |
| | | message = ""; |
| | | StuCode = ""; |
| | | count = 0; |
| | | string sql = ""; |
| | | DataTable dt; |
| | | List<ExcelErro> list = new List<ExcelErro>(); |
| | | |
| | | List<DataTable> excelTable = new List<DataTable>(); |
| | | list = ImportExcel.ExcelToTableListErro(FileCode); //éªè¯Excelæ°æ®å¿
å¡«åæ®µæ¯å¦ä¸ºç©ºãå¯ä¸å段æ¯å¦éå¤ |
| | | excelTable = ImportExcel.ExcelToTableList(FileCode); //è·åExcelæ°æ® |
| | | //ä»åºè¡¨ |
| | | for (int j = 0; j < excelTable[0].Rows.Count; j++) |
| | | { |
| | | if (excelTable[0].Rows[j][1].ToString().Trim() != null && excelTable[0].Rows[j][1].ToString().Trim() != "") |
| | | { |
| | | sql = @"select * from T_Sec_Stck where code=@code"; |
| | | dynamicParams.Add("@code", excelTable[0].Rows[j][1].ToString().Trim()); |
| | | dt = DapperHelper.selectdata(sql, dynamicParams); |
| | | if (dt.Rows.Count > 0) |
| | | { |
| | | ExcelErro erro = new ExcelErro(); |
| | | erro.RoeNumber = "/"; |
| | | erro.ErrorField = "{ä»åºç¼å·(å¯ä¸)}"; |
| | | erro.ErrorCont = "ä»åºè¡¨:{ä»åºç¼å·(å¯ä¸)}åæ®µ" + excelTable[0].Rows[j][1].ToString().Trim() + "å·²åå¨"; |
| | | list.Add(erro); |
| | | } |
| | | } |
| | | } |
| | | //åºä½è¡¨ |
| | | for (int k = 0; k < excelTable[1].Rows.Count; k++) |
| | | { |
| | | if (excelTable[1].Rows[k][1].ToString().Trim() != null && excelTable[1].Rows[k][1].ToString().Trim() != "") |
| | | { |
| | | sql = @"select * from T_Sec_Loca where code=@code"; |
| | | dynamicParams.Add("@code", excelTable[1].Rows[k][1].ToString().Trim()); |
| | | dt = DapperHelper.selectdata(sql, dynamicParams); |
| | | if (dt.Rows.Count > 0) |
| | | { |
| | | ExcelErro erro = new ExcelErro(); |
| | | erro.RoeNumber = "/"; |
| | | erro.ErrorField = "{åºä½ç¼å·(å¯ä¸)}"; |
| | | erro.ErrorCont = "åºä½è¡¨:{åºä½ç¼å·(å¯ä¸)}åæ®µ" + excelTable[1].Rows[k][2].ToString().Trim() + "å·²åå¨"; |
| | | list.Add(erro); |
| | | } |
| | | } |
| | | } |
| | | //夿å表å¤é®ä¸åå¨äºä¸»è¡¨ä¸»é®ä¸çæ°æ® |
| | | var dt3 = from r in excelTable[1].AsEnumerable() |
| | | where !( |
| | | from rr in excelTable[0].AsEnumerable() |
| | | select rr.Field<string>("ä»åºç¼å·(å¯ä¸)") |
| | | ).Contains(r.Field<string>("æå±ä»åºç¼ç ")) |
| | | select r; |
| | | List<DataRow> listRow = dt3.ToList(); |
| | | if (listRow.Count > 0) |
| | | { |
| | | ExcelErro erro = new ExcelErro(); |
| | | erro.RoeNumber = "/"; |
| | | erro.ErrorField = "{æå±ä»åºç¼ç }"; |
| | | erro.ErrorCont = "åºä½è¡¨:{æå±ä»åºç¼ç }åæ®µä¸æå¼å¨ä»åºè¡¨:{ä»åºç¼å·(å¯ä¸)}ä¸ä¸åå¨"; |
| | | list.Add(erro); |
| | | } |
| | | if (list.Count > 0) |
| | | { |
| | | int index = 0; |
| | | foreach (ExcelErro item in list) |
| | | { |
| | | index++; |
| | | item.Seq = index.ToString(); |
| | | } |
| | | StuCode = "301"; |
| | | message = "æ°æ®éªè¯å¤±è´¥"; |
| | | } |
| | | else |
| | | { |
| | | StuCode = "200"; |
| | | message = "æ°æ®éªè¯æå"; |
| | | count = excelTable[0].Rows.Count + excelTable[1].Rows.Count; |
| | | } |
| | | return list; |
| | | } |
| | | #endregion |
| | |
| | | { |
| | | UserCode = excelTable[1].Rows[i][1].ToString().Trim(), |
| | | UserName = excelTable[1].Rows[i][2].ToString().Trim(), |
| | | password= excelTable[1].Rows[i][4].ToString().Trim(), |
| | | Enable= Enable, |
| | | Mobile= excelTable[1].Rows[i][5].ToString().Trim(), |
| | | CreateDate= DateTime.Now.ToString(), |
| | | Email= excelTable[1].Rows[i][6].ToString().Trim(), |
| | | Operator= User, |
| | | StuOrg= excelTable[1].Rows[i][7].ToString().Trim(), |
| | | wagetype= WageType |
| | | password = excelTable[1].Rows[i][4].ToString().Trim(), |
| | | Enable = Enable, |
| | | Mobile = excelTable[1].Rows[i][5].ToString().Trim(), |
| | | CreateDate = DateTime.Now.ToString(), |
| | | Email = excelTable[1].Rows[i][6].ToString().Trim(), |
| | | Operator = User, |
| | | StuOrg = excelTable[1].Rows[i][7].ToString().Trim(), |
| | | wagetype = WageType |
| | | } |
| | | }); |
| | | } |
| | | bool aa = DapperHelper.DoTransaction(list); |
| | | if (aa) |
| | | { |
| | | StuCode = "300"; |
| | | message = "导å
¥å¤±è´¥ï¼"; |
| | | StuCode = "200"; |
| | | message = "导å
¥æåï¼"; |
| | | } |
| | | else |
| | | { |
| | | StuCode = "200"; |
| | | message = "导å
¥æåï¼"; |
| | | StuCode = "300"; |
| | | message = "导å
¥å¤±è´¥ï¼"; |
| | | } |
| | | } |
| | | catch (Exception e) |
| | |
| | | bool aa = DapperHelper.DoTransaction(list); |
| | | if (aa) |
| | | { |
| | | StuCode = "300"; |
| | | message = "导å
¥å¤±è´¥ï¼"; |
| | | StuCode = "200"; |
| | | message = "导å
¥æåï¼"; |
| | | } |
| | | else |
| | | { |
| | | StuCode = "200"; |
| | | message = "导å
¥æåï¼"; |
| | | StuCode = "300"; |
| | | message = "导å
¥å¤±è´¥ï¼"; |
| | | } |
| | | } |
| | | catch (Exception e) |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelæ°æ®ä¸ä¼ ,便¹æ¸
åã |
| | | #regionãExcelæ°æ®ä¸ä¼ ,徿¥å使¸
åã |
| | | public static string FourSubmit(string FileCode, string User, out string StuCode) |
| | | { |
| | | string message = ""; |
| | | StuCode = ""; |
| | | string sql = ""; |
| | | DataTable dt; |
| | | List<object> list = new List<object>(); |
| | | var dynamicParams = new DynamicParameters(); |
| | | try |
| | | { |
| | | list.Clear(); |
| | | DataTable excelTable = new DataTable(); |
| | | excelTable = ImportExcel.ExcelToTable(FileCode); |
| | | //导å
¥å¾æ¥åä½è¡¨ |
| | | for (int i = 0; i < excelTable.Rows.Count; i++) |
| | | { |
| | | string WGType = "", WXType = "", KHType = ""; |
| | | switch (excelTable.Rows[i][3].ToString().Trim()) |
| | | { |
| | | case "å¤è´ä¾æ¹": |
| | | WGType = "WG"; |
| | | break; |
| | | case "å¤å便¹": |
| | | WXType = "WX"; |
| | | break; |
| | | case "客æ·": |
| | | KHType = "KH"; |
| | | break; |
| | | default: |
| | | break; |
| | | } |
| | | |
| | | sql = @"insert into TCustomer(code,name,mtype,conttacts,conttphone,addr,lm_user,lm_date,btype,htype) |
| | | values(@code,@name,@mtype,@conttacts,@conttphone,@addr,@Operator,@CreateDate,@btype,@htype)"; |
| | | list.Add(new |
| | | { |
| | | str = sql, |
| | | parm = new |
| | | { |
| | | code = excelTable.Rows[i][1].ToString().Trim(), |
| | | name = excelTable.Rows[i][2].ToString().Trim(), |
| | | mtype = WGType, |
| | | conttacts = excelTable.Rows[i][4].ToString().Trim(), |
| | | conttphone = excelTable.Rows[i][5].ToString().Trim(), |
| | | addr = excelTable.Rows[i][6].ToString().Trim(), |
| | | Operator = User, |
| | | CreateDate = DateTime.Now.ToString(), |
| | | btype = WXType, |
| | | htype = KHType |
| | | } |
| | | }); |
| | | } |
| | | bool aa = DapperHelper.DoTransaction(list); |
| | | if (aa) |
| | | { |
| | | StuCode = "200"; |
| | | message = "导å
¥æåï¼"; |
| | | } |
| | | else |
| | | { |
| | | StuCode = "300"; |
| | | message = "导å
¥å¤±è´¥ï¼"; |
| | | } |
| | | } |
| | | catch (Exception e) |
| | | { |
| | |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelæ°æ®ä¸ä¼ ,å®¢æ·æ¸
åã |
| | | public static string FiveSubmit(string FileCode, string User, out string StuCode) |
| | | { |
| | | string message = ""; |
| | | StuCode = ""; |
| | | try |
| | | { |
| | | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | StuCode = "300"; |
| | | message = e.Message; |
| | | } |
| | | return message; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelæ°æ®ä¸ä¼ ,ä»åºå®ä¹ã |
| | | #regionãExcelæ°æ®ä¸ä¼ ,ä»åºãåºä½å®ä¹ã |
| | | public static string SixOneSubmit(string FileCode, string User, out string StuCode) |
| | | { |
| | | string message = ""; |
| | | StuCode = ""; |
| | | string sql = ""; |
| | | List<object> list = new List<object>(); |
| | | var dynamicParams = new DynamicParameters(); |
| | | try |
| | | { |
| | | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | StuCode = "300"; |
| | | message = e.Message; |
| | | } |
| | | return message; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelæ°æ®ä¸ä¼ ,åºåºå®ä¹ã |
| | | public static string SixTwoSubmit(string FileCode, string User, out string StuCode) |
| | | { |
| | | string message = ""; |
| | | StuCode = ""; |
| | | try |
| | | { |
| | | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | StuCode = "300"; |
| | | message = e.Message; |
| | | } |
| | | return message; |
| | | } |
| | | #endregion |
| | | |
| | | #regionãExcelæ°æ®ä¸ä¼ ,åºä½å®ä¹ã |
| | | public static string SixThreeSubmit(string FileCode, string User, out string StuCode) |
| | | { |
| | | string message = ""; |
| | | StuCode = ""; |
| | | try |
| | | { |
| | | |
| | | list.Clear(); |
| | | List<DataTable> excelTable = new List<DataTable>(); |
| | | excelTable = ImportExcel.ExcelToTableList(FileCode); |
| | | //导å
¥ä»åº |
| | | for (int k = 0; k < excelTable[0].Rows.Count; k++) |
| | | { |
| | | sql = @"insert into T_Sec_Stck(code,name,description,lm_user,lm_date) |
| | | values(@code,@name,@description,@Operator,@CreateDate)"; |
| | | list.Add(new |
| | | { |
| | | str = sql, |
| | | parm = new |
| | | { |
| | | code = excelTable[0].Rows[k][1].ToString().Trim(), |
| | | name = excelTable[0].Rows[k][2].ToString().Trim(), |
| | | description = excelTable[0].Rows[k][3].ToString().Trim(), |
| | | CreateDate = DateTime.Now.ToString(), |
| | | Operator = User |
| | | } |
| | | }); |
| | | } |
| | | //导å
¥åºä½ |
| | | for (int i = 0; i < excelTable[1].Rows.Count; i++) |
| | | { |
| | | sql = @"insert into T_Sec_Loca(code,name,description,stock_code,lm_user,lm_date) |
| | | values(@code,@name,@description,@stock_code,@Operator,@CreateDate)"; |
| | | list.Add(new |
| | | { |
| | | str = sql, |
| | | parm = new |
| | | { |
| | | code = excelTable[1].Rows[i][1].ToString().Trim(), |
| | | name = excelTable[1].Rows[i][2].ToString().Trim(), |
| | | stock_code = excelTable[1].Rows[i][3].ToString().Trim(), |
| | | description = excelTable[1].Rows[i][4].ToString().Trim(), |
| | | Operator = User, |
| | | CreateDate = DateTime.Now.ToString() |
| | | } |
| | | }); |
| | | } |
| | | bool aa = DapperHelper.DoTransaction(list); |
| | | if (aa) |
| | | { |
| | | StuCode = "200"; |
| | | message = "导å
¥æåï¼"; |
| | | } |
| | | else |
| | | { |
| | | StuCode = "300"; |
| | | message = "导å
¥å¤±è´¥ï¼"; |
| | | } |
| | | } |
| | | catch (Exception e) |
| | | { |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using Newtonsoft.Json; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Data; |
| | | using System.Linq; |
| | | using System.Net; |
| | | using System.Net.Http; |
| | | using System.Web; |
| | | |
| | | namespace VueWebApi.Tools |
| | | { |
| | | public class PrintMessage |
| | | { |
| | | public string code { get; set; } |
| | | public string Message { get; set; } |
| | | public DataTable data { get; set; } |
| | | |
| | | public HttpResponseMessage ResponseMess(ToMessage mes) |
| | | { |
| | | HttpResponseMessage result = new HttpResponseMessage { StatusCode = HttpStatusCode.OK, Content = new StringContent(JsonConvert.SerializeObject(mes), System.Text.Encoding.UTF8) }; |
| | | return result; |
| | | } |
| | | } |
| | | } |
| | |
| | | <DefineConstants>TRACE</DefineConstants> |
| | | <ErrorReport>prompt</ErrorReport> |
| | | <WarningLevel>4</WarningLevel> |
| | | <DocumentationFile>bin\VueWebApi.xml</DocumentationFile> |
| | | </PropertyGroup> |
| | | <ItemGroup> |
| | | <Reference Include="BouncyCastle.Crypto, Version=1.8.9.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL"> |
| | |
| | | </Reference> |
| | | <Reference Include="FastReport"> |
| | | <HintPath>..\..\..\FastReports\FastReport.Net\FastReport.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="FastReport.Bars, Version=2014.2.3.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL"> |
| | | <SpecificVersion>False</SpecificVersion> |
| | | <HintPath>C:\Users\YL\Desktop\æå°\æå°\Rework\Rework\bin\Debug\FastReport.Bars.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="FastReport.Editor, Version=2014.2.3.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL"> |
| | | <SpecificVersion>False</SpecificVersion> |
| | | <HintPath>C:\Users\YL\Desktop\æå°\æå°\Rework\Rework\bin\Debug\FastReport.Editor.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="FastReport.Service"> |
| | | <HintPath>C:\Users\YL\Desktop\æå°\æå°\Rework\Rework\bin\Debug\FastReport.Service.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="FastReport.VSDesign"> |
| | | <HintPath>C:\Users\YL\Desktop\æå°\æå°\Rework\Rework\bin\Debug\FastReport.VSDesign.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="FastReport.Web"> |
| | | <HintPath>..\..\..\FastReports\FastReport.Net\FastReport.Web.dll</HintPath> |
| | |
| | | <Reference Include="log4net, Version=2.0.14.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\log4net.2.0.14\lib\net45\log4net.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.AspNetCore.Http.Abstractions, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.AspNetCore.Http.Abstractions.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.AspNetCore.Http.Features, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.AspNetCore.Http.Features.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Features.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.AspNetCore.Mvc.Abstractions, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.AspNetCore.Mvc.Abstractions.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Abstractions.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.AspNetCore.Routing.Abstractions, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.AspNetCore.Routing.Abstractions.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Routing.Abstractions.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.5.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.CSharp" /> |
| | | <Reference Include="Microsoft.Extensions.Primitives, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.Extensions.Primitives.2.2.0\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Microsoft.Net.Http.Headers, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Microsoft.Net.Http.Headers.2.2.0\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath> |
| | | </Reference> |
| | |
| | | <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="System.CodeDom, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.CodeDom.6.0.0\lib\net461\System.CodeDom.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="System.Data" /> |
| | | <Reference Include="System.Diagnostics.PerformanceCounter, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.Diagnostics.PerformanceCounter.5.0.0\lib\net461\System.Diagnostics.PerformanceCounter.dll</HintPath> |
| | |
| | | <Reference Include="System.IO.Pipelines, Version=5.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.IO.Pipelines.5.0.1\lib\net461\System.IO.Pipelines.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="System.Management" /> |
| | | <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath> |
| | | </Reference> |
| | |
| | | </Reference> |
| | | <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="System.Text.Encodings.Web, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.Text.Encodings.Web.4.5.0\lib\netstandard2.0\System.Text.Encodings.Web.dll</HintPath> |
| | | </Reference> |
| | | <Reference Include="System.Threading.Channels, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> |
| | | <HintPath>..\packages\System.Threading.Channels.5.0.0\lib\net461\System.Threading.Channels.dll</HintPath> |
| | |
| | | <Compile Include="Controllers\ErpSyncMesController.cs" /> |
| | | <Compile Include="Controllers\GridReportController.cs" /> |
| | | <Compile Include="Controllers\ImportExcelController.cs" /> |
| | | <Compile Include="Controllers\KanBanManagerentController.cs" /> |
| | | <Compile Include="Controllers\LoginController.cs" /> |
| | | <Compile Include="Controllers\MaterialManagerController.cs" /> |
| | | <Compile Include="Controllers\ProductionManagementController.cs" /> |
| | |
| | | <Compile Include="Controllers\QualityManagementController.cs" /> |
| | | <Compile Include="Controllers\SystemSettingController.cs" /> |
| | | <Compile Include="Controllers\ValuesController.cs" /> |
| | | <Compile Include="DDKanBanModel\ShopTopLeft.cs" /> |
| | | <Compile Include="DLL\BLL\BasicSettingBLL.cs" /> |
| | | <Compile Include="DLL\BLL\DeviceManagerBLL.cs" /> |
| | | <Compile Include="DLL\BLL\ErpSyncMesBLL.cs" /> |
| | | <Compile Include="DLL\BLL\ExcelCheckBLL.cs" /> |
| | | <Compile Include="DLL\BLL\GridReportBLL.cs" /> |
| | | <Compile Include="DLL\BLL\KanBanManagerentBLL.cs" /> |
| | | <Compile Include="DLL\BLL\LoginBLL.cs" /> |
| | | <Compile Include="DLL\BLL\MaterialManagerBLL.cs" /> |
| | | <Compile Include="DLL\BLL\ProductionManagementBLL.cs" /> |
| | |
| | | <Compile Include="DLL\DAL\ErpSyncMesDAL.cs" /> |
| | | <Compile Include="DLL\DAL\ExcelCheckDAL.cs" /> |
| | | <Compile Include="DLL\DAL\GridReportDAL.cs" /> |
| | | <Compile Include="DLL\DAL\KanBanManagerentDAL.cs" /> |
| | | <Compile Include="DLL\DAL\LoginDAL.cs" /> |
| | | <Compile Include="DLL\DAL\MaterialManagerDAL.cs" /> |
| | | <Compile Include="DLL\DAL\ProductionManagementDAL.cs" /> |
| | |
| | | <Compile Include="Tools\JwtTools.cs" /> |
| | | <Compile Include="Tools\LogHelper.cs" /> |
| | | <Compile Include="Tools\NPOIHelper.cs" /> |
| | | <Compile Include="Tools\PrintMessage.cs" /> |
| | | <Compile Include="Tools\RedisHelper.cs" /> |
| | | <Compile Include="Tools\Regedit.cs" /> |
| | | <Compile Include="Tools\ScanStartReport.cs" /> |
| | |
| | | <Content Include="grf\æ¥å·¥æå°æ ç¾.grf" /> |
| | | <Content Include="grf\å¤åæ¶ææ ç¾.grf" /> |
| | | <Content Include="Excel\è§è²æ¸
å.xls" /> |
| | | <Content Include="Excel\ä»åºåºä½æ¸
å.xls" /> |
| | | <Content Include="Excel\徿¥åä½.xls" /> |
| | | <Content Include="grf\Rework.frx" /> |
| | | <None Include="Scripts\jquery-3.4.1.intellisense.js" /> |
| | | <Content Include="Scripts\jquery-3.4.1.js" /> |
| | | <Content Include="Scripts\jquery-3.4.1.min.js" /> |
| | |
| | | <UseGlobalApplicationHostFile /> |
| | | <LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig> |
| | | <NameOfLastUsedPublishProfile>D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile> |
| | | <ProjectView>ShowAllFiles</ProjectView> |
| | | <ProjectView>ProjectFiles</ProjectView> |
| | | <Controller_SelectedScaffolderID>ApiControllerEmptyScaffolder</Controller_SelectedScaffolderID> |
| | | <Controller_SelectedScaffolderCategoryPath>root/Common/Web API</Controller_SelectedScaffolderCategoryPath> |
| | | <WebStackScaffolding_ControllerDialogWidth>600</WebStackScaffolding_ControllerDialogWidth> |
| | |
| | | </appSettings> |
| | | <system.web> |
| | | <compilation debug="true" targetFramework="4.6.1" /> |
| | | <customErrors mode="Off"/> |
| | | <customErrors mode="Off" /> |
| | | <httpRuntime targetFramework="4.6.1" /> |
| | | <!--sessionå¤±ææ¶é´--> |
| | | <sessionState mode="InProc" timeout="240"> |
| | |
| | | <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.0.0.0" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> |
| | | </dependentAssembly> |
| | | </assemblyBinding> |
| | | </runtime> |
| | | <system.codedom> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <configuration> |
| | | <appSettings> |
| | | <!-- path to folder with reports --> |
| | | <add key="FastReport.ReportsPath" value="C:\Program files\FastReports\FastReport.Net\Demos\WCF" /> |
| | | <!-- name of connection string for reports --> |
| | | <add key="FastReport.ConnectionStringName" value="FastReportDemo" /> |
| | | <!-- Comma-separated list of available formats PDF,DOCX,XLSX,PPTX,RTF,ODS,ODT,MHT,CSV,DBF,XML,TXT,FPX. |
| | | You can delete any or change order in this list. --> |
| | | <add key="FastReport.Gear" value="PDF,DOCX,XLSX,PPTX,RTF,ODS,ODT,MHT,CSV,DBF,XML,TXT,FPX" /> |
| | | </appSettings> |
| | | <connectionStrings> |
| | | <!-- you need change path to database to your own --> |
| | | <add name="FastReportDemo" connectionString="XsdFile=;XmlFile=C:\MyProjects\fr.net\Demos\Reports\nwind.xml"/> |
| | | </connectionStrings> |
| | | <system.web> |
| | | <compilation debug="true" /> |
| | | <membership defaultProvider="ClientAuthenticationMembershipProvider"> |
| | | <providers> |
| | | <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> |
| | | </providers> |
| | | </membership> |
| | | <roleManager defaultProvider="ClientRoleProvider" enabled="true"> |
| | | <providers> |
| | | <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> |
| | | </providers> |
| | | </roleManager> |
| | | </system.web> |
| | | <!-- When deploying the service library project, the content of the config file must be added to the host's |
| | | app.config file. System.Configuration does not support config files for libraries. --> |
| | | <system.serviceModel> |
| | | <services> |
| | | <service behaviorConfiguration="FastReportServiceBehavior" name="FastReport.Service.ReportService"> |
| | | <endpoint address="" binding="wsHttpBinding" contract="FastReport.Service.IFastReportService"> |
| | | <identity> |
| | | <dns value="localhost" /> |
| | | </identity> |
| | | </endpoint> |
| | | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
| | | <host> |
| | | <baseAddresses> |
| | | <add baseAddress="http://localhost:8732/FastReportService/" /> |
| | | </baseAddresses> |
| | | </host> |
| | | </service> |
| | | </services> |
| | | <behaviors> |
| | | <serviceBehaviors> |
| | | <behavior name="FastReportServiceBehavior"> |
| | | <serviceMetadata httpGetEnabled="True" /> |
| | | <serviceDebug includeExceptionDetailInFaults="True" /> |
| | | </behavior> |
| | | </serviceBehaviors> |
| | | </behaviors> |
| | | <bindings> |
| | | <basicHttpBinding> |
| | | <binding messageEncoding="Mtom" |
| | | closeTimeout="00:02:00" openTimeout="00:02:00" |
| | | receiveTimeout="00:10:00" sendTimeout="00:02:00" |
| | | maxReceivedMessageSize="67108864" maxBufferSize="65536" |
| | | transferMode="Streamed"> |
| | | <security mode="None"> |
| | | <transport clientCredentialType="None" /> |
| | | </security> |
| | | </binding> |
| | | </basicHttpBinding> |
| | | </bindings> |
| | | </system.serviceModel> |
| | | <startup> |
| | | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> |
| | | </startup> |
| | | </configuration> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.AspNetCore.Http.Abstractions</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:Microsoft.Extensions.Internal.ActivatorUtilities"> |
| | | <summary> |
| | | Helper code for the various activator services. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type,System.Object[])"> |
| | | <summary> |
| | | Instantiate a type with constructor arguments provided directly and/or from an <see cref="T:System.IServiceProvider"/>. |
| | | </summary> |
| | | <param name="provider">The service provider used to resolve dependencies</param> |
| | | <param name="instanceType">The type to activate</param> |
| | | <param name="parameters">Constructor arguments not provided by the <paramref name="provider"/>.</param> |
| | | <returns>An activated object of type instanceType</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateFactory(System.Type,System.Type[])"> |
| | | <summary> |
| | | Create a delegate that will instantiate a type with constructor arguments provided directly |
| | | and/or from an <see cref="T:System.IServiceProvider"/>. |
| | | </summary> |
| | | <param name="instanceType">The type to activate</param> |
| | | <param name="argumentTypes"> |
| | | The types of objects, in order, that will be passed to the returned function as its second parameter |
| | | </param> |
| | | <returns> |
| | | A factory that will instantiate instanceType using an <see cref="T:System.IServiceProvider"/> |
| | | and an argument array containing objects matching the types defined in argumentTypes |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateInstance``1(System.IServiceProvider,System.Object[])"> |
| | | <summary> |
| | | Instantiate a type with constructor arguments provided directly and/or from an <see cref="T:System.IServiceProvider"/>. |
| | | </summary> |
| | | <typeparam name="T">The type to activate</typeparam> |
| | | <param name="provider">The service provider used to resolve dependencies</param> |
| | | <param name="parameters">Constructor arguments not provided by the <paramref name="provider"/>.</param> |
| | | <returns>An activated object of type T</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.GetServiceOrCreateInstance``1(System.IServiceProvider)"> |
| | | <summary> |
| | | Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly. |
| | | </summary> |
| | | <typeparam name="T">The type of the service</typeparam> |
| | | <param name="provider">The service provider used to resolve dependencies</param> |
| | | <returns>The resolved service or created instance</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)"> |
| | | <summary> |
| | | Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly. |
| | | </summary> |
| | | <param name="provider">The service provider</param> |
| | | <param name="type">The type of the service</param> |
| | | <returns>The resolved service or created instance</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Internal.ActivatorUtilitiesConstructorAttribute"> |
| | | <summary> |
| | | Marks the constructor to be used when activating type using <see cref="T:Microsoft.Extensions.Internal.ActivatorUtilities"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Internal.ObjectFactory"> |
| | | <summary> |
| | | The result of <see cref="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateFactory(System.Type,System.Type[])"/>. |
| | | </summary> |
| | | <param name="serviceProvider">The <see cref="T:System.IServiceProvider"/> to get service arguments from.</param> |
| | | <param name="arguments">Additional constructor arguments.</param> |
| | | <returns>The instantiated type.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo"> |
| | | <summary> |
| | | Used to store the results of an Authenticate call. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo.Principal"> |
| | | <summary> |
| | | The <see cref="T:System.Security.Claims.ClaimsPrincipal"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo.Properties"> |
| | | <summary> |
| | | The <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo.Description"> |
| | | <summary> |
| | | The <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"> |
| | | <summary> |
| | | Contains information describing an authentication provider. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.#ctor"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"/> class |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"/> class |
| | | </summary> |
| | | <param name="items"></param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.Items"> |
| | | <summary> |
| | | Contains metadata about the authentication provider. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.AuthenticationScheme"> |
| | | <summary> |
| | | Gets or sets the name used to reference the authentication middleware instance. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.DisplayName"> |
| | | <summary> |
| | | Gets or sets the display name for the authentication provider. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.Authentication.AuthenticationManager.AutomaticScheme"> |
| | | <summary> |
| | | Constant used to represent the automatic scheme |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationManager.ForbidAsync"> |
| | | <summary> |
| | | Creates a challenge for the authentication manager with <see cref="F:Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior.Forbidden"/>. |
| | | </summary> |
| | | <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous challenge operation.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationManager.ForbidAsync(Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties)"> |
| | | <summary> |
| | | Creates a challenge for the authentication manager with <see cref="F:Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior.Forbidden"/>. |
| | | </summary> |
| | | <param name="properties">Additional arbitrary values which may be used by particular authentication types.</param> |
| | | <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous challenge operation.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"> |
| | | <summary> |
| | | Dictionary used to store state values about the authentication session. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.#ctor"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"/> class |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"/> class |
| | | </summary> |
| | | <param name="items"></param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.Items"> |
| | | <summary> |
| | | State values about the authentication session. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.IsPersistent"> |
| | | <summary> |
| | | Gets or sets whether the authentication session is persisted across multiple requests. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.RedirectUri"> |
| | | <summary> |
| | | Gets or sets the full path or absolute URI to be used as an HTTP redirect response value. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.IssuedUtc"> |
| | | <summary> |
| | | Gets or sets the time at which the authentication ticket was issued. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.ExpiresUtc"> |
| | | <summary> |
| | | Gets or sets the time at which the authentication ticket expires. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.AllowRefresh"> |
| | | <summary> |
| | | Gets or sets if refreshing the authentication session should be allowed. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ConnectionInfo.Id"> |
| | | <summary> |
| | | Gets or sets a unique identifier to represent this connection. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.CookieBuilder"> |
| | | <summary> |
| | | Defines settings used to create a cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Name"> |
| | | <summary> |
| | | The name of the cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Path"> |
| | | <summary> |
| | | The cookie path. |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Path"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Domain"> |
| | | <summary> |
| | | The domain to associate the cookie with. |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.HttpOnly"> |
| | | <summary> |
| | | Indicates whether a cookie is accessible by client-side script. |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.HttpOnly"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.SameSite"> |
| | | <summary> |
| | | The SameSite attribute of the cookie. The default value is <see cref="F:Microsoft.AspNetCore.Http.SameSiteMode.Lax"/> |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.SameSite"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.SecurePolicy"> |
| | | <summary> |
| | | The policy that will be used to determine <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Secure"/>. |
| | | This is determined from the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> passed to <see cref="M:Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext,System.DateTimeOffset)"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Expiration"> |
| | | <summary> |
| | | Gets or sets the lifespan of a cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.MaxAge"> |
| | | <summary> |
| | | Gets or sets the max-age for the cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.IsEssential"> |
| | | <summary> |
| | | Indicates if this cookie is essential for the application to function correctly. If true then |
| | | consent policy checks may be bypassed. The default value is false. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Creates the cookie options from the given <paramref name="context"/>. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.</param> |
| | | <returns>The cookie options.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext,System.DateTimeOffset)"> |
| | | <summary> |
| | | Creates the cookie options from the given <paramref name="context"/> with an expiration based on <paramref name="expiresFrom"/> and <see cref="P:Microsoft.AspNetCore.Http.CookieBuilder.Expiration"/>. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.</param> |
| | | <param name="expiresFrom">The time to use as the base for computing <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Expires" />.</param> |
| | | <returns>The cookie options.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.CookieSecurePolicy"> |
| | | <summary> |
| | | Determines how cookie security properties are set. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.CookieSecurePolicy.SameAsRequest"> |
| | | <summary> |
| | | If the URI that provides the cookie is HTTPS, then the cookie will only be returned to the server on |
| | | subsequent HTTPS requests. Otherwise if the URI that provides the cookie is HTTP, then the cookie will |
| | | be returned to the server on all HTTP and HTTPS requests. This is the default value because it ensures |
| | | HTTPS for all authenticated requests on deployed servers, and also supports HTTP for localhost development |
| | | and for servers that do not have HTTPS support. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.CookieSecurePolicy.Always"> |
| | | <summary> |
| | | Secure is always marked true. Use this value when your login page and all subsequent pages |
| | | requiring the authenticated identity are HTTPS. Local development will also need to be done with HTTPS urls. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.CookieSecurePolicy.None"> |
| | | <summary> |
| | | Secure is not marked true. Use this value when your login page is HTTPS, but other pages |
| | | on the site which are HTTP also require authentication information. This setting is not recommended because |
| | | the authentication information provided with an HTTP request may be observed and used by other computers |
| | | on your local network or wireless connection. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.Append(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String,Microsoft.Extensions.Primitives.StringValues)"> |
| | | <summary> |
| | | Add new values. Each item remains a separate array entry. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <param name="value">The header value.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.AppendCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String,System.String[])"> |
| | | <summary> |
| | | Quotes any values containing commas, and then comma joins all of the values with any existing values. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <param name="values">The header values.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.GetCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String)"> |
| | | <summary> |
| | | Get the associated values from the collection separated into individual values. |
| | | Quoted values will not be split, and the quotes will be removed. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <returns>the associated values from the collection separated into individual values, or StringValues.Empty if the key is not present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.SetCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String,System.String[])"> |
| | | <summary> |
| | | Quotes any values containing commas, and then comma joins all of the values. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <param name="values">The header values.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpResponseWritingExtensions"> |
| | | <summary> |
| | | Convenience methods for writing to the response. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponseWritingExtensions.WriteAsync(Microsoft.AspNetCore.Http.HttpResponse,System.String,System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Writes the given text to the response body. UTF-8 encoding will be used. |
| | | </summary> |
| | | <param name="response">The <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>.</param> |
| | | <param name="text">The text to write to the response.</param> |
| | | <param name="cancellationToken">Notifies when request operations should be cancelled.</param> |
| | | <returns>A task that represents the completion of the write operation.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponseWritingExtensions.WriteAsync(Microsoft.AspNetCore.Http.HttpResponse,System.String,System.Text.Encoding,System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Writes the given text to the response body using the given encoding. |
| | | </summary> |
| | | <param name="response">The <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>.</param> |
| | | <param name="text">The text to write to the response.</param> |
| | | <param name="encoding">The encoding to use.</param> |
| | | <param name="cancellationToken">Notifies when request operations should be cancelled.</param> |
| | | <returns>A task that represents the completion of the write operation.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.DeclareTrailer(Microsoft.AspNetCore.Http.HttpResponse,System.String)"> |
| | | <summary> |
| | | Adds the given trailer name to the 'Trailer' response header. This must happen before the response headers are sent. |
| | | </summary> |
| | | <param name="response"></param> |
| | | <param name="trailerName"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.SupportsTrailers(Microsoft.AspNetCore.Http.HttpResponse)"> |
| | | <summary> |
| | | Indicates if the server supports sending trailer headers for this response. |
| | | </summary> |
| | | <param name="response"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.AppendTrailer(Microsoft.AspNetCore.Http.HttpResponse,System.String,Microsoft.Extensions.Primitives.StringValues)"> |
| | | <summary> |
| | | Adds the given trailer header to the trailers collection to be sent at the end of the response body. |
| | | Check <see cref="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.SupportsTrailers(Microsoft.AspNetCore.Http.HttpResponse)" /> or an InvalidOperationException may be thrown. |
| | | </summary> |
| | | <param name="response"></param> |
| | | <param name="trailerName"></param> |
| | | <param name="trailerValues"></param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.FragmentString"> |
| | | <summary> |
| | | Provides correct handling for FragmentString value when needed to generate a URI string |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.FragmentString.Empty"> |
| | | <summary> |
| | | Represents the empty fragment string. This field is read-only. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.#ctor(System.String)"> |
| | | <summary> |
| | | Initialize the fragment string with a given value. This value must be in escaped and delimited format with |
| | | a leading '#' character. |
| | | </summary> |
| | | <param name="value">The fragment string to be assigned to the Value property.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.FragmentString.Value"> |
| | | <summary> |
| | | The escaped fragment string with the leading '#' character |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.FragmentString.HasValue"> |
| | | <summary> |
| | | True if the fragment string is not empty |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.ToString"> |
| | | <summary> |
| | | Provides the fragment string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '#' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The fragment string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.ToUriComponent"> |
| | | <summary> |
| | | Provides the fragment string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '#' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The fragment string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Returns an FragmentString given the fragment as it is escaped in the URI format. The string MUST NOT contain any |
| | | value that is not a fragment. |
| | | </summary> |
| | | <param name="uriComponent">The escaped fragment as it appears in the URI format.</param> |
| | | <returns>The resulting FragmentString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Returns an FragmentString given the fragment as from a Uri object. Relative Uri objects are not supported. |
| | | </summary> |
| | | <param name="uri">The Uri object</param> |
| | | <returns>The resulting FragmentString</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HostString"> |
| | | <summary> |
| | | Represents the host portion of a URI can be used to construct URI's properly formatted and encoded for use in |
| | | HTTP headers. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.#ctor(System.String)"> |
| | | <summary> |
| | | Creates a new HostString without modification. The value should be Unicode rather than punycode, and may have a port. |
| | | IPv4 and IPv6 addresses are also allowed, and also may have ports. |
| | | </summary> |
| | | <param name="value"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.#ctor(System.String,System.Int32)"> |
| | | <summary> |
| | | Creates a new HostString from its host and port parts. |
| | | </summary> |
| | | <param name="host">The value should be Unicode rather than punycode. IPv6 addresses must use square braces.</param> |
| | | <param name="port">A positive, greater than 0 value representing the port in the host string.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HostString.Value"> |
| | | <summary> |
| | | Returns the original value from the constructor. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HostString.Host"> |
| | | <summary> |
| | | Returns the value of the host part of the value. The port is removed if it was present. |
| | | IPv6 addresses will have brackets added if they are missing. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HostString.Port"> |
| | | <summary> |
| | | Returns the value of the port part of the host, or <value>null</value> if none is found. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.ToString"> |
| | | <summary> |
| | | Returns the value as normalized by ToUriComponent(). |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.ToUriComponent"> |
| | | <summary> |
| | | Returns the value properly formatted and encoded for use in a URI in a HTTP header. |
| | | Any Unicode is converted to punycode. IPv6 addresses will have brackets added if they are missing. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Creates a new HostString from the given URI component. |
| | | Any punycode will be converted to Unicode. |
| | | </summary> |
| | | <param name="uriComponent"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Creates a new HostString from the host and port of the give Uri instance. |
| | | Punycode will be converted to Unicode. |
| | | </summary> |
| | | <param name="uri"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.MatchesAny(Microsoft.Extensions.Primitives.StringSegment,System.Collections.Generic.IList{Microsoft.Extensions.Primitives.StringSegment})"> |
| | | <summary> |
| | | Matches the host portion of a host header value against a list of patterns. |
| | | The host may be the encoded punycode or decoded unicode form so long as the pattern |
| | | uses the same format. |
| | | </summary> |
| | | <param name="value">Host header value with or without a port.</param> |
| | | <param name="patterns">A set of pattern to match, without ports.</param> |
| | | <remarks> |
| | | The port on the given value is ignored. The patterns should not have ports. |
| | | The patterns may be exact matches like "example.com", a top level wildcard "*" |
| | | that matches all hosts, or a subdomain wildcard like "*.example.com" that matches |
| | | "abc.example.com:443" but not "example.com:443". |
| | | Matching is case insensitive. |
| | | </remarks> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.Equals(Microsoft.AspNetCore.Http.HostString)"> |
| | | <summary> |
| | | Compares the equality of the Value property, ignoring case. |
| | | </summary> |
| | | <param name="other"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.Equals(System.Object)"> |
| | | <summary> |
| | | Compares against the given object only if it is a HostString. |
| | | </summary> |
| | | <param name="obj"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.GetHashCode"> |
| | | <summary> |
| | | Gets a hash code for the value. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.op_Equality(Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.HostString)"> |
| | | <summary> |
| | | Compares the two instances for equality. |
| | | </summary> |
| | | <param name="left"></param> |
| | | <param name="right"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.op_Inequality(Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.HostString)"> |
| | | <summary> |
| | | Compares the two instances for inequality. |
| | | </summary> |
| | | <param name="left"></param> |
| | | <param name="right"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.GetParts(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment@,Microsoft.Extensions.Primitives.StringSegment@)"> |
| | | <summary> |
| | | Parses the current value. IPv6 addresses will have brackets added if they are missing. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpContext"> |
| | | <summary> |
| | | Encapsulates all HTTP-specific information about an individual HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Features"> |
| | | <summary> |
| | | Gets the collection of HTTP features provided by the server and middleware available on this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Request"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> object for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Response"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/> object for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Connection"> |
| | | <summary> |
| | | Gets information about the underlying connection for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.WebSockets"> |
| | | <summary> |
| | | Gets an object that manages the establishment of WebSocket connections for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Authentication"> |
| | | <summary> |
| | | This is obsolete and will be removed in a future version. |
| | | The recommended alternative is to use Microsoft.AspNetCore.Authentication.AuthenticationHttpContextExtensions. |
| | | See https://go.microsoft.com/fwlink/?linkid=845470. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.User"> |
| | | <summary> |
| | | Gets or sets the user for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Items"> |
| | | <summary> |
| | | Gets or sets a key/value collection that can be used to share data within the scope of this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.RequestServices"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:System.IServiceProvider"/> that provides access to the request's service container. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.RequestAborted"> |
| | | <summary> |
| | | Notifies when the connection underlying this request is aborted and thus request operations should be |
| | | cancelled. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.TraceIdentifier"> |
| | | <summary> |
| | | Gets or sets a unique identifier to represent this request in trace logs. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Session"> |
| | | <summary> |
| | | Gets or sets the object used to manage user session data for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpContext.Abort"> |
| | | <summary> |
| | | Aborts the connection underlying this request. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpRequest"> |
| | | <summary> |
| | | Represents the incoming side of an individual HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.HttpContext"/> for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Method"> |
| | | <summary> |
| | | Gets or sets the HTTP method. |
| | | </summary> |
| | | <returns>The HTTP method.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Scheme"> |
| | | <summary> |
| | | Gets or sets the HTTP request scheme. |
| | | </summary> |
| | | <returns>The HTTP request scheme.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.IsHttps"> |
| | | <summary> |
| | | Returns true if the RequestScheme is https. |
| | | </summary> |
| | | <returns>true if this request is using https; otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Host"> |
| | | <summary> |
| | | Gets or sets the Host header. May include the port. |
| | | </summary> |
| | | <return>The Host header.</return> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"> |
| | | <summary> |
| | | Gets or sets the RequestPathBase. |
| | | </summary> |
| | | <returns>The RequestPathBase.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Path"> |
| | | <summary> |
| | | Gets or sets the request path from RequestPath. |
| | | </summary> |
| | | <returns>The request path from RequestPath.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.QueryString"> |
| | | <summary> |
| | | Gets or sets the raw query string used to create the query collection in Request.Query. |
| | | </summary> |
| | | <returns>The raw query string.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Query"> |
| | | <summary> |
| | | Gets the query value collection parsed from Request.QueryString. |
| | | </summary> |
| | | <returns>The query value collection parsed from Request.QueryString.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Protocol"> |
| | | <summary> |
| | | Gets or sets the RequestProtocol. |
| | | </summary> |
| | | <returns>The RequestProtocol.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Headers"> |
| | | <summary> |
| | | Gets the request headers. |
| | | </summary> |
| | | <returns>The request headers.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Cookies"> |
| | | <summary> |
| | | Gets the collection of Cookies for this request. |
| | | </summary> |
| | | <returns>The collection of Cookies for this request.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.ContentLength"> |
| | | <summary> |
| | | Gets or sets the Content-Length header. |
| | | </summary> |
| | | <returns>The value of the Content-Length header, if any.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.ContentType"> |
| | | <summary> |
| | | Gets or sets the Content-Type header. |
| | | </summary> |
| | | <returns>The Content-Type header.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Body"> |
| | | <summary> |
| | | Gets or sets the RequestBody Stream. |
| | | </summary> |
| | | <returns>The RequestBody Stream.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.HasFormContentType"> |
| | | <summary> |
| | | Checks the Content-Type header for form types. |
| | | </summary> |
| | | <returns>true if the Content-Type header represents a form content type; otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Form"> |
| | | <summary> |
| | | Gets or sets the request body as a form. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpRequest.ReadFormAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Reads the request body if it is a form. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpResponse"> |
| | | <summary> |
| | | Represents the outgoing side of an individual HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="P:Microsoft.AspNetCore.Http.HttpResponse.HttpContext"/> for this response. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.StatusCode"> |
| | | <summary> |
| | | Gets or sets the HTTP response code. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.Headers"> |
| | | <summary> |
| | | Gets the response headers. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.Body"> |
| | | <summary> |
| | | Gets or sets the response body <see cref="T:System.IO.Stream"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.ContentLength"> |
| | | <summary> |
| | | Gets or sets the value for the <c>Content-Length</c> response header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.ContentType"> |
| | | <summary> |
| | | Gets or sets the value for the <c>Content-Type</c> response header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.Cookies"> |
| | | <summary> |
| | | Gets an object that can be used to manage cookies for this response. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.HasStarted"> |
| | | <summary> |
| | | Gets a value indicating whether response headers have been sent to the client. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnStarting(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Adds a delegate to be invoked just before response headers will be sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to execute.</param> |
| | | <param name="state">A state object to capture and pass back to the delegate.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnStarting(System.Func{System.Threading.Tasks.Task})"> |
| | | <summary> |
| | | Adds a delegate to be invoked just before response headers will be sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to execute.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnCompleted(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Adds a delegate to be invoked after the response has finished being sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to invoke.</param> |
| | | <param name="state">A state object to capture and pass back to the delegate.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.RegisterForDispose(System.IDisposable)"> |
| | | <summary> |
| | | Registers an object for disposal by the host once the request has finished processing. |
| | | </summary> |
| | | <param name="disposable">The object to be disposed.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnCompleted(System.Func{System.Threading.Tasks.Task})"> |
| | | <summary> |
| | | Adds a delegate to be invoked after the response has finished being sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to invoke.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.Redirect(System.String)"> |
| | | <summary> |
| | | Returns a temporary redirect response (HTTP 302) to the client. |
| | | </summary> |
| | | <param name="location">The URL to redirect the client to. This must be properly encoded for use in http headers |
| | | where only ASCII characters are allowed.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.Redirect(System.String,System.Boolean)"> |
| | | <summary> |
| | | Returns a redirect response (HTTP 301 or HTTP 302) to the client. |
| | | </summary> |
| | | <param name="location">The URL to redirect the client to. This must be properly encoded for use in http headers |
| | | where only ASCII characters are allowed.</param> |
| | | <param name="permanent"><c>True</c> if the redirect is permanent (301), otherwise <c>false</c> (302).</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IMiddleware"> |
| | | <summary> |
| | | Defines middleware that can be added to the application's request pipeline. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IMiddleware.InvokeAsync(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Http.RequestDelegate)"> |
| | | <summary> |
| | | Request handling method. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <param name="next">The delegate representing the remaining middleware in the request pipeline.</param> |
| | | <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IMiddlewareFactory"> |
| | | <summary> |
| | | Provides methods to create middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IMiddlewareFactory.Create(System.Type)"> |
| | | <summary> |
| | | Creates a middleware instance for each request. |
| | | </summary> |
| | | <param name="middlewareType">The concrete <see cref="T:System.Type"/> of the <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/>.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/> instance.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IMiddlewareFactory.Release(Microsoft.AspNetCore.Http.IMiddleware)"> |
| | | <summary> |
| | | Releases a <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/> instance at the end of each request. |
| | | </summary> |
| | | <param name="middleware">The <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/> instance to release.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.PathString"> |
| | | <summary> |
| | | Provides correct escaping for Path and PathBase values when needed to reconstruct a request or redirect URI string |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.PathString.Empty"> |
| | | <summary> |
| | | Represents the empty path. This field is read-only. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.#ctor(System.String)"> |
| | | <summary> |
| | | Initialize the path string with a given value. This value must be in unescaped format. Use |
| | | PathString.FromUriComponent(value) if you have a path value which is in an escaped format. |
| | | </summary> |
| | | <param name="value">The unescaped path to be assigned to the Value property.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.PathString.Value"> |
| | | <summary> |
| | | The unescaped path value |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.PathString.HasValue"> |
| | | <summary> |
| | | True if the path is not empty |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.ToString"> |
| | | <summary> |
| | | Provides the path string escaped in a way which is correct for combining into the URI representation. |
| | | </summary> |
| | | <returns>The escaped path value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.ToUriComponent"> |
| | | <summary> |
| | | Provides the path string escaped in a way which is correct for combining into the URI representation. |
| | | </summary> |
| | | <returns>The escaped path value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Returns an PathString given the path as it is escaped in the URI format. The string MUST NOT contain any |
| | | value that is not a path. |
| | | </summary> |
| | | <param name="uriComponent">The escaped path as it appears in the URI format.</param> |
| | | <returns>The resulting PathString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Returns an PathString given the path as from a Uri object. Relative Uri objects are not supported. |
| | | </summary> |
| | | <param name="uri">The Uri object</param> |
| | | <returns>The resulting PathString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/>. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,System.StringComparison)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> when compared |
| | | using the specified comparison option. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that determines how this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and value are compared.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and returns |
| | | the remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,System.StringComparison,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> when compared |
| | | using the specified comparison option and returns the remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that determines how this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and value are compared.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString@,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and returns |
| | | the matched and remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="matched">The matched segments with the original casing in the source value.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,System.StringComparison,Microsoft.AspNetCore.Http.PathString@,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> when compared |
| | | using the specified comparison option and returns the matched and remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that determines how this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and value are compared.</param> |
| | | <param name="matched">The matched segments with the original casing in the source value.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Add(Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Adds two PathString instances into a combined PathString value. |
| | | </summary> |
| | | <returns>The combined PathString value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Add(Microsoft.AspNetCore.Http.QueryString)"> |
| | | <summary> |
| | | Combines a PathString and QueryString into the joined URI formatted string value. |
| | | </summary> |
| | | <returns>The joined URI formatted string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Equals(Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. |
| | | </summary> |
| | | <param name="other">The second PathString for comparison.</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Equals(Microsoft.AspNetCore.Http.PathString,System.StringComparison)"> |
| | | <summary> |
| | | Compares this PathString value to another value using a specific StringComparison type |
| | | </summary> |
| | | <param name="other">The second PathString for comparison</param> |
| | | <param name="comparisonType">The StringComparison type to use</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Equals(System.Object)"> |
| | | <summary> |
| | | Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. |
| | | </summary> |
| | | <param name="obj">The second PathString for comparison.</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.GetHashCode"> |
| | | <summary> |
| | | Returns the hash code for the PathString value. The hash code is provided by the OrdinalIgnoreCase implementation. |
| | | </summary> |
| | | <returns>The hash code</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Equality(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Operator call through to Equals |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Inequality(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Operator call through to Equals |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>True if both PathString values are not equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(System.String,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The ToString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(Microsoft.AspNetCore.Http.PathString,System.String)"> |
| | | <summary> |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The ToString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Operator call through to Add |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The PathString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.QueryString)"> |
| | | <summary> |
| | | Operator call through to Add |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The PathString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Implicit(System.String)~Microsoft.AspNetCore.Http.PathString"> |
| | | <summary> |
| | | Implicitly creates a new PathString from the given string. |
| | | </summary> |
| | | <param name="s"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Implicit(Microsoft.AspNetCore.Http.PathString)~System.String"> |
| | | <summary> |
| | | Implicitly calls ToString(). |
| | | </summary> |
| | | <param name="path"></param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareIServiceProviderNotAvailable"> |
| | | <summary> |
| | | '{0}' is not available. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareIServiceProviderNotAvailable(System.Object)"> |
| | | <summary> |
| | | '{0}' is not available. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNoInvokeMethod"> |
| | | <summary> |
| | | No public '{0}' or '{1}' method found for middleware of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNoInvokeMethod(System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | No public '{0}' or '{1}' method found for middleware of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNonTaskReturnType"> |
| | | <summary> |
| | | '{0}' or '{1}' does not return an object of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNonTaskReturnType(System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | '{0}' or '{1}' does not return an object of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNoParameters"> |
| | | <summary> |
| | | The '{0}' or '{1}' method's first argument must be of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNoParameters(System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | The '{0}' or '{1}' method's first argument must be of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddleMutlipleInvokes"> |
| | | <summary> |
| | | Multiple public '{0}' or '{1}' methods are available. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddleMutlipleInvokes(System.Object,System.Object)"> |
| | | <summary> |
| | | Multiple public '{0}' or '{1}' methods are available. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_PathMustStartWithSlash"> |
| | | <summary> |
| | | The path in '{0}' must start with '/'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_PathMustStartWithSlash(System.Object)"> |
| | | <summary> |
| | | The path in '{0}' must start with '/'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_InvokeMiddlewareNoService"> |
| | | <summary> |
| | | Unable to resolve service for type '{0}' while attempting to Invoke middleware '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_InvokeMiddlewareNoService(System.Object,System.Object)"> |
| | | <summary> |
| | | Unable to resolve service for type '{0}' while attempting to Invoke middleware '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_InvokeDoesNotSupportRefOrOutParams"> |
| | | <summary> |
| | | The '{0}' method must not have ref or out parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_InvokeDoesNotSupportRefOrOutParams(System.Object)"> |
| | | <summary> |
| | | The '{0}' method must not have ref or out parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_PortMustBeGreaterThanZero"> |
| | | <summary> |
| | | The value must be greater than zero. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_PortMustBeGreaterThanZero"> |
| | | <summary> |
| | | The value must be greater than zero. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNoMiddlewareFactory"> |
| | | <summary> |
| | | No service for type '{0}' has been registered. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNoMiddlewareFactory(System.Object)"> |
| | | <summary> |
| | | No service for type '{0}' has been registered. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareUnableToCreateMiddleware"> |
| | | <summary> |
| | | '{0}' failed to create middleware of type '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareUnableToCreateMiddleware(System.Object,System.Object)"> |
| | | <summary> |
| | | '{0}' failed to create middleware of type '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareExplicitArgumentsNotSupported"> |
| | | <summary> |
| | | Types that implement '{0}' do not support explicit arguments. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareExplicitArgumentsNotSupported(System.Object)"> |
| | | <summary> |
| | | Types that implement '{0}' do not support explicit arguments. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.ArgumentCannotBeNullOrEmpty"> |
| | | <summary> |
| | | Argument cannot be null or empty. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatArgumentCannotBeNullOrEmpty"> |
| | | <summary> |
| | | Argument cannot be null or empty. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.QueryString"> |
| | | <summary> |
| | | Provides correct handling for QueryString value when needed to reconstruct a request or redirect URI string |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.QueryString.Empty"> |
| | | <summary> |
| | | Represents the empty query string. This field is read-only. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.#ctor(System.String)"> |
| | | <summary> |
| | | Initialize the query string with a given value. This value must be in escaped and delimited format with |
| | | a leading '?' character. |
| | | </summary> |
| | | <param name="value">The query string to be assigned to the Value property.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.QueryString.Value"> |
| | | <summary> |
| | | The escaped query string with the leading '?' character |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.QueryString.HasValue"> |
| | | <summary> |
| | | True if the query string is not empty |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.ToString"> |
| | | <summary> |
| | | Provides the query string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '?' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The query string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.ToUriComponent"> |
| | | <summary> |
| | | Provides the query string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '?' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The query string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Returns an QueryString given the query as it is escaped in the URI format. The string MUST NOT contain any |
| | | value that is not a query. |
| | | </summary> |
| | | <param name="uriComponent">The escaped query as it appears in the URI format.</param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Returns an QueryString given the query as from a Uri object. Relative Uri objects are not supported. |
| | | </summary> |
| | | <param name="uri">The Uri object</param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.Create(System.String,System.String)"> |
| | | <summary> |
| | | Create a query string with a single given parameter name and value. |
| | | </summary> |
| | | <param name="name">The un-encoded parameter name</param> |
| | | <param name="value">The un-encoded parameter value</param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.Create(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> |
| | | <summary> |
| | | Creates a query string composed from the given name value pairs. |
| | | </summary> |
| | | <param name="parameters"></param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.Create(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.Extensions.Primitives.StringValues}})"> |
| | | <summary> |
| | | Creates a query string composed from the given name value pairs. |
| | | </summary> |
| | | <param name="parameters"></param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.RequestDelegate"> |
| | | <summary> |
| | | A function that can process an HTTP request. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the request.</param> |
| | | <returns>A task that represents the completion of request processing.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.WebSocketManager"> |
| | | <summary> |
| | | Manages the establishment of WebSocket connections for a specific HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.WebSocketManager.IsWebSocketRequest"> |
| | | <summary> |
| | | Gets a value indicating whether the request is a WebSocket establishment request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.WebSocketManager.WebSocketRequestedProtocols"> |
| | | <summary> |
| | | Gets the list of requested WebSocket sub-protocols. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.WebSocketManager.AcceptWebSocketAsync"> |
| | | <summary> |
| | | Transitions the request to a WebSocket connection. |
| | | </summary> |
| | | <returns>A task representing the completion of the transition.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.WebSocketManager.AcceptWebSocketAsync(System.String)"> |
| | | <summary> |
| | | Transitions the request to a WebSocket connection using the specified sub-protocol. |
| | | </summary> |
| | | <param name="subProtocol">The sub-protocol to use.</param> |
| | | <returns>A task representing the completion of the transition.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.MapExtensions"> |
| | | <summary> |
| | | Extension methods for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.MapExtensions.Map(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.PathString,System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})"> |
| | | <summary> |
| | | Branches the request pipeline based on matches of the given request path. If the request path starts with |
| | | the given path, the branch is executed. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="pathMatch">The request path to match.</param> |
| | | <param name="configuration">The branch to take for positive path matches.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"> |
| | | <summary> |
| | | Represents a middleware that maps a request path to a sub-request pipeline. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Builder.Extensions.MapOptions)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"/>. |
| | | </summary> |
| | | <param name="next">The delegate representing the next middleware in the request pipeline.</param> |
| | | <param name="options">The middleware options.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Executes the middleware. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <returns>A task that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapOptions"> |
| | | <summary> |
| | | Options for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapOptions.PathMatch"> |
| | | <summary> |
| | | The path to match. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapOptions.Branch"> |
| | | <summary> |
| | | The branch taken for a positive match. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"> |
| | | <summary> |
| | | Represents a middleware that runs a sub-request pipeline when a given predicate is matched. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"/>. |
| | | </summary> |
| | | <param name="next">The delegate representing the next middleware in the request pipeline.</param> |
| | | <param name="options">The middleware options.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Executes the middleware. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <returns>A task that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions"> |
| | | <summary> |
| | | Options for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions.Predicate"> |
| | | <summary> |
| | | The user callback that determines if the branch should be taken. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions.Branch"> |
| | | <summary> |
| | | The branch taken for a positive match. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware"> |
| | | <summary> |
| | | Represents a middleware that extracts the specified path base from request path and postpend it to the request path base. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware"/>. |
| | | </summary> |
| | | <param name="next">The delegate representing the next middleware in the request pipeline.</param> |
| | | <param name="pathBase">The path base to extract.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Executes the middleware. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <returns>A task that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.MapWhenExtensions"> |
| | | <summary> |
| | | Extension methods for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.MapWhenExtensions.MapWhen(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Http.HttpContext,System.Boolean},System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})"> |
| | | <summary> |
| | | Branches the request pipeline based on the result of the given predicate. |
| | | </summary> |
| | | <param name="app"></param> |
| | | <param name="predicate">Invoked with the request environment to determine if the branch should be taken</param> |
| | | <param name="configuration">Configures a branch to take</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.RunExtensions"> |
| | | <summary> |
| | | Extension methods for adding terminal middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.RunExtensions.Run(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.RequestDelegate)"> |
| | | <summary> |
| | | Adds a terminal middleware delegate to the application's request pipeline. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="handler">A delegate that handles the request.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UseExtensions"> |
| | | <summary> |
| | | Extension methods for adding middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseExtensions.Use(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Http.HttpContext,System.Func{System.Threading.Tasks.Task},System.Threading.Tasks.Task})"> |
| | | <summary> |
| | | Adds a middleware delegate defined in-line to the application's request pipeline. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="middleware">A function that handles the request or calls the given next function.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UseMiddlewareExtensions"> |
| | | <summary> |
| | | Extension methods for adding typed middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.UseMiddleware``1(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Object[])"> |
| | | <summary> |
| | | Adds a middleware type to the application's request pipeline. |
| | | </summary> |
| | | <typeparam name="TMiddleware">The middleware type.</typeparam> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="args">The arguments to pass to the middleware type instance's constructor.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.UseMiddleware(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Type,System.Object[])"> |
| | | <summary> |
| | | Adds a middleware type to the application's request pipeline. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="middleware">The middleware type.</param> |
| | | <param name="args">The arguments to pass to the middleware type instance's constructor.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UsePathBaseExtensions"> |
| | | <summary> |
| | | Extension methods for <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UsePathBaseExtensions.UsePathBase(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Adds a middleware that extracts the specified path base from request path and postpend it to the request path base. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="pathBase">The path base to extract.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UseWhenExtensions"> |
| | | <summary> |
| | | Extension methods for <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseWhenExtensions.UseWhen(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Http.HttpContext,System.Boolean},System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})"> |
| | | <summary> |
| | | Conditionally creates a branch in the request pipeline that is rejoined to the main pipeline. |
| | | </summary> |
| | | <param name="app"></param> |
| | | <param name="predicate">Invoked with the request environment to determine if the branch should be taken</param> |
| | | <param name="configuration">Configures a branch to take</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"> |
| | | <summary> |
| | | Defines a class that provides the mechanisms to configure an application's request pipeline. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.ApplicationServices"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:System.IServiceProvider"/> that provides access to the application's service container. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.ServerFeatures"> |
| | | <summary> |
| | | Gets the set of HTTP features the application's server provides. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.Properties"> |
| | | <summary> |
| | | Gets a key/value collection that can be used to share data between middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.IApplicationBuilder.Use(System.Func{Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Http.RequestDelegate})"> |
| | | <summary> |
| | | Adds a middleware delegate to the application's request pipeline. |
| | | </summary> |
| | | <param name="middleware">The middleware delegate.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.IApplicationBuilder.New"> |
| | | <summary> |
| | | Creates a new <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> that shares the <see cref="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.Properties"/> of this |
| | | <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>. |
| | | </summary> |
| | | <returns>The new <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.IApplicationBuilder.Build"> |
| | | <summary> |
| | | Builds the delegate used by this application to process HTTP requests. |
| | | </summary> |
| | | <returns>The request handling delegate.</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.AspNetCore.Http.Features</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"> |
| | | <summary> |
| | | Represents a collection of HTTP features. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.IsReadOnly"> |
| | | <summary> |
| | | Indicates if the collection can be modified. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Revision"> |
| | | <summary> |
| | | Incremented for each modification and can be used to verify cached results. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Item(System.Type)"> |
| | | <summary> |
| | | Gets or sets a given feature. Setting a null value removes the feature. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <returns>The requested feature, or null if it is not present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Get``1"> |
| | | <summary> |
| | | Retrieves the requested feature from the collection. |
| | | </summary> |
| | | <typeparam name="TFeature">The feature key.</typeparam> |
| | | <returns>The requested feature, or null if it is not present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Set``1(``0)"> |
| | | <summary> |
| | | Sets the given feature in the collection. |
| | | </summary> |
| | | <typeparam name="TFeature">The feature key.</typeparam> |
| | | <param name="instance">The feature value.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFormFeature.HasFormContentType"> |
| | | <summary> |
| | | Indicates if the request has a supported form content-type. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFormFeature.Form"> |
| | | <summary> |
| | | The parsed form, if any. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFormFeature.ReadForm"> |
| | | <summary> |
| | | Parses the request body as a form. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFormFeature.ReadFormAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Parses the request body as a form. |
| | | </summary> |
| | | <param name="cancellationToken"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpBodyControlFeature"> |
| | | <summary> |
| | | Controls the IO behavior for the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"/> and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"/> |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpBodyControlFeature.AllowSynchronousIO"> |
| | | <summary> |
| | | Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"/> and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"/> |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature"> |
| | | <summary> |
| | | Information regarding the TCP/IP connection carrying the request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.ConnectionId"> |
| | | <summary> |
| | | The unique identifier for the connection the request was received on. This is primarily for diagnostic purposes. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemoteIpAddress"> |
| | | <summary> |
| | | The IPAddress of the client making the request. Note this may be for a proxy rather than the end user. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.LocalIpAddress"> |
| | | <summary> |
| | | The local IPAddress on which the request was received. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemotePort"> |
| | | <summary> |
| | | The remote port of the client making the request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.LocalPort"> |
| | | <summary> |
| | | The local port on which the request was received. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature"> |
| | | <summary> |
| | | Feature to inspect and modify the maximum request body size for a single request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.IsReadOnly"> |
| | | <summary> |
| | | Indicates whether <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/> is read-only. |
| | | If true, this could mean that the request body has already been read from |
| | | or that <see cref="M:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync"/> was called. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"> |
| | | <summary> |
| | | The maximum allowed size of the current request body in bytes. |
| | | When set to null, the maximum request body size is unlimited. |
| | | This cannot be modified after the reading the request body has started. |
| | | This limit does not affect upgraded connections which are always unlimited. |
| | | </summary> |
| | | <remarks> |
| | | Defaults to the server's global max request body size limit. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature"> |
| | | <summary> |
| | | Contains the details of a given request. These properties should all be mutable. |
| | | None of these properties should ever be set to null. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Protocol"> |
| | | <summary> |
| | | The HTTP-version as defined in RFC 7230. E.g. "HTTP/1.1" |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Scheme"> |
| | | <summary> |
| | | The request uri scheme. E.g. "http" or "https". Note this value is not included |
| | | in the original request, it is inferred by checking if the transport used a TLS |
| | | connection or not. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Method"> |
| | | <summary> |
| | | The request method as defined in RFC 7230. E.g. "GET", "HEAD", "POST", etc.. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.PathBase"> |
| | | <summary> |
| | | The first portion of the request path associated with application root. The value |
| | | is un-escaped. The value may be string.Empty. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Path"> |
| | | <summary> |
| | | The portion of the request path that identifies the requested resource. The value |
| | | is un-escaped. The value may be string.Empty if <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.PathBase"/> contains the |
| | | full path. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.QueryString"> |
| | | <summary> |
| | | The query portion of the request-target as defined in RFC 7230. The value |
| | | may be string.Empty. If not empty then the leading '?' will be included. The value |
| | | is in its original form, without un-escaping. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.RawTarget"> |
| | | <summary> |
| | | The request target as it was sent in the HTTP request. This property contains the |
| | | raw path and full query, as well as other request targets such as * for OPTIONS |
| | | requests (https://tools.ietf.org/html/rfc7230#section-5.3). |
| | | </summary> |
| | | <remarks> |
| | | This property is not used internally for routing or authorization decisions. It has not |
| | | been UrlDecoded and care should be taken in its use. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Headers"> |
| | | <summary> |
| | | Headers included in the request, aggregated by header name. The values are not split |
| | | or merged across header lines. E.g. The following headers: |
| | | HeaderA: value1, value2 |
| | | HeaderA: value3 |
| | | Result in Headers["HeaderA"] = { "value1, value2", "value3" } |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"> |
| | | <summary> |
| | | A <see cref="T:System.IO.Stream"/> representing the request body, if any. Stream.Null may be used |
| | | to represent an empty request body. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature"> |
| | | <summary> |
| | | Feature to identify a request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature.TraceIdentifier"> |
| | | <summary> |
| | | Identifier to trace a request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature.RequestAborted"> |
| | | <summary> |
| | | A <see cref="T:System.Threading.CancellationToken"/> that fires if the request is aborted and |
| | | the application should cease processing. The token will not fire if the request |
| | | completes successfully. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature.Abort"> |
| | | <summary> |
| | | Forcefully aborts the request if it has not already completed. This will result in |
| | | RequestAborted being triggered. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature"> |
| | | <summary> |
| | | Represents the fields and state of an HTTP response. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"> |
| | | <summary> |
| | | The status-code as defined in RFC 7230. The default value is 200. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"> |
| | | <summary> |
| | | The reason-phrase as defined in RFC 7230. Note this field is no longer supported by HTTP/2. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"> |
| | | <summary> |
| | | The response headers to send. Headers with multiple values will be emitted as multiple headers. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"> |
| | | <summary> |
| | | The <see cref="T:System.IO.Stream"/> for writing the response body. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.HasStarted"> |
| | | <summary> |
| | | Indicates if the response has started. If true, the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"/>, |
| | | <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"/>, and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"/> are now immutable, and |
| | | OnStarting should no longer be called. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnStarting(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Registers a callback to be invoked just before the response starts. This is the |
| | | last chance to modify the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"/>, <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"/>, or |
| | | <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"/>. |
| | | </summary> |
| | | <param name="callback">The callback to invoke when starting the response.</param> |
| | | <param name="state">The state to pass into the callback.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnCompleted(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Registers a callback to be invoked after a response has fully completed. This is |
| | | intended for resource cleanup. |
| | | </summary> |
| | | <param name="callback">The callback to invoke after the response has completed.</param> |
| | | <param name="state">The state to pass into the callback.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpSendFileFeature"> |
| | | <summary> |
| | | Provides an efficient mechanism for transferring files from disk to the network. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpSendFileFeature.SendFileAsync(System.String,System.Int64,System.Nullable{System.Int64},System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Sends the requested file in the response body. This may bypass the IHttpResponseFeature.Body |
| | | <see cref="T:System.IO.Stream"/>. A response may include multiple writes. |
| | | </summary> |
| | | <param name="path">The full disk path to the file.</param> |
| | | <param name="offset">The offset in the file to start at.</param> |
| | | <param name="count">The number of bytes to send, or null to send the remainder of the file.</param> |
| | | <param name="cancellation">A <see cref="T:System.Threading.CancellationToken"/> used to abort the transmission.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.IsUpgradableRequest"> |
| | | <summary> |
| | | Indicates if the server can upgrade this request to an opaque, bidirectional stream. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync"> |
| | | <summary> |
| | | Attempt to upgrade the request to an opaque, bidirectional stream. The response status code |
| | | and headers need to be set before this is invoked. Check <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.IsUpgradableRequest"/> |
| | | before invoking. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest"> |
| | | <summary> |
| | | Indicates if this is a WebSocket upgrade request. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.AcceptAsync(Microsoft.AspNetCore.Http.WebSocketAcceptContext)"> |
| | | <summary> |
| | | Attempts to upgrade the request to a <see cref="T:System.Net.WebSockets.WebSocket"/>. Check <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest"/> |
| | | before invoking this. |
| | | </summary> |
| | | <param name="context"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature"> |
| | | <summary> |
| | | A helper for creating the response Set-Cookie header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature.Cookies"> |
| | | <summary> |
| | | Gets the wrapper for the response Set-Cookie header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature.ClientCertificate"> |
| | | <summary> |
| | | Synchronously retrieves the client certificate, if any. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature.GetClientCertificateAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Asynchronously retrieves the client certificate, if any. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature"> |
| | | <summary> |
| | | Provides information regarding TLS token binding parameters. |
| | | </summary> |
| | | <remarks> |
| | | TLS token bindings help mitigate the risk of impersonation by an attacker in the |
| | | event an authenticated client's bearer tokens are somehow exfiltrated from the |
| | | client's machine. See https://datatracker.ietf.org/doc/draft-popov-token-binding/ |
| | | for more information. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature.GetProvidedTokenBindingId"> |
| | | <summary> |
| | | Gets the 'provided' token binding identifier associated with the request. |
| | | </summary> |
| | | <returns>The token binding identifier, or null if the client did not |
| | | supply a 'provided' token binding or valid proof of possession of the |
| | | associated private key. The caller should treat this identifier as an |
| | | opaque blob and should not try to parse it.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature.GetReferredTokenBindingId"> |
| | | <summary> |
| | | Gets the 'referred' token binding identifier associated with the request. |
| | | </summary> |
| | | <returns>The token binding identifier, or null if the client did not |
| | | supply a 'referred' token binding or valid proof of possession of the |
| | | associated private key. The caller should treat this identifier as an |
| | | opaque blob and should not try to parse it.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature"> |
| | | <summary> |
| | | Used to query, grant, and withdraw user consent regarding the storage of user |
| | | information related to site activity and functionality. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.IsConsentNeeded"> |
| | | <summary> |
| | | Indicates if consent is required for the given request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.HasConsent"> |
| | | <summary> |
| | | Indicates if consent was given. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.CanTrack"> |
| | | <summary> |
| | | Indicates either if consent has been given or if consent is not required. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.GrantConsent"> |
| | | <summary> |
| | | Grants consent for this request. If the response has not yet started then |
| | | this will also grant consent for future requests. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.WithdrawConsent"> |
| | | <summary> |
| | | Withdraws consent for this request. If the response has not yet started then |
| | | this will also withdraw consent for future requests. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.CreateConsentCookie"> |
| | | <summary> |
| | | Creates a consent cookie for use when granting consent from a javascript client. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.CookieOptions"> |
| | | <summary> |
| | | Options used to create a new cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.CookieOptions.#ctor"> |
| | | <summary> |
| | | Creates a default cookie with a path of '/'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"> |
| | | <summary> |
| | | Gets or sets the domain to associate the cookie with. |
| | | </summary> |
| | | <returns>The domain to associate the cookie with.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Path"> |
| | | <summary> |
| | | Gets or sets the cookie path. |
| | | </summary> |
| | | <returns>The cookie path.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Expires"> |
| | | <summary> |
| | | Gets or sets the expiration date and time for the cookie. |
| | | </summary> |
| | | <returns>The expiration date and time for the cookie.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Secure"> |
| | | <summary> |
| | | Gets or sets a value that indicates whether to transmit the cookie using Secure Sockets Layer (SSL)--that is, over HTTPS only. |
| | | </summary> |
| | | <returns>true to transmit the cookie only over an SSL connection (HTTPS); otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.SameSite"> |
| | | <summary> |
| | | Gets or sets the value for the SameSite attribute of the cookie. The default value is <see cref="F:Microsoft.AspNetCore.Http.SameSiteMode.Lax"/> |
| | | </summary> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Http.SameSiteMode"/> representing the enforcement mode of the cookie.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.HttpOnly"> |
| | | <summary> |
| | | Gets or sets a value that indicates whether a cookie is accessible by client-side script. |
| | | </summary> |
| | | <returns>true if a cookie must not be accessible by client-side script; otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.MaxAge"> |
| | | <summary> |
| | | Gets or sets the max-age for the cookie. |
| | | </summary> |
| | | <returns>The max-age date and time for the cookie.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.IsEssential"> |
| | | <summary> |
| | | Indicates if this cookie is essential for the application to function correctly. If true then |
| | | consent policy checks may be bypassed. The default value is false. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IFormCollection"> |
| | | <summary> |
| | | Represents the parsed form values sent with the HttpRequest. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Count"> |
| | | <summary> |
| | | Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </summary> |
| | | <returns> |
| | | The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Keys"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the |
| | | <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </summary> |
| | | <returns> |
| | | An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object |
| | | that implements <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormCollection.ContainsKey(System.String)"> |
| | | <summary> |
| | | Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains an element |
| | | with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </param> |
| | | <returns> |
| | | true if the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains an element with |
| | | the key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)"> |
| | | <summary> |
| | | Gets the value associated with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <param name="value"> |
| | | The key of the value to get. |
| | | When this method returns, the value associated with the specified key, if the |
| | | key is found; otherwise, the default value for the type of the value parameter. |
| | | This parameter is passed uninitialized. |
| | | </param> |
| | | <returns> |
| | | true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains |
| | | an element with the specified key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Item(System.String)"> |
| | | <summary> |
| | | Gets the value with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <returns> |
| | | The element with the specified key, or <c>StringValues.Empty</c> if the key is not present. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> has a different indexer contract than |
| | | <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>StringValues.Empty</c> for missing entries |
| | | rather than throwing an Exception. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Files"> |
| | | <summary> |
| | | The file collection sent with the request. |
| | | </summary> |
| | | <returns>The files included with the request.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IFormFile"> |
| | | <summary> |
| | | Represents a file sent with the HttpRequest. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.ContentType"> |
| | | <summary> |
| | | Gets the raw Content-Type header of the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.ContentDisposition"> |
| | | <summary> |
| | | Gets the raw Content-Disposition header of the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.Headers"> |
| | | <summary> |
| | | Gets the header dictionary of the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.Length"> |
| | | <summary> |
| | | Gets the file length in bytes. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.Name"> |
| | | <summary> |
| | | Gets the form field name from the Content-Disposition header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.FileName"> |
| | | <summary> |
| | | Gets the file name from the Content-Disposition header. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormFile.OpenReadStream"> |
| | | <summary> |
| | | Opens the request stream for reading the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormFile.CopyTo(System.IO.Stream)"> |
| | | <summary> |
| | | Copies the contents of the uploaded file to the <paramref name="target"/> stream. |
| | | </summary> |
| | | <param name="target">The stream to copy the file contents to.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormFile.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Asynchronously copies the contents of the uploaded file to the <paramref name="target"/> stream. |
| | | </summary> |
| | | <param name="target">The stream to copy the file contents to.</param> |
| | | <param name="cancellationToken"></param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IFormFileCollection"> |
| | | <summary> |
| | | Represents the collection of files sent with the HttpRequest. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IHeaderDictionary"> |
| | | <summary> |
| | | Represents HttpRequest and HttpResponse headers |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IHeaderDictionary.Item(System.String)"> |
| | | <summary> |
| | | IHeaderDictionary has a different indexer contract than IDictionary, where it will return StringValues.Empty for missing entries. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <returns>The stored value, or StringValues.Empty if the key is not present.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IHeaderDictionary.ContentLength"> |
| | | <summary> |
| | | Strongly typed access to the Content-Length header. Implementations must keep this in sync with the string representation. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IQueryCollection"> |
| | | <summary> |
| | | Represents the HttpRequest query string collection |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Count"> |
| | | <summary> |
| | | Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </summary> |
| | | <returns> |
| | | The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Keys"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the |
| | | <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </summary> |
| | | <returns> |
| | | An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object |
| | | that implements <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IQueryCollection.ContainsKey(System.String)"> |
| | | <summary> |
| | | Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains an element |
| | | with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </param> |
| | | <returns> |
| | | true if the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains an element with |
| | | the key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IQueryCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)"> |
| | | <summary> |
| | | Gets the value associated with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <param name="value"> |
| | | The key of the value to get. |
| | | When this method returns, the value associated with the specified key, if the |
| | | key is found; otherwise, the default value for the type of the value parameter. |
| | | This parameter is passed uninitialized. |
| | | </param> |
| | | <returns> |
| | | true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains |
| | | an element with the specified key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Item(System.String)"> |
| | | <summary> |
| | | Gets the value with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <returns> |
| | | The element with the specified key, or <c>StringValues.Empty</c> if the key is not present. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> has a different indexer contract than |
| | | <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>StringValues.Empty</c> for missing entries |
| | | rather than throwing an Exception. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IRequestCookieCollection"> |
| | | <summary> |
| | | Represents the HttpRequest cookie collection |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Count"> |
| | | <summary> |
| | | Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </summary> |
| | | <returns> |
| | | The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Keys"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the |
| | | <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </summary> |
| | | <returns> |
| | | An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object |
| | | that implements <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IRequestCookieCollection.ContainsKey(System.String)"> |
| | | <summary> |
| | | Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains an element |
| | | with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </param> |
| | | <returns> |
| | | true if the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains an element with |
| | | the key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IRequestCookieCollection.TryGetValue(System.String,System.String@)"> |
| | | <summary> |
| | | Gets the value associated with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <param name="value"> |
| | | The key of the value to get. |
| | | When this method returns, the value associated with the specified key, if the |
| | | key is found; otherwise, the default value for the type of the value parameter. |
| | | This parameter is passed uninitialized. |
| | | </param> |
| | | <returns> |
| | | true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains |
| | | an element with the specified key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Item(System.String)"> |
| | | <summary> |
| | | Gets the value with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <returns> |
| | | The element with the specified key, or <c>string.Empty</c> if the key is not present. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> has a different indexer contract than |
| | | <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>string.Empty</c> for missing entries |
| | | rather than throwing an Exception. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IResponseCookies"> |
| | | <summary> |
| | | A wrapper for the response Set-Cookie header. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Append(System.String,System.String)"> |
| | | <summary> |
| | | Add a new cookie and value. |
| | | </summary> |
| | | <param name="key">Name of the new cookie.</param> |
| | | <param name="value">Value of the new cookie.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Append(System.String,System.String,Microsoft.AspNetCore.Http.CookieOptions)"> |
| | | <summary> |
| | | Add a new cookie. |
| | | </summary> |
| | | <param name="key">Name of the new cookie.</param> |
| | | <param name="value">Value of the new cookie.</param> |
| | | <param name="options"><see cref="T:Microsoft.AspNetCore.Http.CookieOptions"/> included in the new cookie setting.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Delete(System.String)"> |
| | | <summary> |
| | | Sets an expired cookie. |
| | | </summary> |
| | | <param name="key">Name of the cookie to expire.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Delete(System.String,Microsoft.AspNetCore.Http.CookieOptions)"> |
| | | <summary> |
| | | Sets an expired cookie. |
| | | </summary> |
| | | <param name="key">Name of the cookie to expire.</param> |
| | | <param name="options"> |
| | | <see cref="T:Microsoft.AspNetCore.Http.CookieOptions"/> used to discriminate the particular cookie to expire. The |
| | | <see cref="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"/> and <see cref="P:Microsoft.AspNetCore.Http.CookieOptions.Path"/> values are especially important. |
| | | </param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ISession.IsAvailable"> |
| | | <summary> |
| | | Indicate whether the current session has loaded. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ISession.Id"> |
| | | <summary> |
| | | A unique identifier for the current session. This is not the same as the session cookie |
| | | since the cookie lifetime may not be the same as the session entry lifetime in the data store. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ISession.Keys"> |
| | | <summary> |
| | | Enumerates all the keys, if any. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.LoadAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Load the session from the data store. This may throw if the data store is unavailable. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.CommitAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Store the session in the data store. This may throw if the data store is unavailable. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.TryGetValue(System.String,System.Byte[]@)"> |
| | | <summary> |
| | | Retrieve the value of the given key, if present. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <param name="value"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.Set(System.String,System.Byte[])"> |
| | | <summary> |
| | | Set the given key and value in the current session. This will throw if the session |
| | | was not established prior to sending the response. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <param name="value"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.Remove(System.String)"> |
| | | <summary> |
| | | Remove the given key from the session if present. |
| | | </summary> |
| | | <param name="key"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.Clear"> |
| | | <summary> |
| | | Remove all entries from the current session, if any. |
| | | The session cookie is not removed. |
| | | </summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.AspNetCore.Routing.Abstractions</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.#ctor(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Initializes a fast <see cref="T:Microsoft.Extensions.Internal.PropertyHelper"/>. |
| | | This constructor does not cache the helper. For caching, use <see cref="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Property"> |
| | | <summary> |
| | | Gets the backing <see cref="T:System.Reflection.PropertyInfo"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Name"> |
| | | <summary> |
| | | Gets (or sets in derived types) the property name. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueGetter"> |
| | | <summary> |
| | | Gets the property value getter. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueSetter"> |
| | | <summary> |
| | | Gets the property value setter. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetValue(System.Object)"> |
| | | <summary> |
| | | Returns the property value for the specified <paramref name="instance"/>. |
| | | </summary> |
| | | <param name="instance">The object whose property value will be returned.</param> |
| | | <returns>The property value.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.SetValue(System.Object,System.Object)"> |
| | | <summary> |
| | | Sets the property value for the specified <paramref name="instance" />. |
| | | </summary> |
| | | <param name="instance">The object whose property value will be set.</param> |
| | | <param name="value">The property value.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Reflection.TypeInfo)"> |
| | | <summary> |
| | | Creates and caches fast property helpers that expose getters for every public get property on the |
| | | underlying type. |
| | | </summary> |
| | | <param name="typeInfo">The type info to extract property accessors for.</param> |
| | | <returns>A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)"> |
| | | <summary> |
| | | Creates and caches fast property helpers that expose getters for every public get property on the |
| | | specified type. |
| | | </summary> |
| | | <param name="type">The type to extract property accessors for.</param> |
| | | <returns>A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Reflection.TypeInfo)"> |
| | | <summary> |
| | | <para> |
| | | Creates and caches fast property helpers that expose getters for every non-hidden get property |
| | | on the specified type. |
| | | </para> |
| | | <para> |
| | | <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been |
| | | hidden by definitions using the <c>new</c> keyword. |
| | | </para> |
| | | </summary> |
| | | <param name="typeInfo">The type info to extract property accessors for.</param> |
| | | <returns> |
| | | A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Type)"> |
| | | <summary> |
| | | <para> |
| | | Creates and caches fast property helpers that expose getters for every non-hidden get property |
| | | on the specified type. |
| | | </para> |
| | | <para> |
| | | <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been |
| | | hidden by definitions using the <c>new</c> keyword. |
| | | </para> |
| | | </summary> |
| | | <param name="type">The type to extract property accessors for.</param> |
| | | <returns> |
| | | A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertyGetter(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Creates a single fast property getter. The result is not cached. |
| | | </summary> |
| | | <param name="propertyInfo">propertyInfo to extract the getter for.</param> |
| | | <returns>a fast getter.</returns> |
| | | <remarks> |
| | | This method is more memory efficient than a dynamically compiled lambda, and about the |
| | | same speed. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeNullSafeFastPropertyGetter(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Creates a single fast property getter which is safe for a null input object. The result is not cached. |
| | | </summary> |
| | | <param name="propertyInfo">propertyInfo to extract the getter for.</param> |
| | | <returns>a fast getter.</returns> |
| | | <remarks> |
| | | This method is more memory efficient than a dynamically compiled lambda, and about the |
| | | same speed. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertySetter(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Creates a single fast property setter for reference types. The result is not cached. |
| | | </summary> |
| | | <param name="propertyInfo">propertyInfo to extract the setter for.</param> |
| | | <returns>a fast getter.</returns> |
| | | <remarks> |
| | | This method is more memory efficient than a dynamically compiled lambda, and about the |
| | | same speed. This only works for reference types. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.ObjectToDictionary(System.Object)"> |
| | | <summary> |
| | | Given an object, adds each instance property with a public get method as a key and its |
| | | associated value to a dictionary. |
| | | |
| | | If the object is already an <see cref="T:System.Collections.Generic.IDictionary`2"/> instance, then a copy |
| | | is returned. |
| | | </summary> |
| | | <remarks> |
| | | The implementation of PropertyHelper will cache the property accessors per-type. This is |
| | | faster when the same type is used multiple times with ObjectToDictionary. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Endpoint"> |
| | | <summary> |
| | | Respresents a logical endpoint in an application. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Endpoint.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Http.EndpointMetadataCollection,System.String)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Http.Endpoint"/>. |
| | | </summary> |
| | | <param name="requestDelegate">The delegate used to process requests for the endpoint.</param> |
| | | <param name="metadata"> |
| | | The endpoint <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. May be null. |
| | | </param> |
| | | <param name="displayName"> |
| | | The informational display name of the endpoint. May be null. |
| | | </param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Endpoint.DisplayName"> |
| | | <summary> |
| | | Gets the informational display name of this endpoint. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Endpoint.Metadata"> |
| | | <summary> |
| | | Gets the collection of metadata associated with this endpoint. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Endpoint.RequestDelegate"> |
| | | <summary> |
| | | Gets the delegate used to process requests for the endpoint. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"> |
| | | <summary> |
| | | A collection of arbitrary metadata associated with an endpoint. |
| | | </summary> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/> instances contain a list of metadata items |
| | | of arbitrary types. The metadata items are stored as an ordered collection with |
| | | items arranged in ascending order of precedence. |
| | | </remarks> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Empty"> |
| | | <summary> |
| | | An empty <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.#ctor(System.Collections.Generic.IEnumerable{System.Object})"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | <param name="items">The metadata items.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.#ctor(System.Object[])"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | <param name="items">The metadata items.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Item(System.Int32)"> |
| | | <summary> |
| | | Gets the item at <paramref name="index"/>. |
| | | </summary> |
| | | <param name="index">The index of the item to retrieve.</param> |
| | | <returns>The item at <paramref name="index"/>.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Count"> |
| | | <summary> |
| | | Gets the count of metadata items. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetMetadata``1"> |
| | | <summary> |
| | | Gets the most significant metadata item of type <typeparamref name="T"/>. |
| | | </summary> |
| | | <typeparam name="T">The type of metadata to retrieve.</typeparam> |
| | | <returns> |
| | | The most significant metadata of type <typeparamref name="T"/> or <c>null</c>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetOrderedMetadata``1"> |
| | | <summary> |
| | | Gets the metadata items of type <typeparamref name="T"/> in ascending |
| | | order of precedence. |
| | | </summary> |
| | | <typeparam name="T">The type of metadata.</typeparam> |
| | | <returns>A sequence of metadata items of <typeparamref name="T"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetEnumerator"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.IEnumerator"/> of all metadata items. |
| | | </summary> |
| | | <returns>An <see cref="T:System.Collections.IEnumerator"/> of all metadata items.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.System#Collections#Generic#IEnumerable{System#Object}#GetEnumerator"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.IEnumerator`1"/> of all metadata items. |
| | | </summary> |
| | | <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"/> of all metadata items.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.System#Collections#IEnumerable#GetEnumerator"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.IEnumerator"/> of all metadata items. |
| | | </summary> |
| | | <returns>An <see cref="T:System.Collections.IEnumerator"/> of all metadata items.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator"> |
| | | <summary> |
| | | Enumerates the elements of an <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current"> |
| | | <summary> |
| | | Gets the element at the current position of the enumerator |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Dispose"> |
| | | <summary> |
| | | Releases all resources used by the <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.MoveNext"> |
| | | <summary> |
| | | Advances the enumerator to the next element of the <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator"/>. |
| | | </summary> |
| | | <returns> |
| | | <c>true</c> if the enumerator was successfully advanced to the next element; |
| | | <c>false</c> if the enumerator has passed the end of the collection. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Reset"> |
| | | <summary> |
| | | Sets the enumerator to its initial position, which is before the first element in the collection. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IEndpointFeature"> |
| | | <summary> |
| | | A feature interface for endpoint routing. Use <see cref="P:Microsoft.AspNetCore.Http.HttpContext.Features"/> |
| | | to access an instance associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IEndpointFeature.Endpoint"> |
| | | <summary> |
| | | Gets or sets the selected <see cref="T:Microsoft.AspNetCore.Http.Endpoint"/> for the current |
| | | request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IRouteValuesFeature.RouteValues"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> associated with the currrent |
| | | request. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IOutboundParameterTransformer"> |
| | | <summary> |
| | | Defines the contract that a class must implement to transform route values while building |
| | | a URI. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.IOutboundParameterTransformer.TransformOutbound(System.Object)"> |
| | | <summary> |
| | | Transforms the specified route value to a string for inclusion in a URI. |
| | | </summary> |
| | | <param name="value">The route value to transform.</param> |
| | | <returns>The transformed value.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IParameterPolicy"> |
| | | <summary> |
| | | A marker interface for types that are associated with route parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IRouteConstraint"> |
| | | <summary> |
| | | Defines the contract that a class must implement in order to check whether a URL parameter |
| | | value is valid for a constraint. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.IRouteConstraint.Match(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.IRouter,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteDirection)"> |
| | | <summary> |
| | | Determines whether the URL parameter contains a valid value for this constraint. |
| | | </summary> |
| | | <param name="httpContext">An object that encapsulates information about the HTTP request.</param> |
| | | <param name="route">The router that this constraint belongs to.</param> |
| | | <param name="routeKey">The name of the parameter that is being checked.</param> |
| | | <param name="values">A dictionary that contains the parameters for the URL.</param> |
| | | <param name="routeDirection"> |
| | | An object that indicates whether the constraint check is being performed |
| | | when an incoming request is being handled or when a URL is being generated. |
| | | </param> |
| | | <returns><c>true</c> if the URL parameter contains a valid value; otherwise, <c>false</c>.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IRouteHandler"> |
| | | <summary> |
| | | Defines a contract for a handler of a route. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.IRouteHandler.GetRequestHandler(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteData)"> |
| | | <summary> |
| | | Gets a <see cref="T:Microsoft.AspNetCore.Http.RequestDelegate"/> to handle the request, based on the provided |
| | | <paramref name="routeData"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current routing match.</param> |
| | | <returns> |
| | | A <see cref="T:Microsoft.AspNetCore.Http.RequestDelegate"/>, or <c>null</c> if the handler cannot handle this request. |
| | | </returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IRoutingFeature"> |
| | | <summary> |
| | | A feature interface for routing functionality. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.IRoutingFeature.RouteData"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.LinkGenerator"> |
| | | <summary> |
| | | Defines a contract to generate absolute and related URIs based on endpoint routing. |
| | | </summary> |
| | | <remarks> |
| | | <para> |
| | | Generating URIs in endpoint routing occurs in two phases. First, an address is bound to a list of |
| | | endpoints that match the address. Secondly, each endpoint's <c>RoutePattern</c> is evaluated, until |
| | | a route pattern that matches the supplied values is found. The resulting output is combined with |
| | | the other URI parts supplied to the link generator and returned. |
| | | </para> |
| | | <para> |
| | | The methods provided by the <see cref="T:Microsoft.AspNetCore.Routing.LinkGenerator"/> type are general infrastructure, and support |
| | | the standard link generator functionality for any type of address. The most convenient way to use |
| | | <see cref="T:Microsoft.AspNetCore.Routing.LinkGenerator"/> is through extension methods that perform operations for a specific |
| | | address type. |
| | | </para> |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetPathByAddress``1(Microsoft.AspNetCore.Http.HttpContext,``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.Nullable{Microsoft.AspNetCore.Http.PathString},Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates a URI with an absolute path based on the provided values and <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="ambientValues">The values associated with the current request. Optional.</param> |
| | | <param name="pathBase"> |
| | | An optional URI path base. Prepended to the path in the resulting URI. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"/> will be used. |
| | | </param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>A URI with an absolute path, or <c>null</c>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetPathByAddress``1(``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates a URI with an absolute path based on the provided values. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="pathBase">An optional URI path base. Prepended to the path in the resulting URI.</param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>A URI with an absolute path, or <c>null</c>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetUriByAddress``1(Microsoft.AspNetCore.Http.HttpContext,``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String,System.Nullable{Microsoft.AspNetCore.Http.HostString},System.Nullable{Microsoft.AspNetCore.Http.PathString},Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates an absolute URI based on the provided values and <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="ambientValues">The values associated with the current request. Optional.</param> |
| | | <param name="scheme"> |
| | | The URI scheme, applied to the resulting URI. Optional. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Scheme"/> will be used. |
| | | </param> |
| | | <param name="host"> |
| | | The URI host/authority, applied to the resulting URI. Optional. If not provided, the value <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Host"/> will be used. |
| | | See the remarks section for details about the security implications of the <paramref name="host"/>. |
| | | </param> |
| | | <param name="pathBase"> |
| | | An optional URI path base. Prepended to the path in the resulting URI. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"/> will be used. |
| | | </param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>A URI with an absolute path, or <c>null</c>.</returns> |
| | | <remarks> |
| | | <para> |
| | | The value of <paramref name="host" /> should be a trusted value. Relying on the value of the current request |
| | | can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated. |
| | | See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in |
| | | your deployment environment. |
| | | </para> |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetUriByAddress``1(``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String,Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates an absolute URI based on the provided values. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="scheme">The URI scheme, applied to the resulting URI.</param> |
| | | <param name="host"> |
| | | The URI host/authority, applied to the resulting URI. |
| | | See the remarks section for details about the security implications of the <paramref name="host"/>. |
| | | </param> |
| | | <param name="pathBase">An optional URI path base. Prepended to the path in the resulting URI.</param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>An absolute URI, or <c>null</c>.</returns> |
| | | <remarks> |
| | | <para> |
| | | The value of <paramref name="host" /> should be a trusted value. Relying on the value of the current request |
| | | can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated. |
| | | See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in |
| | | your deployment environment. |
| | | </para> |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseUrls"> |
| | | <summary> |
| | | Gets or sets a value indicating whether all generated paths URLs are lower-case. |
| | | Use <see cref="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseQueryStrings" /> to configure the behavior for query strings. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseQueryStrings"> |
| | | <summary> |
| | | Gets or sets a value indicating whether a generated query strings are lower-case. |
| | | This property will be unless <see cref="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseUrls" /> is also <c>true</c>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.AppendTrailingSlash"> |
| | | <summary> |
| | | Gets or sets a value indicating whether a trailing slash should be appended to the generated URLs. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.Abstractions.Resources.RouteValueDictionary_DuplicateKey"> |
| | | <summary> |
| | | An element with the key '{0}' already exists in the {1}. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.Abstractions.Resources.FormatRouteValueDictionary_DuplicateKey(System.Object,System.Object)"> |
| | | <summary> |
| | | An element with the key '{0}' already exists in the {1}. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.Abstractions.Resources.RouteValueDictionary_DuplicatePropertyName"> |
| | | <summary> |
| | | The type '{0}' defines properties '{1}' and '{2}' which differ only by casing. This is not supported by {3} which uses case-insensitive comparisons. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.Abstractions.Resources.FormatRouteValueDictionary_DuplicatePropertyName(System.Object,System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | The type '{0}' defines properties '{1}' and '{2}' which differ only by casing. This is not supported by {3} which uses case-insensitive comparisons. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteContext"> |
| | | <summary> |
| | | A context object for <see cref="M:Microsoft.AspNetCore.Routing.IRouter.RouteAsync(Microsoft.AspNetCore.Routing.RouteContext)"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteContext.#ctor(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteContext"/> for the provided <paramref name="httpContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteContext.Handler"> |
| | | <summary> |
| | | Gets or sets the handler for the request. An <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> should set <see cref="P:Microsoft.AspNetCore.Routing.RouteContext.Handler"/> |
| | | when it matches. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteContext.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteContext.RouteData"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current context. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteData"> |
| | | <summary> |
| | | Information about the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor(Microsoft.AspNetCore.Routing.RouteData)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance with values copied from <paramref name="other"/>. |
| | | </summary> |
| | | <param name="other">The other <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance to copy.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor(Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance with the specified values. |
| | | </summary> |
| | | <param name="values">The <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> values.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"> |
| | | <summary> |
| | | Gets the data tokens produced by routes on the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteData.Routers"> |
| | | <summary> |
| | | Gets the list of <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> instances on the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteData.Values"> |
| | | <summary> |
| | | Gets the values produced by routes on the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.PushState(Microsoft.AspNetCore.Routing.IRouter,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | <para> |
| | | Creates a snapshot of the current state of the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> before appending |
| | | <paramref name="router"/> to <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>, merging <paramref name="values"/> into |
| | | <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/>, and merging <paramref name="dataTokens"/> into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/>. |
| | | </para> |
| | | <para> |
| | | Call <see cref="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore"/> to restore the state of this <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> |
| | | to the state at the time of calling |
| | | <see cref="M:Microsoft.AspNetCore.Routing.RouteData.PushState(Microsoft.AspNetCore.Routing.IRouter,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"/>. |
| | | </para> |
| | | </summary> |
| | | <param name="router"> |
| | | An <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> to append to <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>. If <c>null</c>, then <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/> |
| | | will not be changed. |
| | | </param> |
| | | <param name="values"> |
| | | A <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> to merge into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/>. If <c>null</c>, then |
| | | <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/> will not be changed. |
| | | </param> |
| | | <param name="dataTokens"> |
| | | A <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> to merge into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/>. If <c>null</c>, then |
| | | <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/> will not be changed. |
| | | </param> |
| | | <returns>A <see cref="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"/> that captures the current state.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"> |
| | | <summary> |
| | | A snapshot of the state of a <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.#ctor(Microsoft.AspNetCore.Routing.RouteData,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.Collections.Generic.IList{Microsoft.AspNetCore.Routing.IRouter},Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"/> for <paramref name="routeData"/>. |
| | | </summary> |
| | | <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>.</param> |
| | | <param name="dataTokens">The data tokens.</param> |
| | | <param name="routers">The routers.</param> |
| | | <param name="values">The route values.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore"> |
| | | <summary> |
| | | Restores the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> to the captured state. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteDirection"> |
| | | <summary> |
| | | Indicates whether ASP.NET routing is processing a URL from an HTTP request or generating a URL. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Routing.RouteDirection.IncomingRequest"> |
| | | <summary> |
| | | A URL from a client is being processed. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Routing.RouteDirection.UrlGeneration"> |
| | | <summary> |
| | | A URL is being created based on the route definition. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"> |
| | | <summary> |
| | | An <see cref="T:System.Collections.Generic.IDictionary`2"/> type for route values. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.FromArray(System.Collections.Generic.KeyValuePair{System.String,System.Object}[])"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> from the provided array. |
| | | The new instance will take ownership of the array, and may mutate it. |
| | | </summary> |
| | | <param name="items">The items array.</param> |
| | | <returns>A new <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.#ctor"> |
| | | <summary> |
| | | Creates an empty <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.#ctor(System.Object)"> |
| | | <summary> |
| | | Creates a <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> initialized with the specified <paramref name="values"/>. |
| | | </summary> |
| | | <param name="values">An object to initialize the dictionary. The value can be of type |
| | | <see cref="T:System.Collections.Generic.IDictionary`2"/> or <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2"/> |
| | | or an object with public properties as key-value pairs. |
| | | </param> |
| | | <remarks> |
| | | If the value is a dictionary or other <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Collections.Generic.KeyValuePair`2"/>, |
| | | then its entries are copied. Otherwise the object is interpreted as a set of key-value pairs where the |
| | | property names are keys, and property values are the values, and copied into the dictionary. |
| | | Only public instance non-index properties are considered. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Item(System.String)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Comparer"> |
| | | <summary> |
| | | Gets the comparer for this dictionary. |
| | | </summary> |
| | | <remarks> |
| | | This will always be a reference to <see cref="P:System.StringComparer.OrdinalIgnoreCase"/> |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Count"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#IsReadOnly"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Keys"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Values"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Add(System.String,System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Clear"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.ContainsKey(System.String)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.GetEnumerator"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#GetEnumerator"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#IEnumerable#GetEnumerator"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Remove(System.String)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Remove(System.String,System.Object@)"> |
| | | <summary> |
| | | Attempts to remove and return the value that has the specified key from the <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>. |
| | | </summary> |
| | | <param name="key">The key of the element to remove and return.</param> |
| | | <param name="value">When this method returns, contains the object removed from the <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>, or <c>null</c> if key does not exist.</param> |
| | | <returns> |
| | | <c>true</c> if the object was removed successfully; otherwise, <c>false</c>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.TryAdd(System.String,System.Object)"> |
| | | <summary> |
| | | Attempts to the add the provided <paramref name="key"/> and <paramref name="value"/> to the dictionary. |
| | | </summary> |
| | | <param name="key">The key.</param> |
| | | <param name="value">The value.</param> |
| | | <returns>Returns <c>true</c> if the value was added. Returns <c>false</c> if the key was already present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.TryGetValue(System.String,System.Object@)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions"> |
| | | <summary> |
| | | Extension methods for <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> related to routing. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions.GetRouteData(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the provided <paramref name="httpContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>, or null.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions.GetRouteValue(Microsoft.AspNetCore.Http.HttpContext,System.String)"> |
| | | <summary> |
| | | Gets a route value from <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/> associated with the provided |
| | | <paramref name="httpContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="key">The key of the route value.</param> |
| | | <returns>The corresponding route value, or null.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.VirtualPathContext"> |
| | | <summary> |
| | | A context for virtual path generation operations. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="ambientValues">The set of route values associated with the current request.</param> |
| | | <param name="values">The set of new values provided for virtual path generation.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="ambientValues">The set of route values associated with the current request.</param> |
| | | <param name="values">The set of new values provided for virtual path generation.</param> |
| | | <param name="routeName">The name of the route to use for virtual path generation.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.AmbientValues"> |
| | | <summary> |
| | | Gets the set of route values associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.RouteName"> |
| | | <summary> |
| | | Gets the name of the route to use for virtual path generation. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.Values"> |
| | | <summary> |
| | | Gets or sets the set of new values provided for virtual path generation. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.VirtualPathData"> |
| | | <summary> |
| | | Represents information about the route and virtual path that are the result of |
| | | generating a URL with the ASP.NET routing middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathData.#ctor(Microsoft.AspNetCore.Routing.IRouter,System.String)"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathData"/> class. |
| | | </summary> |
| | | <param name="router">The object that is used to generate the URL.</param> |
| | | <param name="virtualPath">The generated URL.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathData.#ctor(Microsoft.AspNetCore.Routing.IRouter,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathData"/> class. |
| | | </summary> |
| | | <param name="router">The object that is used to generate the URL.</param> |
| | | <param name="virtualPath">The generated URL.</param> |
| | | <param name="dataTokens">The collection of custom values.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.DataTokens"> |
| | | <summary> |
| | | Gets the collection of custom values for the <see cref="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> that was used to generate the URL. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.VirtualPath"> |
| | | <summary> |
| | | Gets or sets the URL that was generated from the <see cref="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"/>. |
| | | </summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.Extensions.Primitives</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:Microsoft.Extensions.Primitives.CancellationChangeToken"> |
| | | <summary> |
| | | A <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> implementation using <see cref="T:System.Threading.CancellationToken"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.#ctor(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.CancellationChangeToken"/>. |
| | | </summary> |
| | | <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/>.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.ActiveChangeCallbacks"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.HasChanged"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.ChangeToken"> |
| | | <summary> |
| | | Propagates notifications that a change has occurred. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action)"> |
| | | <summary> |
| | | Registers the <paramref name="changeTokenConsumer"/> action to be called whenever the token produced changes. |
| | | </summary> |
| | | <param name="changeTokenProducer">Produces the change token.</param> |
| | | <param name="changeTokenConsumer">Action called when the token changes.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange``1(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action{``0},``0)"> |
| | | <summary> |
| | | Registers the <paramref name="changeTokenConsumer"/> action to be called whenever the token produced changes. |
| | | </summary> |
| | | <param name="changeTokenProducer">Produces the change token.</param> |
| | | <param name="changeTokenConsumer">Action called when the token changes.</param> |
| | | <param name="state">state for the consumer.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.CompositeChangeToken"> |
| | | <summary> |
| | | An <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which represents one or more <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> instances. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.Primitives.IChangeToken})"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken"/>. |
| | | </summary> |
| | | <param name="changeTokens">The list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> to compose.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens"> |
| | | <summary> |
| | | Returns the list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which compose the current <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.HasChanged"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ActiveChangeCallbacks"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.Extensions.Append(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Add the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to the <see cref="T:System.Text.StringBuilder"/>. |
| | | </summary> |
| | | <param name="builder">The <see cref="T:System.Text.StringBuilder"/> to add to.</param> |
| | | <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to add.</param> |
| | | <returns>The original <see cref="T:System.Text.StringBuilder"/>.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.IChangeToken"> |
| | | <summary> |
| | | Propagates notifications that a change has occurred. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"> |
| | | <summary> |
| | | Gets a value that indicates if a change has occurred. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.IChangeToken.ActiveChangeCallbacks"> |
| | | <summary> |
| | | Indicates if this token will pro-actively raise callbacks. If <c>false</c>, the token consumer must |
| | | poll <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> to detect changes. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.IChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)"> |
| | | <summary> |
| | | Registers for a callback that will be invoked when the entry has changed. |
| | | <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"/> MUST be set before the callback is invoked. |
| | | </summary> |
| | | <param name="callback">The <see cref="T:System.Action`1"/> to invoke.</param> |
| | | <param name="state">State to be passed into the callback.</param> |
| | | <returns>An <see cref="T:System.IDisposable"/> that is used to unregister the callback.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.Resources"> |
| | | <summary> |
| | | A strongly-typed resource class, for looking up localized strings, etc. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.ResourceManager"> |
| | | <summary> |
| | | Returns the cached ResourceManager instance used by this class. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.Culture"> |
| | | <summary> |
| | | Overrides the current thread's CurrentUICulture property for all |
| | | resource lookups using this strongly typed resource class. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.Argument_InvalidOffsetLength"> |
| | | <summary> |
| | | Looks up a localized string similar to Offset and length are out of bounds for the string or length is greater than the number of characters from index to the end of the string.. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.Capacity_CannotChangeAfterWriteStarted"> |
| | | <summary> |
| | | Looks up a localized string similar to Cannot change capacity after write started.. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.StringSegment"> |
| | | <summary> |
| | | An optimized representation of a substring. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.Extensions.Primitives.StringSegment.Empty"> |
| | | <summary> |
| | | A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> for <see cref="F:System.String.Empty"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String)"> |
| | | <summary> |
| | | Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> struct. |
| | | </summary> |
| | | <param name="buffer"> |
| | | The original <see cref="T:System.String"/>. The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> includes the whole <see cref="T:System.String"/>. |
| | | </param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String,System.Int32,System.Int32)"> |
| | | <summary> |
| | | Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> struct. |
| | | </summary> |
| | | <param name="buffer">The original <see cref="T:System.String"/> used as buffer.</param> |
| | | <param name="offset">The offset of the segment within the <paramref name="buffer"/>.</param> |
| | | <param name="length">The length of the segment.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Buffer"> |
| | | <summary> |
| | | Gets the <see cref="T:System.String"/> buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Offset"> |
| | | <summary> |
| | | Gets the offset within the buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Length"> |
| | | <summary> |
| | | Gets the length of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Value"> |
| | | <summary> |
| | | Gets the value of this segment as a <see cref="T:System.String"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.HasValue"> |
| | | <summary> |
| | | Gets whether or not this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> contains a valid value. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Item(System.Int32)"> |
| | | <summary> |
| | | Gets the <see cref="T:System.Char"/> at a specified position in the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="index">The offset into the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></param> |
| | | <returns>The <see cref="T:System.Char"/> at a specified position.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsSpan"> |
| | | <summary> |
| | | Gets a <see cref="T:System.ReadOnlySpan`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <returns>The <see cref="T:System.ReadOnlySpan`1"/> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsMemory"> |
| | | <summary> |
| | | Gets a <see cref="T:System.ReadOnlyMemory`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <returns>The <see cref="T:System.ReadOnlyMemory`1"/> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)"> |
| | | <summary> |
| | | Compares substrings of two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> objects using the specified rules, |
| | | and returns an integer that indicates their relative position in the sort order. |
| | | </summary> |
| | | <param name="a">The first StringSegment to compare.</param> |
| | | <param name="b">The second StringSegment to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param> |
| | | <returns> |
| | | A 32-bit signed integer indicating the lexical relationship between the two comparands. |
| | | The value is negative if <paramref name="a"/> is less than <paramref name="b"/>, 0 if the two comparands are equal, |
| | | and positive if <paramref name="a"/> is greater than <paramref name="b"/>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Indicates whether the current object is equal to another object of the same type. |
| | | </summary> |
| | | <param name="other">An object to compare with this object.</param> |
| | | <returns><code>true</code> if the current object is equal to the other parameter; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)"> |
| | | <summary> |
| | | Indicates whether the current object is equal to another object of the same type. |
| | | </summary> |
| | | <param name="other">An object to compare with this object.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if the current object is equal to the other parameter; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)"> |
| | | <summary> |
| | | Determines whether two specified StringSegment objects have the same value. A parameter specifies the culture, case, and |
| | | sort rules used in the comparison. |
| | | </summary> |
| | | <param name="a">The first StringSegment to compare.</param> |
| | | <param name="b">The second StringSegment to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param> |
| | | <returns><code>true</code> if the objects are equal; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String)"> |
| | | <summary> |
| | | Checks if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <returns><code>true</code> if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String,System.StringComparison)"> |
| | | <summary> |
| | | Checks if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.GetHashCode"> |
| | | <inheritdoc /> |
| | | <remarks> |
| | | This GetHashCode is expensive since it allocates on every call. |
| | | However this is required to ensure we retain any behavior (such as hash code randomization) that |
| | | string.GetHashCode has. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Equality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> have the same value. |
| | | </summary> |
| | | <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <returns><code>true</code> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Inequality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> have different values. |
| | | </summary> |
| | | <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <returns><code>true</code> if the value of <paramref name="left"/> is different from the value of <paramref name="right"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringSegment"> |
| | | <summary> |
| | | Creates a new <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> from the given <see cref="T:System.String"/>. |
| | | </summary> |
| | | <param name="value">The <see cref="T:System.String"/> to convert to a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlySpan{System.Char}"> |
| | | <summary> |
| | | Creates a see <see cref="T:System.ReadOnlySpan`1"/> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to convert to a <see cref="T:System.ReadOnlySpan`1"/>.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlyMemory{System.Char}"> |
| | | <summary> |
| | | Creates a see <see cref="T:System.ReadOnlyMemory`1"/> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to convert to a <see cref="T:System.ReadOnlyMemory`1"/>.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.StartsWith(System.String,System.StringComparison)"> |
| | | <summary> |
| | | Checks if the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> matches the specified <see cref="T:System.String"/> when compared using the specified <paramref name="comparisonType"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/>to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if <paramref name="text"/> matches the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.EndsWith(System.String,System.StringComparison)"> |
| | | <summary> |
| | | Checks if the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> matches the specified <see cref="T:System.String"/> when compared using the specified <paramref name="comparisonType"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/>to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if <paramref name="text"/> matches the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32)"> |
| | | <summary> |
| | | Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The substring starts at the position specified by <paramref name="offset"/> and has the remaining length. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <returns>A <see cref="T:System.String"/> that is equivalent to the substring of remaining length that begins at |
| | | <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32,System.Int32)"> |
| | | <summary> |
| | | Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The substring starts at the position specified by <paramref name="offset"/> and has the specified <paramref name="length"/>. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <param name="length">The number of characters in the substring.</param> |
| | | <returns>A <see cref="T:System.String"/> that is equivalent to the substring of length <paramref name="length"/> that begins at |
| | | <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32)"> |
| | | <summary> |
| | | Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> starts at the position specified by <paramref name="offset"/>. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that begins at <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> |
| | | whose length is the remainder.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32,System.Int32)"> |
| | | <summary> |
| | | Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> starts at the position specified by <paramref name="offset"/> and has the specified <paramref name="length"/>. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <param name="length">The number of characters in the substring.</param> |
| | | <returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that is equivalent to the substring of length <paramref name="length"/> that begins at <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32,System.Int32)"> |
| | | <summary> |
| | | Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The search starts at <paramref name="start"/> and examines a specified number of <paramref name="count"/> character positions. |
| | | </summary> |
| | | <param name="c">The Unicode character to seek.</param> |
| | | <param name="start">The zero-based index position at which the search starts. </param> |
| | | <param name="count">The number of characters to examine.</param> |
| | | <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32)"> |
| | | <summary> |
| | | Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The search starts at <paramref name="start"/>. |
| | | </summary> |
| | | <param name="c">The Unicode character to seek.</param> |
| | | <param name="start">The zero-based index position at which the search starts. </param> |
| | | <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char)"> |
| | | <summary> |
| | | Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="c">The Unicode character to seek.</param> |
| | | <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32,System.Int32)"> |
| | | <summary> |
| | | Reports the zero-based index of the first occurrence in this instance of any character in a specified array |
| | | of Unicode characters. The search starts at a specified character position and examines a specified number |
| | | of character positions. |
| | | </summary> |
| | | <param name="anyOf">A Unicode character array containing one or more characters to seek.</param> |
| | | <param name="startIndex">The search starting position.</param> |
| | | <param name="count">The number of character positions to examine.</param> |
| | | <returns>The zero-based index position of the first occurrence in this instance where any character in anyOf |
| | | was found; -1 if no character in anyOf was found.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32)"> |
| | | <summary> |
| | | Reports the zero-based index of the first occurrence in this instance of any character in a specified array |
| | | of Unicode characters. The search starts at a specified character position. |
| | | </summary> |
| | | <param name="anyOf">A Unicode character array containing one or more characters to seek.</param> |
| | | <param name="startIndex">The search starting position.</param> |
| | | <returns>The zero-based index position of the first occurrence in this instance where any character in anyOf |
| | | was found; -1 if no character in anyOf was found.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[])"> |
| | | <summary> |
| | | Reports the zero-based index of the first occurrence in this instance of any character in a specified array |
| | | of Unicode characters. |
| | | </summary> |
| | | <param name="anyOf">A Unicode character array containing one or more characters to seek.</param> |
| | | <returns>The zero-based index position of the first occurrence in this instance where any character in anyOf |
| | | was found; -1 if no character in anyOf was found.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.LastIndexOf(System.Char)"> |
| | | <summary> |
| | | Reports the zero-based index position of the last occurrence of a specified Unicode character within this instance. |
| | | </summary> |
| | | <param name="value">The Unicode character to seek.</param> |
| | | <returns>The zero-based index position of value if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Trim"> |
| | | <summary> |
| | | Removes all leading and trailing whitespaces. |
| | | </summary> |
| | | <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimStart"> |
| | | <summary> |
| | | Removes all leading whitespaces. |
| | | </summary> |
| | | <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimEnd"> |
| | | <summary> |
| | | Removes all trailing whitespaces. |
| | | </summary> |
| | | <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Split(System.Char[])"> |
| | | <summary> |
| | | Splits a string into StringSegments that are based on the characters in an array. |
| | | </summary> |
| | | <param name="chars">A character array that delimits the substrings in this string, an empty array that |
| | | contains no delimiters, or null.</param> |
| | | <returns>An <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/> whose elements contain the StringSegmeents from this instance |
| | | that are delimited by one or more characters in separator.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Indicates whether the specified StringSegment is null or an Empty string. |
| | | </summary> |
| | | <param name="value">The StringSegment to test.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.ToString"> |
| | | <summary> |
| | | Returns the <see cref="T:System.String"/> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> or <code>String.Empty</code> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> does not contain a value. |
| | | </summary> |
| | | <returns>The <see cref="T:System.String"/> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> or <code>String.Empty</code> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> does not contain a value.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.StringTokenizer"> |
| | | <summary> |
| | | Tokenizes a <c>string</c> into <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>s. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(System.String,System.Char[])"> |
| | | <summary> |
| | | Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/>. |
| | | </summary> |
| | | <param name="value">The <c>string</c> to tokenize.</param> |
| | | <param name="separators">The characters to tokenize by.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Char[])"> |
| | | <summary> |
| | | Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/>. |
| | | </summary> |
| | | <param name="value">The <c>StringSegment</c> to tokenize.</param> |
| | | <param name="separators">The characters to tokenize by.</param> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.StringValues"> |
| | | <summary> |
| | | Represents zero/null, one, or many strings in an efficient way. |
| | | </summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.Net.Http.Headers</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.SetHttpFileName(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Sets both FileName and FileNameStar using encodings appropriate for HTTP headers. |
| | | </summary> |
| | | <param name="fileName"></param> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.SetMimeFileName(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Sets the FileName parameter using encodings appropriate for MIME headers. |
| | | The FileNameStar parameter is removed. |
| | | </summary> |
| | | <param name="fileName"></param> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.ContentDispositionHeaderValueIdentityExtensions"> |
| | | <summary> |
| | | Various extension methods for <see cref="T:Microsoft.Net.Http.Headers.ContentDispositionHeaderValue"/> for identifying the type of the disposition header |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValueIdentityExtensions.IsFileDisposition(Microsoft.Net.Http.Headers.ContentDispositionHeaderValue)"> |
| | | <summary> |
| | | Checks if the content disposition header is a file disposition |
| | | </summary> |
| | | <param name="header">The header to check</param> |
| | | <returns>True if the header is file disposition, false otherwise</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValueIdentityExtensions.IsFormDisposition(Microsoft.Net.Http.Headers.ContentDispositionHeaderValue)"> |
| | | <summary> |
| | | Checks if the content disposition header is a form disposition |
| | | </summary> |
| | | <param name="header">The header to check</param> |
| | | <returns>True if the header is form disposition, false otherwise</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.EntityTagHeaderValue.Equals(System.Object)"> |
| | | <summary> |
| | | Check against another <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> for equality. |
| | | This equality check should not be used to determine if two values match under the RFC specifications (https://tools.ietf.org/html/rfc7232#section-2.3.2). |
| | | </summary> |
| | | <param name="obj">The other value to check against for equality.</param> |
| | | <returns> |
| | | <c>true</c> if the strength and tag of the two values match, |
| | | <c>false</c> if the other value is null, is not an <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/>, or if there is a mismatch of strength or tag between the two values. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.EntityTagHeaderValue.Compare(Microsoft.Net.Http.Headers.EntityTagHeaderValue,System.Boolean)"> |
| | | <summary> |
| | | Compares against another <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> to see if they match under the RFC specifications (https://tools.ietf.org/html/rfc7232#section-2.3.2). |
| | | </summary> |
| | | <param name="other">The other <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> to compare against.</param> |
| | | <param name="useStrongComparison"><c>true</c> to use a strong comparison, <c>false</c> to use a weak comparison</param> |
| | | <returns> |
| | | <c>true</c> if the <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> match for the given comparison type, |
| | | <c>false</c> if the other value is null or the comparison failed. |
| | | </returns> |
| | | </member> |
| | | <member name="F:Microsoft.Net.Http.Headers.HeaderQuality.Match"> |
| | | <summary> |
| | | Quality factor to indicate a perfect match. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.Net.Http.Headers.HeaderQuality.NoMatch"> |
| | | <summary> |
| | | Quality factor to indicate no match. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.TryParseSeconds(Microsoft.Extensions.Primitives.StringValues,System.String,System.Nullable{System.TimeSpan}@)"> |
| | | <summary> |
| | | Try to find a target header value among the set of given header values and parse it as a |
| | | <see cref="T:System.TimeSpan"/>. |
| | | </summary> |
| | | <param name="headerValues"> |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> containing the set of header values to search. |
| | | </param> |
| | | <param name="targetValue"> |
| | | The target header value to look for. |
| | | </param> |
| | | <param name="value"> |
| | | When this method returns, contains the parsed <see cref="T:System.TimeSpan"/>, if the parsing succeeded, or |
| | | null if the parsing failed. The conversion fails if the <paramref name="targetValue"/> was not |
| | | found or could not be parsed as a <see cref="T:System.TimeSpan"/>. This parameter is passed uninitialized; |
| | | any value originally supplied in result will be overwritten. |
| | | </param> |
| | | <returns> |
| | | <code>true</code> if <paramref name="targetValue"/> is found and successfully parsed; otherwise, |
| | | <code>false</code>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.ContainsCacheDirective(Microsoft.Extensions.Primitives.StringValues,System.String)"> |
| | | <summary> |
| | | Check if a target directive exists among the set of given cache control directives. |
| | | </summary> |
| | | <param name="cacheControlDirectives"> |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> containing the set of cache control directives. |
| | | </param> |
| | | <param name="targetDirectives"> |
| | | The target cache control directives to look for. |
| | | </param> |
| | | <returns> |
| | | <code>true</code> if <paramref name="targetDirectives"/> is contained in <paramref name="cacheControlDirectives"/>; |
| | | otherwise, <code>false</code>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.TryParseNonNegativeInt32(Microsoft.Extensions.Primitives.StringSegment,System.Int32@)"> |
| | | <summary> |
| | | Try to convert a string representation of a positive number to its 64-bit signed integer equivalent. |
| | | A return value indicates whether the conversion succeeded or failed. |
| | | </summary> |
| | | <param name="value"> |
| | | A string containing a number to convert. |
| | | </param> |
| | | <param name="result"> |
| | | When this method returns, contains the 64-bit signed integer value equivalent of the number contained |
| | | in the string, if the conversion succeeded, or zero if the conversion failed. The conversion fails if |
| | | the string is null or String.Empty, is not of the correct format, is negative, or represents a number |
| | | greater than Int64.MaxValue. This parameter is passed uninitialized; any value originally supplied in |
| | | result will be overwritten. |
| | | </param> |
| | | <returns><code>true</code> if parsing succeeded; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.TryParseNonNegativeInt64(Microsoft.Extensions.Primitives.StringSegment,System.Int64@)"> |
| | | <summary> |
| | | Try to convert a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> representation of a positive number to its 64-bit signed |
| | | integer equivalent. A return value indicates whether the conversion succeeded or failed. |
| | | </summary> |
| | | <param name="value"> |
| | | A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> containing a number to convert. |
| | | </param> |
| | | <param name="result"> |
| | | When this method returns, contains the 64-bit signed integer value equivalent of the number contained |
| | | in the string, if the conversion succeeded, or zero if the conversion failed. The conversion fails if |
| | | the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> is null or String.Empty, is not of the correct format, is negative, or |
| | | represents a number greater than Int64.MaxValue. This parameter is passed uninitialized; any value |
| | | originally supplied in result will be overwritten. |
| | | </param> |
| | | <returns><code>true</code> if parsing succeeded; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.FormatNonNegativeInt64(System.Int64)"> |
| | | <summary> |
| | | Converts the non-negative 64-bit numeric value to its equivalent string representation. |
| | | </summary> |
| | | <param name="value"> |
| | | The number to convert. |
| | | </param> |
| | | <returns> |
| | | The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9 with no leading zeroes. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.UnescapeAsQuotedString(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Given a quoted-string as defined by <see href="https://tools.ietf.org/html/rfc7230#section-3.2.6">the RFC specification</see>, |
| | | removes quotes and unescapes backslashes and quotes. This assumes that the input is a valid quoted-string. |
| | | </summary> |
| | | <param name="input">The quoted-string to be unescaped.</param> |
| | | <returns>An unescaped version of the quoted-string.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.EscapeAsQuotedString(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Escapes a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> as a quoted-string, which is defined by |
| | | <see href="https://tools.ietf.org/html/rfc7230#section-3.2.6">the RFC specification</see>. |
| | | </summary> |
| | | <remarks> |
| | | This will add a backslash before each backslash and quote and add quotes |
| | | around the input. Assumes that the input does not have quotes around it, |
| | | as this method will add them. Throws if the input contains any invalid escape characters, |
| | | as defined by rfc7230. |
| | | </remarks> |
| | | <param name="input">The input to be escaped.</param> |
| | | <returns>An escaped version of the quoted-string.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"> |
| | | <summary> |
| | | Representation of the media type header. See <see href="https://tools.ietf.org/html/rfc6838"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.#ctor(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Initializes a <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> instance. |
| | | </summary> |
| | | <param name="mediaType">A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> representation of a media type. |
| | | The text provided must be a single media type without parameters. </param> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Double)"> |
| | | <summary> |
| | | Initializes a <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> instance. |
| | | </summary> |
| | | <param name="mediaType">A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> representation of a media type. |
| | | The text provided must be a single media type without parameters. </param> |
| | | <param name="quality">The <see cref="T:System.Double"/> with the quality of the media type.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Charset"> |
| | | <summary> |
| | | Gets or sets the value of the charset parameter. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no charset. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Encoding"> |
| | | <summary> |
| | | Gets or sets the value of the Encoding parameter. Setting the Encoding will set |
| | | the <see cref="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Charset"/> to <see cref="P:System.Text.Encoding.WebName"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Boundary"> |
| | | <summary> |
| | | Gets or sets the value of the boundary parameter. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no boundary. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Parameters"> |
| | | <summary> |
| | | Gets or sets the media type's parameters. Returns an empty <see cref="T:System.Collections.Generic.IList`1"/> |
| | | if there are no parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Quality"> |
| | | <summary> |
| | | Gets or sets the value of the quality parameter. Returns null |
| | | if there is no quality. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MediaType"> |
| | | <summary> |
| | | Gets or sets the value of the media type. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no media type. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/json"</c>, the property gives the value |
| | | <c>"application/json"</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Type"> |
| | | <summary> |
| | | Gets the type of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/json"</c>, the property gives the value <c>"application"</c>. |
| | | </example> |
| | | <remarks>See <see href="https://tools.ietf.org/html/rfc6838#section-4.2"/> for more details on the type.</remarks> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.SubType"> |
| | | <summary> |
| | | Gets the subtype of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value |
| | | <c>"vnd.example+json"</c>. |
| | | </example> |
| | | <remarks>See <see href="https://tools.ietf.org/html/rfc6838#section-4.2"/> for more details on the subtype.</remarks> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.SubTypeWithoutSuffix"> |
| | | <summary> |
| | | Gets subtype of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>, excluding any structured syntax suffix. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no subtype without suffix. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value |
| | | <c>"vnd.example"</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Suffix"> |
| | | <summary> |
| | | Gets the structured syntax suffix of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> if it has one. |
| | | See <see href="https://tools.ietf.org/html/rfc6838#section-4.8">The RFC documentation on structured syntaxes.</see> |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value |
| | | <c>"json"</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Facets"> |
| | | <summary> |
| | | Get a <see cref="T:System.Collections.Generic.IList`1"/> of facets of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>. Facets are a |
| | | period separated list of StringSegments in the <see cref="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.SubTypeWithoutSuffix"/>. |
| | | See <see href="https://tools.ietf.org/html/rfc6838#section-3">The RFC documentation on facets.</see> |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value: |
| | | <c>{"vnd", "example"}</c> |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MatchesAllTypes"> |
| | | <summary> |
| | | Gets whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> matches all types. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MatchesAllSubTypes"> |
| | | <summary> |
| | | Gets whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> matches all subtypes. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/*"</c>, this property is <c>true</c>. |
| | | </example> |
| | | <example> |
| | | For the media type <c>"application/json"</c>, this property is <c>false</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MatchesAllSubTypesWithoutSuffix"> |
| | | <summary> |
| | | Gets whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> matches all subtypes, ignoring any structured syntax suffix. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/*+json"</c>, this property is <c>true</c>. |
| | | </example> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, this property is <c>false</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.IsReadOnly"> |
| | | <summary> |
| | | Gets whether the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> is readonly. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.IsSubsetOf(Microsoft.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <summary> |
| | | Gets a value indicating whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> is a subset of |
| | | <paramref name="otherMediaType"/>. A "subset" is defined as the same or a more specific media type |
| | | according to the precedence described in https://www.ietf.org/rfc/rfc2068.txt section 14.1, Accept. |
| | | </summary> |
| | | <param name="otherMediaType">The <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> to compare.</param> |
| | | <returns> |
| | | A value indicating whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> is a subset of |
| | | <paramref name="otherMediaType"/>. |
| | | </returns> |
| | | <remarks> |
| | | For example "multipart/mixed; boundary=1234" is a subset of "multipart/mixed; boundary=1234", |
| | | "multipart/mixed", "multipart/*", and "*/*" but not "multipart/mixed; boundary=2345" or |
| | | "multipart/message; boundary=1234". |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Copy"> |
| | | <summary> |
| | | Performs a deep copy of this object and all of it's NameValueHeaderValue sub components, |
| | | while avoiding the cost of re-validating the components. |
| | | </summary> |
| | | <returns>A deep copy.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.CopyAsReadOnly"> |
| | | <summary> |
| | | Performs a deep copy of this object and all of it's NameValueHeaderValue sub components, |
| | | while avoiding the cost of re-validating the components. This copy is read-only. |
| | | </summary> |
| | | <returns>A deep, read-only, copy.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Parse(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Takes a media type and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue" /> and its associated parameters. |
| | | </summary> |
| | | <param name="input">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> with the media type.</param> |
| | | <returns>The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.TryParse(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Net.Http.Headers.MediaTypeHeaderValue@)"> |
| | | <summary> |
| | | Takes a media type, which can include parameters, and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue" /> and its associated parameters. |
| | | </summary> |
| | | <param name="input">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> with the media type. The media type constructed here must not have an y</param> |
| | | <param name="parsedValue">The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/></param> |
| | | <returns>True if the value was successfully parsed.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.ParseList(System.Collections.Generic.IList{System.String})"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <returns>The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.ParseStrictList(System.Collections.Generic.IList{System.String})"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | Throws if there is invalid data in a string. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <returns>The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.TryParseList(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{Microsoft.Net.Http.Headers.MediaTypeHeaderValue}@)"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <param name="parsedValues">The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</param> |
| | | <returns>True if the value was successfully parsed.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.TryParseStrictList(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{Microsoft.Net.Http.Headers.MediaTypeHeaderValue}@)"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <param name="parsedValues">The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</param> |
| | | <returns>True if the value was successfully parsed.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer"> |
| | | <summary> |
| | | Implementation of <see cref="T:System.Collections.Generic.IComparer`1"/> that can compare accept media type header fields |
| | | based on their quality values (a.k.a q-values). |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer.Compare(Microsoft.Net.Http.Headers.MediaTypeHeaderValue,Microsoft.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <inheritdoc /> |
| | | <remarks> |
| | | Performs comparisons based on the arguments' quality values |
| | | (aka their "q-value"). Values with identical q-values are considered equal (i.e. the result is 0) |
| | | with the exception that suffixed subtype wildcards are considered less than subtype wildcards, subtype wildcards |
| | | are considered less than specific media types and full wildcards are considered less than |
| | | subtype wildcards. This allows callers to sort a sequence of <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> following |
| | | their q-values in the order of specific media types, subtype wildcards, and last any full wildcards. |
| | | </remarks> |
| | | <example> |
| | | If we had a list of media types (comma separated): { text/*;q=0.8, text/*+json;q=0.8, */*;q=1, */*;q=0.8, text/plain;q=0.8 } |
| | | Sorting them using Compare would return: { */*;q=0.8, text/*;q=0.8, text/*+json;q=0.8, text/plain;q=0.8, */*;q=1 } |
| | | </example> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.NameValueHeaderValue.Copy"> |
| | | <summary> |
| | | Provides a copy of this object without the cost of re-validating the values. |
| | | </summary> |
| | | <returns>A copy.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.SetCookieHeaderValue.AppendToStringBuilder(System.Text.StringBuilder)"> |
| | | <summary> |
| | | Append string representation of this <see cref="T:Microsoft.Net.Http.Headers.SetCookieHeaderValue"/> to given |
| | | <paramref name="builder"/>. |
| | | </summary> |
| | | <param name="builder"> |
| | | The <see cref="T:System.Text.StringBuilder"/> to receive the string representation of this |
| | | <see cref="T:Microsoft.Net.Http.Headers.SetCookieHeaderValue"/>. |
| | | </param> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.StringWithQualityHeaderValueComparer"> |
| | | <summary> |
| | | Implementation of <see cref="T:System.Collections.Generic.IComparer`1"/> that can compare content negotiation header fields |
| | | based on their quality values (a.k.a q-values). This applies to values used in accept-charset, |
| | | accept-encoding, accept-language and related header fields with similar syntax rules. See |
| | | <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer"/> for a comparer for media type |
| | | q-values. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.StringWithQualityHeaderValueComparer.Compare(Microsoft.Net.Http.Headers.StringWithQualityHeaderValue,Microsoft.Net.Http.Headers.StringWithQualityHeaderValue)"> |
| | | <summary> |
| | | Compares two <see cref="T:Microsoft.Net.Http.Headers.StringWithQualityHeaderValue"/> based on their quality value |
| | | (a.k.a their "q-value"). |
| | | Values with identical q-values are considered equal (i.e the result is 0) with the exception of wild-card |
| | | values (i.e. a value of "*") which are considered less than non-wild-card values. This allows to sort |
| | | a sequence of <see cref="T:Microsoft.Net.Http.Headers.StringWithQualityHeaderValue"/> following their q-values ending up with any |
| | | wild-cards at the end. |
| | | </summary> |
| | | <param name="stringWithQuality1">The first value to compare.</param> |
| | | <param name="stringWithQuality2">The second value to compare</param> |
| | | <returns>The result of the comparison.</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.CodeDom</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:System.SR.CodeDomProvider_NotDefined"> |
| | | <summary>There is no CodeDom provider defined for the language.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NotSupported_CodeDomAPI"> |
| | | <summary>This CodeDomProvider does not support this method.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenOutputWriter"> |
| | | <summary>The output writer for code generation and the writer supplied don't match and cannot be used. This is generally caused by a bad implementation of a CodeGenerator derived class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenReentrance"> |
| | | <summary>This code generation API cannot be called while the generator is being used to generate something else.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidElementType"> |
| | | <summary>Element type {0} is not supported.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Argument_NullComment"> |
| | | <summary>The 'Comment' property of the CodeCommentStatement '{0}' cannot be null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPrimitiveType"> |
| | | <summary>Invalid Primitive Type: {0}. Consider using CodeObjectCreateExpression.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidIdentifier"> |
| | | <summary>Identifier '{0}' is not valid.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ArityDoesntMatch"> |
| | | <summary>The total arity specified in '{0}' does not match the number of TypeArguments supplied. There were '{1}' TypeArguments supplied.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidNullEmptyArgument"> |
| | | <summary>Argument {0} cannot be null or zero-length.</summary> |
| | | </member> |
| | | <member name="P:System.SR.DuplicateFileName"> |
| | | <summary>The file name '{0}' was already in the collection.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidTypeName"> |
| | | <summary>The type name:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent type name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidRegion"> |
| | | <summary>The region directive '{0}' contains invalid characters. RegionText cannot contain any new line characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPathCharsInChecksum"> |
| | | <summary>The CodeChecksumPragma file name '{0}' contains invalid path characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ExecTimeout"> |
| | | <summary>Timed out waiting for a program to execute. The command being executed was {0}.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Provider_does_not_support_options"> |
| | | <summary>This CodeDomProvider type does not have a constructor that takes providerOptions - "{0}".</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidLanguageIdentifier"> |
| | | <summary>The identifier:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent identifier name. Check to see if CodeGenerator.IsValidLanguageIndependentIdentifier allows the identifier name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.toStringUnknown"> |
| | | <summary>{unknown}</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line1"> |
| | | <summary>auto-generated></summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line2"> |
| | | <summary>This code was generated by a tool.</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line4"> |
| | | <summary>Changes to this file may cause incorrect behavior and will be lost if</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line5"> |
| | | <summary>the code is regenerated.</summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.OSPlatformAttribute"> |
| | | <summary> |
| | | Base type for all platform-specific API attributes. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.TargetPlatformAttribute"> |
| | | <summary> |
| | | Records the platform that the project targeted. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Records the operating system (and minimum version) that supports an API. Multiple attributes can be |
| | | applied to indicate support on multiple operating systems. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" /> |
| | | or use guards to prevent calls to APIs on unsupported operating systems. |
| | | |
| | | A given platform should only be specified once. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Marks APIs that were removed in a given operating system version. |
| | | </summary> |
| | | <remarks> |
| | | Primarily used by OS bindings to indicate APIs that are only available in |
| | | earlier versions. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates a custom guard field, property or method with a supported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple supported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates the custom guard field, property or method with an unsupported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple unsupported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="utf-8"?><doc> |
| | | <assembly> |
| | | <name>System.Text.Encodings.Web</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:System.Text.Encodings.Web.HtmlEncoder"> |
| | | <summary>Represents an HTML character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of the HtmlEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.HtmlEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.JavaScriptEncoder"> |
| | | <summary>Represents a JavaScript character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of JavaScriptEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the JavaScriptEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.TextEncoder"> |
| | | <summary>The base class of web encoders.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.TextEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)"> |
| | | <summary>Encodes the supplied string and returns the encoded text as a new string.</summary> |
| | | <param name="value">The string to encode.</param> |
| | | <returns>The encoded string.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)"> |
| | | <summary>Encodes the specified string to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The string to encode.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)"> |
| | | <summary>Encodes characters from an array and writes them to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The array of characters to encode.</param> |
| | | <param name="startIndex">The array index of the first character to encode.</param> |
| | | <param name="characterCount">The number of characters in the array to encode.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)"> |
| | | <summary>Encodes a substring and writes it to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The string whose substring is to be encoded.</param> |
| | | <param name="startIndex">The index where the substring starts.</param> |
| | | <param name="characterCount">The number of characters in the substring.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)"> |
| | | <summary>Finds the index of the first character to encode.</summary> |
| | | <param name="text">The text buffer to search.</param> |
| | | <param name="textLength">The number of characters in <paramref name="text">text</paramref>.</param> |
| | | <returns>The index of the first character to encode.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"> |
| | | <summary>Gets the maximum number of characters that this encoder can generate for each input code point.</summary> |
| | | <returns>The maximum number of characters.</returns> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"> |
| | | <summary>Encodes a Unicode scalar value and writes it to a buffer.</summary> |
| | | <param name="unicodeScalar">A Unicode scalar value.</param> |
| | | <param name="buffer">A pointer to the buffer to which to write the encoded text.</param> |
| | | <param name="bufferLength">The length of the destination <paramref name="buffer">buffer</paramref> in characters.</param> |
| | | <param name="numberOfCharactersWritten">When the method returns, indicates the number of characters written to the <paramref name="buffer">buffer</paramref>.</param> |
| | | <returns>false if <paramref name="bufferLength">bufferLength</paramref> is too small to fit the encoded text; otherwise, returns true.</returns> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.WillEncode(System.Int32)"> |
| | | <summary>Determines if a given Unicode scalar value will be encoded.</summary> |
| | | <param name="unicodeScalar">A Unicode scalar value.</param> |
| | | <returns>true if the <paramref name="unicodeScalar">unicodeScalar</paramref> value will be encoded by this encoder; otherwise, returns false.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.TextEncoderSettings"> |
| | | <summary>Represents a filter that allows only certain Unicode code points.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor"> |
| | | <summary>Instantiates an empty filter (allows no code points through by default).</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Instantiates a filter by cloning the allowed list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object.</summary> |
| | | <param name="other">The other <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object to be cloned.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Instantiates a filter where only the character ranges specified by <paramref name="allowedRanges">allowedRanges</paramref> are allowed by the filter.</summary> |
| | | <param name="allowedRanges">The allowed character ranges.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacter(System.Char)"> |
| | | <summary>Allows the character specified by <paramref name="character">character</paramref> through the filter.</summary> |
| | | <param name="character">The allowed character.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacters(System.Char[])"> |
| | | <summary>Allows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary> |
| | | <param name="characters">The allowed characters.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCodePoints(System.Collections.Generic.IEnumerable{System.Int32})"> |
| | | <summary>Allows all code points specified by <paramref name="codePoints">codePoints</paramref>.</summary> |
| | | <param name="codePoints">The allowed code points.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="codePoints">codePoints</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRange(System.Text.Unicode.UnicodeRange)"> |
| | | <summary>Allows all characters specified by <paramref name="range">range</paramref> through the filter.</summary> |
| | | <param name="range">The range of characters to be allowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRanges(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Allows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary> |
| | | <param name="ranges">The ranges of characters to be allowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.Clear"> |
| | | <summary>Resets this object by disallowing all characters.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacter(System.Char)"> |
| | | <summary>Disallows the character <paramref name="character">character</paramref> through the filter.</summary> |
| | | <param name="character">The disallowed character.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacters(System.Char[])"> |
| | | <summary>Disallows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary> |
| | | <param name="characters">The disallowed characters.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRange(System.Text.Unicode.UnicodeRange)"> |
| | | <summary>Disallows all characters specified by <paramref name="range">range</paramref> through the filter.</summary> |
| | | <param name="range">The range of characters to be disallowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRanges(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Disallows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary> |
| | | <param name="ranges">The ranges of characters to be disallowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePoints"> |
| | | <summary>Gets an enumerator of all allowed code points.</summary> |
| | | <returns>The enumerator of allowed code points.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.UrlEncoder"> |
| | | <summary>Represents a URL character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of UrlEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the UrlEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.UrlEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Unicode.UnicodeRange"> |
| | | <summary>Represents a contiguous range of Unicode code points.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Unicode.UnicodeRange.#ctor(System.Int32,System.Int32)"> |
| | | <summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> that includes a specified number of characters starting at a specified Unicode code point.</summary> |
| | | <param name="firstCodePoint">The first code point in the range.</param> |
| | | <param name="length">The number of code points in the range.</param> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="firstCodePoint">firstCodePoint</paramref> is less than zero or greater than 0xFFFF. |
| | | -or- |
| | | <paramref name="length">length</paramref> is less than zero. |
| | | -or- |
| | | <paramref name="firstCodePoint">firstCodePoint</paramref> plus <paramref name="length">length</paramref> is greater than 0xFFFF.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Unicode.UnicodeRange.Create(System.Char,System.Char)"> |
| | | <summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance from a span of characters.</summary> |
| | | <param name="firstCharacter">The first character in the range.</param> |
| | | <param name="lastCharacter">The last character in the range.</param> |
| | | <returns>A range that includes all characters between <paramref name="firstCharacter">firstCharacter</paramref> and <paramref name="lastCharacter">lastCharacter</paramref>.</returns> |
| | | <exception cref="System.ArgumentOutOfRangeException"><paramref name="lastCharacter">lastCharacter</paramref> precedes <paramref name="firstCharacter">firstCharacter</paramref>.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRange.FirstCodePoint"> |
| | | <summary>Gets the first code point in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary> |
| | | <returns>The first code point in the range.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRange.Length"> |
| | | <summary>Gets the number of code points in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary> |
| | | <returns>The number of code points in the range.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Unicode.UnicodeRanges"> |
| | | <summary>Provides static properties that return predefined <see cref="T:System.Text.Unicode.UnicodeRange"></see> instances that correspond to blocks from the Unicode specification.</summary> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.All"> |
| | | <summary>Gets a range that consists of the entire Basic Multilingual Plane (BMP), from U+0000 to U+FFFF).</summary> |
| | | <returns>A range that consists of the entire BMP.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.AlphabeticPresentationForms"> |
| | | <summary>Gets the Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).</summary> |
| | | <returns>The Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Arabic"> |
| | | <summary>Gets the Arabic Unicode block (U+0600-U+06FF).</summary> |
| | | <returns>The Arabic Unicode block (U+0600-U+06FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedA"> |
| | | <summary>Gets the Arabic Extended-A Unicode block (U+08A0-U+08FF).</summary> |
| | | <returns>The Arabic Extended-A Unicode block (U+08A0-U+08FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsA"> |
| | | <summary>Gets the Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</summary> |
| | | <returns>The Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsB"> |
| | | <summary>Gets the Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).</summary> |
| | | <returns>The Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicSupplement"> |
| | | <summary>Gets the Arabic Supplement Unicode block (U+0750-U+077F).</summary> |
| | | <returns>The Arabic Supplement Unicode block (U+0750-U+077F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Armenian"> |
| | | <summary>Gets the Armenian Unicode block (U+0530-U+058F).</summary> |
| | | <returns>The Armenian Unicode block (U+0530-U+058F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Arrows"> |
| | | <summary>Gets the Arrows Unicode block (U+2190-U+21FF).</summary> |
| | | <returns>The Arrows Unicode block (U+2190-U+21FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Balinese"> |
| | | <summary>Gets the Balinese Unicode block (U+1B00-U+1B7F).</summary> |
| | | <returns>The Balinese Unicode block (U+1B00-U+1B7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bamum"> |
| | | <summary>Gets the Bamum Unicode block (U+A6A0-U+A6FF).</summary> |
| | | <returns>The Bamum Unicode block (U+A6A0-U+A6FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BasicLatin"> |
| | | <summary>Gets the Basic Latin Unicode block (U+0021-U+007F).</summary> |
| | | <returns>The Basic Latin Unicode block (U+0021-U+007F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Batak"> |
| | | <summary>Gets the Batak Unicode block (U+1BC0-U+1BFF).</summary> |
| | | <returns>The Batak Unicode block (U+1BC0-U+1BFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bengali"> |
| | | <summary>Gets the Bengali Unicode block (U+0980-U+09FF).</summary> |
| | | <returns>The Bengali Unicode block (U+0980-U+09FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BlockElements"> |
| | | <summary>Gets the Block Elements Unicode block (U+2580-U+259F).</summary> |
| | | <returns>The Block Elements Unicode block (U+2580-U+259F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bopomofo"> |
| | | <summary>Gets the Bopomofo Unicode block (U+3100-U+312F).</summary> |
| | | <returns>The Bopomofo Unicode block (U+3105-U+312F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BopomofoExtended"> |
| | | <summary>Gets the Bopomofo Extended Unicode block (U+31A0-U+31BF).</summary> |
| | | <returns>The Bopomofo Extended Unicode block (U+31A0-U+31BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BoxDrawing"> |
| | | <summary>Gets the Box Drawing Unicode block (U+2500-U+257F).</summary> |
| | | <returns>The Box Drawing Unicode block (U+2500-U+257F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BraillePatterns"> |
| | | <summary>Gets the Braille Patterns Unicode block (U+2800-U+28FF).</summary> |
| | | <returns>The Braille Patterns Unicode block (U+2800-U+28FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Buginese"> |
| | | <summary>Gets the Buginese Unicode block (U+1A00-U+1A1F).</summary> |
| | | <returns>The Buginese Unicode block (U+1A00-U+1A1F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Buhid"> |
| | | <summary>Gets the Buhid Unicode block (U+1740-U+175F).</summary> |
| | | <returns>The Buhid Unicode block (U+1740-U+175F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cham"> |
| | | <summary>Gets the Cham Unicode block (U+AA00-U+AA5F).</summary> |
| | | <returns>The Cham Unicode block (U+AA00-U+AA5F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cherokee"> |
| | | <summary>Gets the Cherokee Unicode block (U+13A0-U+13FF).</summary> |
| | | <returns>The Cherokee Unicode block (U+13A0-U+13FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CherokeeSupplement"> |
| | | <summary>Gets the Cherokee Supplement Unicode block (U+AB70-U+ABBF).</summary> |
| | | <returns>The Cherokee Supplement Unicode block (U+AB70-U+ABBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibility"> |
| | | <summary>Gets the CJK Compatibility Unicode block (U+3300-U+33FF).</summary> |
| | | <returns>The CJK Compatibility Unicode block (U+3300-U+33FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityForms"> |
| | | <summary>Gets the CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).</summary> |
| | | <returns>The CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityIdeographs"> |
| | | <summary>Gets the CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).</summary> |
| | | <returns>The CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkRadicalsSupplement"> |
| | | <summary>Gets the CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).</summary> |
| | | <returns>The CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkStrokes"> |
| | | <summary>Gets the CJK Strokes Unicode block (U+31C0-U+31EF).</summary> |
| | | <returns>The CJK Strokes Unicode block (U+31C0-U+31EF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkSymbolsandPunctuation"> |
| | | <summary>Gets the CJK Symbols and Punctuation Unicode block (U+3000-U+303F).</summary> |
| | | <returns>The CJK Symbols and Punctuation Unicode block (U+3000-U+303F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographs"> |
| | | <summary>Gets the CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).</summary> |
| | | <returns>The CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographsExtensionA"> |
| | | <summary>Gets the CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).</summary> |
| | | <returns>The CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarks"> |
| | | <summary>Gets the Combining Diacritical Marks Unicode block (U+0300-U+036F).</summary> |
| | | <returns>The Combining Diacritical Marks Unicode block (U+0300-U+036F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksExtended"> |
| | | <summary>Gets the Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).</summary> |
| | | <returns>The Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksforSymbols"> |
| | | <summary>Gets the Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).</summary> |
| | | <returns>The Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksSupplement"> |
| | | <summary>Gets the Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).</summary> |
| | | <returns>The Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningHalfMarks"> |
| | | <summary>Gets the Combining Half Marks Unicode block (U+FE20-U+FE2F).</summary> |
| | | <returns>The Combining Half Marks Unicode block (U+FE20-U+FE2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CommonIndicNumberForms"> |
| | | <summary>Gets the Common Indic Number Forms Unicode block (U+A830-U+A83F).</summary> |
| | | <returns>The Common Indic Number Forms Unicode block (U+A830-U+A83F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ControlPictures"> |
| | | <summary>Gets the Control Pictures Unicode block (U+2400-U+243F).</summary> |
| | | <returns>The Control Pictures Unicode block (U+2400-U+243F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Coptic"> |
| | | <summary>Gets the Coptic Unicode block (U+2C80-U+2CFF).</summary> |
| | | <returns>The Coptic Unicode block (U+2C80-U+2CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CurrencySymbols"> |
| | | <summary>Gets the Currency Symbols Unicode block (U+20A0-U+20CF).</summary> |
| | | <returns>The Currency Symbols Unicode block (U+20A0-U+20CF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cyrillic"> |
| | | <summary>Gets the Cyrillic Unicode block (U+0400-U+04FF).</summary> |
| | | <returns>The Cyrillic Unicode block (U+0400-U+04FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedA"> |
| | | <summary>Gets the Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).</summary> |
| | | <returns>The Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedB"> |
| | | <summary>Gets the Cyrillic Extended-B Unicode block (U+A640-U+A69F).</summary> |
| | | <returns>The Cyrillic Extended-B Unicode block (U+A640-U+A69F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicSupplement"> |
| | | <summary>Gets the Cyrillic Supplement Unicode block (U+0500-U+052F).</summary> |
| | | <returns>The Cyrillic Supplement Unicode block (U+0500-U+052F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Devanagari"> |
| | | <summary>Gets the Devangari Unicode block (U+0900-U+097F).</summary> |
| | | <returns>The Devangari Unicode block (U+0900-U+097F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.DevanagariExtended"> |
| | | <summary>Gets the Devanagari Extended Unicode block (U+A8E0-U+A8FF).</summary> |
| | | <returns>The Devanagari Extended Unicode block (U+A8E0-U+A8FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Dingbats"> |
| | | <summary>Gets the Dingbats Unicode block (U+2700-U+27BF).</summary> |
| | | <returns>The Dingbats Unicode block (U+2700-U+27BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EnclosedAlphanumerics"> |
| | | <summary>Gets the Enclosed Alphanumerics Unicode block (U+2460-U+24FF).</summary> |
| | | <returns>The Enclosed Alphanumerics Unicode block (U+2460-U+24FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EnclosedCjkLettersandMonths"> |
| | | <summary>Gets the Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).</summary> |
| | | <returns>The Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Ethiopic"> |
| | | <summary>Gets the Ethiopic Unicode block (U+1200-U+137C).</summary> |
| | | <returns>The Ethiopic Unicode block (U+1200-U+137C).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtended"> |
| | | <summary>Gets the Ethipic Extended Unicode block (U+2D80-U+2DDF).</summary> |
| | | <returns>The Ethipic Extended Unicode block (U+2D80-U+2DDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtendedA"> |
| | | <summary>Gets the Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).</summary> |
| | | <returns>The Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicSupplement"> |
| | | <summary>Gets the Ethiopic Supplement Unicode block (U+1380-U+1399).</summary> |
| | | <returns>The Ethiopic Supplement Unicode block (U+1380-U+1399).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeneralPunctuation"> |
| | | <summary>Gets the General Punctuation Unicode block (U+2000-U+206F).</summary> |
| | | <returns>The General Punctuation Unicode block (U+2000-U+206F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeometricShapes"> |
| | | <summary>Gets the Geometric Shapes Unicode block (U+25A0-U+25FF).</summary> |
| | | <returns>The Geometric Shapes Unicode block (U+25A0-U+25FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Georgian"> |
| | | <summary>Gets the Georgian Unicode block (U+10A0-U+10FF).</summary> |
| | | <returns>The Georgian Unicode block (U+10A0-U+10FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeorgianSupplement"> |
| | | <summary>Gets the Georgian Supplement Unicode block (U+2D00-U+2D2F).</summary> |
| | | <returns>The Georgian Supplement Unicode block (U+2D00-U+2D2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Glagolitic"> |
| | | <summary>Gets the Glagolitic Unicode block (U+2C00-U+2C5F).</summary> |
| | | <returns>The Glagolitic Unicode block (U+2C00-U+2C5F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GreekandCoptic"> |
| | | <summary>Gets the Greek and Coptic Unicode block (U+0370-U+03FF).</summary> |
| | | <returns>The Greek and Coptic Unicode block (U+0370-U+03FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GreekExtended"> |
| | | <summary>Gets the Greek Extended Unicode block (U+1F00-U+1FFF).</summary> |
| | | <returns>The Greek Extended Unicode block (U+1F00-U+1FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Gujarati"> |
| | | <summary>Gets the Gujarti Unicode block (U+0A81-U+0AFF).</summary> |
| | | <returns>The Gujarti Unicode block (U+0A81-U+0AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Gurmukhi"> |
| | | <summary>Gets the Gurmukhi Unicode block (U+0A01-U+0A7F).</summary> |
| | | <returns>The Gurmukhi Unicode block (U+0A01-U+0A7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HalfwidthandFullwidthForms"> |
| | | <summary>Gets the Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).</summary> |
| | | <returns>The Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulCompatibilityJamo"> |
| | | <summary>Gets the Hangul Compatibility Jamo Unicode block (U+3131-U+318F).</summary> |
| | | <returns>The Hangul Compatibility Jamo Unicode block (U+3131-U+318F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamo"> |
| | | <summary>Gets the Hangul Jamo Unicode block (U+1100-U+11FF).</summary> |
| | | <returns>The Hangul Jamo Unicode block (U+1100-U+11FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedA"> |
| | | <summary>Gets the Hangul Jamo Extended-A Unicode block (U+A960-U+A9F).</summary> |
| | | <returns>The Hangul Jamo Extended-A Unicode block (U+A960-U+A97F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedB"> |
| | | <summary>Gets the Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).</summary> |
| | | <returns>The Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulSyllables"> |
| | | <summary>Gets the Hangul Syllables Unicode block (U+AC00-U+D7AF).</summary> |
| | | <returns>The Hangul Syllables Unicode block (U+AC00-U+D7AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hanunoo"> |
| | | <summary>Gets the Hanunoo Unicode block (U+1720-U+173F).</summary> |
| | | <returns>The Hanunoo Unicode block (U+1720-U+173F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hebrew"> |
| | | <summary>Gets the Hebrew Unicode block (U+0590-U+05FF).</summary> |
| | | <returns>The Hebrew Unicode block (U+0590-U+05FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hiragana"> |
| | | <summary>Gets the Hiragana Unicode block (U+3040-U+309F).</summary> |
| | | <returns>The Hiragana Unicode block (U+3040-U+309F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.IdeographicDescriptionCharacters"> |
| | | <summary>Gets the Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).</summary> |
| | | <returns>The Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.IpaExtensions"> |
| | | <summary>Gets the IPA Extensions Unicode block (U+0250-U+02AF).</summary> |
| | | <returns>The IPA Extensions Unicode block (U+0250-U+02AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Javanese"> |
| | | <summary>Gets the Javanese Unicode block (U+A980-U+A9DF).</summary> |
| | | <returns>The Javanese Unicode block (U+A980-U+A9DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Kanbun"> |
| | | <summary>Gets the Kanbun Unicode block (U+3190-U+319F).</summary> |
| | | <returns>The Kanbun Unicode block (U+3190-U+319F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KangxiRadicals"> |
| | | <summary>Gets the Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).</summary> |
| | | <returns>The Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Kannada"> |
| | | <summary>Gets the Kannada Unicode block (U+0C81-U+0CFF).</summary> |
| | | <returns>The Kannada Unicode block (U+0C81-U+0CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Katakana"> |
| | | <summary>Gets the Katakana Unicode block (U+30A0-U+30FF).</summary> |
| | | <returns>The Katakana Unicode block (U+30A0-U+30FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KatakanaPhoneticExtensions"> |
| | | <summary>Gets the Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).</summary> |
| | | <returns>The Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KayahLi"> |
| | | <summary>Gets the Kayah Li Unicode block (U+A900-U+A92F).</summary> |
| | | <returns>The Kayah Li Unicode block (U+A900-U+A92F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Khmer"> |
| | | <summary>Gets the Khmer Unicode block (U+1780-U+17FF).</summary> |
| | | <returns>The Khmer Unicode block (U+1780-U+17FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KhmerSymbols"> |
| | | <summary>Gets the Khmer Symbols Unicode block (U+19E0-U+19FF).</summary> |
| | | <returns>The Khmer Symbols Unicode block (U+19E0-U+19FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lao"> |
| | | <summary>Gets the Lao Unicode block (U+0E80-U+0EDF).</summary> |
| | | <returns>The Lao Unicode block (U+0E80-U+0EDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Latin1Supplement"> |
| | | <summary>Gets the Latin-1 Supplement Unicode block (U+00A1-U+00FF).</summary> |
| | | <returns>The Latin-1 Supplement Unicode block (U+00A1-U+00FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedA"> |
| | | <summary>Gets the Latin Extended-A Unicode block (U+0100-U+017F).</summary> |
| | | <returns>The Latin Extended-A Unicode block (U+0100-U+017F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedAdditional"> |
| | | <summary>Gets the Latin Extended Additional Unicode block (U+1E00-U+1EFF).</summary> |
| | | <returns>The Latin Extended Additional Unicode block (U+1E00-U+1EFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedB"> |
| | | <summary>Gets the Latin Extended-B Unicode block (U+0180-U+024F).</summary> |
| | | <returns>The Latin Extended-B Unicode block (U+0180-U+024F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedC"> |
| | | <summary>Gets the Latin Extended-C Unicode block (U+2C60-U+2C7F).</summary> |
| | | <returns>The Latin Extended-C Unicode block (U+2C60-U+2C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedD"> |
| | | <summary>Gets the Latin Extended-D Unicode block (U+A720-U+A7FF).</summary> |
| | | <returns>The Latin Extended-D Unicode block (U+A720-U+A7FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedE"> |
| | | <summary>Gets the Latin Extended-E Unicode block (U+AB30-U+AB6F).</summary> |
| | | <returns>The Latin Extended-E Unicode block (U+AB30-U+AB6F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lepcha"> |
| | | <summary>Gets the Lepcha Unicode block (U+1C00-U+1C4F).</summary> |
| | | <returns>The Lepcha Unicode block (U+1C00-U+1C4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LetterlikeSymbols"> |
| | | <summary>Gets the Letterlike Symbols Unicode block (U+2100-U+214F).</summary> |
| | | <returns>The Letterlike Symbols Unicode block (U+2100-U+214F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Limbu"> |
| | | <summary>Gets the Limbu Unicode block (U+1900-U+194F).</summary> |
| | | <returns>The Limbu Unicode block (U+1900-U+194F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lisu"> |
| | | <summary>Gets the Lisu Unicode block (U+A4D0-U+A4FF).</summary> |
| | | <returns>The Lisu Unicode block (U+A4D0-U+A4FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Malayalam"> |
| | | <summary>Gets the Malayalam Unicode block (U+0D00-U+0D7F).</summary> |
| | | <returns>The Malayalam Unicode block (U+0D00-U+0D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Mandaic"> |
| | | <summary>Gets the Mandaic Unicode block (U+0840-U+085F).</summary> |
| | | <returns>The Mandaic Unicode block (U+0840-U+085F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MathematicalOperators"> |
| | | <summary>Gets the Mathematical Operators Unicode block (U+2200-U+22FF).</summary> |
| | | <returns>The Mathematical Operators Unicode block (U+2200-U+22FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayek"> |
| | | <summary>Gets the Meetei Mayek Unicode block (U+ABC0-U+ABFF).</summary> |
| | | <returns>The Meetei Mayek Unicode block (U+ABC0-U+ABFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayekExtensions"> |
| | | <summary>Gets the Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).</summary> |
| | | <returns>The Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsA"> |
| | | <summary>Gets the Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).</summary> |
| | | <returns>The Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsB"> |
| | | <summary>Gets the Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).</summary> |
| | | <returns>The Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbols"> |
| | | <summary>Gets the Miscellaneous Symbols Unicode block (U+2600-U+26FF).</summary> |
| | | <returns>The Miscellaneous Symbols Unicode block (U+2600-U+26FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbolsandArrows"> |
| | | <summary>Gets the Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).</summary> |
| | | <returns>The Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousTechnical"> |
| | | <summary>Gets the Miscellaneous Technical Unicode block (U+2300-U+23FF).</summary> |
| | | <returns>The Miscellaneous Technical Unicode block (U+2300-U+23FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ModifierToneLetters"> |
| | | <summary>Gets the Modifier Tone Letters Unicode block (U+A700-U+A71F).</summary> |
| | | <returns>The Modifier Tone Letters Unicode block (U+A700-U+A71F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Mongolian"> |
| | | <summary>Gets the Mongolian Unicode block (U+1800-U+18AF).</summary> |
| | | <returns>The Mongolian Unicode block (U+1800-U+18AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Myanmar"> |
| | | <summary>Gets the Myanmar Unicode block (U+1000-U+109F).</summary> |
| | | <returns>The Myanmar Unicode block (U+1000-U+109F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedA"> |
| | | <summary>Gets the Myanmar Extended-A Unicode block (U+AA60-U+AA7F).</summary> |
| | | <returns>The Myanmar Extended-A Unicode block (U+AA60-U+AA7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedB"> |
| | | <summary>Gets the Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).</summary> |
| | | <returns>The Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NewTaiLue"> |
| | | <summary>Gets the New Tai Lue Unicode block (U+1980-U+19DF).</summary> |
| | | <returns>The New Tai Lue Unicode block (U+1980-U+19DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NKo"> |
| | | <summary>Gets the NKo Unicode block (U+07C0-U+07FF).</summary> |
| | | <returns>The NKo Unicode block (U+07C0-U+07FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.None"> |
| | | <summary>Gets an empty Unicode range.</summary> |
| | | <returns>A Unicode range with no elements.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NumberForms"> |
| | | <summary>Gets the Number Forms Unicode block (U+2150-U+218F).</summary> |
| | | <returns>The Number Forms Unicode block (U+2150-U+218F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Ogham"> |
| | | <summary>Gets the Ogham Unicode block (U+1680-U+169F).</summary> |
| | | <returns>The Ogham Unicode block (U+1680-U+169F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.OlChiki"> |
| | | <summary>Gets the Ol Chiki Unicode block (U+1C50-U+1C7F).</summary> |
| | | <returns>The Ol Chiki Unicode block (U+1C50-U+1C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.OpticalCharacterRecognition"> |
| | | <summary>Gets the Optical Character Recognition Unicode block (U+2440-U+245F).</summary> |
| | | <returns>The Optical Character Recognition Unicode block (U+2440-U+245F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Oriya"> |
| | | <summary>Gets the Oriya Unicode block (U+0B00-U+0B7F).</summary> |
| | | <returns>The Oriya Unicode block (U+0B00-U+0B7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Phagspa"> |
| | | <summary>Gets the Phags-pa Unicode block (U+A840-U+A87F).</summary> |
| | | <returns>The Phags-pa Unicode block (U+A840-U+A87F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensions"> |
| | | <summary>Gets the Phonetic Extensions Unicode block (U+1D00-U+1D7F).</summary> |
| | | <returns>The Phonetic Extensions Unicode block (U+1D00-U+1D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensionsSupplement"> |
| | | <summary>Gets the Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).</summary> |
| | | <returns>The Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Rejang"> |
| | | <summary>Gets the Rejang Unicode block (U+A930-U+A95F).</summary> |
| | | <returns>The Rejang Unicode block (U+A930-U+A95F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Runic"> |
| | | <summary>Gets the Runic Unicode block (U+16A0-U+16FF).</summary> |
| | | <returns>The Runic Unicode block (U+16A0-U+16FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Samaritan"> |
| | | <summary>Gets the Samaritan Unicode block (U+0800-U+083F).</summary> |
| | | <returns>The Samaritan Unicode block (U+0800-U+083F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Saurashtra"> |
| | | <summary>Gets the Saurashtra Unicode block (U+A880-U+A8DF).</summary> |
| | | <returns>The Saurashtra Unicode block (U+A880-U+A8DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Sinhala"> |
| | | <summary>Gets the Sinhala Unicode block (U+0D80-U+0DFF).</summary> |
| | | <returns>The Sinhala Unicode block (U+0D80-U+0DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SmallFormVariants"> |
| | | <summary>Gets the Small Form Variants Unicode block (U+FE50-U+FE6F).</summary> |
| | | <returns>The Small Form Variants Unicode block (U+FE50-U+FE6F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SpacingModifierLetters"> |
| | | <summary>Gets the Spacing Modifier Letters Unicode block (U+02B0-U+02FF).</summary> |
| | | <returns>The Spacing Modifier Letters Unicode block (U+02B0-U+02FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Specials"> |
| | | <summary>Gets the Specials Unicode block (U+FFF0-U+FFFF).</summary> |
| | | <returns>The Specials Unicode block (U+FFF0-U+FFFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Sundanese"> |
| | | <summary>Gets the Sundanese Unicode block (U+1B80-U+1BBF).</summary> |
| | | <returns>The Sundanese Unicode block (U+1B80-U+1BBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SundaneseSupplement"> |
| | | <summary>Gets the Sundanese Supplement Unicode block (U+1CC0-U+1CCF).</summary> |
| | | <returns>The Sundanese Supplement Unicode block (U+1CC0-U+1CCF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SuperscriptsandSubscripts"> |
| | | <summary>Gets the Superscripts and Subscripts Unicode block (U+2070-U+209F).</summary> |
| | | <returns>The Superscripts and Subscripts Unicode block (U+2070-U+209F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsA"> |
| | | <summary>Gets the Supplemental Arrows-A Unicode block (U+27F0-U+27FF).</summary> |
| | | <returns>The Supplemental Arrows-A Unicode block (U+27F0-U+27FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsB"> |
| | | <summary>Gets the Supplemental Arrows-B Unicode block (U+2900-U+297F).</summary> |
| | | <returns>The Supplemental Arrows-B Unicode block (U+2900-U+297F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalMathematicalOperators"> |
| | | <summary>Gets the Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).</summary> |
| | | <returns>The Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalPunctuation"> |
| | | <summary>Gets the Supplemental Punctuation Unicode block (U+2E00-U+2E7F).</summary> |
| | | <returns>The Supplemental Punctuation Unicode block (U+2E00-U+2E7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SylotiNagri"> |
| | | <summary>Gets the Syloti Nagri Unicode block (U+A800-U+A82F).</summary> |
| | | <returns>The Syloti Nagri Unicode block (U+A800-U+A82F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Syriac"> |
| | | <summary>Gets the Syriac Unicode block (U+0700-U+074F).</summary> |
| | | <returns>The Syriac Unicode block (U+0700-U+074F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tagalog"> |
| | | <summary>Gets the Tagalog Unicode block (U+1700-U+171F).</summary> |
| | | <returns>The Tagalog Unicode block (U+1700-U+171F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tagbanwa"> |
| | | <summary>Gets the Tagbanwa Unicode block (U+1760-U+177F).</summary> |
| | | <returns>The Tagbanwa Unicode block (U+1760-U+177F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiLe"> |
| | | <summary>Gets the Tai Le Unicode block (U+1950-U+197F).</summary> |
| | | <returns>The Tai Le Unicode block (U+1950-U+197F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiTham"> |
| | | <summary>Gets the Tai Tham Unicode block (U+1A20-U+1AAF).</summary> |
| | | <returns>The Tai Tham Unicode block (U+1A20-U+1AAF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiViet"> |
| | | <summary>Gets the Tai Viet Unicode block (U+AA80-U+AADF).</summary> |
| | | <returns>The Tai Viet Unicode block (U+AA80-U+AADF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tamil"> |
| | | <summary>Gets the Tamil Unicode block (U+0B80-U+0BFF).</summary> |
| | | <returns>The Tamil Unicode block (U+0B82-U+0BFA).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Telugu"> |
| | | <summary>Gets the Telugu Unicode block (U+0C00-U+0C7F).</summary> |
| | | <returns>The Telugu Unicode block (U+0C00-U+0C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Thaana"> |
| | | <summary>Gets the Thaana Unicode block (U+0780-U+07BF).</summary> |
| | | <returns>The Thaana Unicode block (U+0780-U+07BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Thai"> |
| | | <summary>Gets the Thai Unicode block (U+0E00-U+0E7F).</summary> |
| | | <returns>The Thai Unicode block (U+0E00-U+0E7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tibetan"> |
| | | <summary>Gets the Tibetan Unicode block (U+0F00-U+0FFF).</summary> |
| | | <returns>The Tibetan Unicode block (U+0F00-U+0FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tifinagh"> |
| | | <summary>Gets the Tifinagh Unicode block (U+2D30-U+2D7F).</summary> |
| | | <returns>The Tifinagh Unicode block (U+2D30-U+2D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabics"> |
| | | <summary>Gets the Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).</summary> |
| | | <returns>The Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabicsExtended"> |
| | | <summary>Gets the Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).</summary> |
| | | <returns>The Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Vai"> |
| | | <summary>Gets the Vai Unicode block (U+A500-U+A63F).</summary> |
| | | <returns>The Vai Unicode block (U+A500-U+A63F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VariationSelectors"> |
| | | <summary>Gets the Variation Selectors Unicode block (U+FE00-U+FE0F).</summary> |
| | | <returns>The Variation Selectors Unicode block (U+FE00-U+FE0F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VedicExtensions"> |
| | | <summary>Gets the Vedic Extensions Unicode block (U+1CD0-U+1CFF).</summary> |
| | | <returns>The Vedic Extensions Unicode block (U+1CD0-U+1CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VerticalForms"> |
| | | <summary>Gets the Vertical Forms Unicode block (U+FE10-U+FE1F).</summary> |
| | | <returns>The Vertical Forms Unicode block (U+FE10-U+FE1F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YijingHexagramSymbols"> |
| | | <summary>Gets the Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).</summary> |
| | | <returns>The Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YiRadicals"> |
| | | <summary>Gets the Yi Radicals Unicode block (U+A490-U+A4CF).</summary> |
| | | <returns>The Yi Radicals Unicode block (U+A490-U+A4CF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YiSyllables"> |
| | | <summary>Gets the Yi Syllables Unicode block (U+A000-U+A48F).</summary> |
| | | <returns>The Yi Syllables Unicode block (U+A000-U+A48F).</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| | |
| | | </appSettings> |
| | | <system.web> |
| | | <compilation debug="true" targetFramework="4.6.1" /> |
| | | <customErrors mode="Off"/> |
| | | <customErrors mode="Off" /> |
| | | <httpRuntime targetFramework="4.6.1" /> |
| | | <!--sessionå¤±ææ¶é´--> |
| | | <sessionState mode="InProc" timeout="240"> |
| | |
| | | <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.0.0.0" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> |
| | | </dependentAssembly> |
| | | </assemblyBinding> |
| | | </runtime> |
| | | <system.codedom> |
| | |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelModelCheck(System.Web.HttpPostedFileBase,System.String)"> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelModelCheck"> |
| | | <summary> |
| | | Excel导å
¥æä»¶ä¸ä¼ ãæ¨¡æ¿éªè¯ãæ°æ®éãéªè¯ |
| | | </summary> |
| | | <param name="files">ä¸ä¼ æä»¶</param> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <param name="files">ä¸ä¼ æä»¶</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckUpload(System.Web.HttpPostedFileBase,System.String)"> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckUpload(System.Web.HttpPostedFile,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿ä¸ä¼ |
| | | </summary> |
| | |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheck(System.Web.HttpPostedFileBase,System.String)"> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheck(System.Web.HttpPostedFile,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿éªè¯ |
| | | </summary> |
| | |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckCount(System.Web.HttpPostedFileBase,System.String)"> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckCount(System.Web.HttpPostedFile,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿æ°æ®ééªè¯ |
| | | </summary> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <Report ScriptLanguage="CSharp" ReportInfo.Created="10/16/2018 18:08:59" ReportInfo.Modified="07/26/2022 14:37:33" ReportInfo.CreatorVersion="2014.2.3.0" PrintSettings.ShowDialog="false"> |
| | | <Dictionary> |
| | | <XmlDataConnection Name="Connection" ConnectionString="rijcmlqmmfdjkQxfe1iwShBNGpud2ngqn0kQFUwlWvLE3W/iceu9kzGbruXJ5I6r8tOQvypOEky6erzZZQtihg2HYGClg=="> |
| | | <TableDataSource Name="Table11" Alias="Table1" DataType="System.Int32" Enabled="true" TableName="Table1"> |
| | | <Column Name="SEQ" Alias="seq" DataType="System.String" PropName="WO"/> |
| | | <Column Name="WO_CODE" Alias="wo_code" DataType="System.String" PropName="QTY"/> |
| | | <Column Name="PARTCODE" Alias="paetcode" DataType="System.String" PropName="PN_NAME"/> |
| | | <Column Name="PARTNAME" Alias="partname" DataType="System.String" PropName="PN_DESC"/> |
| | | <Column Name="PN_PARTNUMBER" Enabled="false" DataType="System.String" PropName="PN_PARTNAME"/> |
| | | <Column Name="PARTSPEC" Alias="partspec" DataType="System.String" PropName="Column"/> |
| | | <Column Name="ROUTENAME" Alias="routename" DataType="System.String" PropName="Column"/> |
| | | <Column Name="ORDERQTY" Alias="orderqty" DataType="System.String" PropName="Column"/> |
| | | <Column Name="LM_USER" Alias="lm_user" DataType="System.String" PropName="Column"/> |
| | | <Column Name="LM_DATE" Alias="lm_date" DataType="System.String" PropName="Column"/> |
| | | <Column Name="STEPCODE" Alias="stepcode" DataType="System.String" PropName="Column"/> |
| | | <Column Name="STEPNAME" Alias="stepname" DataType="System.String" PropName="Column1"/> |
| | | <Column Name="PLAN_QTY" Alias="plan_qty" DataType="System.String" PropName="Column2"/> |
| | | <Column Name="GOOD_QTY" Alias="good_qty" DataType="System.String" PropName="Column"/> |
| | | <Column Name="NG_QTY" Alias="ng_qty" DataType="System.String" PropName="Column1"/> |
| | | <Column Name="STEPQRCODE" Alias="stepqrcode" DataType="System.String" PropName="Column"/> |
| | | </TableDataSource> |
| | | </XmlDataConnection> |
| | | </Dictionary> |
| | | <ReportPage Name="Page1" RawPaperSize="9"> |
| | | <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="160.65"> |
| | | <BarcodeObject Name="Barcode1" Left="585.9" Top="18.9" Width="106.55" Height="97.1" AutoSize="false" DataColumn="Table1.wo_code" Text="" ShowText="false" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/> |
| | | <TextObject Name="Text7" Left="253.26" Top="3.78" Width="226.8" Height="28.35" Text="æµç¨å" HorzAlign="Center" VertAlign="Center" Font="微软é
é», 14.25pt"/> |
| | | <TextObject Name="Text54" Left="81.95" Top="37.8" Width="141.75" Height="18.9" Text="[Table1.wo_code]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text3" Left="81.95" Top="60.48" Width="141.75" Height="18.9" Text="[Table1.partname]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text39" Left="318.2" Top="37.8" Width="141.75" Height="18.9" Text="[Table1.paetcode]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text48" Left="18.9" Top="37.8" Width="66.15" Height="18.9" Text="å·¥åç¼å·ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text1" Left="18.9" Top="60.48" Width="66.15" Height="18.9" Text="产ååç§°ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text38" Left="255.15" Top="37.8" Width="66.15" Height="18.9" Text="产åç¼ç ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text55" Left="81.95" Top="85.05" Width="141.75" Height="18.9" Text="[Table1.orderqty]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text56" Left="18.9" Top="85.05" Width="66.15" Height="18.9" Text="工忰éï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text57" Left="318.2" Top="56.7" Width="141.75" Height="18.9" Text="[Table1.partspec]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text58" Left="255.15" Top="56.7" Width="66.15" Height="18.9" Text="产åè§æ ¼ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text59" Left="318.2" Top="85.05" Width="141.75" Height="18.9" Text="[Table1.routename]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text60" Left="255.15" Top="85.05" Width="66.15" Height="18.9" Text="å·¥èºè·¯çº¿ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text61" Left="81.95" Top="113.4" Width="141.75" Height="18.9" Text="[Table1.lm_user]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text62" Left="18.9" Top="113.4" Width="66.15" Height="18.9" Text="æå°äººåï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text63" Left="318.2" Top="113.4" Width="141.75" Height="18.9" Text="[Table1.lm_date]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text64" Left="255.15" Top="113.4" Width="66.15" Height="18.9" Text="æå°æ¶é´ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | </ReportTitleBand> |
| | | <PageHeaderBand Name="PageHeader1" Top="164.65" Width="718.2" Height="35.91"> |
| | | <TableObject Name="Table1" Width="718.17" Height="35.91" Border.Lines="All"> |
| | | <TableColumn Name="Column1" Width="73.23"/> |
| | | <TableColumn Name="Column2" Width="92.13"/> |
| | | <TableColumn Name="Column3" Width="129.93"/> |
| | | <TableColumn Name="Column4" Width="82.68"/> |
| | | <TableColumn Name="Column45" Width="94.5"/> |
| | | <TableColumn Name="Column46" Width="94.5"/> |
| | | <TableColumn Name="Column47" Width="151.2"/> |
| | | <TableRow Name="Row1" Height="35.91"> |
| | | <TableCell Name="Cell1" Border.Lines="Right" Fill.Color="Gainsboro" Text="å·¥åºå·" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell2" Border.Lines="Right" Fill.Color="Gainsboro" Text="å·¥åºäºç»´ç " HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell3" Border.Lines="Right" Fill.Color="Gainsboro" Text="å·¥åº" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell4" Border.Lines="Right" Fill.Color="Gainsboro" Text="å å·¥æ°é" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell221" Border.Lines="Right" Fill.Color="Gainsboro" Text="åæ ¼æ°é" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell222" Border.Lines="Right" Fill.Color="Gainsboro" Text="ä¸è¯æ°é" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell223" Fill.Color="Gainsboro" Text="夿³¨" HorzAlign="Center" VertAlign="Center"/> |
| | | </TableRow> |
| | | </TableObject> |
| | | </PageHeaderBand> |
| | | <DataBand Name="Data1" Top="204.56" Width="718.2" Height="45.36" DataSource="Table11"> |
| | | <TableObject Name="Table12" Width="718.17" Height="45.36" Border.Lines="All"> |
| | | <TableColumn Name="Column48" Width="73.23"/> |
| | | <TableColumn Name="Column49" Width="92.13"/> |
| | | <TableColumn Name="Column50" Width="129.93"/> |
| | | <TableColumn Name="Column51" Width="82.68"/> |
| | | <TableColumn Name="Column52" Width="94.5"/> |
| | | <TableColumn Name="Column53" Width="94.5"/> |
| | | <TableColumn Name="Column54" Width="151.2"/> |
| | | <TableRow Name="Row2" Height="45.36"> |
| | | <TableCell Name="Cell224" Border.Lines="Right" Text="[Table1.seq]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell225" Border.Lines="Right" HorzAlign="Center" VertAlign="Center"> |
| | | <BarcodeObject Name="Barcode2" Left="18.9" Top="3.02" Width="60.48" Height="41.58" AutoSize="false" DataColumn="Table1.stepqrcode" Text="" ShowText="false" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/> |
| | | </TableCell> |
| | | <TableCell Name="Cell226" Border.Lines="Right" Text="[Table1.stepname]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell227" Border.Lines="Right" Text="[Table1.plan_qty]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell228" Border.Lines="Right" Text="[Table1.good_qty]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell229" Border.Lines="Right" Text="[Table1.ng_qty]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell230" HorzAlign="Center" VertAlign="Center"/> |
| | | </TableRow> |
| | | </TableObject> |
| | | </DataBand> |
| | | </ReportPage> |
| | | </Report> |
| | |
| | | <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.0.0.0" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> |
| | | </dependentAssembly> |
| | | </assemblyBinding> |
| | | </runtime> |
| | | <system.codedom> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <configuration> |
| | | <appSettings> |
| | | <!-- path to folder with reports --> |
| | | <add key="FastReport.ReportsPath" value="C:\Program files\FastReports\FastReport.Net\Demos\WCF" /> |
| | | <!-- name of connection string for reports --> |
| | | <add key="FastReport.ConnectionStringName" value="FastReportDemo" /> |
| | | <!-- Comma-separated list of available formats PDF,DOCX,XLSX,PPTX,RTF,ODS,ODT,MHT,CSV,DBF,XML,TXT,FPX. |
| | | You can delete any or change order in this list. --> |
| | | <add key="FastReport.Gear" value="PDF,DOCX,XLSX,PPTX,RTF,ODS,ODT,MHT,CSV,DBF,XML,TXT,FPX" /> |
| | | </appSettings> |
| | | <connectionStrings> |
| | | <!-- you need change path to database to your own --> |
| | | <add name="FastReportDemo" connectionString="XsdFile=;XmlFile=C:\MyProjects\fr.net\Demos\Reports\nwind.xml"/> |
| | | </connectionStrings> |
| | | <system.web> |
| | | <compilation debug="true" /> |
| | | <membership defaultProvider="ClientAuthenticationMembershipProvider"> |
| | | <providers> |
| | | <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> |
| | | </providers> |
| | | </membership> |
| | | <roleManager defaultProvider="ClientRoleProvider" enabled="true"> |
| | | <providers> |
| | | <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> |
| | | </providers> |
| | | </roleManager> |
| | | </system.web> |
| | | <!-- When deploying the service library project, the content of the config file must be added to the host's |
| | | app.config file. System.Configuration does not support config files for libraries. --> |
| | | <system.serviceModel> |
| | | <services> |
| | | <service behaviorConfiguration="FastReportServiceBehavior" name="FastReport.Service.ReportService"> |
| | | <endpoint address="" binding="wsHttpBinding" contract="FastReport.Service.IFastReportService"> |
| | | <identity> |
| | | <dns value="localhost" /> |
| | | </identity> |
| | | </endpoint> |
| | | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
| | | <host> |
| | | <baseAddresses> |
| | | <add baseAddress="http://localhost:8732/FastReportService/" /> |
| | | </baseAddresses> |
| | | </host> |
| | | </service> |
| | | </services> |
| | | <behaviors> |
| | | <serviceBehaviors> |
| | | <behavior name="FastReportServiceBehavior"> |
| | | <serviceMetadata httpGetEnabled="True" /> |
| | | <serviceDebug includeExceptionDetailInFaults="True" /> |
| | | </behavior> |
| | | </serviceBehaviors> |
| | | </behaviors> |
| | | <bindings> |
| | | <basicHttpBinding> |
| | | <binding messageEncoding="Mtom" |
| | | closeTimeout="00:02:00" openTimeout="00:02:00" |
| | | receiveTimeout="00:10:00" sendTimeout="00:02:00" |
| | | maxReceivedMessageSize="67108864" maxBufferSize="65536" |
| | | transferMode="Streamed"> |
| | | <security mode="None"> |
| | | <transport clientCredentialType="None" /> |
| | | </security> |
| | | </binding> |
| | | </basicHttpBinding> |
| | | </bindings> |
| | | </system.serviceModel> |
| | | <startup> |
| | | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /> |
| | | </startup> |
| | | </configuration> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>VueWebApi</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="M:VueWebApi.SwaggerConfig.GetXmlCommentsPath(System.String)"> |
| | | <summary> |
| | | XMLè·¯å¾æ¼æ¥ |
| | | </summary> |
| | | <param name="name"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:VueWebApi.App_Start.SwaggerControllerDescProvider"> |
| | | <summary> |
| | | swaggeræ¾ç¤ºæ§å¶å¨çæè¿° |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.App_Start.SwaggerControllerDescProvider.#ctor(Swashbuckle.Swagger.ISwaggerProvider,System.String)"> |
| | | <summary> |
| | | |
| | | </summary> |
| | | <param name="swaggerProvider"></param> |
| | | <param name="xml">xmlææ¡£è·¯å¾</param> |
| | | </member> |
| | | <member name="M:VueWebApi.App_Start.SwaggerControllerDescProvider.GetControllerDesc"> |
| | | <summary> |
| | | ä»APIææ¡£ä¸è¯»åæ§å¶å¨æè¿° |
| | | </summary> |
| | | <returns>æææ§å¶å¨æè¿°</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.ApiDescriptionExtensions.GetFriendlyId(System.Web.Http.Description.ApiDescription)"> |
| | | <summary> |
| | | Generates an URI-friendly ID for the <see cref="T:System.Web.Http.Description.ApiDescription"/>. E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" |
| | | </summary> |
| | | <param name="description">The <see cref="T:System.Web.Http.Description.ApiDescription"/>.</param> |
| | | <returns>The ID as a string.</returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.HelpPageConfig"> |
| | | <summary> |
| | | Use this class to customize the Help Page. |
| | | For example you can set a custom <see cref="T:System.Web.Http.Description.IDocumentationProvider"/> to supply the documentation |
| | | or you can provide the samples for the requests/responses. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.Controllers.HelpController"> |
| | | <summary> |
| | | The controller that will handle requests for the help page. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetDocumentationProvider(System.Web.Http.HttpConfiguration,System.Web.Http.Description.IDocumentationProvider)"> |
| | | <summary> |
| | | Sets the documentation provider for help page. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="documentationProvider">The documentation provider.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleObjects(System.Web.Http.HttpConfiguration,System.Collections.Generic.IDictionary{System.Type,System.Object})"> |
| | | <summary> |
| | | Sets the objects that will be used by the formatters to produce sample requests/responses. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sampleObjects">The sample objects.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleRequest(System.Web.Http.HttpConfiguration,System.Object,System.Net.Http.Headers.MediaTypeHeaderValue,System.String,System.String)"> |
| | | <summary> |
| | | Sets the sample request directly for the specified media type and action. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sample">The sample request.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleRequest(System.Web.Http.HttpConfiguration,System.Object,System.Net.Http.Headers.MediaTypeHeaderValue,System.String,System.String,System.String[])"> |
| | | <summary> |
| | | Sets the sample request directly for the specified media type and action with parameters. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sample">The sample request.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleResponse(System.Web.Http.HttpConfiguration,System.Object,System.Net.Http.Headers.MediaTypeHeaderValue,System.String,System.String)"> |
| | | <summary> |
| | | Sets the sample request directly for the specified media type of the action. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sample">The sample response.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleResponse(System.Web.Http.HttpConfiguration,System.Object,System.Net.Http.Headers.MediaTypeHeaderValue,System.String,System.String,System.String[])"> |
| | | <summary> |
| | | Sets the sample response directly for the specified media type of the action with specific parameters. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sample">The sample response.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleForMediaType(System.Web.Http.HttpConfiguration,System.Object,System.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <summary> |
| | | Sets the sample directly for all actions with the specified media type. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sample">The sample.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleForType(System.Web.Http.HttpConfiguration,System.Object,System.Net.Http.Headers.MediaTypeHeaderValue,System.Type)"> |
| | | <summary> |
| | | Sets the sample directly for all actions with the specified type and media type. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sample">The sample.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="type">The parameter type or return type of an action.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetActualRequestType(System.Web.Http.HttpConfiguration,System.Type,System.String,System.String)"> |
| | | <summary> |
| | | Specifies the actual type of <see cref="T:System.Net.Http.ObjectContent`1"/> passed to the <see cref="T:System.Net.Http.HttpRequestMessage"/> in an action. |
| | | The help page will use this information to produce more accurate request samples. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="type">The type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetActualRequestType(System.Web.Http.HttpConfiguration,System.Type,System.String,System.String,System.String[])"> |
| | | <summary> |
| | | Specifies the actual type of <see cref="T:System.Net.Http.ObjectContent`1"/> passed to the <see cref="T:System.Net.Http.HttpRequestMessage"/> in an action. |
| | | The help page will use this information to produce more accurate request samples. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="type">The type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetActualResponseType(System.Web.Http.HttpConfiguration,System.Type,System.String,System.String)"> |
| | | <summary> |
| | | Specifies the actual type of <see cref="T:System.Net.Http.ObjectContent`1"/> returned as part of the <see cref="T:System.Net.Http.HttpRequestMessage"/> in an action. |
| | | The help page will use this information to produce more accurate response samples. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="type">The type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetActualResponseType(System.Web.Http.HttpConfiguration,System.Type,System.String,System.String,System.String[])"> |
| | | <summary> |
| | | Specifies the actual type of <see cref="T:System.Net.Http.ObjectContent`1"/> returned as part of the <see cref="T:System.Net.Http.HttpRequestMessage"/> in an action. |
| | | The help page will use this information to produce more accurate response samples. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="type">The type.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.GetHelpPageSampleGenerator(System.Web.Http.HttpConfiguration)"> |
| | | <summary> |
| | | Gets the help page sample generator. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <returns>The help page sample generator.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.SetHelpPageSampleGenerator(System.Web.Http.HttpConfiguration,VueWebApi.Areas.HelpPage.HelpPageSampleGenerator)"> |
| | | <summary> |
| | | Sets the help page sample generator. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="sampleGenerator">The help page sample generator.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.GetModelDescriptionGenerator(System.Web.Http.HttpConfiguration)"> |
| | | <summary> |
| | | Gets the model description generator. |
| | | </summary> |
| | | <param name="config">The configuration.</param> |
| | | <returns>The <see cref="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelDescriptionGenerator"/></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageConfigurationExtensions.GetHelpPageApiModel(System.Web.Http.HttpConfiguration,System.String)"> |
| | | <summary> |
| | | Gets the model that represents an API displayed on the help page. The model is initialized on the first call and cached for subsequent calls. |
| | | </summary> |
| | | <param name="config">The <see cref="T:System.Web.Http.HttpConfiguration"/>.</param> |
| | | <param name="apiDescriptionId">The <see cref="T:System.Web.Http.Description.ApiDescription"/> ID.</param> |
| | | <returns> |
| | | An <see cref="T:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel"/> |
| | | </returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelDescription"> |
| | | <summary> |
| | | Describes a type model. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelDescriptionGenerator"> |
| | | <summary> |
| | | Generates model descriptions for given types. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelNameAttribute"> |
| | | <summary> |
| | | Use this attribute to change the name of the <see cref="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelDescription"/> generated for a type. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel"> |
| | | <summary> |
| | | The model that represents an API displayed on the help page. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.#ctor"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel"/> class. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.ApiDescription"> |
| | | <summary> |
| | | Gets or sets the <see cref="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.ApiDescription"/> that describes the API. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.UriParameters"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ParameterDescription"/> collection that describes the URI parameters for the API. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.RequestDocumentation"> |
| | | <summary> |
| | | Gets or sets the documentation for the request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.RequestModelDescription"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelDescription"/> that describes the request body. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.RequestBodyParameters"> |
| | | <summary> |
| | | Gets the request body parameter descriptions. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.ResourceDescription"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:VueWebApi.Areas.HelpPage.ModelDescriptions.ModelDescription"/> that describes the resource. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.ResourceProperties"> |
| | | <summary> |
| | | Gets the resource property descriptions. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.SampleRequests"> |
| | | <summary> |
| | | Gets the sample requests associated with the API. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.SampleResponses"> |
| | | <summary> |
| | | Gets the sample responses associated with the API. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.Models.HelpPageApiModel.ErrorMessages"> |
| | | <summary> |
| | | Gets the error messages associated with this model. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator"> |
| | | <summary> |
| | | This class will generate the samples for the help page. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.#ctor"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator"/> class. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.ActualHttpMessageTypes"> |
| | | <summary> |
| | | Gets CLR types that are used as the content of <see cref="T:System.Net.Http.HttpRequestMessage"/> or <see cref="T:System.Net.Http.HttpResponseMessage"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.ActionSamples"> |
| | | <summary> |
| | | Gets the objects that are used directly as samples for certain actions. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.SampleObjects"> |
| | | <summary> |
| | | Gets the objects that are serialized as samples by the supported formatters. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.SampleObjectFactories"> |
| | | <summary> |
| | | Gets factories for the objects that the supported formatters will serialize as samples. Processed in order, |
| | | stopping when the factory successfully returns a non-<see langref="null"/> object. |
| | | </summary> |
| | | <remarks> |
| | | Collection includes just <see cref="M:VueWebApi.Areas.HelpPage.ObjectGenerator.GenerateObject(System.Type)"/> initially. Use |
| | | <code>SampleObjectFactories.Insert(0, func)</code> to provide an override and |
| | | <code>SampleObjectFactories.Add(func)</code> to provide a fallback.</remarks> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.GetSampleRequests(System.Web.Http.Description.ApiDescription)"> |
| | | <summary> |
| | | Gets the request body samples for a given <see cref="T:System.Web.Http.Description.ApiDescription"/>. |
| | | </summary> |
| | | <param name="api">The <see cref="T:System.Web.Http.Description.ApiDescription"/>.</param> |
| | | <returns>The samples keyed by media type.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.GetSampleResponses(System.Web.Http.Description.ApiDescription)"> |
| | | <summary> |
| | | Gets the response body samples for a given <see cref="T:System.Web.Http.Description.ApiDescription"/>. |
| | | </summary> |
| | | <param name="api">The <see cref="T:System.Web.Http.Description.ApiDescription"/>.</param> |
| | | <returns>The samples keyed by media type.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.GetSample(System.Web.Http.Description.ApiDescription,VueWebApi.Areas.HelpPage.SampleDirection)"> |
| | | <summary> |
| | | Gets the request or response body samples. |
| | | </summary> |
| | | <param name="api">The <see cref="T:System.Web.Http.Description.ApiDescription"/>.</param> |
| | | <param name="sampleDirection">The value indicating whether the sample is for a request or for a response.</param> |
| | | <returns>The samples keyed by media type.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.GetActionSample(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Type,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,VueWebApi.Areas.HelpPage.SampleDirection)"> |
| | | <summary> |
| | | Search for samples that are provided directly through <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.ActionSamples"/>. |
| | | </summary> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | <param name="type">The CLR type.</param> |
| | | <param name="formatter">The formatter.</param> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="sampleDirection">The value indicating whether the sample is for a request or for a response.</param> |
| | | <returns>The sample that matches the parameters.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.GetSampleObject(System.Type)"> |
| | | <summary> |
| | | Gets the sample object that will be serialized by the formatters. |
| | | First, it will look at the <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.SampleObjects"/>. If no sample object is found, it will try to create |
| | | one using <see cref="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.DefaultSampleObjectFactory(VueWebApi.Areas.HelpPage.HelpPageSampleGenerator,System.Type)"/> (which wraps an <see cref="T:VueWebApi.Areas.HelpPage.ObjectGenerator"/>) and other |
| | | factories in <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.SampleObjectFactories"/>. |
| | | </summary> |
| | | <param name="type">The type.</param> |
| | | <returns>The sample object.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.ResolveHttpRequestMessageType(System.Web.Http.Description.ApiDescription)"> |
| | | <summary> |
| | | Resolves the actual type of <see cref="T:System.Net.Http.ObjectContent`1"/> passed to the <see cref="T:System.Net.Http.HttpRequestMessage"/> in an action. |
| | | </summary> |
| | | <param name="api">The <see cref="T:System.Web.Http.Description.ApiDescription"/>.</param> |
| | | <returns>The type.</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.ResolveType(System.Web.Http.Description.ApiDescription,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},VueWebApi.Areas.HelpPage.SampleDirection,System.Collections.ObjectModel.Collection{System.Net.Http.Formatting.MediaTypeFormatter}@)"> |
| | | <summary> |
| | | Resolves the type of the action parameter or return value when <see cref="T:System.Net.Http.HttpRequestMessage"/> or <see cref="T:System.Net.Http.HttpResponseMessage"/> is used. |
| | | </summary> |
| | | <param name="api">The <see cref="T:System.Web.Http.Description.ApiDescription"/>.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | <param name="sampleDirection">The value indicating whether the sample is for a request or a response.</param> |
| | | <param name="formatters">The formatters.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleGenerator.WriteSampleObjectUsingFormatter(System.Net.Http.Formatting.MediaTypeFormatter,System.Object,System.Type,System.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <summary> |
| | | Writes the sample object using formatter. |
| | | </summary> |
| | | <param name="formatter">The formatter.</param> |
| | | <param name="value">The value.</param> |
| | | <param name="type">The type.</param> |
| | | <param name="mediaType">Type of the media.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.HelpPageSampleKey"> |
| | | <summary> |
| | | This is used to identify the place where the sample should be applied. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleKey.#ctor(System.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <summary> |
| | | Creates a new <see cref="T:VueWebApi.Areas.HelpPage.HelpPageSampleKey"/> based on media type. |
| | | </summary> |
| | | <param name="mediaType">The media type.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleKey.#ctor(System.Net.Http.Headers.MediaTypeHeaderValue,System.Type)"> |
| | | <summary> |
| | | Creates a new <see cref="T:VueWebApi.Areas.HelpPage.HelpPageSampleKey"/> based on media type and CLR type. |
| | | </summary> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="type">The CLR type.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleKey.#ctor(VueWebApi.Areas.HelpPage.SampleDirection,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})"> |
| | | <summary> |
| | | Creates a new <see cref="T:VueWebApi.Areas.HelpPage.HelpPageSampleKey"/> based on <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.SampleDirection"/>, controller name, action name and parameter names. |
| | | </summary> |
| | | <param name="sampleDirection">The <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.SampleDirection"/>.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.HelpPageSampleKey.#ctor(System.Net.Http.Headers.MediaTypeHeaderValue,VueWebApi.Areas.HelpPage.SampleDirection,System.String,System.String,System.Collections.Generic.IEnumerable{System.String})"> |
| | | <summary> |
| | | Creates a new <see cref="T:VueWebApi.Areas.HelpPage.HelpPageSampleKey"/> based on media type, <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.SampleDirection"/>, controller name, action name and parameter names. |
| | | </summary> |
| | | <param name="mediaType">The media type.</param> |
| | | <param name="sampleDirection">The <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.SampleDirection"/>.</param> |
| | | <param name="controllerName">Name of the controller.</param> |
| | | <param name="actionName">Name of the action.</param> |
| | | <param name="parameterNames">The parameter names.</param> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.ControllerName"> |
| | | <summary> |
| | | Gets the name of the controller. |
| | | </summary> |
| | | <value> |
| | | The name of the controller. |
| | | </value> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.ActionName"> |
| | | <summary> |
| | | Gets the name of the action. |
| | | </summary> |
| | | <value> |
| | | The name of the action. |
| | | </value> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.MediaType"> |
| | | <summary> |
| | | Gets the media type. |
| | | </summary> |
| | | <value> |
| | | The media type. |
| | | </value> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.ParameterNames"> |
| | | <summary> |
| | | Gets the parameter names. |
| | | </summary> |
| | | </member> |
| | | <member name="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.SampleDirection"> |
| | | <summary> |
| | | Gets the <see cref="P:VueWebApi.Areas.HelpPage.HelpPageSampleKey.SampleDirection"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.ImageSample"> |
| | | <summary> |
| | | This represents an image sample on the help page. There's a display template named ImageSample associated with this class. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.ImageSample.#ctor(System.String)"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:VueWebApi.Areas.HelpPage.ImageSample"/> class. |
| | | </summary> |
| | | <param name="src">The URL of an image.</param> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.InvalidSample"> |
| | | <summary> |
| | | This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.ObjectGenerator"> |
| | | <summary> |
| | | This class will create an object of a given type and populate it with sample data. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.ObjectGenerator.GenerateObject(System.Type)"> |
| | | <summary> |
| | | Generates an object for a given type. The type needs to be public, have a public default constructor and settable public properties/fields. Currently it supports the following types: |
| | | Simple types: <see cref="T:System.Int32"/>, <see cref="T:System.String"/>, <see cref="T:System.Enum"/>, <see cref="T:System.DateTime"/>, <see cref="T:System.Uri"/>, etc. |
| | | Complex types: POCO types. |
| | | Nullables: <see cref="T:System.Nullable`1"/>. |
| | | Arrays: arrays of simple types or complex types. |
| | | Key value pairs: <see cref="T:System.Collections.Generic.KeyValuePair`2"/> |
| | | Tuples: <see cref="T:System.Tuple`1"/>, <see cref="T:System.Tuple`2"/>, etc |
| | | Dictionaries: <see cref="T:System.Collections.Generic.IDictionary`2"/> or anything deriving from <see cref="T:System.Collections.Generic.IDictionary`2"/>. |
| | | Collections: <see cref="T:System.Collections.Generic.IList`1"/>, <see cref="T:System.Collections.Generic.IEnumerable`1"/>, <see cref="T:System.Collections.Generic.ICollection`1"/>, <see cref="T:System.Collections.IList"/>, <see cref="T:System.Collections.IEnumerable"/>, <see cref="T:System.Collections.ICollection"/> or anything deriving from <see cref="T:System.Collections.Generic.ICollection`1"/> or <see cref="T:System.Collections.IList"/>. |
| | | Queryables: <see cref="T:System.Linq.IQueryable"/>, <see cref="T:System.Linq.IQueryable`1"/>. |
| | | </summary> |
| | | <param name="type">The type.</param> |
| | | <returns>An object of the given type.</returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.SampleDirection"> |
| | | <summary> |
| | | Indicates whether the sample is used for request or response |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.TextSample"> |
| | | <summary> |
| | | This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Areas.HelpPage.XmlDocumentationProvider"> |
| | | <summary> |
| | | A custom <see cref="T:System.Web.Http.Description.IDocumentationProvider"/> that reads the API documentation from an XML documentation file. |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Areas.HelpPage.XmlDocumentationProvider.#ctor(System.String)"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:VueWebApi.Areas.HelpPage.XmlDocumentationProvider"/> class. |
| | | </summary> |
| | | <param name="documentPath">The physical path to XML document.</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.OrganizationSearch(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ç»ç»æ¶ææ¥è¯¢ |
| | | </summary> |
| | | <param name="OrgCode">ç»ç»æ¶æä»£ç </param> |
| | | <param name="OrgName">ç»ç»æ¶æåç§°</param> |
| | | <param name="OrgType">ç»ç»ç±»å</param> |
| | | <param name="UserName">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.PrentOrganization(System.String)"> |
| | | <summary> |
| | | ç»ç»æ¶ææ¥æ¾ä¸çº§åä½ |
| | | </summary> |
| | | <param name="orgcode">ç»ç»ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.AddUpdateOrganization(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | ç»ç»æ¶ææ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.DeleteOrganization(System.Int32)"> |
| | | <summary> |
| | | ç»ç»æ¶æå é¤ |
| | | </summary> |
| | | <param name="orgid">ç»ç»id</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserSearch(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ç¨æ·æ¸
åæ¥è¯¢ |
| | | </summary> |
| | | <param name="UserCode">ç¨æ·ç¼ç </param> |
| | | <param name="UserName">ç¨æ·åç§°</param> |
| | | <param name="StuOrg">æå±ç»ç»</param> |
| | | <param name="wagetype">å·¥èµç±»å</param> |
| | | <param name="Enable">å¨èç¶æ</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserOrganization"> |
| | | <summary> |
| | | ç¨æ·æå±ç»ç»æ¥è¯¢ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserGroup"> |
| | | <summary> |
| | | ç¨æ·æå±çç» |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.AddUpdateUser(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | ç¨æ·æ¸
åæ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.DeleteUser(System.Int32)"> |
| | | <summary> |
| | | ç¨æ·å é¤ |
| | | </summary> |
| | | <param name="Userid">ç¨æ·id</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserAssociationRole(System.String)"> |
| | | <summary> |
| | | ç¨æ·æ¸
åå
³èè§è²æ¥è¯¢ |
| | | </summary> |
| | | <param name="usercode">ç¨æ·ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.SaveUserAssoctRole(System.String,System.Collections.Generic.List{VueWebApi.Models.RoleUserSubmit})"> |
| | | <summary> |
| | | ç¨æ·æ¸
åå
³èè§è²ä¿å |
| | | </summary> |
| | | <param name="usercode">ç¨æ·ç¼ç </param> |
| | | <param name="json">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.ImportUserExcel(System.Web.HttpPostedFileBase,System.String)"> |
| | | <summary> |
| | | ç¨æ·æ¸
å导å
¥ |
| | | </summary> |
| | | <param name="files">ä¸ä¼ ç¨æ·æ¸
å导å
¥æä»¶</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserGroupSearch(System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ç¨æ·ç»å表æ¥è¯¢ |
| | | </summary> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserGroupAdd(System.Collections.Generic.List{VueWebApi.Models.StepDefect})"> |
| | | <summary> |
| | | ç¨æ·ç»æ°å¢ |
| | | </summary> |
| | | <param name="json">ç¨æ·ç»æ°å¢æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.UserGroupDelete(System.String)"> |
| | | <summary> |
| | | ç¨æ·ç»å é¤ |
| | | </summary> |
| | | <param name="UserGrupCode">ç¨æ·ç»ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleTypeSearch(System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | è§è²ç±»åå表æ¥è¯¢ |
| | | </summary> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleTypeAdd(System.Collections.Generic.List{VueWebApi.Models.ObjectData})"> |
| | | <summary> |
| | | è§è²ç±»åæ°å¢ |
| | | </summary> |
| | | <param name="json">è§è²ç±»åæäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleTypeDelete(System.String)"> |
| | | <summary> |
| | | è§è²ç±»åå é¤ |
| | | </summary> |
| | | <param name="RoleTypeCode">è§è²ç±»åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleTypeSelect"> |
| | | <summary> |
| | | è§è²ç±»å䏿æ¥å£ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleSearch(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | è§è²æ¸
åæ¥è¯¢ |
| | | </summary> |
| | | <param name="RoleCode">è§è²ç¼ç </param> |
| | | <param name="RoleName">è§è²åç§°</param> |
| | | <param name="RoleTypeCode">è§è²ç±»åç¼ç </param> |
| | | <param name="CreateUser">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.AddUpdateRole(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | è§è²æ¸
åæ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.DeleteRole(System.String)"> |
| | | <summary> |
| | | è§è²æ¸
åå é¤ |
| | | </summary> |
| | | <param name="RoleCode">è§è²ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleAssociationUser(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | è§è²æ¸
åå
³èç¨æ·æ¥è¯¢ |
| | | </summary> |
| | | <param name="rolecode">è§è²ç¼ç </param> |
| | | <param name="usercode">ç¨æ·ç¼ç </param> |
| | | <param name="username">ç¨æ·åç§°</param> |
| | | <param name="orgcode">æå±ç»ç»ç¼ç </param> |
| | | <param name="isrole">å
³èè§è²</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleAssociationUserTwo(System.String)"> |
| | | <summary> |
| | | è§è²æ¸
åå
³èç¨æ·æ¥è¯¢1 |
| | | </summary> |
| | | <param name="rolecode">è§è²ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.SaveRoleAssoctUser(System.String,System.Collections.Generic.List{VueWebApi.Models.ObjectData})"> |
| | | <summary> |
| | | è§è²æ¸
åå
³èç¨æ·ä¿å |
| | | </summary> |
| | | <param name="rolecode">è§è²ç¼ç </param> |
| | | <param name="json">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.RoleAssociationRight(System.String,System.String)"> |
| | | <summary> |
| | | è§è²æ¸
åå
³èåè½æ¥è¯¢ |
| | | </summary> |
| | | <param name="rolecode">è§è²ç¼ç </param> |
| | | <param name="type">æä½ç«¯åç±»ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.SaveUserAssoctRight(System.String,System.String,System.Collections.Generic.List{VueWebApi.Models.TreeDM})"> |
| | | <summary> |
| | | è§è²æ¸
åå
³èåè½ä¿å |
| | | </summary> |
| | | <param name="rolecode">è§è²ç¼ç </param> |
| | | <param name="usercode">ç»å½ç¨æ·ç¼ç </param> |
| | | <param name="json">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.CurrentUnitSearch(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | 徿¥å使¥è¯¢ |
| | | </summary> |
| | | <param name="CuntUnitCode">徿¥åä½ç¼ç </param> |
| | | <param name="CuntUnitName">徿¥åä½åç§°</param> |
| | | <param name="UnitAttr">åä½å±æ§</param> |
| | | <param name="CreateUser">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.AddUpdateCurrentUnit(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | 徿¥å使°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.BasicSettingController.DeleteCurrentUnit(System.String)"> |
| | | <summary> |
| | | 徿¥åä½å é¤ |
| | | </summary> |
| | | <param name="unitcode">徿¥åä½ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeviceTypeSearch(System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | 设å¤ç±»åæ¥è¯¢ |
| | | </summary> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.AddUpdateDeviceType(System.Collections.Generic.List{VueWebApi.Models.ObjectDataCont})"> |
| | | <summary> |
| | | 设å¤ç±»åæ°å¢ |
| | | </summary> |
| | | <param name="json">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeleteDeviceType(System.String)"> |
| | | <summary> |
| | | 设å¤ç±»åå é¤ |
| | | </summary> |
| | | <param name="devicetypecode">设å¤ç±»åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeviceTypeSelect"> |
| | | <summary> |
| | | 设å¤ç±»åä¸ææ¡æ¥å£ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeviceGroupSearch(System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | 设å¤ç»æ¥è¯¢ |
| | | </summary> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.AddUpdateDeviceGroup(System.Collections.Generic.List{VueWebApi.Models.ObjectDataCont})"> |
| | | <summary> |
| | | 设å¤ç»æ°å¢ |
| | | </summary> |
| | | <param name="json">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeleteDeviceGroup(System.String)"> |
| | | <summary> |
| | | 设å¤ç»å é¤ |
| | | </summary> |
| | | <param name="devicegroupcode">设å¤ç»ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeviceTypeSelectGroup(System.String)"> |
| | | <summary> |
| | | 设å¤ç±»åæ¥æ¾è®¾å¤ç» |
| | | </summary> |
| | | <param name="eqptypecode">设å¤ç±»åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.WorkShopSelect"> |
| | | <summary> |
| | | æå±è½¦é´ä¸ææ¥å£ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.WorkShopSelectLine(System.String)"> |
| | | <summary> |
| | | æå±è½¦é´æ¥æ¾æå±äº§çº¿æ¥å£ |
| | | </summary> |
| | | <param name="workshopcode">车é´ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeviceMangerSearch(System.String,System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | è®¾å¤æ¸
åæ¥è¯¢ |
| | | </summary> |
| | | <param name="DeviceCode">设å¤ç¼ç </param> |
| | | <param name="DeviceName">设å¤åç§°</param> |
| | | <param name="Status">使ç¨ç¶æ</param> |
| | | <param name="WorkShop">æå±è½¦é´</param> |
| | | <param name="DeviceType">设å¤ç±»å</param> |
| | | <param name="DeviceGroup">设å¤ç»</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.AddUpdateDeviceManger(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | è®¾å¤æ¸
åæ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.DeviceManagerController.DeleteDeviceManger(System.String)"> |
| | | <summary> |
| | | è®¾å¤æ¸
åå é¤ |
| | | </summary> |
| | | <param name="devicecode">设å¤ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ErpSyncMesController.SeaveSearchUnit"> |
| | | <summary> |
| | | å¶é 模åï¼åä½åæ¥ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ErpSyncMesController.SeaveSearchInventoryClass"> |
| | | <summary> |
| | | å¶é 模åï¼åè´§åç±»åæ¥ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ErpSyncMesController.SeaveSearchInventory"> |
| | | <summary> |
| | | å¶é 模åï¼åè´§æ¡£æ¡åæ¥ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ErpSyncMesController.SeaveSearchWhareHouseLocation"> |
| | | <summary> |
| | | ç©æç®¡çï¼ä»åºåºä½åæ¥ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ErpSyncMesController.SeaveSearchPartner"> |
| | | <summary> |
| | | åºç¡è®¾ç½®:徿¥åä½åæ¥ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ErpSyncMesController.SeaveSearchErpOrder"> |
| | | <summary> |
| | | ç产管çï¼ç产订å忥 |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.GridReportController.MesOrderPrintSearch(System.String,System.String)"> |
| | | <summary> |
| | | MESå·¥åæå° |
| | | </summary> |
| | | <param name="username">ç»å½ç¨æ·</param> |
| | | <param name="mesordercode">å·¥åç¼å·</param> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.GridReportController.MesOrderPrintSearch1(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | MESå·¥åæå°1 |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.DownLoadExcel(System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿ä¸è½½ |
| | | </summary> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelModelCheck"> |
| | | <summary> |
| | | Excel导å
¥æä»¶ä¸ä¼ ãæ¨¡æ¿éªè¯ãæ°æ®éãéªè¯ |
| | | </summary> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <param name="files">ä¸ä¼ æä»¶</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckUpload(System.Web.HttpPostedFile,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿ä¸ä¼ |
| | | </summary> |
| | | <param name="files">ä¸ä¼ æä»¶</param> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheck(System.Web.HttpPostedFile,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿éªè¯ |
| | | </summary> |
| | | <param name="files">ä¸ä¼ æä»¶</param> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckCount(System.Web.HttpPostedFile,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ¨¡æ¿æ°æ®ééªè¯ |
| | | </summary> |
| | | <param name="files">ä¸ä¼ æä»¶</param> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelCheckData(System.String,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ°æ®éªè¯ |
| | | </summary> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <param name="FileName">æä»¶åç§°</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ImportExcelController.ExcelImportSubmit(System.String,System.String)"> |
| | | <summary> |
| | | Excel导å
¥æ°æ® |
| | | </summary> |
| | | <param name="FileCode">æä»¶ç¼ç </param> |
| | | <param name="FileName">æä»¶åç§°</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.LoginController.LoginSave(System.String,System.String)"> |
| | | <summary> |
| | | ç¨æ·ç»å½ |
| | | </summary> |
| | | <param name="username">ç¨æ·ç¼ç </param> |
| | | <param name="password">å¯ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.LoginController.LoginMenu"> |
| | | <summary> |
| | | æ¥è¯¢åè½èå |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.LoginController.UpdateUserPassword(System.String,System.String,System.String,System.String)"> |
| | | <summary> |
| | | ä¿®æ¹å¯ç |
| | | </summary> |
| | | <param name="usercode">ç¨æ·ç¼ç </param> |
| | | <param name="username">ç¨æ·åç§°</param> |
| | | <param name="password">å¯ç </param> |
| | | <param name="newpassword">æ°å¯ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.LoginController.LoginOut(System.Int32,System.String,System.String,System.String)"> |
| | | <summary> |
| | | ç»åº |
| | | </summary> |
| | | <param name="userid">ç¨æ·id</param> |
| | | <param name="usercode">ç¨æ·ç¼ç </param> |
| | | <param name="username">ç¨æ·å</param> |
| | | <param name="usertype">æä½ç«¯PC/APP</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.WareHouseDefSearch(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ä»åºå®ä¹æ¥è¯¢ |
| | | </summary> |
| | | <param name="warehousecode">ä»åºç¼ç </param> |
| | | <param name="warehousename">ä»åºåç§°</param> |
| | | <param name="description">ä»åºæè¿°</param> |
| | | <param name="createuser">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.AddUpdateWareHouseDef(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | ä»åºå®ä¹æ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.DeleteWareHouseDef(System.String)"> |
| | | <summary> |
| | | ä»åºå é¤ |
| | | </summary> |
| | | <param name="warehousecode">ä»åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.WareHouseSelect"> |
| | | <summary> |
| | | æå±ä»åºæ¥å£ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.StorageDefSearch(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | åºä½å®ä¹æ¥è¯¢ |
| | | </summary> |
| | | <param name="storagecode">åºä½ç¼ç </param> |
| | | <param name="storagename">åºä½åç§°</param> |
| | | <param name="description">ä»åºæè¿°</param> |
| | | <param name="createuser">å建人å</param> |
| | | <param name="stockcode">æå±ä»åºç¼ç </param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.AddUpdateStorageDef(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | åºä½å®ä¹æ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.MaterialManagerController.DeleteStorageDef(System.String)"> |
| | | <summary> |
| | | åºä½å é¤ |
| | | </summary> |
| | | <param name="storagecode">åºä½ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.ErpOrderSearch(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ERPè®¢åæ¥è¯¢ |
| | | </summary> |
| | | <param name="erporderstus">订åç¶æç </param> |
| | | <param name="erpordercode">订åç¼å·</param> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <param name="partname">产ååç§°</param> |
| | | <param name="partspec">产åè§æ ¼</param> |
| | | <param name="paystartdate">é¢è®¡å¼å·¥æ¶é´</param> |
| | | <param name="payenddate">é¢è®¡å®å·¥æ¶é´</param> |
| | | <param name="creatuser">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MarkSaveErpOrder(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | ERP订åä¸è¾¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.ClosedErpOrder(System.String)"> |
| | | <summary> |
| | | ERP订åå
³é |
| | | </summary> |
| | | <param name="erpordercode">订åå·</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderSearch(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | MESå·¥åæ¥è¯¢ |
| | | </summary> |
| | | <param name="mesorderstus">å·¥åç¶æç </param> |
| | | <param name="mesordercode">å·¥åç¼å·</param> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <param name="partname">产ååç§°</param> |
| | | <param name="partspec">产åè§æ ¼</param> |
| | | <param name="creatuser">å建人å</param> |
| | | <param name="createdate">å建æ¶é´</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.PartSelectRoute(System.String)"> |
| | | <summary> |
| | | 产åç¼ç æ¥æ¾å·¥èºè·¯çº¿ä¸ææ¥å£ |
| | | </summary> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.RouteSelectWkshop(System.String,System.String)"> |
| | | <summary> |
| | | 产å+å·¥èºè·¯çº¿æ¥æ¾è½¦é´ä¸ææ¥å£ |
| | | </summary> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SelectRouteStep(System.String)"> |
| | | <summary> |
| | | æ ¹æ®éæ©å·¥èºè·¯çº¿æ¥çå·¥åºæ¥å£ |
| | | </summary> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.AddUpdateMesOrder(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | MES工忰å¢ãç¼è¾æäº¤ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.DeleteMesOrder(System.String,System.String,System.String)"> |
| | | <summary> |
| | | MESå·¥åå é¤ |
| | | </summary> |
| | | <param name="wocode">å·¥åç¼å·</param> |
| | | <param name="m_po">订åç¼å·</param> |
| | | <param name="orderqty">工忰é</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.ClosedMesOrder(System.String,System.String)"> |
| | | <summary> |
| | | MESå·¥åå
³é |
| | | </summary> |
| | | <param name="wocode">å·¥åç¼å·</param> |
| | | <param name="m_po">订åç¼å·</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SearchWorkStep(System.String)"> |
| | | <summary> |
| | | MES工忥çå·¥åºä»»å¡ |
| | | </summary> |
| | | <param name="wo_code">å·¥åç¼å·</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepSearch(System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥æ«ç è·åå·¥å对åºå·¥åºä»»å¡(èªå¶) |
| | | </summary> |
| | | <param name="orderstepqrcode">æ«æçäºç»´ç ä¿¡æ¯</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å(é»è®¤æç
§è®¡åå¼å·¥æ¶é´æ£åº)</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderWxStepSearch(System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥æ«ç è·åå·¥å对åºå·¥åºä»»å¡(å¤å) |
| | | </summary> |
| | | <param name="orderstepqrcode">æ«æçäºç»´ç ä¿¡æ¯</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å(é»è®¤æç
§è®¡åå¼å·¥æ¶é´æ£åº)</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepStart(System.String,System.String,System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥ï¼å¼å·¥(å¼å§/æ¥å·¥)/å¤å(åæ/æ¶æ)æ¶æ¡ä»¶å¤æåæ°æ®è¿åæ¥å£ |
| | | </summary> |
| | | <param name="OperType">æä½ç±»åï¼èªå¶(ZZ)/å¤å(WX)</param> |
| | | <param name="SelectType">æä½ç±»åï¼å¤ååææ è¯(OUT)/å¤åæ¶ææ è¯(IN)</param> |
| | | <param name="orderstepqrcode">æ«æäºç»´ç ä¿¡æ¯</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepStartSelectEqp(System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥ï¼å¼å·¥æ¶è·å设å¤ä¸æå表 |
| | | </summary> |
| | | <param name="orderstepqrcode">æ«æäºç»´ç ä¿¡æ¯</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepReportSelectUserGroup"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥ï¼æ¥å·¥æ¶è·åç产çç»ä¸ææ¡ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderGroupSelectUser(System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥ï¼æ ¹æ®ç产çç»æ¥æ¾äººåå表 |
| | | </summary> |
| | | <param name="usergroupcode">çç»ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderSelectUser(System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥ï¼äººå䏿å表 |
| | | </summary> |
| | | <param name="usercode">人åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepSelectWX(System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥ï¼åæ/æ¶ææ¶è·åå¤å䏿å表 |
| | | </summary> |
| | | <param name="orderstepqrcode">æ«æäºç»´ç ä¿¡æ¯</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepSelectCause(System.String)"> |
| | | <summary> |
| | | ç产æ¥å·¥ï¼æ¥å·¥/å¤åæ¶æ è·åä¸è¯åå 䏿å表 |
| | | </summary> |
| | | <param name="orderstepqrcode">æ«æäºç»´ç ä¿¡æ¯</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SavaMesOrderStepStart(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,å¼å·¥æäº¤ |
| | | </summary> |
| | | <param name="obj">å¼å·¥æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SavaMesOrderStepReport(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,æ¥å·¥æäº¤ |
| | | </summary> |
| | | <param name="obj">æ¥å·¥æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SavaMesOrderStepOut(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,åææäº¤ |
| | | </summary> |
| | | <param name="obj">åææäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SavaMesOrderStepIn(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,æ¶ææäº¤ |
| | | </summary> |
| | | <param name="obj">æ¶ææäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepCheckSearch(System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,å·¥åºæ£éªæ«ç è·åä»»å¡ä¿¡æ¯ |
| | | </summary> |
| | | <param name="orderstepqrcode">æ«æäºç»´ç ä¿¡æ¯</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepCheckSelect"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,å·¥åºæ£éªè·åæ£éªæ åä¸ææ¡æ°æ® |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.MesOrderStepCheckItemList(System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,å·¥åºæ£éªæ ¹æ®æ£éªæ åè·åæ£éªé¡¹ç®å表 |
| | | </summary> |
| | | <param name="checkstandcode">æ£éªæ åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductionManagementController.SaveMesOrderStepCheckItem(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥,å·¥åºæ£éªæäº¤ä¿å |
| | | </summary> |
| | | <param name="obj">æäº¤ä¿¡æ¯</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StockTypeSelect"> |
| | | <summary> |
| | | åè´§ç±»åæ¥å£ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.MaterialTypeSearch(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ç©æç±»åæ¥è¯¢ |
| | | </summary> |
| | | <param name="materialtypecode">ç©æç±»åç¼ç </param> |
| | | <param name="materialtypename">ç©æç±»ååç§°</param> |
| | | <param name="stocktypecode">åè´§ç±»åç¼ç </param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.AddUpdateMaterialType(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | ç©æç±»åæ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.DeleteMaterialType(System.String)"> |
| | | <summary> |
| | | ç©æç±»åå é¤ |
| | | </summary> |
| | | <param name="materialtypecode">ç©æç±»åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.UomSearch(System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | åä½å表æ¥è¯¢ |
| | | </summary> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.UomAdd(System.Collections.Generic.List{VueWebApi.Models.Uom})"> |
| | | <summary> |
| | | å使°å¢ |
| | | </summary> |
| | | <param name="json">åä½æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.UomDelete(System.String)"> |
| | | <summary> |
| | | åä½å é¤ |
| | | </summary> |
| | | <param name="uomcode">åä½ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StockTypeSelectMaterialType(System.String)"> |
| | | <summary> |
| | | åè´§ç±»åæ¥æ¾ç©æç±»å |
| | | </summary> |
| | | <param name="stocktypecode">åè´§ç±»åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.UomSelect"> |
| | | <summary> |
| | | åä½ä¸æå表æ¥è¯¢ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.InventoryFileSelect(System.String,System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | åè´§æ¡£æ¡æ¥è¯¢ |
| | | </summary> |
| | | <param name="partcode">ç©æç¼ç </param> |
| | | <param name="partname">ç©æåç§°</param> |
| | | <param name="partspec">ç©æè§æ ¼</param> |
| | | <param name="stocktypecode">åè´§ç±»åç¼ç </param> |
| | | <param name="materialtypecode">ç©æç±»åç¼ç </param> |
| | | <param name="storehousecode">æå±ä»åºç¼ç </param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.AddUpdateInventoryFile(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | åè´§æ¡£æ¡æ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.DeleteInventoryFile(System.String)"> |
| | | <summary> |
| | | åè´§æ¡£æ¡å é¤ |
| | | </summary> |
| | | <param name="materialcode">ç©æç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.InventoryFileAssociationRoute(System.String)"> |
| | | <summary> |
| | | åè´§æ¡£æ¡å
³èå·¥èºè·¯çº¿æ¥è¯¢ |
| | | </summary> |
| | | <param name="partcode">ç©æç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.SaveInventoryFile(System.String,System.Collections.Generic.List{VueWebApi.Models.ObjectData},System.String)"> |
| | | <summary> |
| | | åè´§æ¡£æ¡å
³èå·¥èºè·¯çº¿æäº¤ |
| | | </summary> |
| | | <param name="partcode">ç©æç¼ç </param> |
| | | <param name="defaultroute_code">é»è®¤å·¥èºè·¯çº¿ç¼ç </param> |
| | | <param name="json">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StepSelect"> |
| | | <summary> |
| | | å·¥åºä¸ææ¥è¯¢æ¥å£ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.RouteSearch(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | å·¥èºè·¯çº¿æ¥è¯¢ |
| | | </summary> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <param name="routename">å·¥èºè·¯çº¿åç§°</param> |
| | | <param name="description">å·¥èºè·¯çº¿æè¿°</param> |
| | | <param name="createuser">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.ViewRoute(System.String)"> |
| | | <summary> |
| | | å·¥èºè·¯çº¿é¢è§ |
| | | </summary> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.AddUpdateRoute(System.String,VueWebApi.Models.RoutEdit,System.String)"> |
| | | <summary> |
| | | å·¥èºè·¯çº¿æ°å¢ |
| | | </summary> |
| | | <param name="id">å·¥èºè·¯çº¿id</param> |
| | | <param name="opertype">æä½ç±»å(æ°å¢)</param> |
| | | <param name="json">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.DeleteRoute(System.String)"> |
| | | <summary> |
| | | å·¥èºè·¯çº¿å é¤ |
| | | </summary> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StepSearch(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | å·¥åºæ¥è¯¢ |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <param name="stepname">å·¥åºåç§°</param> |
| | | <param name="enable">å¯ç¨ç¶æ</param> |
| | | <param name="steptypecode">å·¥åºç±»åç¼ç </param> |
| | | <param name="createuser">å建人å</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.AddUpdateStep(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | å·¥åºæ°å¢ç¼è¾ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.DeleteStep(System.String)"> |
| | | <summary> |
| | | å·¥åºå é¤ |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StepAssociationEqp(System.String)"> |
| | | <summary> |
| | | å·¥åºå®ä¹å
³èå·¥ä½ç«æ¥è¯¢ |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.SaveStepAssociationEqp(System.String,System.Collections.Generic.List{VueWebApi.Models.ObjectData})"> |
| | | <summary> |
| | | å·¥åºå®ä¹å
³èå·¥ä½ç«æäº¤ |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <param name="json">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StepAssociationDefect(System.String)"> |
| | | <summary> |
| | | å·¥åºå
³èç¼ºé·æ¥è¯¢ |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.SaveStepAssociationDefect(System.String,System.Collections.Generic.List{VueWebApi.Models.ObjectData})"> |
| | | <summary> |
| | | å·¥åºå
³èç¼ºé·æäº¤ |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <param name="json">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.PartSelect"> |
| | | <summary> |
| | | 产åä¿¡æ¯ä¸ææ¡æ¥è¯¢ |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.PartSelectRpute(System.String)"> |
| | | <summary> |
| | | 产åç¼ç æ¥æ¾å·¥èºè·¯çº¿ä¸ææ¡ |
| | | </summary> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.RouteSelectStep(System.String)"> |
| | | <summary> |
| | | æ ¹æ®å·¥èºè·¯çº¿ç¼ç æ¥æ¾å
³èå·¥åºéå |
| | | </summary> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StepSelectEqp(System.String)"> |
| | | <summary> |
| | | æ ¹æ®å·¥åºçº¿ç¼ç æ¥æ¾å
³è设å¤ä¸ææ¡éå |
| | | </summary> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.StepSelectEqpList(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | æ ¹æ®å·¥åºçº¿ç¼ç æ¥æ¾å
³è设å¤å表éå |
| | | </summary> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.BeatRateSearch(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | èæå·¥ä»·æ¥è¯¢ |
| | | </summary> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <param name="eqpcode">设å¤ç¼ç </param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.SaveBeatRate(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | èæå·¥ä»·æäº¤ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.ProductModelController.DeleteBeatRate(System.String,System.String,System.String,System.String)"> |
| | | <summary> |
| | | èæå·¥ä»·å é¤ |
| | | </summary> |
| | | <param name="partcode">产åç¼ç </param> |
| | | <param name="routecode">å·¥èºè·¯çº¿ç¼ç </param> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <param name="eqpcode">设å¤ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.DedectSearch(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | è´¨é管ç,缺é·å®ä¹æ¥è¯¢å表 |
| | | </summary> |
| | | <param name="defectcode">缺é·ä»£ç </param> |
| | | <param name="defectname">缺é·åç§°</param> |
| | | <param name="defectdescr">ç¼ºé·æè¿°</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.AddUpdateDedect(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | è´¨é管çï¼ç¼ºé·å®ä¹æ°å¢ãç¼è¾æäº¤ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.DeleteDedect(System.String)"> |
| | | <summary> |
| | | è´¨é管çï¼ç¼ºé·å®ä¹å é¤ |
| | | </summary> |
| | | <param name="defectcode">缺é·ä»£ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.StepCheckStanedSearch(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | å·¥åºæ£éªæ åå表æ¥è¯¢ |
| | | </summary> |
| | | <param name="stanedcode">æ å代ç </param> |
| | | <param name="stanedname">æ ååç§°</param> |
| | | <param name="staneddescr">æ åæè¿°</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§æ ¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.EditStepCheckStanedSearch(System.String)"> |
| | | <summary> |
| | | å·¥åºæ£éªæ åç¼è¾è·åæ°æ® |
| | | </summary> |
| | | <param name="defectcode">å·¥åºæ£éªæ åç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.StepCheckItemSelect"> |
| | | <summary> |
| | | å·¥åºæ£éªæ åæ°å¢ãç¼è¾è·åæ£éªé¡¹ç®ä¸æå表 |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.DeleteStepCheckStaned(System.String)"> |
| | | <summary> |
| | | å·¥åºæ£éªæ åå é¤ |
| | | </summary> |
| | | <param name="stanedcode">stanedcode</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.AddUpdateStepCheckStaned(System.String,VueWebApi.Models.RoutEdit)"> |
| | | <summary> |
| | | å·¥åºæ£éªæ åæ°å¢ãç¼è¾æäº¤ |
| | | </summary> |
| | | <param name="opertype">æä½ç±»å</param> |
| | | <param name="json">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.StepCheckItemSearch(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | å·¥åºæ£éªé¡¹ç®å表æ¥è¯¢ |
| | | </summary> |
| | | <param name="itemcode">æ£éªé¡¹ç®ç¼ç </param> |
| | | <param name="itemname">æ£éªé¡¹ç®åç§°</param> |
| | | <param name="itemdescr">æ£éªé¡¹ç®æè¿°</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.AddUpdateStepCheckItem(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | å·¥åºæ£éªé¡¹ç®æ°å¢ãç¼è¾æäº¤ |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.QualityManagementController.DeleteStepCheckItem(System.String)"> |
| | | <summary> |
| | | å·¥åºæ£éªé¡¹ç®å é¤ |
| | | </summary> |
| | | <param name="checkitemcode">æ£éªé¡¹ç®ä»£ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.SystemSettingController.EncodingRules(System.String,System.String,System.Int32,System.Int32,System.String,System.String)"> |
| | | <summary> |
| | | ç¼ç è§åæ¥è¯¢ |
| | | </summary> |
| | | <param name="rightname">ç¼ç åç§°</param> |
| | | <param name="prefix">åºå®å符</param> |
| | | <param name="page">页ç </param> |
| | | <param name="rows">æ¯é¡µæ¾ç¤ºæ¡æ°</param> |
| | | <param name="prop">æåºå段</param> |
| | | <param name="order">æåºè§å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.SystemSettingController.SaveEncodingRules(Newtonsoft.Json.Linq.JObject)"> |
| | | <summary> |
| | | ç¼ç è§åç¼è¾ä¿å |
| | | </summary> |
| | | <param name="obj">æäº¤æ°æ®å¯¹è±¡</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Controllers.SystemSettingController.NewEncodingRules(System.String)"> |
| | | <summary> |
| | | è·åè§åçæçç¼ç |
| | | </summary> |
| | | <param name="rightcode">åè½ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.WebApiApplication.Init"> |
| | | <summary> |
| | | 注åSession |
| | | </summary> |
| | | </member> |
| | | <member name="T:VueWebApi.Tools.ChannelActionFilterAttribute"> |
| | | <summary> |
| | | æ¸ éè¿æ»¤å¨ |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ChannelActionFilterAttribute.OnActionExecuting(System.Web.Http.Controllers.HttpActionContext)"> |
| | | <summary> |
| | | è¯·æ±æ¥å£ä¹åæ¸ éè¿æ»¤ |
| | | </summary> |
| | | <param name="actionContext"></param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.sqlConnection"> |
| | | <summary> |
| | | åå»ºæ°æ®åºè¿æ¥å¯¹è±¡Sqlserver |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.select``1(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ¥è¯¢è¿åList |
| | | </summary> |
| | | <typeparam name="T">éè¦è¿åç对象类å</typeparam> |
| | | <param name="sql">Sqlè¯å¥</param> |
| | | <param name="parm"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.selectToDict(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ¥è¯¢è¿åListåå
¸å¯¹è±¡ æ éæå¨Wapperå¯¹è±¡äº |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <param name="parm"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.selectToObject``1(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ¥è¯¢è¿å对象éListéå |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="sql"></param> |
| | | <param name="parm"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.GetPageList``1(System.String,System.Object,System.String,System.String,System.Int32,System.Int32,System.Int32@)"> |
| | | <summary> |
| | | dapperéç¨å页彿° |
| | | </summary> |
| | | <typeparam name="T">æ³åéåå®ä½ç±»</typeparam> |
| | | <param name="sql">æ¥è¯¢è¯å¥</param> |
| | | <param name="orderBy">æåºï¼å段 DESC/ASCï¼</param> |
| | | <param name="pageIndex">å½å页</param> |
| | | <param name="pageSize">å½å页æ¾ç¤ºæ¡æ°</param> |
| | | <param name="total">ç»æéæ»æ°</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.selectdata(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ¥è¯¢è¿ådatatableæ°æ®(另忰) |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <param name="parm"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.selecttable(System.String)"> |
| | | <summary> |
| | | Dapperæ¥è¯¢è¿ådatatableæ°æ®(ä¸å¸¦åæ°) |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.selectProcedure(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ§è¡åå¨è¿ç¨è¿ådatatableæ°æ®(另忰) |
| | | </summary> |
| | | <param name="sql">åå¨è¿ç¨å</param> |
| | | <param name="parm">åæ°</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.IsProcedure(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ§è¡åå¨è¿ç¨è¿ådatatableæ°æ®(另忰) |
| | | </summary> |
| | | <param name="sql">åå¨è¿ç¨å</param> |
| | | <param name="parm">åæ°</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.IsProcedureNo(System.String)"> |
| | | <summary> |
| | | Dapperæ§è¡åå¨è¿ç¨è¿ådatatableæ°æ®(ä¸å¸¦åæ°) |
| | | </summary> |
| | | <param name="sql">åå¨è¿ç¨å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.selectcount(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperæ¥è¯¢è¿åæ°æ®æ¡æ° |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <param name="parm"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.SQL(System.String,System.Object)"> |
| | | <summary> |
| | | Dapperå¢å æ¹ |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <param name="parametere"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.DoTransaction(System.Collections.Generic.List{System.Object})"> |
| | | <summary> |
| | | å¢å ï¼å é¤ï¼ä¿®æ¹ä½¿ç¨ç äºå¡æ¹æ³ Sqllistä¸ºä¾æ¬¡æ§è¡ |
| | | </summary> |
| | | <param name="sqlList"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.DoTransactionCont(System.Collections.Generic.List{System.Object})"> |
| | | <summary> |
| | | å¢å ï¼å é¤ï¼ä¿®æ¹ä½¿ç¨ç äºå¡æ¹æ³ Sqllistä¸ºä¾æ¬¡æ§è¡ |
| | | </summary> |
| | | <param name="sqlList"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DapperHelper.insertReturnId(System.String,System.Object,System.String)"> |
| | | <summary> |
| | | Dapperæå
¥ è¿åèªå¢ä¸»é®Id |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <param name="parameter"></param> |
| | | <param name="tableName">å¾
æå
¥æ°æ®ç表å</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DataOperator.ExecuteSqlTran(System.Collections.Generic.List{System.String},System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡å¤æ¡SQLè¯å¥ï¼å®ç°æ°æ®åºäºå¡ã |
| | | </summary> |
| | | <param name="sql">夿¡SQLè¯å¥</param> |
| | | <returns>å½±åçè®°å½æ°</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetTable(System.String)"> |
| | | <summary> |
| | | è·åDataTable |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <returns>è¿åDataTable</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetTable(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | è·åDataTable |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åDataTable</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetData(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | Datasetè·åæ°æ®è¡¨ |
| | | </summary> |
| | | <param name="sql"></param> |
| | | <param name="parameters"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetCount(System.String)"> |
| | | <summary> |
| | | è·åæ°æ®è¡æ°,妿åºéè¿å"-1" |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <returns>妿åºéè¿å"-1"</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.Executesqltran(System.Collections.Generic.List{System.String},System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡å¤æ¡sqlè¯å¥çäºç© |
| | | </summary> |
| | | <param name="list"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetCount(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | è·åæ°æ®è¡æ°,妿åºéè¿å"-1" |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>妿åºéè¿å"-1"</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetObject(System.String)"> |
| | | <summary> |
| | | è·åè¡¨æ ¼ç¬¬ä¸è¡ç¬¬ä¸å |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <returns>妿åºéè¿å"null"</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetObject(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | è·åè¡¨æ ¼ç¬¬ä¸è¡ç¬¬ä¸å |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åObject</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ExecuteSql(System.String)"> |
| | | <summary> |
| | | æ§è¡SQLè¯å¥è¿åæ¯å¦æå |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <returns>è¿åæ¯å¦æå</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ExecuteSql(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡SQLè¯å¥è¿åæ¯å¦æå |
| | | </summary> |
| | | <param name="sql">ä¼ å
¥SQLè¯å¥</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åæ¯å¦æå</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ExecuteProduct(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡åå¨è¿ç¨è¿åè¿åå¼ |
| | | </summary> |
| | | <param name="productName">åå¨è¿ç¨åå</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åå¼Hash表</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ExecuteProductData(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡åå¨è¿ç¨è¿åè¿åå¼ |
| | | </summary> |
| | | <param name="productName">åå¨è¿ç¨åå</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åå¼Hash表</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ExecuteProductDataList(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡åå¨è¿ç¨è¿åè¿åå¼ |
| | | </summary> |
| | | <param name="productName">åå¨è¿ç¨åå</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åå¼Hash表</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.executeProductList(System.String,System.Boolean,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡åå¨è¿ç¨è¿åè¿åå¼ |
| | | </summary> |
| | | <param name="productName">åå¨è¿ç¨åå</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åå¼List</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ExecuteProductbool(System.String,System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | æ§è¡åå¨è¿ç¨è¿åè¿åå¼ |
| | | </summary> |
| | | <param name="productName">åå¨è¿ç¨åå</param> |
| | | <param name="parameters">SqlParameter åæ°</param> |
| | | <returns>è¿åå¼DataTable表</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetDataByPage(System.String,System.String,System.String,System.Int32,System.Int32,System.Int32,System.String,System.Int32@)"> |
| | | <summary> |
| | | å页æ¥è¯¢ |
| | | </summary> |
| | | <param name="filename">表å</param> |
| | | <param name="filename">éè¦è¿åçå</param> |
| | | <param name="sortfilename">æåºå段å</param> |
| | | <param name="PageSize">页尺寸</param> |
| | | <param name="PageIndex">页ç </param> |
| | | <param name="OrderType">设置æåºç±»å, é 0 å¼åéåº</param> |
| | | <param name="strWhere">æ¥è¯¢æ¡ä»¶ (注æ: ä¸è¦å where)</param> |
| | | <param name="RecordCount">æ»è®°å½</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetDataByPage_V2(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.Int32@)"> |
| | | <summary> |
| | | å页æ¥è¯¢(æ¯æJOIN) |
| | | </summary> |
| | | <param name="filename">表å</param> |
| | | <param name="filename">éè¦è¿åçå</param> |
| | | <param name="sortfilename">æåºå段å(é»è®¤ååºï¼éåºé卿åºå段ååé¢DESCå
³é®åï¼sortField Desc)</param> |
| | | <param name="PageSize">页尺寸</param> |
| | | <param name="PageIndex">页ç </param> |
| | | <param name="strWhere">æ¥è¯¢æ¡ä»¶ (注æ: ä¸è¦å where)</param> |
| | | <param name="RecordCount">æ»è®°å½</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.GetDataByPage_V2_Join(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.Int32@)"> |
| | | <summary> |
| | | å页æ¥è¯¢(æ¯æJOIN) |
| | | </summary> |
| | | <param name="filename">表å</param> |
| | | <param name="filename">éè¦è¿åçå</param> |
| | | <param name="sortfilename">æåºå段å(é»è®¤ååºï¼éåºé卿åºå段ååé¢DESCå
³é®åï¼sortField Desc)</param> |
| | | <param name="PageSize">页尺寸</param> |
| | | <param name="PageIndex">页ç </param> |
| | | <param name="strWhere">æ¥è¯¢æ¡ä»¶ (注æ: ä¸è¦å where)</param> |
| | | <param name="RecordCount">æ»è®°å½</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.DBHelper.ParametersStrGet(System.Data.SqlClient.SqlParameter[])"> |
| | | <summary> |
| | | [ç¨äºæ¥å¿ææ¬è¾åº] å°SqlParameteræ°ç»åæ°è½¬æå符串. |
| | | </summary> |
| | | <param name="parameters">åæ°æ°ç»</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ImportExcel.ExcelToTable(System.String)"> |
| | | <summary> |
| | | Excel导å
¥æDatable |
| | | </summary> |
| | | <param name="file">导å
¥è·¯å¾(å
嫿件å䏿©å±å)</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ImportExcel.ExcelToTableList(System.String)"> |
| | | <summary> |
| | | Excel 2个Sheet导å
¥æDatable |
| | | </summary> |
| | | <param name="file">导å
¥è·¯å¾(å
嫿件å䏿©å±å)</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ImportExcel.GetCellValue(NPOI.SS.UserModel.ICell)"> |
| | | <summary> |
| | | è·ååå
æ ¼ç±»å |
| | | </summary> |
| | | <param name="cell"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ImportExcel.ExcelToTableErro(System.String)"> |
| | | <summary> |
| | | å个Excel ä¸ä¸ºç©ºéªè¯ãé夿°æ®éªè¯ |
| | | </summary> |
| | | <param name="file">导å
¥è·¯å¾(å
嫿件å䏿©å±å)</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ImportExcel.ExcelToTableListErro(System.String)"> |
| | | <summary> |
| | | Excel 2个Sheet æ°æ®éªè¯ |
| | | </summary> |
| | | <param name="file">导å
¥è·¯å¾(å
嫿件å䏿©å±å)</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.LogHelper.WriteLog(System.Exception)"> |
| | | <summary> |
| | | è¾åºæ¥å¿å°Log4Net |
| | | </summary> |
| | | <param name="ex"></param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.NPOIHelper.ExportEasy(System.Data.DataTable,System.String)"> |
| | | <summary> |
| | | NPOIç®åDemoï¼å¿«éå
¥é¨ä»£ç |
| | | </summary> |
| | | <param name="dtSource"></param> |
| | | <param name="strFileName"></param> |
| | | <remarks>NPOI认为Excelç第ä¸ä¸ªåå
æ ¼æ¯ï¼(0ï¼0)</remarks> |
| | | <Author>æ³æ°¸æ³ http://www.yongfa365.com/ 2010-5-8 22:21:41</Author> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.NPOIHelper.GetExcelDatatableList(System.String)"> |
| | | <summary> |
| | | å¤ä¸ªsheet导å
¥ |
| | | </summary> |
| | | <param name="fileUrl"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.NPOIHelper.GetExcelDatatableListName(System.String)"> |
| | | <summary> |
| | | å¤ä¸ªsheet导å
¥ |
| | | </summary> |
| | | <param name="fileUrl"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="F:VueWebApi.Tools.RedisHelper.RedisIpConnString"> |
| | | <summary> |
| | | redisè·åè¿æ¥é
ç½®å符串 |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.CreateManager(System.String[],System.String[])"> |
| | | <summary> |
| | | ç¼å²æ± |
| | | </summary> |
| | | <param name="readWriteHosts"></param> |
| | | <param name="readOnlyHosts"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.#cctor"> |
| | | <summary> |
| | | æé 彿° |
| | | </summary> |
| | | <param name="openPooledRedis">æ¯å¦å¼å¯ç¼å²æ± </param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.Set``1(System.String,``0,System.Int32,System.Int32)"> |
| | | <summary> |
| | | 设置ç¼å |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="key">ç¼å建</param> |
| | | <param name="t">ç¼åå¼</param> |
| | | <param name="timeout">è¿ææ¶é´ï¼åä½ç§,-1ï¼ä¸è¿æï¼0ï¼é»è®¤è¿ææ¶é´</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.KeyExpire(System.String,System.Int32)"> |
| | | <summary> |
| | | è®¾ç½®å¤±ææ¶é´ |
| | | </summary> |
| | | <param name="key"></param> |
| | | <param name="expiry"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.Get``1(System.String,System.Int32)"> |
| | | <summary> |
| | | è·å |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="key"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.Remove(System.String,System.Int32)"> |
| | | <summary> |
| | | å é¤ |
| | | </summary> |
| | | <param name="key"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.AddList``1(System.String,System.Collections.Generic.IEnumerable{``0},System.Int32)"> |
| | | <summary> |
| | | æ ¹æ®IEnumerableæ°æ®æ·»å é¾è¡¨ |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="listId"></param> |
| | | <param name="values"></param> |
| | | <param name="timeout"></param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.AddEntityToList``1(System.String,``0,System.Int32,System.Int32)"> |
| | | <summary> |
| | | æ·»å å个å®ä½å°é¾è¡¨ä¸ |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="listId"></param> |
| | | <param name="Item"></param> |
| | | <param name="timeout"></param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.GetList``1(System.String,System.Int32)"> |
| | | <summary> |
| | | è·åé¾è¡¨ |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="listId"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.RemoveEntityFromList``1(System.String,``0,System.Int32)"> |
| | | <summary> |
| | | å¨é¾è¡¨ä¸å é¤å个å®ä½ |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="listId"></param> |
| | | <param name="t"></param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.RedisHelper.RemoveEntityFromList``1(System.String,System.Func{``0,System.Boolean})"> |
| | | <summary> |
| | | æ ¹æ®lambada表达å¼å é¤ç¬¦åæ¡ä»¶çå®ä½ |
| | | </summary> |
| | | <typeparam name="T"></typeparam> |
| | | <param name="listId"></param> |
| | | <param name="func"></param> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ScanStartReport.ZZEncodingSeach(System.String,System.String)"> |
| | | <summary> |
| | | æ«ç ä¿¡æ¯ä¸ºå·¥å+å·¥åºæ¡ç |
| | | </summary> |
| | | <param name="ordercode">å·¥åç¼å·</param> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.ScanStartReport.WXEncodingSeach(System.String,System.String,System.String)"> |
| | | <summary> |
| | | çäº§å¼æ¥å·¥:å¤åå·¥åºä»»å¡å¼æ¥å·¥å¤æ:å·¥åå·+å·¥åº |
| | | </summary> |
| | | <param name="OperType">æä½ç±»å</param> |
| | | <param name="ordercode">å·¥åç¼å·</param> |
| | | <param name="stepcode">å·¥åºç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.SeachEncode.EncodingSeach(System.String)"> |
| | | <summary> |
| | | æ ¹æ®åè½ç¼ç è·åææ°è§åç¼ç |
| | | </summary> |
| | | <param name="rightcode">åè½ç¼ç </param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Tools.SeachEncode.RightLocation(System.String,System.String)"> |
| | | <summary> |
| | | æ ¹æ®è§è²ç¼ç æ¥è¯¢åè½èå |
| | | </summary> |
| | | <param name="rolecode"></param> |
| | | <param name="type"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Util.ObjectValueParser`1"> |
| | | <summary> |
| | | å¼è½¬æ¢å¨ |
| | | </summary> |
| | | <typeparam name="T">æå®å¼çç±»å</typeparam> |
| | | <param name="obj">å弿¥æº</param> |
| | | <returns>è¿åæå®ç±»åçå¼</returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Util.ObjectValueTryParser`1"> |
| | | <summary> |
| | | å°è¯å°å¼è½¬æ¢ææå®ç±»å è¿å转æ¢ç»æ |
| | | </summary> |
| | | <typeparam name="T">æå®å¼çç±»å</typeparam> |
| | | <param name="obj">å弿¥æº</param> |
| | | <param name="valueOutput">è¥è½¬æ¢æå åout转æ¢ç»æ å¦å outé»è®¤Tç±»åå¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Util.StringValueParser`1"> |
| | | <summary> |
| | | å°è¯å°å¼è½¬æ¢ææå®ç±»å è¿å转æ¢ç»æ |
| | | </summary> |
| | | <typeparam name="T">æå®å¼çç±»å</typeparam> |
| | | <param name="str">å弿¥æºå符串</param> |
| | | <returns>è¿åæå®ç±»åçå¼</returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Util.StringValueTryParser`1"> |
| | | <summary> |
| | | å°è¯å°å¼è½¬æ¢ææå®ç±»å è¿åè½¬æ¢æåä¸å¦ |
| | | </summary> |
| | | <typeparam name="T">æå®å¼çç±»å</typeparam> |
| | | <param name="str">å弿¥æºå符串</param> |
| | | <param name="valueOutput">è¥è½¬æ¢æå åout转æ¢ç»æ å¦å outé»è®¤Tç±»åå¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:VueWebApi.Util.EntityHelper"> |
| | | <summary> |
| | | å®ä½å¸®å©ç±» |
| | | </summary> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetObject(System.Data.DataRow,System.String)"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæå®ååçå¼ |
| | | </summary> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">æå®åå</param> |
| | | <returns>è¥æå®çåååå¨å¹¶ææåè¿ååå°ç对象ï¼è¥æå®ååä¸å卿è
ä¸ºæ ææ°æ®åè¿ånull</returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetT``1(System.Data.DataRow,System.String,``0,VueWebApi.Util.ObjectValueParser{``0})"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæå®å¼ç¨ç±»åçå¼ |
| | | </summary> |
| | | <typeparam name="T">æå®ç±»åçå¼</typeparam> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨ è¥ç»å®çå¼è½¬æ¢å¨ä¸ºnullï¼å使ç¨as强å¶è½¬æ¢ï¼è¥as转æ¢ä¸ºnull åè¿åé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.Get``1(System.Object,``0,VueWebApi.Util.ObjectValueParser{``0})"> |
| | | <summary> |
| | | å°å¯¹è±¡è½¬æ¢ä¸ºæå®ç±»åæ°æ® 转æ¢å¤±è´¥è¿å设置çé»è®¤å¼ |
| | | </summary> |
| | | <typeparam name="T">æå®çç±»å</typeparam> |
| | | <param name="source">æ°æ®æº</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨ è¥ç»å®çå¼è½¬æ¢å¨ä¸ºnullï¼å使ç¨as强å¶è½¬æ¢ï¼è¥as转æ¢ä¸ºnull åè¿åé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.TryGetT``1(System.Data.DataRow,System.String,``0,VueWebApi.Util.ObjectValueTryParser{``0})"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæå®å¼ç¨ç±»åçå¼ |
| | | </summary> |
| | | <typeparam name="T">æå®çç±»å</typeparam> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨ è¥ç»å®çå¼è½¬æ¢å¨ä¸ºnullï¼å使ç¨as强å¶è½¬æ¢ï¼è¥as转æ¢ä¸ºnull åè¿åé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.TryGetT``1(System.Object,``0,VueWebApi.Util.ObjectValueTryParser{``0})"> |
| | | <summary> |
| | | å°å¯¹è±¡å°è¯è½¬æ¢ä¸ºæå®ç±»åçæ°æ® è½¬æ¢å¤±è´¥è¿åæå®çé»è®¤å¼ |
| | | </summary> |
| | | <typeparam name="T">æå®çç±»å</typeparam> |
| | | <param name="source">æ°æ®æº</param> |
| | | <param name="defVal">é»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨ è¥ç»å®çå¼è½¬æ¢å¨ä¸ºnullï¼å使ç¨as强å¶è½¬æ¢ï¼è¥as转æ¢ä¸ºnull åè¿åé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetT``1(System.Data.DataRow,System.String,``0,VueWebApi.Util.StringValueParser{``0})"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæå®å¼ç±»åçå¼ |
| | | </summary> |
| | | <typeparam name="T">æå®ç±»åçå¼</typeparam> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetT``1(System.Object,``0,VueWebApi.Util.StringValueParser{``0})"> |
| | | <summary> |
| | | å°å¯¹è±¡è½¬æ¢ä¸ºæå®ç±»åæ°æ® 转æ¢å¤±è´¥è¿å设置çé»è®¤å¼ |
| | | </summary> |
| | | <typeparam name="T">æå®çç±»å</typeparam> |
| | | <param name="source">æ°æ®æº</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.TryGetT``1(System.Data.DataRow,System.String,``0,VueWebApi.Util.StringValueTryParser{``0})"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæå®å¼ç±»åçå¼ |
| | | </summary> |
| | | <typeparam name="T">æå®ç±»åçå¼</typeparam> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.TryGetT``1(System.Object,``0,VueWebApi.Util.StringValueTryParser{``0})"> |
| | | <summary> |
| | | å°å¯¹è±¡å°è¯è½¬æ¢ä¸ºæå®ç±»åçæ°æ® è½¬æ¢å¤±è´¥è¿åæå®çé»è®¤å¼ |
| | | </summary> |
| | | <typeparam name="T">æå®çç±»å</typeparam> |
| | | <param name="obj">æ°æ®æº</param> |
| | | <param name="defVal">é»è®¤å¼</param> |
| | | <param name="parser">å¼è½¬æ¢å¨</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetString(System.Data.DataRow,System.String,System.String)"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åå符串 |
| | | </summary> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetString(System.Object,System.String)"> |
| | | <summary> |
| | | è·åå符串 æ£æµ æ°æ®æºä¸ºç©ºæ¶è¿åé»è®¤å¼ |
| | | </summary> |
| | | <param name="source">æ°æ®æº</param> |
| | | <param name="defVal">é»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetInt(System.Data.DataRow,System.String,System.Int32)"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæ´æ° |
| | | </summary> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetInt(System.Object,System.Int32)"> |
| | | <summary> |
| | | 仿°æ®åè·åæ´æ° |
| | | </summary> |
| | | <param name="source">æ°æ®æº</param> |
| | | <param name="defVal">è·å失败æ¶çé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetDateTime(System.Data.DataRow,System.String,System.DateTime)"> |
| | | <summary> |
| | | ä»ä¸è¡æ°æ®ä¸å°è¯è·åæ¥æ |
| | | </summary> |
| | | <param name="dr">æºæ°æ®è¡</param> |
| | | <param name="columnName">åå</param> |
| | | <param name="defVal">åæ ææ¶è¿åçé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:VueWebApi.Util.EntityHelper.GetDateTime(System.Object,System.DateTime)"> |
| | | <summary> |
| | | 仿°æ®æºä¸ è·åæ¥æ |
| | | </summary> |
| | | <param name="source">æ°æ®æº</param> |
| | | <param name="defVal">è·å失败æ¶çé»è®¤å¼</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:ControllerGroupAttribute"> |
| | | <summary> |
| | | Controlleræè¿°ä¿¡æ¯ |
| | | </summary> |
| | | </member> |
| | | <member name="P:ControllerGroupAttribute.GroupName"> |
| | | <summary> |
| | | å½åControlleræå±æ¨¡å 请ç¨ä¸æ |
| | | </summary> |
| | | </member> |
| | | <member name="P:ControllerGroupAttribute.Useage"> |
| | | <summary> |
| | | å½åcontrollerç¨é 请ç¨ä¸æ |
| | | </summary> |
| | | </member> |
| | | <member name="M:ControllerGroupAttribute.#ctor(System.String,System.String)"> |
| | | <summary> |
| | | Controlleræè¿°ä¿¡æ¯ æé |
| | | </summary> |
| | | <param name="groupName">模ååç§°</param> |
| | | <param name="useage">å½åcontrollerç¨é</param> |
| | | </member> |
| | | <member name="T:HiddenApiAttribute"> |
| | | <summary> |
| | | éèæ¥å£ï¼ä¸çæå°swaggerææ¡£å±ç¤º |
| | | </summary> |
| | | <seealso cref="T:System.Attribute" /> |
| | | </member> |
| | | <member name="T:HiddenApiFilter"> |
| | | <summary> |
| | | Class HiddenApiFilter. |
| | | </summary> |
| | | <seealso cref="T:Swashbuckle.Swagger.IDocumentFilter" /> |
| | | </member> |
| | | <member name="M:HiddenApiFilter.Apply(Swashbuckle.Swagger.SwaggerDocument,Swashbuckle.Swagger.SchemaRegistry,System.Web.Http.Description.IApiExplorer)"> |
| | | <summary> |
| | | éåApplyæ¹æ³ï¼ç§»é¤éèæ¥å£ççæ |
| | | </summary> |
| | | <param name="swaggerDoc">swaggerææ¡£æä»¶</param> |
| | | <param name="schemaRegistry"></param> |
| | | <param name="apiExplorer">apiæ¥å£éå</param> |
| | | </member> |
| | | <member name="T:HttpAuthHeaderFilter"> |
| | | <summary> |
| | | swagger å¢å AUTH é项 |
| | | </summary> |
| | | </member> |
| | | <member name="M:HttpAuthHeaderFilter.Apply(Swashbuckle.Swagger.Operation,Swashbuckle.Swagger.SchemaRegistry,System.Web.Http.Description.ApiDescription)"> |
| | | <summary> |
| | | åºç¨ |
| | | </summary> |
| | | <param name="operation"></param> |
| | | <param name="schemaRegistry"></param> |
| | | <param name="apiDescription"></param> |
| | | </member> |
| | | <member name="T:SwaggerControllerDescProvider"> |
| | | <summary> |
| | | swaggeræ¾ç¤ºæ§å¶å¨çæè¿° |
| | | </summary> |
| | | </member> |
| | | <member name="M:SwaggerControllerDescProvider.#ctor(Swashbuckle.Swagger.ISwaggerProvider,System.String)"> |
| | | <summary> |
| | | |
| | | </summary> |
| | | <param name="swaggerProvider"></param> |
| | | <param name="xml">xmlææ¡£è·¯å¾</param> |
| | | </member> |
| | | <member name="M:SwaggerControllerDescProvider.GetSwagger(System.String,System.String)"> |
| | | <summary> |
| | | Gets the swagger. |
| | | </summary> |
| | | <param name="rootUrl">The root URL.</param> |
| | | <param name="apiVersion">The API version.</param> |
| | | <returns>SwaggerDocument.</returns> |
| | | </member> |
| | | <member name="M:SwaggerControllerDescProvider.GetControllerDesc"> |
| | | <summary> |
| | | ä»APIææ¡£ä¸è¯»åæ§å¶å¨æè¿° |
| | | </summary> |
| | | <returns>æææ§å¶å¨æè¿°</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <Report ScriptLanguage="CSharp" ReportInfo.Created="10/16/2018 18:08:59" ReportInfo.Modified="07/26/2022 14:37:33" ReportInfo.CreatorVersion="2014.2.3.0" PrintSettings.ShowDialog="false"> |
| | | <Dictionary> |
| | | <XmlDataConnection Name="Connection" ConnectionString="rijcmlqmmfdjkQxfe1iwShBNGpud2ngqn0kQFUwlWvLE3W/iceu9kzGbruXJ5I6r8tOQvypOEky6erzZZQtihg2HYGClg=="> |
| | | <TableDataSource Name="Table11" Alias="Table1" DataType="System.Int32" Enabled="true" TableName="Table1"> |
| | | <Column Name="SEQ" Alias="seq" DataType="System.String" PropName="WO"/> |
| | | <Column Name="WO_CODE" Alias="wo_code" DataType="System.String" PropName="QTY"/> |
| | | <Column Name="PARTCODE" Alias="paetcode" DataType="System.String" PropName="PN_NAME"/> |
| | | <Column Name="PARTNAME" Alias="partname" DataType="System.String" PropName="PN_DESC"/> |
| | | <Column Name="PN_PARTNUMBER" Enabled="false" DataType="System.String" PropName="PN_PARTNAME"/> |
| | | <Column Name="PARTSPEC" Alias="partspec" DataType="System.String" PropName="Column"/> |
| | | <Column Name="ROUTENAME" Alias="routename" DataType="System.String" PropName="Column"/> |
| | | <Column Name="ORDERQTY" Alias="orderqty" DataType="System.String" PropName="Column"/> |
| | | <Column Name="LM_USER" Alias="lm_user" DataType="System.String" PropName="Column"/> |
| | | <Column Name="LM_DATE" Alias="lm_date" DataType="System.String" PropName="Column"/> |
| | | <Column Name="STEPCODE" Alias="stepcode" DataType="System.String" PropName="Column"/> |
| | | <Column Name="STEPNAME" Alias="stepname" DataType="System.String" PropName="Column1"/> |
| | | <Column Name="PLAN_QTY" Alias="plan_qty" DataType="System.String" PropName="Column2"/> |
| | | <Column Name="GOOD_QTY" Alias="good_qty" DataType="System.String" PropName="Column"/> |
| | | <Column Name="NG_QTY" Alias="ng_qty" DataType="System.String" PropName="Column1"/> |
| | | <Column Name="STEPQRCODE" Alias="stepqrcode" DataType="System.String" PropName="Column"/> |
| | | </TableDataSource> |
| | | </XmlDataConnection> |
| | | </Dictionary> |
| | | <ReportPage Name="Page1" RawPaperSize="9"> |
| | | <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="160.65"> |
| | | <BarcodeObject Name="Barcode1" Left="585.9" Top="18.9" Width="106.55" Height="97.1" AutoSize="false" DataColumn="Table1.wo_code" Text="" ShowText="false" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/> |
| | | <TextObject Name="Text7" Left="253.26" Top="3.78" Width="226.8" Height="28.35" Text="æµç¨å" HorzAlign="Center" VertAlign="Center" Font="微软é
é», 14.25pt"/> |
| | | <TextObject Name="Text54" Left="81.95" Top="37.8" Width="141.75" Height="18.9" Text="[Table1.wo_code]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text3" Left="81.95" Top="60.48" Width="141.75" Height="18.9" Text="[Table1.partname]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text39" Left="318.2" Top="37.8" Width="141.75" Height="18.9" Text="[Table1.paetcode]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text48" Left="18.9" Top="37.8" Width="66.15" Height="18.9" Text="å·¥åç¼å·ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text1" Left="18.9" Top="60.48" Width="66.15" Height="18.9" Text="产ååç§°ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text38" Left="255.15" Top="37.8" Width="66.15" Height="18.9" Text="产åç¼ç ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text55" Left="81.95" Top="85.05" Width="141.75" Height="18.9" Text="[Table1.orderqty]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text56" Left="18.9" Top="85.05" Width="66.15" Height="18.9" Text="工忰éï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text57" Left="318.2" Top="56.7" Width="141.75" Height="18.9" Text="[Table1.partspec]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text58" Left="255.15" Top="56.7" Width="66.15" Height="18.9" Text="产åè§æ ¼ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text59" Left="318.2" Top="85.05" Width="141.75" Height="18.9" Text="[Table1.routename]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text60" Left="255.15" Top="85.05" Width="66.15" Height="18.9" Text="å·¥èºè·¯çº¿ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text61" Left="81.95" Top="113.4" Width="141.75" Height="18.9" Text="[Table1.lm_user]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text62" Left="18.9" Top="113.4" Width="66.15" Height="18.9" Text="æå°äººåï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text63" Left="318.2" Top="113.4" Width="141.75" Height="18.9" Text="[Table1.lm_date]" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | <TextObject Name="Text64" Left="255.15" Top="113.4" Width="66.15" Height="18.9" Text="æå°æ¶é´ï¼" AutoWidth="true" HorzAlign="Right" VertAlign="Center" Font="微软é
é», 8pt"/> |
| | | </ReportTitleBand> |
| | | <PageHeaderBand Name="PageHeader1" Top="164.65" Width="718.2" Height="35.91"> |
| | | <TableObject Name="Table1" Width="718.17" Height="35.91" Border.Lines="All"> |
| | | <TableColumn Name="Column1" Width="73.23"/> |
| | | <TableColumn Name="Column2" Width="92.13"/> |
| | | <TableColumn Name="Column3" Width="129.93"/> |
| | | <TableColumn Name="Column4" Width="82.68"/> |
| | | <TableColumn Name="Column45" Width="94.5"/> |
| | | <TableColumn Name="Column46" Width="94.5"/> |
| | | <TableColumn Name="Column47" Width="151.2"/> |
| | | <TableRow Name="Row1" Height="35.91"> |
| | | <TableCell Name="Cell1" Border.Lines="Right" Fill.Color="Gainsboro" Text="å·¥åºå·" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell2" Border.Lines="Right" Fill.Color="Gainsboro" Text="å·¥åºäºç»´ç " HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell3" Border.Lines="Right" Fill.Color="Gainsboro" Text="å·¥åº" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell4" Border.Lines="Right" Fill.Color="Gainsboro" Text="å å·¥æ°é" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell221" Border.Lines="Right" Fill.Color="Gainsboro" Text="åæ ¼æ°é" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell222" Border.Lines="Right" Fill.Color="Gainsboro" Text="ä¸è¯æ°é" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell223" Fill.Color="Gainsboro" Text="夿³¨" HorzAlign="Center" VertAlign="Center"/> |
| | | </TableRow> |
| | | </TableObject> |
| | | </PageHeaderBand> |
| | | <DataBand Name="Data1" Top="204.56" Width="718.2" Height="45.36" DataSource="Table11"> |
| | | <TableObject Name="Table12" Width="718.17" Height="45.36" Border.Lines="All"> |
| | | <TableColumn Name="Column48" Width="73.23"/> |
| | | <TableColumn Name="Column49" Width="92.13"/> |
| | | <TableColumn Name="Column50" Width="129.93"/> |
| | | <TableColumn Name="Column51" Width="82.68"/> |
| | | <TableColumn Name="Column52" Width="94.5"/> |
| | | <TableColumn Name="Column53" Width="94.5"/> |
| | | <TableColumn Name="Column54" Width="151.2"/> |
| | | <TableRow Name="Row2" Height="45.36"> |
| | | <TableCell Name="Cell224" Border.Lines="Right" Text="[Table1.seq]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell225" Border.Lines="Right" HorzAlign="Center" VertAlign="Center"> |
| | | <BarcodeObject Name="Barcode2" Left="18.9" Top="3.02" Width="60.48" Height="41.58" AutoSize="false" DataColumn="Table1.stepqrcode" Text="" ShowText="false" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/> |
| | | </TableCell> |
| | | <TableCell Name="Cell226" Border.Lines="Right" Text="[Table1.stepname]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell227" Border.Lines="Right" Text="[Table1.plan_qty]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell228" Border.Lines="Right" Text="[Table1.good_qty]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell229" Border.Lines="Right" Text="[Table1.ng_qty]" HorzAlign="Center" VertAlign="Center"/> |
| | | <TableCell Name="Cell230" HorzAlign="Center" VertAlign="Center"/> |
| | | </TableRow> |
| | | </TableObject> |
| | | </DataBand> |
| | | </ReportPage> |
| | | </Report> |
| | |
| | | </appSettings> |
| | | <system.web> |
| | | <compilation debug="true" targetFramework="4.6.1" /> |
| | | <customErrors mode="Off"/> |
| | | <customErrors mode="Off" /> |
| | | <httpRuntime targetFramework="4.6.1" /> |
| | | <!--sessionå¤±ææ¶é´--> |
| | | <sessionState mode="InProc" timeout="240"> |
| | |
| | | <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.0.0.0" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> |
| | | </dependentAssembly> |
| | | </assemblyBinding> |
| | | </runtime> |
| | | <system.codedom> |
| | |
| | | <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion="4.0.0.0" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" /> |
| | | </dependentAssembly> |
| | | <dependentAssembly> |
| | | <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> |
| | | <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> |
| | | </dependentAssembly> |
| | | </assemblyBinding> |
| | | </runtime> |
| | | <system.codedom> |
| | |
| | | 20fce33fd342e469daac51efb4a3d8765365c620 |
| | | 698d89f244c7cde8c23a3c191fa4ccdee5879c01 |
| | |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\VueWebApi.dll.config |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\VueWebApi.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\VueWebApi.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\VueWebApi.pdb |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\roslyn\csc.exe |
| | |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\roslyn\vbc.rsp |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\roslyn\VBCSCompiler.exe |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\roslyn\VBCSCompiler.exe.config |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Win32.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\netstandard.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.AppContext.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Collections.Concurrent.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Collections.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Collections.NonGeneric.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Collections.Specialized.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.ComponentModel.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.ComponentModel.EventBasedAsync.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.ComponentModel.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.ComponentModel.TypeConverter.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Console.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Data.Common.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.Contracts.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.Debug.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.FileVersionInfo.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.Process.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.StackTrace.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.TextWriterTraceListener.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.Tools.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.TraceSource.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.Tracing.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Drawing.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Dynamic.Runtime.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Globalization.Calendars.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Globalization.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Globalization.Extensions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.Compression.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.Compression.ZipFile.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.FileSystem.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.FileSystem.DriveInfo.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.FileSystem.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.FileSystem.Watcher.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.IsolatedStorage.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.MemoryMappedFiles.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.Pipes.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.UnmanagedMemoryStream.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Linq.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Linq.Expressions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Linq.Parallel.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Linq.Queryable.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Http.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.NameResolution.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.NetworkInformation.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Ping.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Requests.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Security.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Sockets.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.WebHeaderCollection.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.WebSockets.Client.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.WebSockets.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.ObjectModel.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Reflection.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Reflection.Extensions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Reflection.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Resources.Reader.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Resources.ResourceManager.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Resources.Writer.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.CompilerServices.VisualC.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Extensions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Handles.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.InteropServices.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.InteropServices.RuntimeInformation.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Numerics.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Serialization.Formatters.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Serialization.Json.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Serialization.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.Serialization.Xml.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Claims.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Cryptography.Algorithms.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Cryptography.Csp.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Cryptography.Encoding.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Cryptography.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Cryptography.X509Certificates.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.Principal.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Security.SecureString.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Text.Encoding.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Text.Encoding.Extensions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Text.RegularExpressions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Overlapped.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Tasks.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Tasks.Parallel.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Thread.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.ThreadPool.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Timer.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.ValueTuple.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Xml.ReaderWriter.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Xml.XDocument.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Xml.XmlDocument.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Xml.XmlSerializer.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Xml.XPath.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Xml.XPath.XDocument.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Antlr3.Runtime.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\BouncyCastle.Crypto.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Dapper.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Bars.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Editor.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Service.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.VSDesign.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Web.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\ICSharpCode.SharpZipLib.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\JWT.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\log4net.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Http.Abstractions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Http.Features.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Mvc.Abstractions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Routing.Abstractions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Bcl.AsyncInterfaces.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Extensions.Primitives.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Net.Http.Headers.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Web.Infrastructure.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Newtonsoft.Json.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\NPOI.dll |
| | |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\StackExchange.Redis.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Swashbuckle.Core.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Buffers.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.CodeDom.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.PerformanceCounter.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.Compression.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.Pipelines.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Memory.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Http.Formatting.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Numerics.Vectors.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.CompilerServices.Unsafe.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.InteropServices.RuntimeInformation.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Text.Encodings.Web.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Channels.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Tasks.Extensions.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Web.Cors.dll |
| | |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Web.WebPages.Razor.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\WebActivatorEx.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\WebGrease.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Bars.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Editor.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\BouncyCastle.Crypto.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Dapper.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Service.dll.config |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\FastReport.Web.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\ICSharpCode.SharpZipLib.pdb |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\ICSharpCode.SharpZipLib.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\JWT.pdb |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\JWT.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\log4net.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Http.Abstractions.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Http.Features.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Mvc.Abstractions.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.AspNetCore.Routing.Abstractions.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Bcl.AsyncInterfaces.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Extensions.Primitives.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Microsoft.Net.Http.Headers.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\Newtonsoft.Json.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\NPOI.pdb |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\NPOI.xml |
| | |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\ServiceStack.Text.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\StackExchange.Redis.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Buffers.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.CodeDom.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Diagnostics.PerformanceCounter.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.IO.Pipelines.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Memory.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Net.Http.Formatting.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Numerics.Vectors.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Runtime.CompilerServices.Unsafe.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Text.Encodings.Web.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Channels.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Threading.Tasks.Extensions.xml |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\System.Web.Http.xml |
| | |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\zh-Hans\System.Web.WebPages.resources.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\zh-Hans\System.Web.WebPages.Deployment.resources.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\bin\zh-Hans\System.Web.WebPages.Razor.resources.dll |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\obj\Release\VueWebApi.csproj.AssemblyReference.cache |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\obj\Release\VueWebApi.csproj.CoreCompileInputs.cache |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\obj\Release\VueWebApi.csproj.CopyComplete |
| | | D:\æ°å¯è¿ªMES\VueWebApi\VueWebApi\obj\Release\VueWebApi.dll |
| | |
| | | <package id="Microsoft.AspNet.WebApi.WebHost.zh-Hans" version="5.2.9" targetFramework="net461" /> |
| | | <package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net461" /> |
| | | <package id="Microsoft.AspNet.WebPages.zh-Hans" version="3.2.7" targetFramework="net461" /> |
| | | <package id="Microsoft.AspNetCore.Http.Abstractions" version="2.2.0" targetFramework="net461" /> |
| | | <package id="Microsoft.AspNetCore.Http.Features" version="2.2.0" targetFramework="net461" /> |
| | | <package id="Microsoft.AspNetCore.Mvc.Abstractions" version="2.2.0" targetFramework="net461" /> |
| | | <package id="Microsoft.AspNetCore.Routing.Abstractions" version="2.2.0" targetFramework="net461" /> |
| | | <package id="Microsoft.Bcl.AsyncInterfaces" version="5.0.0" targetFramework="net461" /> |
| | | <package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="2.0.1" targetFramework="net461" /> |
| | | <package id="Microsoft.Extensions.Primitives" version="2.2.0" targetFramework="net461" /> |
| | | <package id="Microsoft.Net.Http.Headers" version="2.2.0" targetFramework="net461" /> |
| | | <package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" /> |
| | | <package id="Modernizr" version="2.8.3" targetFramework="net461" /> |
| | | <package id="Newtonsoft.Json" version="12.0.2" targetFramework="net461" /> |
| | |
| | | <package id="Swashbuckle" version="5.6.0" targetFramework="net461" /> |
| | | <package id="Swashbuckle.Core" version="5.6.0" targetFramework="net461" /> |
| | | <package id="System.Buffers" version="4.5.1" targetFramework="net461" /> |
| | | <package id="System.CodeDom" version="6.0.0" targetFramework="net461" /> |
| | | <package id="System.Diagnostics.PerformanceCounter" version="5.0.0" targetFramework="net461" /> |
| | | <package id="System.IO.Compression" version="4.3.0" targetFramework="net461" /> |
| | | <package id="System.IO.Pipelines" version="5.0.1" targetFramework="net461" /> |
| | | <package id="System.Management" version="6.0.0" targetFramework="net461" /> |
| | | <package id="System.Memory" version="4.5.4" targetFramework="net461" /> |
| | | <package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net461" /> |
| | | <package id="System.Runtime.CompilerServices.Unsafe" version="4.5.3" targetFramework="net461" /> |
| | | <package id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" targetFramework="net461" /> |
| | | <package id="System.Text.Encodings.Web" version="4.5.0" targetFramework="net461" /> |
| | | <package id="System.Threading.Channels" version="5.0.0" targetFramework="net461" /> |
| | | <package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net461" /> |
| | | <package id="WebActivatorEx" version="2.0" targetFramework="net461" /> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.AspNetCore.Http.Abstractions</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:Microsoft.Extensions.Internal.ActivatorUtilities"> |
| | | <summary> |
| | | Helper code for the various activator services. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type,System.Object[])"> |
| | | <summary> |
| | | Instantiate a type with constructor arguments provided directly and/or from an <see cref="T:System.IServiceProvider"/>. |
| | | </summary> |
| | | <param name="provider">The service provider used to resolve dependencies</param> |
| | | <param name="instanceType">The type to activate</param> |
| | | <param name="parameters">Constructor arguments not provided by the <paramref name="provider"/>.</param> |
| | | <returns>An activated object of type instanceType</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateFactory(System.Type,System.Type[])"> |
| | | <summary> |
| | | Create a delegate that will instantiate a type with constructor arguments provided directly |
| | | and/or from an <see cref="T:System.IServiceProvider"/>. |
| | | </summary> |
| | | <param name="instanceType">The type to activate</param> |
| | | <param name="argumentTypes"> |
| | | The types of objects, in order, that will be passed to the returned function as its second parameter |
| | | </param> |
| | | <returns> |
| | | A factory that will instantiate instanceType using an <see cref="T:System.IServiceProvider"/> |
| | | and an argument array containing objects matching the types defined in argumentTypes |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateInstance``1(System.IServiceProvider,System.Object[])"> |
| | | <summary> |
| | | Instantiate a type with constructor arguments provided directly and/or from an <see cref="T:System.IServiceProvider"/>. |
| | | </summary> |
| | | <typeparam name="T">The type to activate</typeparam> |
| | | <param name="provider">The service provider used to resolve dependencies</param> |
| | | <param name="parameters">Constructor arguments not provided by the <paramref name="provider"/>.</param> |
| | | <returns>An activated object of type T</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.GetServiceOrCreateInstance``1(System.IServiceProvider)"> |
| | | <summary> |
| | | Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly. |
| | | </summary> |
| | | <typeparam name="T">The type of the service</typeparam> |
| | | <param name="provider">The service provider used to resolve dependencies</param> |
| | | <returns>The resolved service or created instance</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)"> |
| | | <summary> |
| | | Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly. |
| | | </summary> |
| | | <param name="provider">The service provider</param> |
| | | <param name="type">The type of the service</param> |
| | | <returns>The resolved service or created instance</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Internal.ActivatorUtilitiesConstructorAttribute"> |
| | | <summary> |
| | | Marks the constructor to be used when activating type using <see cref="T:Microsoft.Extensions.Internal.ActivatorUtilities"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Internal.ObjectFactory"> |
| | | <summary> |
| | | The result of <see cref="M:Microsoft.Extensions.Internal.ActivatorUtilities.CreateFactory(System.Type,System.Type[])"/>. |
| | | </summary> |
| | | <param name="serviceProvider">The <see cref="T:System.IServiceProvider"/> to get service arguments from.</param> |
| | | <param name="arguments">Additional constructor arguments.</param> |
| | | <returns>The instantiated type.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo"> |
| | | <summary> |
| | | Used to store the results of an Authenticate call. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo.Principal"> |
| | | <summary> |
| | | The <see cref="T:System.Security.Claims.ClaimsPrincipal"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo.Properties"> |
| | | <summary> |
| | | The <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo.Description"> |
| | | <summary> |
| | | The <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"> |
| | | <summary> |
| | | Contains information describing an authentication provider. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.#ctor"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"/> class |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription"/> class |
| | | </summary> |
| | | <param name="items"></param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.Items"> |
| | | <summary> |
| | | Contains metadata about the authentication provider. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.AuthenticationScheme"> |
| | | <summary> |
| | | Gets or sets the name used to reference the authentication middleware instance. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription.DisplayName"> |
| | | <summary> |
| | | Gets or sets the display name for the authentication provider. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.Authentication.AuthenticationManager.AutomaticScheme"> |
| | | <summary> |
| | | Constant used to represent the automatic scheme |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationManager.ForbidAsync"> |
| | | <summary> |
| | | Creates a challenge for the authentication manager with <see cref="F:Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior.Forbidden"/>. |
| | | </summary> |
| | | <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous challenge operation.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationManager.ForbidAsync(Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties)"> |
| | | <summary> |
| | | Creates a challenge for the authentication manager with <see cref="F:Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior.Forbidden"/>. |
| | | </summary> |
| | | <param name="properties">Additional arbitrary values which may be used by particular authentication types.</param> |
| | | <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous challenge operation.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"> |
| | | <summary> |
| | | Dictionary used to store state values about the authentication session. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.#ctor"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"/> class |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties"/> class |
| | | </summary> |
| | | <param name="items"></param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.Items"> |
| | | <summary> |
| | | State values about the authentication session. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.IsPersistent"> |
| | | <summary> |
| | | Gets or sets whether the authentication session is persisted across multiple requests. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.RedirectUri"> |
| | | <summary> |
| | | Gets or sets the full path or absolute URI to be used as an HTTP redirect response value. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.IssuedUtc"> |
| | | <summary> |
| | | Gets or sets the time at which the authentication ticket was issued. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.ExpiresUtc"> |
| | | <summary> |
| | | Gets or sets the time at which the authentication ticket expires. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties.AllowRefresh"> |
| | | <summary> |
| | | Gets or sets if refreshing the authentication session should be allowed. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ConnectionInfo.Id"> |
| | | <summary> |
| | | Gets or sets a unique identifier to represent this connection. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.CookieBuilder"> |
| | | <summary> |
| | | Defines settings used to create a cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Name"> |
| | | <summary> |
| | | The name of the cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Path"> |
| | | <summary> |
| | | The cookie path. |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Path"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Domain"> |
| | | <summary> |
| | | The domain to associate the cookie with. |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.HttpOnly"> |
| | | <summary> |
| | | Indicates whether a cookie is accessible by client-side script. |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.HttpOnly"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.SameSite"> |
| | | <summary> |
| | | The SameSite attribute of the cookie. The default value is <see cref="F:Microsoft.AspNetCore.Http.SameSiteMode.Lax"/> |
| | | </summary> |
| | | <remarks> |
| | | Determines the value that will set on <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.SameSite"/>. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.SecurePolicy"> |
| | | <summary> |
| | | The policy that will be used to determine <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Secure"/>. |
| | | This is determined from the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> passed to <see cref="M:Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext,System.DateTimeOffset)"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.Expiration"> |
| | | <summary> |
| | | Gets or sets the lifespan of a cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.MaxAge"> |
| | | <summary> |
| | | Gets or sets the max-age for the cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieBuilder.IsEssential"> |
| | | <summary> |
| | | Indicates if this cookie is essential for the application to function correctly. If true then |
| | | consent policy checks may be bypassed. The default value is false. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Creates the cookie options from the given <paramref name="context"/>. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.</param> |
| | | <returns>The cookie options.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext,System.DateTimeOffset)"> |
| | | <summary> |
| | | Creates the cookie options from the given <paramref name="context"/> with an expiration based on <paramref name="expiresFrom"/> and <see cref="P:Microsoft.AspNetCore.Http.CookieBuilder.Expiration"/>. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.</param> |
| | | <param name="expiresFrom">The time to use as the base for computing <seealso cref="P:Microsoft.AspNetCore.Http.CookieOptions.Expires" />.</param> |
| | | <returns>The cookie options.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.CookieSecurePolicy"> |
| | | <summary> |
| | | Determines how cookie security properties are set. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.CookieSecurePolicy.SameAsRequest"> |
| | | <summary> |
| | | If the URI that provides the cookie is HTTPS, then the cookie will only be returned to the server on |
| | | subsequent HTTPS requests. Otherwise if the URI that provides the cookie is HTTP, then the cookie will |
| | | be returned to the server on all HTTP and HTTPS requests. This is the default value because it ensures |
| | | HTTPS for all authenticated requests on deployed servers, and also supports HTTP for localhost development |
| | | and for servers that do not have HTTPS support. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.CookieSecurePolicy.Always"> |
| | | <summary> |
| | | Secure is always marked true. Use this value when your login page and all subsequent pages |
| | | requiring the authenticated identity are HTTPS. Local development will also need to be done with HTTPS urls. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.CookieSecurePolicy.None"> |
| | | <summary> |
| | | Secure is not marked true. Use this value when your login page is HTTPS, but other pages |
| | | on the site which are HTTP also require authentication information. This setting is not recommended because |
| | | the authentication information provided with an HTTP request may be observed and used by other computers |
| | | on your local network or wireless connection. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.Append(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String,Microsoft.Extensions.Primitives.StringValues)"> |
| | | <summary> |
| | | Add new values. Each item remains a separate array entry. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <param name="value">The header value.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.AppendCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String,System.String[])"> |
| | | <summary> |
| | | Quotes any values containing commas, and then comma joins all of the values with any existing values. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <param name="values">The header values.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.GetCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String)"> |
| | | <summary> |
| | | Get the associated values from the collection separated into individual values. |
| | | Quoted values will not be split, and the quotes will be removed. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <returns>the associated values from the collection separated into individual values, or StringValues.Empty if the key is not present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HeaderDictionaryExtensions.SetCommaSeparatedValues(Microsoft.AspNetCore.Http.IHeaderDictionary,System.String,System.String[])"> |
| | | <summary> |
| | | Quotes any values containing commas, and then comma joins all of the values. |
| | | </summary> |
| | | <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> to use.</param> |
| | | <param name="key">The header name.</param> |
| | | <param name="values">The header values.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpResponseWritingExtensions"> |
| | | <summary> |
| | | Convenience methods for writing to the response. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponseWritingExtensions.WriteAsync(Microsoft.AspNetCore.Http.HttpResponse,System.String,System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Writes the given text to the response body. UTF-8 encoding will be used. |
| | | </summary> |
| | | <param name="response">The <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>.</param> |
| | | <param name="text">The text to write to the response.</param> |
| | | <param name="cancellationToken">Notifies when request operations should be cancelled.</param> |
| | | <returns>A task that represents the completion of the write operation.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponseWritingExtensions.WriteAsync(Microsoft.AspNetCore.Http.HttpResponse,System.String,System.Text.Encoding,System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Writes the given text to the response body using the given encoding. |
| | | </summary> |
| | | <param name="response">The <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>.</param> |
| | | <param name="text">The text to write to the response.</param> |
| | | <param name="encoding">The encoding to use.</param> |
| | | <param name="cancellationToken">Notifies when request operations should be cancelled.</param> |
| | | <returns>A task that represents the completion of the write operation.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.DeclareTrailer(Microsoft.AspNetCore.Http.HttpResponse,System.String)"> |
| | | <summary> |
| | | Adds the given trailer name to the 'Trailer' response header. This must happen before the response headers are sent. |
| | | </summary> |
| | | <param name="response"></param> |
| | | <param name="trailerName"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.SupportsTrailers(Microsoft.AspNetCore.Http.HttpResponse)"> |
| | | <summary> |
| | | Indicates if the server supports sending trailer headers for this response. |
| | | </summary> |
| | | <param name="response"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.AppendTrailer(Microsoft.AspNetCore.Http.HttpResponse,System.String,Microsoft.Extensions.Primitives.StringValues)"> |
| | | <summary> |
| | | Adds the given trailer header to the trailers collection to be sent at the end of the response body. |
| | | Check <see cref="M:Microsoft.AspNetCore.Http.ResponseTrailerExtensions.SupportsTrailers(Microsoft.AspNetCore.Http.HttpResponse)" /> or an InvalidOperationException may be thrown. |
| | | </summary> |
| | | <param name="response"></param> |
| | | <param name="trailerName"></param> |
| | | <param name="trailerValues"></param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.FragmentString"> |
| | | <summary> |
| | | Provides correct handling for FragmentString value when needed to generate a URI string |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.FragmentString.Empty"> |
| | | <summary> |
| | | Represents the empty fragment string. This field is read-only. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.#ctor(System.String)"> |
| | | <summary> |
| | | Initialize the fragment string with a given value. This value must be in escaped and delimited format with |
| | | a leading '#' character. |
| | | </summary> |
| | | <param name="value">The fragment string to be assigned to the Value property.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.FragmentString.Value"> |
| | | <summary> |
| | | The escaped fragment string with the leading '#' character |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.FragmentString.HasValue"> |
| | | <summary> |
| | | True if the fragment string is not empty |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.ToString"> |
| | | <summary> |
| | | Provides the fragment string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '#' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The fragment string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.ToUriComponent"> |
| | | <summary> |
| | | Provides the fragment string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '#' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The fragment string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Returns an FragmentString given the fragment as it is escaped in the URI format. The string MUST NOT contain any |
| | | value that is not a fragment. |
| | | </summary> |
| | | <param name="uriComponent">The escaped fragment as it appears in the URI format.</param> |
| | | <returns>The resulting FragmentString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.FragmentString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Returns an FragmentString given the fragment as from a Uri object. Relative Uri objects are not supported. |
| | | </summary> |
| | | <param name="uri">The Uri object</param> |
| | | <returns>The resulting FragmentString</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HostString"> |
| | | <summary> |
| | | Represents the host portion of a URI can be used to construct URI's properly formatted and encoded for use in |
| | | HTTP headers. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.#ctor(System.String)"> |
| | | <summary> |
| | | Creates a new HostString without modification. The value should be Unicode rather than punycode, and may have a port. |
| | | IPv4 and IPv6 addresses are also allowed, and also may have ports. |
| | | </summary> |
| | | <param name="value"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.#ctor(System.String,System.Int32)"> |
| | | <summary> |
| | | Creates a new HostString from its host and port parts. |
| | | </summary> |
| | | <param name="host">The value should be Unicode rather than punycode. IPv6 addresses must use square braces.</param> |
| | | <param name="port">A positive, greater than 0 value representing the port in the host string.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HostString.Value"> |
| | | <summary> |
| | | Returns the original value from the constructor. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HostString.Host"> |
| | | <summary> |
| | | Returns the value of the host part of the value. The port is removed if it was present. |
| | | IPv6 addresses will have brackets added if they are missing. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HostString.Port"> |
| | | <summary> |
| | | Returns the value of the port part of the host, or <value>null</value> if none is found. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.ToString"> |
| | | <summary> |
| | | Returns the value as normalized by ToUriComponent(). |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.ToUriComponent"> |
| | | <summary> |
| | | Returns the value properly formatted and encoded for use in a URI in a HTTP header. |
| | | Any Unicode is converted to punycode. IPv6 addresses will have brackets added if they are missing. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Creates a new HostString from the given URI component. |
| | | Any punycode will be converted to Unicode. |
| | | </summary> |
| | | <param name="uriComponent"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Creates a new HostString from the host and port of the give Uri instance. |
| | | Punycode will be converted to Unicode. |
| | | </summary> |
| | | <param name="uri"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.MatchesAny(Microsoft.Extensions.Primitives.StringSegment,System.Collections.Generic.IList{Microsoft.Extensions.Primitives.StringSegment})"> |
| | | <summary> |
| | | Matches the host portion of a host header value against a list of patterns. |
| | | The host may be the encoded punycode or decoded unicode form so long as the pattern |
| | | uses the same format. |
| | | </summary> |
| | | <param name="value">Host header value with or without a port.</param> |
| | | <param name="patterns">A set of pattern to match, without ports.</param> |
| | | <remarks> |
| | | The port on the given value is ignored. The patterns should not have ports. |
| | | The patterns may be exact matches like "example.com", a top level wildcard "*" |
| | | that matches all hosts, or a subdomain wildcard like "*.example.com" that matches |
| | | "abc.example.com:443" but not "example.com:443". |
| | | Matching is case insensitive. |
| | | </remarks> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.Equals(Microsoft.AspNetCore.Http.HostString)"> |
| | | <summary> |
| | | Compares the equality of the Value property, ignoring case. |
| | | </summary> |
| | | <param name="other"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.Equals(System.Object)"> |
| | | <summary> |
| | | Compares against the given object only if it is a HostString. |
| | | </summary> |
| | | <param name="obj"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.GetHashCode"> |
| | | <summary> |
| | | Gets a hash code for the value. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.op_Equality(Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.HostString)"> |
| | | <summary> |
| | | Compares the two instances for equality. |
| | | </summary> |
| | | <param name="left"></param> |
| | | <param name="right"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.op_Inequality(Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.HostString)"> |
| | | <summary> |
| | | Compares the two instances for inequality. |
| | | </summary> |
| | | <param name="left"></param> |
| | | <param name="right"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HostString.GetParts(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment@,Microsoft.Extensions.Primitives.StringSegment@)"> |
| | | <summary> |
| | | Parses the current value. IPv6 addresses will have brackets added if they are missing. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpContext"> |
| | | <summary> |
| | | Encapsulates all HTTP-specific information about an individual HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Features"> |
| | | <summary> |
| | | Gets the collection of HTTP features provided by the server and middleware available on this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Request"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> object for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Response"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/> object for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Connection"> |
| | | <summary> |
| | | Gets information about the underlying connection for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.WebSockets"> |
| | | <summary> |
| | | Gets an object that manages the establishment of WebSocket connections for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Authentication"> |
| | | <summary> |
| | | This is obsolete and will be removed in a future version. |
| | | The recommended alternative is to use Microsoft.AspNetCore.Authentication.AuthenticationHttpContextExtensions. |
| | | See https://go.microsoft.com/fwlink/?linkid=845470. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.User"> |
| | | <summary> |
| | | Gets or sets the user for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Items"> |
| | | <summary> |
| | | Gets or sets a key/value collection that can be used to share data within the scope of this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.RequestServices"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:System.IServiceProvider"/> that provides access to the request's service container. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.RequestAborted"> |
| | | <summary> |
| | | Notifies when the connection underlying this request is aborted and thus request operations should be |
| | | cancelled. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.TraceIdentifier"> |
| | | <summary> |
| | | Gets or sets a unique identifier to represent this request in trace logs. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpContext.Session"> |
| | | <summary> |
| | | Gets or sets the object used to manage user session data for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpContext.Abort"> |
| | | <summary> |
| | | Aborts the connection underlying this request. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpRequest"> |
| | | <summary> |
| | | Represents the incoming side of an individual HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.HttpContext"/> for this request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Method"> |
| | | <summary> |
| | | Gets or sets the HTTP method. |
| | | </summary> |
| | | <returns>The HTTP method.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Scheme"> |
| | | <summary> |
| | | Gets or sets the HTTP request scheme. |
| | | </summary> |
| | | <returns>The HTTP request scheme.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.IsHttps"> |
| | | <summary> |
| | | Returns true if the RequestScheme is https. |
| | | </summary> |
| | | <returns>true if this request is using https; otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Host"> |
| | | <summary> |
| | | Gets or sets the Host header. May include the port. |
| | | </summary> |
| | | <return>The Host header.</return> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"> |
| | | <summary> |
| | | Gets or sets the RequestPathBase. |
| | | </summary> |
| | | <returns>The RequestPathBase.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Path"> |
| | | <summary> |
| | | Gets or sets the request path from RequestPath. |
| | | </summary> |
| | | <returns>The request path from RequestPath.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.QueryString"> |
| | | <summary> |
| | | Gets or sets the raw query string used to create the query collection in Request.Query. |
| | | </summary> |
| | | <returns>The raw query string.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Query"> |
| | | <summary> |
| | | Gets the query value collection parsed from Request.QueryString. |
| | | </summary> |
| | | <returns>The query value collection parsed from Request.QueryString.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Protocol"> |
| | | <summary> |
| | | Gets or sets the RequestProtocol. |
| | | </summary> |
| | | <returns>The RequestProtocol.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Headers"> |
| | | <summary> |
| | | Gets the request headers. |
| | | </summary> |
| | | <returns>The request headers.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Cookies"> |
| | | <summary> |
| | | Gets the collection of Cookies for this request. |
| | | </summary> |
| | | <returns>The collection of Cookies for this request.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.ContentLength"> |
| | | <summary> |
| | | Gets or sets the Content-Length header. |
| | | </summary> |
| | | <returns>The value of the Content-Length header, if any.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.ContentType"> |
| | | <summary> |
| | | Gets or sets the Content-Type header. |
| | | </summary> |
| | | <returns>The Content-Type header.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Body"> |
| | | <summary> |
| | | Gets or sets the RequestBody Stream. |
| | | </summary> |
| | | <returns>The RequestBody Stream.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.HasFormContentType"> |
| | | <summary> |
| | | Checks the Content-Type header for form types. |
| | | </summary> |
| | | <returns>true if the Content-Type header represents a form content type; otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpRequest.Form"> |
| | | <summary> |
| | | Gets or sets the request body as a form. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpRequest.ReadFormAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Reads the request body if it is a form. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.HttpResponse"> |
| | | <summary> |
| | | Represents the outgoing side of an individual HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="P:Microsoft.AspNetCore.Http.HttpResponse.HttpContext"/> for this response. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.StatusCode"> |
| | | <summary> |
| | | Gets or sets the HTTP response code. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.Headers"> |
| | | <summary> |
| | | Gets the response headers. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.Body"> |
| | | <summary> |
| | | Gets or sets the response body <see cref="T:System.IO.Stream"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.ContentLength"> |
| | | <summary> |
| | | Gets or sets the value for the <c>Content-Length</c> response header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.ContentType"> |
| | | <summary> |
| | | Gets or sets the value for the <c>Content-Type</c> response header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.Cookies"> |
| | | <summary> |
| | | Gets an object that can be used to manage cookies for this response. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.HttpResponse.HasStarted"> |
| | | <summary> |
| | | Gets a value indicating whether response headers have been sent to the client. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnStarting(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Adds a delegate to be invoked just before response headers will be sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to execute.</param> |
| | | <param name="state">A state object to capture and pass back to the delegate.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnStarting(System.Func{System.Threading.Tasks.Task})"> |
| | | <summary> |
| | | Adds a delegate to be invoked just before response headers will be sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to execute.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnCompleted(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Adds a delegate to be invoked after the response has finished being sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to invoke.</param> |
| | | <param name="state">A state object to capture and pass back to the delegate.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.RegisterForDispose(System.IDisposable)"> |
| | | <summary> |
| | | Registers an object for disposal by the host once the request has finished processing. |
| | | </summary> |
| | | <param name="disposable">The object to be disposed.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.OnCompleted(System.Func{System.Threading.Tasks.Task})"> |
| | | <summary> |
| | | Adds a delegate to be invoked after the response has finished being sent to the client. |
| | | </summary> |
| | | <param name="callback">The delegate to invoke.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.Redirect(System.String)"> |
| | | <summary> |
| | | Returns a temporary redirect response (HTTP 302) to the client. |
| | | </summary> |
| | | <param name="location">The URL to redirect the client to. This must be properly encoded for use in http headers |
| | | where only ASCII characters are allowed.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.HttpResponse.Redirect(System.String,System.Boolean)"> |
| | | <summary> |
| | | Returns a redirect response (HTTP 301 or HTTP 302) to the client. |
| | | </summary> |
| | | <param name="location">The URL to redirect the client to. This must be properly encoded for use in http headers |
| | | where only ASCII characters are allowed.</param> |
| | | <param name="permanent"><c>True</c> if the redirect is permanent (301), otherwise <c>false</c> (302).</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IMiddleware"> |
| | | <summary> |
| | | Defines middleware that can be added to the application's request pipeline. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IMiddleware.InvokeAsync(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Http.RequestDelegate)"> |
| | | <summary> |
| | | Request handling method. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <param name="next">The delegate representing the remaining middleware in the request pipeline.</param> |
| | | <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IMiddlewareFactory"> |
| | | <summary> |
| | | Provides methods to create middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IMiddlewareFactory.Create(System.Type)"> |
| | | <summary> |
| | | Creates a middleware instance for each request. |
| | | </summary> |
| | | <param name="middlewareType">The concrete <see cref="T:System.Type"/> of the <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/>.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/> instance.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IMiddlewareFactory.Release(Microsoft.AspNetCore.Http.IMiddleware)"> |
| | | <summary> |
| | | Releases a <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/> instance at the end of each request. |
| | | </summary> |
| | | <param name="middleware">The <see cref="T:Microsoft.AspNetCore.Http.IMiddleware"/> instance to release.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.PathString"> |
| | | <summary> |
| | | Provides correct escaping for Path and PathBase values when needed to reconstruct a request or redirect URI string |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.PathString.Empty"> |
| | | <summary> |
| | | Represents the empty path. This field is read-only. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.#ctor(System.String)"> |
| | | <summary> |
| | | Initialize the path string with a given value. This value must be in unescaped format. Use |
| | | PathString.FromUriComponent(value) if you have a path value which is in an escaped format. |
| | | </summary> |
| | | <param name="value">The unescaped path to be assigned to the Value property.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.PathString.Value"> |
| | | <summary> |
| | | The unescaped path value |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.PathString.HasValue"> |
| | | <summary> |
| | | True if the path is not empty |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.ToString"> |
| | | <summary> |
| | | Provides the path string escaped in a way which is correct for combining into the URI representation. |
| | | </summary> |
| | | <returns>The escaped path value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.ToUriComponent"> |
| | | <summary> |
| | | Provides the path string escaped in a way which is correct for combining into the URI representation. |
| | | </summary> |
| | | <returns>The escaped path value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Returns an PathString given the path as it is escaped in the URI format. The string MUST NOT contain any |
| | | value that is not a path. |
| | | </summary> |
| | | <param name="uriComponent">The escaped path as it appears in the URI format.</param> |
| | | <returns>The resulting PathString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Returns an PathString given the path as from a Uri object. Relative Uri objects are not supported. |
| | | </summary> |
| | | <param name="uri">The Uri object</param> |
| | | <returns>The resulting PathString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/>. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,System.StringComparison)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> when compared |
| | | using the specified comparison option. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that determines how this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and value are compared.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and returns |
| | | the remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,System.StringComparison,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> when compared |
| | | using the specified comparison option and returns the remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that determines how this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and value are compared.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString@,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and returns |
| | | the matched and remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="matched">The matched segments with the original casing in the source value.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString,System.StringComparison,Microsoft.AspNetCore.Http.PathString@,Microsoft.AspNetCore.Http.PathString@)"> |
| | | <summary> |
| | | Determines whether the beginning of this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> instance matches the specified <see cref="T:Microsoft.AspNetCore.Http.PathString"/> when compared |
| | | using the specified comparison option and returns the matched and remaining segments. |
| | | </summary> |
| | | <param name="other">The <see cref="T:Microsoft.AspNetCore.Http.PathString"/> to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that determines how this <see cref="T:Microsoft.AspNetCore.Http.PathString"/> and value are compared.</param> |
| | | <param name="matched">The matched segments with the original casing in the source value.</param> |
| | | <param name="remaining">The remaining segments after the match.</param> |
| | | <returns>true if value matches the beginning of this string; otherwise, false.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Add(Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Adds two PathString instances into a combined PathString value. |
| | | </summary> |
| | | <returns>The combined PathString value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Add(Microsoft.AspNetCore.Http.QueryString)"> |
| | | <summary> |
| | | Combines a PathString and QueryString into the joined URI formatted string value. |
| | | </summary> |
| | | <returns>The joined URI formatted string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Equals(Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. |
| | | </summary> |
| | | <param name="other">The second PathString for comparison.</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Equals(Microsoft.AspNetCore.Http.PathString,System.StringComparison)"> |
| | | <summary> |
| | | Compares this PathString value to another value using a specific StringComparison type |
| | | </summary> |
| | | <param name="other">The second PathString for comparison</param> |
| | | <param name="comparisonType">The StringComparison type to use</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.Equals(System.Object)"> |
| | | <summary> |
| | | Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. |
| | | </summary> |
| | | <param name="obj">The second PathString for comparison.</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.GetHashCode"> |
| | | <summary> |
| | | Returns the hash code for the PathString value. The hash code is provided by the OrdinalIgnoreCase implementation. |
| | | </summary> |
| | | <returns>The hash code</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Equality(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Operator call through to Equals |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>True if both PathString values are equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Inequality(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Operator call through to Equals |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>True if both PathString values are not equal</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(System.String,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The ToString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(Microsoft.AspNetCore.Http.PathString,System.String)"> |
| | | <summary> |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The ToString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Operator call through to Add |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The PathString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Addition(Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.QueryString)"> |
| | | <summary> |
| | | Operator call through to Add |
| | | </summary> |
| | | <param name="left">The left parameter</param> |
| | | <param name="right">The right parameter</param> |
| | | <returns>The PathString combination of both values</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Implicit(System.String)~Microsoft.AspNetCore.Http.PathString"> |
| | | <summary> |
| | | Implicitly creates a new PathString from the given string. |
| | | </summary> |
| | | <param name="s"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.PathString.op_Implicit(Microsoft.AspNetCore.Http.PathString)~System.String"> |
| | | <summary> |
| | | Implicitly calls ToString(). |
| | | </summary> |
| | | <param name="path"></param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareIServiceProviderNotAvailable"> |
| | | <summary> |
| | | '{0}' is not available. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareIServiceProviderNotAvailable(System.Object)"> |
| | | <summary> |
| | | '{0}' is not available. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNoInvokeMethod"> |
| | | <summary> |
| | | No public '{0}' or '{1}' method found for middleware of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNoInvokeMethod(System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | No public '{0}' or '{1}' method found for middleware of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNonTaskReturnType"> |
| | | <summary> |
| | | '{0}' or '{1}' does not return an object of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNonTaskReturnType(System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | '{0}' or '{1}' does not return an object of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNoParameters"> |
| | | <summary> |
| | | The '{0}' or '{1}' method's first argument must be of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNoParameters(System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | The '{0}' or '{1}' method's first argument must be of type '{2}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddleMutlipleInvokes"> |
| | | <summary> |
| | | Multiple public '{0}' or '{1}' methods are available. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddleMutlipleInvokes(System.Object,System.Object)"> |
| | | <summary> |
| | | Multiple public '{0}' or '{1}' methods are available. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_PathMustStartWithSlash"> |
| | | <summary> |
| | | The path in '{0}' must start with '/'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_PathMustStartWithSlash(System.Object)"> |
| | | <summary> |
| | | The path in '{0}' must start with '/'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_InvokeMiddlewareNoService"> |
| | | <summary> |
| | | Unable to resolve service for type '{0}' while attempting to Invoke middleware '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_InvokeMiddlewareNoService(System.Object,System.Object)"> |
| | | <summary> |
| | | Unable to resolve service for type '{0}' while attempting to Invoke middleware '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_InvokeDoesNotSupportRefOrOutParams"> |
| | | <summary> |
| | | The '{0}' method must not have ref or out parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_InvokeDoesNotSupportRefOrOutParams(System.Object)"> |
| | | <summary> |
| | | The '{0}' method must not have ref or out parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_PortMustBeGreaterThanZero"> |
| | | <summary> |
| | | The value must be greater than zero. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_PortMustBeGreaterThanZero"> |
| | | <summary> |
| | | The value must be greater than zero. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareNoMiddlewareFactory"> |
| | | <summary> |
| | | No service for type '{0}' has been registered. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareNoMiddlewareFactory(System.Object)"> |
| | | <summary> |
| | | No service for type '{0}' has been registered. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareUnableToCreateMiddleware"> |
| | | <summary> |
| | | '{0}' failed to create middleware of type '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareUnableToCreateMiddleware(System.Object,System.Object)"> |
| | | <summary> |
| | | '{0}' failed to create middleware of type '{1}'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.Exception_UseMiddlewareExplicitArgumentsNotSupported"> |
| | | <summary> |
| | | Types that implement '{0}' do not support explicit arguments. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatException_UseMiddlewareExplicitArgumentsNotSupported(System.Object)"> |
| | | <summary> |
| | | Types that implement '{0}' do not support explicit arguments. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Abstractions.Resources.ArgumentCannotBeNullOrEmpty"> |
| | | <summary> |
| | | Argument cannot be null or empty. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Abstractions.Resources.FormatArgumentCannotBeNullOrEmpty"> |
| | | <summary> |
| | | Argument cannot be null or empty. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.QueryString"> |
| | | <summary> |
| | | Provides correct handling for QueryString value when needed to reconstruct a request or redirect URI string |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.QueryString.Empty"> |
| | | <summary> |
| | | Represents the empty query string. This field is read-only. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.#ctor(System.String)"> |
| | | <summary> |
| | | Initialize the query string with a given value. This value must be in escaped and delimited format with |
| | | a leading '?' character. |
| | | </summary> |
| | | <param name="value">The query string to be assigned to the Value property.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.QueryString.Value"> |
| | | <summary> |
| | | The escaped query string with the leading '?' character |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.QueryString.HasValue"> |
| | | <summary> |
| | | True if the query string is not empty |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.ToString"> |
| | | <summary> |
| | | Provides the query string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '?' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The query string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.ToUriComponent"> |
| | | <summary> |
| | | Provides the query string escaped in a way which is correct for combining into the URI representation. |
| | | A leading '?' character will be included unless the Value is null or empty. Characters which are potentially |
| | | dangerous are escaped. |
| | | </summary> |
| | | <returns>The query string value</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.FromUriComponent(System.String)"> |
| | | <summary> |
| | | Returns an QueryString given the query as it is escaped in the URI format. The string MUST NOT contain any |
| | | value that is not a query. |
| | | </summary> |
| | | <param name="uriComponent">The escaped query as it appears in the URI format.</param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.FromUriComponent(System.Uri)"> |
| | | <summary> |
| | | Returns an QueryString given the query as from a Uri object. Relative Uri objects are not supported. |
| | | </summary> |
| | | <param name="uri">The Uri object</param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.Create(System.String,System.String)"> |
| | | <summary> |
| | | Create a query string with a single given parameter name and value. |
| | | </summary> |
| | | <param name="name">The un-encoded parameter name</param> |
| | | <param name="value">The un-encoded parameter value</param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.Create(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> |
| | | <summary> |
| | | Creates a query string composed from the given name value pairs. |
| | | </summary> |
| | | <param name="parameters"></param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.QueryString.Create(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,Microsoft.Extensions.Primitives.StringValues}})"> |
| | | <summary> |
| | | Creates a query string composed from the given name value pairs. |
| | | </summary> |
| | | <param name="parameters"></param> |
| | | <returns>The resulting QueryString</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.RequestDelegate"> |
| | | <summary> |
| | | A function that can process an HTTP request. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the request.</param> |
| | | <returns>A task that represents the completion of request processing.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.WebSocketManager"> |
| | | <summary> |
| | | Manages the establishment of WebSocket connections for a specific HTTP request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.WebSocketManager.IsWebSocketRequest"> |
| | | <summary> |
| | | Gets a value indicating whether the request is a WebSocket establishment request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.WebSocketManager.WebSocketRequestedProtocols"> |
| | | <summary> |
| | | Gets the list of requested WebSocket sub-protocols. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.WebSocketManager.AcceptWebSocketAsync"> |
| | | <summary> |
| | | Transitions the request to a WebSocket connection. |
| | | </summary> |
| | | <returns>A task representing the completion of the transition.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.WebSocketManager.AcceptWebSocketAsync(System.String)"> |
| | | <summary> |
| | | Transitions the request to a WebSocket connection using the specified sub-protocol. |
| | | </summary> |
| | | <param name="subProtocol">The sub-protocol to use.</param> |
| | | <returns>A task representing the completion of the transition.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.MapExtensions"> |
| | | <summary> |
| | | Extension methods for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.MapExtensions.Map(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.PathString,System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})"> |
| | | <summary> |
| | | Branches the request pipeline based on matches of the given request path. If the request path starts with |
| | | the given path, the branch is executed. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="pathMatch">The request path to match.</param> |
| | | <param name="configuration">The branch to take for positive path matches.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"> |
| | | <summary> |
| | | Represents a middleware that maps a request path to a sub-request pipeline. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Builder.Extensions.MapOptions)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"/>. |
| | | </summary> |
| | | <param name="next">The delegate representing the next middleware in the request pipeline.</param> |
| | | <param name="options">The middleware options.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Executes the middleware. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <returns>A task that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapOptions"> |
| | | <summary> |
| | | Options for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapOptions.PathMatch"> |
| | | <summary> |
| | | The path to match. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapOptions.Branch"> |
| | | <summary> |
| | | The branch taken for a positive match. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"> |
| | | <summary> |
| | | Represents a middleware that runs a sub-request pipeline when a given predicate is matched. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"/>. |
| | | </summary> |
| | | <param name="next">The delegate representing the next middleware in the request pipeline.</param> |
| | | <param name="options">The middleware options.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Executes the middleware. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <returns>A task that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions"> |
| | | <summary> |
| | | Options for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions.Predicate"> |
| | | <summary> |
| | | The user callback that determines if the branch should be taken. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions.Branch"> |
| | | <summary> |
| | | The branch taken for a positive match. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware"> |
| | | <summary> |
| | | Represents a middleware that extracts the specified path base from request path and postpend it to the request path base. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware"/>. |
| | | </summary> |
| | | <param name="next">The delegate representing the next middleware in the request pipeline.</param> |
| | | <param name="pathBase">The path base to extract.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.Extensions.UsePathBaseMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Executes the middleware. |
| | | </summary> |
| | | <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param> |
| | | <returns>A task that represents the execution of this middleware.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.MapWhenExtensions"> |
| | | <summary> |
| | | Extension methods for the <see cref="T:Microsoft.AspNetCore.Builder.Extensions.MapWhenMiddleware"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.MapWhenExtensions.MapWhen(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Http.HttpContext,System.Boolean},System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})"> |
| | | <summary> |
| | | Branches the request pipeline based on the result of the given predicate. |
| | | </summary> |
| | | <param name="app"></param> |
| | | <param name="predicate">Invoked with the request environment to determine if the branch should be taken</param> |
| | | <param name="configuration">Configures a branch to take</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.RunExtensions"> |
| | | <summary> |
| | | Extension methods for adding terminal middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.RunExtensions.Run(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.RequestDelegate)"> |
| | | <summary> |
| | | Adds a terminal middleware delegate to the application's request pipeline. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="handler">A delegate that handles the request.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UseExtensions"> |
| | | <summary> |
| | | Extension methods for adding middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseExtensions.Use(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Http.HttpContext,System.Func{System.Threading.Tasks.Task},System.Threading.Tasks.Task})"> |
| | | <summary> |
| | | Adds a middleware delegate defined in-line to the application's request pipeline. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="middleware">A function that handles the request or calls the given next function.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UseMiddlewareExtensions"> |
| | | <summary> |
| | | Extension methods for adding typed middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.UseMiddleware``1(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Object[])"> |
| | | <summary> |
| | | Adds a middleware type to the application's request pipeline. |
| | | </summary> |
| | | <typeparam name="TMiddleware">The middleware type.</typeparam> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="args">The arguments to pass to the middleware type instance's constructor.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.UseMiddleware(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Type,System.Object[])"> |
| | | <summary> |
| | | Adds a middleware type to the application's request pipeline. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="middleware">The middleware type.</param> |
| | | <param name="args">The arguments to pass to the middleware type instance's constructor.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UsePathBaseExtensions"> |
| | | <summary> |
| | | Extension methods for <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UsePathBaseExtensions.UsePathBase(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Http.PathString)"> |
| | | <summary> |
| | | Adds a middleware that extracts the specified path base from request path and postpend it to the request path base. |
| | | </summary> |
| | | <param name="app">The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</param> |
| | | <param name="pathBase">The path base to extract.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> instance.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.UseWhenExtensions"> |
| | | <summary> |
| | | Extension methods for <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.UseWhenExtensions.UseWhen(Microsoft.AspNetCore.Builder.IApplicationBuilder,System.Func{Microsoft.AspNetCore.Http.HttpContext,System.Boolean},System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})"> |
| | | <summary> |
| | | Conditionally creates a branch in the request pipeline that is rejoined to the main pipeline. |
| | | </summary> |
| | | <param name="app"></param> |
| | | <param name="predicate">Invoked with the request environment to determine if the branch should be taken</param> |
| | | <param name="configuration">Configures a branch to take</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"> |
| | | <summary> |
| | | Defines a class that provides the mechanisms to configure an application's request pipeline. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.ApplicationServices"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:System.IServiceProvider"/> that provides access to the application's service container. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.ServerFeatures"> |
| | | <summary> |
| | | Gets the set of HTTP features the application's server provides. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.Properties"> |
| | | <summary> |
| | | Gets a key/value collection that can be used to share data between middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.IApplicationBuilder.Use(System.Func{Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Http.RequestDelegate})"> |
| | | <summary> |
| | | Adds a middleware delegate to the application's request pipeline. |
| | | </summary> |
| | | <param name="middleware">The middleware delegate.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.IApplicationBuilder.New"> |
| | | <summary> |
| | | Creates a new <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/> that shares the <see cref="P:Microsoft.AspNetCore.Builder.IApplicationBuilder.Properties"/> of this |
| | | <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>. |
| | | </summary> |
| | | <returns>The new <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Builder.IApplicationBuilder.Build"> |
| | | <summary> |
| | | Builds the delegate used by this application to process HTTP requests. |
| | | </summary> |
| | | <returns>The request handling delegate.</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.AspNetCore.Http.Features</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"> |
| | | <summary> |
| | | Represents a collection of HTTP features. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.IsReadOnly"> |
| | | <summary> |
| | | Indicates if the collection can be modified. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Revision"> |
| | | <summary> |
| | | Incremented for each modification and can be used to verify cached results. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Item(System.Type)"> |
| | | <summary> |
| | | Gets or sets a given feature. Setting a null value removes the feature. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <returns>The requested feature, or null if it is not present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Get``1"> |
| | | <summary> |
| | | Retrieves the requested feature from the collection. |
| | | </summary> |
| | | <typeparam name="TFeature">The feature key.</typeparam> |
| | | <returns>The requested feature, or null if it is not present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Set``1(``0)"> |
| | | <summary> |
| | | Sets the given feature in the collection. |
| | | </summary> |
| | | <typeparam name="TFeature">The feature key.</typeparam> |
| | | <param name="instance">The feature value.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFormFeature.HasFormContentType"> |
| | | <summary> |
| | | Indicates if the request has a supported form content-type. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IFormFeature.Form"> |
| | | <summary> |
| | | The parsed form, if any. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFormFeature.ReadForm"> |
| | | <summary> |
| | | Parses the request body as a form. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IFormFeature.ReadFormAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Parses the request body as a form. |
| | | </summary> |
| | | <param name="cancellationToken"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpBodyControlFeature"> |
| | | <summary> |
| | | Controls the IO behavior for the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"/> and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"/> |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpBodyControlFeature.AllowSynchronousIO"> |
| | | <summary> |
| | | Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"/> and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"/> |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature"> |
| | | <summary> |
| | | Information regarding the TCP/IP connection carrying the request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.ConnectionId"> |
| | | <summary> |
| | | The unique identifier for the connection the request was received on. This is primarily for diagnostic purposes. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemoteIpAddress"> |
| | | <summary> |
| | | The IPAddress of the client making the request. Note this may be for a proxy rather than the end user. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.LocalIpAddress"> |
| | | <summary> |
| | | The local IPAddress on which the request was received. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemotePort"> |
| | | <summary> |
| | | The remote port of the client making the request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.LocalPort"> |
| | | <summary> |
| | | The local port on which the request was received. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature"> |
| | | <summary> |
| | | Feature to inspect and modify the maximum request body size for a single request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.IsReadOnly"> |
| | | <summary> |
| | | Indicates whether <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/> is read-only. |
| | | If true, this could mean that the request body has already been read from |
| | | or that <see cref="M:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync"/> was called. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"> |
| | | <summary> |
| | | The maximum allowed size of the current request body in bytes. |
| | | When set to null, the maximum request body size is unlimited. |
| | | This cannot be modified after the reading the request body has started. |
| | | This limit does not affect upgraded connections which are always unlimited. |
| | | </summary> |
| | | <remarks> |
| | | Defaults to the server's global max request body size limit. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature"> |
| | | <summary> |
| | | Contains the details of a given request. These properties should all be mutable. |
| | | None of these properties should ever be set to null. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Protocol"> |
| | | <summary> |
| | | The HTTP-version as defined in RFC 7230. E.g. "HTTP/1.1" |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Scheme"> |
| | | <summary> |
| | | The request uri scheme. E.g. "http" or "https". Note this value is not included |
| | | in the original request, it is inferred by checking if the transport used a TLS |
| | | connection or not. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Method"> |
| | | <summary> |
| | | The request method as defined in RFC 7230. E.g. "GET", "HEAD", "POST", etc.. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.PathBase"> |
| | | <summary> |
| | | The first portion of the request path associated with application root. The value |
| | | is un-escaped. The value may be string.Empty. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Path"> |
| | | <summary> |
| | | The portion of the request path that identifies the requested resource. The value |
| | | is un-escaped. The value may be string.Empty if <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.PathBase"/> contains the |
| | | full path. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.QueryString"> |
| | | <summary> |
| | | The query portion of the request-target as defined in RFC 7230. The value |
| | | may be string.Empty. If not empty then the leading '?' will be included. The value |
| | | is in its original form, without un-escaping. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.RawTarget"> |
| | | <summary> |
| | | The request target as it was sent in the HTTP request. This property contains the |
| | | raw path and full query, as well as other request targets such as * for OPTIONS |
| | | requests (https://tools.ietf.org/html/rfc7230#section-5.3). |
| | | </summary> |
| | | <remarks> |
| | | This property is not used internally for routing or authorization decisions. It has not |
| | | been UrlDecoded and care should be taken in its use. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Headers"> |
| | | <summary> |
| | | Headers included in the request, aggregated by header name. The values are not split |
| | | or merged across header lines. E.g. The following headers: |
| | | HeaderA: value1, value2 |
| | | HeaderA: value3 |
| | | Result in Headers["HeaderA"] = { "value1, value2", "value3" } |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"> |
| | | <summary> |
| | | A <see cref="T:System.IO.Stream"/> representing the request body, if any. Stream.Null may be used |
| | | to represent an empty request body. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature"> |
| | | <summary> |
| | | Feature to identify a request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature.TraceIdentifier"> |
| | | <summary> |
| | | Identifier to trace a request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature.RequestAborted"> |
| | | <summary> |
| | | A <see cref="T:System.Threading.CancellationToken"/> that fires if the request is aborted and |
| | | the application should cease processing. The token will not fire if the request |
| | | completes successfully. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature.Abort"> |
| | | <summary> |
| | | Forcefully aborts the request if it has not already completed. This will result in |
| | | RequestAborted being triggered. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature"> |
| | | <summary> |
| | | Represents the fields and state of an HTTP response. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"> |
| | | <summary> |
| | | The status-code as defined in RFC 7230. The default value is 200. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"> |
| | | <summary> |
| | | The reason-phrase as defined in RFC 7230. Note this field is no longer supported by HTTP/2. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"> |
| | | <summary> |
| | | The response headers to send. Headers with multiple values will be emitted as multiple headers. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"> |
| | | <summary> |
| | | The <see cref="T:System.IO.Stream"/> for writing the response body. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.HasStarted"> |
| | | <summary> |
| | | Indicates if the response has started. If true, the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"/>, |
| | | <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"/>, and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"/> are now immutable, and |
| | | OnStarting should no longer be called. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnStarting(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Registers a callback to be invoked just before the response starts. This is the |
| | | last chance to modify the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"/>, <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"/>, or |
| | | <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"/>. |
| | | </summary> |
| | | <param name="callback">The callback to invoke when starting the response.</param> |
| | | <param name="state">The state to pass into the callback.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnCompleted(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)"> |
| | | <summary> |
| | | Registers a callback to be invoked after a response has fully completed. This is |
| | | intended for resource cleanup. |
| | | </summary> |
| | | <param name="callback">The callback to invoke after the response has completed.</param> |
| | | <param name="state">The state to pass into the callback.</param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IHttpSendFileFeature"> |
| | | <summary> |
| | | Provides an efficient mechanism for transferring files from disk to the network. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpSendFileFeature.SendFileAsync(System.String,System.Int64,System.Nullable{System.Int64},System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Sends the requested file in the response body. This may bypass the IHttpResponseFeature.Body |
| | | <see cref="T:System.IO.Stream"/>. A response may include multiple writes. |
| | | </summary> |
| | | <param name="path">The full disk path to the file.</param> |
| | | <param name="offset">The offset in the file to start at.</param> |
| | | <param name="count">The number of bytes to send, or null to send the remainder of the file.</param> |
| | | <param name="cancellation">A <see cref="T:System.Threading.CancellationToken"/> used to abort the transmission.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.IsUpgradableRequest"> |
| | | <summary> |
| | | Indicates if the server can upgrade this request to an opaque, bidirectional stream. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync"> |
| | | <summary> |
| | | Attempt to upgrade the request to an opaque, bidirectional stream. The response status code |
| | | and headers need to be set before this is invoked. Check <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.IsUpgradableRequest"/> |
| | | before invoking. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest"> |
| | | <summary> |
| | | Indicates if this is a WebSocket upgrade request. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.AcceptAsync(Microsoft.AspNetCore.Http.WebSocketAcceptContext)"> |
| | | <summary> |
| | | Attempts to upgrade the request to a <see cref="T:System.Net.WebSockets.WebSocket"/>. Check <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest"/> |
| | | before invoking this. |
| | | </summary> |
| | | <param name="context"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature"> |
| | | <summary> |
| | | A helper for creating the response Set-Cookie header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature.Cookies"> |
| | | <summary> |
| | | Gets the wrapper for the response Set-Cookie header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature.ClientCertificate"> |
| | | <summary> |
| | | Synchronously retrieves the client certificate, if any. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature.GetClientCertificateAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Asynchronously retrieves the client certificate, if any. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature"> |
| | | <summary> |
| | | Provides information regarding TLS token binding parameters. |
| | | </summary> |
| | | <remarks> |
| | | TLS token bindings help mitigate the risk of impersonation by an attacker in the |
| | | event an authenticated client's bearer tokens are somehow exfiltrated from the |
| | | client's machine. See https://datatracker.ietf.org/doc/draft-popov-token-binding/ |
| | | for more information. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature.GetProvidedTokenBindingId"> |
| | | <summary> |
| | | Gets the 'provided' token binding identifier associated with the request. |
| | | </summary> |
| | | <returns>The token binding identifier, or null if the client did not |
| | | supply a 'provided' token binding or valid proof of possession of the |
| | | associated private key. The caller should treat this identifier as an |
| | | opaque blob and should not try to parse it.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature.GetReferredTokenBindingId"> |
| | | <summary> |
| | | Gets the 'referred' token binding identifier associated with the request. |
| | | </summary> |
| | | <returns>The token binding identifier, or null if the client did not |
| | | supply a 'referred' token binding or valid proof of possession of the |
| | | associated private key. The caller should treat this identifier as an |
| | | opaque blob and should not try to parse it.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature"> |
| | | <summary> |
| | | Used to query, grant, and withdraw user consent regarding the storage of user |
| | | information related to site activity and functionality. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.IsConsentNeeded"> |
| | | <summary> |
| | | Indicates if consent is required for the given request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.HasConsent"> |
| | | <summary> |
| | | Indicates if consent was given. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.CanTrack"> |
| | | <summary> |
| | | Indicates either if consent has been given or if consent is not required. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.GrantConsent"> |
| | | <summary> |
| | | Grants consent for this request. If the response has not yet started then |
| | | this will also grant consent for future requests. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.WithdrawConsent"> |
| | | <summary> |
| | | Withdraws consent for this request. If the response has not yet started then |
| | | this will also withdraw consent for future requests. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.CreateConsentCookie"> |
| | | <summary> |
| | | Creates a consent cookie for use when granting consent from a javascript client. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.CookieOptions"> |
| | | <summary> |
| | | Options used to create a new cookie. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.CookieOptions.#ctor"> |
| | | <summary> |
| | | Creates a default cookie with a path of '/'. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"> |
| | | <summary> |
| | | Gets or sets the domain to associate the cookie with. |
| | | </summary> |
| | | <returns>The domain to associate the cookie with.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Path"> |
| | | <summary> |
| | | Gets or sets the cookie path. |
| | | </summary> |
| | | <returns>The cookie path.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Expires"> |
| | | <summary> |
| | | Gets or sets the expiration date and time for the cookie. |
| | | </summary> |
| | | <returns>The expiration date and time for the cookie.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Secure"> |
| | | <summary> |
| | | Gets or sets a value that indicates whether to transmit the cookie using Secure Sockets Layer (SSL)--that is, over HTTPS only. |
| | | </summary> |
| | | <returns>true to transmit the cookie only over an SSL connection (HTTPS); otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.SameSite"> |
| | | <summary> |
| | | Gets or sets the value for the SameSite attribute of the cookie. The default value is <see cref="F:Microsoft.AspNetCore.Http.SameSiteMode.Lax"/> |
| | | </summary> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Http.SameSiteMode"/> representing the enforcement mode of the cookie.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.HttpOnly"> |
| | | <summary> |
| | | Gets or sets a value that indicates whether a cookie is accessible by client-side script. |
| | | </summary> |
| | | <returns>true if a cookie must not be accessible by client-side script; otherwise, false.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.MaxAge"> |
| | | <summary> |
| | | Gets or sets the max-age for the cookie. |
| | | </summary> |
| | | <returns>The max-age date and time for the cookie.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.CookieOptions.IsEssential"> |
| | | <summary> |
| | | Indicates if this cookie is essential for the application to function correctly. If true then |
| | | consent policy checks may be bypassed. The default value is false. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IFormCollection"> |
| | | <summary> |
| | | Represents the parsed form values sent with the HttpRequest. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Count"> |
| | | <summary> |
| | | Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </summary> |
| | | <returns> |
| | | The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Keys"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the |
| | | <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </summary> |
| | | <returns> |
| | | An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object |
| | | that implements <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormCollection.ContainsKey(System.String)"> |
| | | <summary> |
| | | Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains an element |
| | | with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />. |
| | | </param> |
| | | <returns> |
| | | true if the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains an element with |
| | | the key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)"> |
| | | <summary> |
| | | Gets the value associated with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <param name="value"> |
| | | The key of the value to get. |
| | | When this method returns, the value associated with the specified key, if the |
| | | key is found; otherwise, the default value for the type of the value parameter. |
| | | This parameter is passed uninitialized. |
| | | </param> |
| | | <returns> |
| | | true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains |
| | | an element with the specified key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Item(System.String)"> |
| | | <summary> |
| | | Gets the value with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <returns> |
| | | The element with the specified key, or <c>StringValues.Empty</c> if the key is not present. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> has a different indexer contract than |
| | | <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>StringValues.Empty</c> for missing entries |
| | | rather than throwing an Exception. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Files"> |
| | | <summary> |
| | | The file collection sent with the request. |
| | | </summary> |
| | | <returns>The files included with the request.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IFormFile"> |
| | | <summary> |
| | | Represents a file sent with the HttpRequest. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.ContentType"> |
| | | <summary> |
| | | Gets the raw Content-Type header of the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.ContentDisposition"> |
| | | <summary> |
| | | Gets the raw Content-Disposition header of the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.Headers"> |
| | | <summary> |
| | | Gets the header dictionary of the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.Length"> |
| | | <summary> |
| | | Gets the file length in bytes. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.Name"> |
| | | <summary> |
| | | Gets the form field name from the Content-Disposition header. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IFormFile.FileName"> |
| | | <summary> |
| | | Gets the file name from the Content-Disposition header. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormFile.OpenReadStream"> |
| | | <summary> |
| | | Opens the request stream for reading the uploaded file. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormFile.CopyTo(System.IO.Stream)"> |
| | | <summary> |
| | | Copies the contents of the uploaded file to the <paramref name="target"/> stream. |
| | | </summary> |
| | | <param name="target">The stream to copy the file contents to.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IFormFile.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Asynchronously copies the contents of the uploaded file to the <paramref name="target"/> stream. |
| | | </summary> |
| | | <param name="target">The stream to copy the file contents to.</param> |
| | | <param name="cancellationToken"></param> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IFormFileCollection"> |
| | | <summary> |
| | | Represents the collection of files sent with the HttpRequest. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IHeaderDictionary"> |
| | | <summary> |
| | | Represents HttpRequest and HttpResponse headers |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IHeaderDictionary.Item(System.String)"> |
| | | <summary> |
| | | IHeaderDictionary has a different indexer contract than IDictionary, where it will return StringValues.Empty for missing entries. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <returns>The stored value, or StringValues.Empty if the key is not present.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IHeaderDictionary.ContentLength"> |
| | | <summary> |
| | | Strongly typed access to the Content-Length header. Implementations must keep this in sync with the string representation. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IQueryCollection"> |
| | | <summary> |
| | | Represents the HttpRequest query string collection |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Count"> |
| | | <summary> |
| | | Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </summary> |
| | | <returns> |
| | | The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Keys"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the |
| | | <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </summary> |
| | | <returns> |
| | | An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object |
| | | that implements <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IQueryCollection.ContainsKey(System.String)"> |
| | | <summary> |
| | | Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains an element |
| | | with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />. |
| | | </param> |
| | | <returns> |
| | | true if the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains an element with |
| | | the key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IQueryCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)"> |
| | | <summary> |
| | | Gets the value associated with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <param name="value"> |
| | | The key of the value to get. |
| | | When this method returns, the value associated with the specified key, if the |
| | | key is found; otherwise, the default value for the type of the value parameter. |
| | | This parameter is passed uninitialized. |
| | | </param> |
| | | <returns> |
| | | true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains |
| | | an element with the specified key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Item(System.String)"> |
| | | <summary> |
| | | Gets the value with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <returns> |
| | | The element with the specified key, or <c>StringValues.Empty</c> if the key is not present. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> has a different indexer contract than |
| | | <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>StringValues.Empty</c> for missing entries |
| | | rather than throwing an Exception. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IRequestCookieCollection"> |
| | | <summary> |
| | | Represents the HttpRequest cookie collection |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Count"> |
| | | <summary> |
| | | Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </summary> |
| | | <returns> |
| | | The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Keys"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the |
| | | <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </summary> |
| | | <returns> |
| | | An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object |
| | | that implements <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IRequestCookieCollection.ContainsKey(System.String)"> |
| | | <summary> |
| | | Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains an element |
| | | with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />. |
| | | </param> |
| | | <returns> |
| | | true if the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains an element with |
| | | the key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IRequestCookieCollection.TryGetValue(System.String,System.String@)"> |
| | | <summary> |
| | | Gets the value associated with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <param name="value"> |
| | | The key of the value to get. |
| | | When this method returns, the value associated with the specified key, if the |
| | | key is found; otherwise, the default value for the type of the value parameter. |
| | | This parameter is passed uninitialized. |
| | | </param> |
| | | <returns> |
| | | true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains |
| | | an element with the specified key; otherwise, false. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Item(System.String)"> |
| | | <summary> |
| | | Gets the value with the specified key. |
| | | </summary> |
| | | <param name="key"> |
| | | The key of the value to get. |
| | | </param> |
| | | <returns> |
| | | The element with the specified key, or <c>string.Empty</c> if the key is not present. |
| | | </returns> |
| | | <exception cref="T:System.ArgumentNullException"> |
| | | key is null. |
| | | </exception> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> has a different indexer contract than |
| | | <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>string.Empty</c> for missing entries |
| | | rather than throwing an Exception. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.IResponseCookies"> |
| | | <summary> |
| | | A wrapper for the response Set-Cookie header. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Append(System.String,System.String)"> |
| | | <summary> |
| | | Add a new cookie and value. |
| | | </summary> |
| | | <param name="key">Name of the new cookie.</param> |
| | | <param name="value">Value of the new cookie.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Append(System.String,System.String,Microsoft.AspNetCore.Http.CookieOptions)"> |
| | | <summary> |
| | | Add a new cookie. |
| | | </summary> |
| | | <param name="key">Name of the new cookie.</param> |
| | | <param name="value">Value of the new cookie.</param> |
| | | <param name="options"><see cref="T:Microsoft.AspNetCore.Http.CookieOptions"/> included in the new cookie setting.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Delete(System.String)"> |
| | | <summary> |
| | | Sets an expired cookie. |
| | | </summary> |
| | | <param name="key">Name of the cookie to expire.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Delete(System.String,Microsoft.AspNetCore.Http.CookieOptions)"> |
| | | <summary> |
| | | Sets an expired cookie. |
| | | </summary> |
| | | <param name="key">Name of the cookie to expire.</param> |
| | | <param name="options"> |
| | | <see cref="T:Microsoft.AspNetCore.Http.CookieOptions"/> used to discriminate the particular cookie to expire. The |
| | | <see cref="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"/> and <see cref="P:Microsoft.AspNetCore.Http.CookieOptions.Path"/> values are especially important. |
| | | </param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ISession.IsAvailable"> |
| | | <summary> |
| | | Indicate whether the current session has loaded. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ISession.Id"> |
| | | <summary> |
| | | A unique identifier for the current session. This is not the same as the session cookie |
| | | since the cookie lifetime may not be the same as the session entry lifetime in the data store. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.ISession.Keys"> |
| | | <summary> |
| | | Enumerates all the keys, if any. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.LoadAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Load the session from the data store. This may throw if the data store is unavailable. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.CommitAsync(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Store the session in the data store. This may throw if the data store is unavailable. |
| | | </summary> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.TryGetValue(System.String,System.Byte[]@)"> |
| | | <summary> |
| | | Retrieve the value of the given key, if present. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <param name="value"></param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.Set(System.String,System.Byte[])"> |
| | | <summary> |
| | | Set the given key and value in the current session. This will throw if the session |
| | | was not established prior to sending the response. |
| | | </summary> |
| | | <param name="key"></param> |
| | | <param name="value"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.Remove(System.String)"> |
| | | <summary> |
| | | Remove the given key from the session if present. |
| | | </summary> |
| | | <param name="key"></param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.ISession.Clear"> |
| | | <summary> |
| | | Remove all entries from the current session, if any. |
| | | The session cookie is not removed. |
| | | </summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.AspNetCore.Routing.Abstractions</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.#ctor(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Initializes a fast <see cref="T:Microsoft.Extensions.Internal.PropertyHelper"/>. |
| | | This constructor does not cache the helper. For caching, use <see cref="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Property"> |
| | | <summary> |
| | | Gets the backing <see cref="T:System.Reflection.PropertyInfo"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Name"> |
| | | <summary> |
| | | Gets (or sets in derived types) the property name. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueGetter"> |
| | | <summary> |
| | | Gets the property value getter. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueSetter"> |
| | | <summary> |
| | | Gets the property value setter. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetValue(System.Object)"> |
| | | <summary> |
| | | Returns the property value for the specified <paramref name="instance"/>. |
| | | </summary> |
| | | <param name="instance">The object whose property value will be returned.</param> |
| | | <returns>The property value.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.SetValue(System.Object,System.Object)"> |
| | | <summary> |
| | | Sets the property value for the specified <paramref name="instance" />. |
| | | </summary> |
| | | <param name="instance">The object whose property value will be set.</param> |
| | | <param name="value">The property value.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Reflection.TypeInfo)"> |
| | | <summary> |
| | | Creates and caches fast property helpers that expose getters for every public get property on the |
| | | underlying type. |
| | | </summary> |
| | | <param name="typeInfo">The type info to extract property accessors for.</param> |
| | | <returns>A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)"> |
| | | <summary> |
| | | Creates and caches fast property helpers that expose getters for every public get property on the |
| | | specified type. |
| | | </summary> |
| | | <param name="type">The type to extract property accessors for.</param> |
| | | <returns>A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Reflection.TypeInfo)"> |
| | | <summary> |
| | | <para> |
| | | Creates and caches fast property helpers that expose getters for every non-hidden get property |
| | | on the specified type. |
| | | </para> |
| | | <para> |
| | | <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been |
| | | hidden by definitions using the <c>new</c> keyword. |
| | | </para> |
| | | </summary> |
| | | <param name="typeInfo">The type info to extract property accessors for.</param> |
| | | <returns> |
| | | A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Type)"> |
| | | <summary> |
| | | <para> |
| | | Creates and caches fast property helpers that expose getters for every non-hidden get property |
| | | on the specified type. |
| | | </para> |
| | | <para> |
| | | <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been |
| | | hidden by definitions using the <c>new</c> keyword. |
| | | </para> |
| | | </summary> |
| | | <param name="type">The type to extract property accessors for.</param> |
| | | <returns> |
| | | A cached array of all public properties of the specified type. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertyGetter(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Creates a single fast property getter. The result is not cached. |
| | | </summary> |
| | | <param name="propertyInfo">propertyInfo to extract the getter for.</param> |
| | | <returns>a fast getter.</returns> |
| | | <remarks> |
| | | This method is more memory efficient than a dynamically compiled lambda, and about the |
| | | same speed. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeNullSafeFastPropertyGetter(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Creates a single fast property getter which is safe for a null input object. The result is not cached. |
| | | </summary> |
| | | <param name="propertyInfo">propertyInfo to extract the getter for.</param> |
| | | <returns>a fast getter.</returns> |
| | | <remarks> |
| | | This method is more memory efficient than a dynamically compiled lambda, and about the |
| | | same speed. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertySetter(System.Reflection.PropertyInfo)"> |
| | | <summary> |
| | | Creates a single fast property setter for reference types. The result is not cached. |
| | | </summary> |
| | | <param name="propertyInfo">propertyInfo to extract the setter for.</param> |
| | | <returns>a fast getter.</returns> |
| | | <remarks> |
| | | This method is more memory efficient than a dynamically compiled lambda, and about the |
| | | same speed. This only works for reference types. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Internal.PropertyHelper.ObjectToDictionary(System.Object)"> |
| | | <summary> |
| | | Given an object, adds each instance property with a public get method as a key and its |
| | | associated value to a dictionary. |
| | | |
| | | If the object is already an <see cref="T:System.Collections.Generic.IDictionary`2"/> instance, then a copy |
| | | is returned. |
| | | </summary> |
| | | <remarks> |
| | | The implementation of PropertyHelper will cache the property accessors per-type. This is |
| | | faster when the same type is used multiple times with ObjectToDictionary. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Endpoint"> |
| | | <summary> |
| | | Respresents a logical endpoint in an application. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.Endpoint.#ctor(Microsoft.AspNetCore.Http.RequestDelegate,Microsoft.AspNetCore.Http.EndpointMetadataCollection,System.String)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Http.Endpoint"/>. |
| | | </summary> |
| | | <param name="requestDelegate">The delegate used to process requests for the endpoint.</param> |
| | | <param name="metadata"> |
| | | The endpoint <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. May be null. |
| | | </param> |
| | | <param name="displayName"> |
| | | The informational display name of the endpoint. May be null. |
| | | </param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Endpoint.DisplayName"> |
| | | <summary> |
| | | Gets the informational display name of this endpoint. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Endpoint.Metadata"> |
| | | <summary> |
| | | Gets the collection of metadata associated with this endpoint. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Endpoint.RequestDelegate"> |
| | | <summary> |
| | | Gets the delegate used to process requests for the endpoint. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"> |
| | | <summary> |
| | | A collection of arbitrary metadata associated with an endpoint. |
| | | </summary> |
| | | <remarks> |
| | | <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/> instances contain a list of metadata items |
| | | of arbitrary types. The metadata items are stored as an ordered collection with |
| | | items arranged in ascending order of precedence. |
| | | </remarks> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Empty"> |
| | | <summary> |
| | | An empty <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.#ctor(System.Collections.Generic.IEnumerable{System.Object})"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | <param name="items">The metadata items.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.#ctor(System.Object[])"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | <param name="items">The metadata items.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Item(System.Int32)"> |
| | | <summary> |
| | | Gets the item at <paramref name="index"/>. |
| | | </summary> |
| | | <param name="index">The index of the item to retrieve.</param> |
| | | <returns>The item at <paramref name="index"/>.</returns> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Count"> |
| | | <summary> |
| | | Gets the count of metadata items. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetMetadata``1"> |
| | | <summary> |
| | | Gets the most significant metadata item of type <typeparamref name="T"/>. |
| | | </summary> |
| | | <typeparam name="T">The type of metadata to retrieve.</typeparam> |
| | | <returns> |
| | | The most significant metadata of type <typeparamref name="T"/> or <c>null</c>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetOrderedMetadata``1"> |
| | | <summary> |
| | | Gets the metadata items of type <typeparamref name="T"/> in ascending |
| | | order of precedence. |
| | | </summary> |
| | | <typeparam name="T">The type of metadata.</typeparam> |
| | | <returns>A sequence of metadata items of <typeparamref name="T"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetEnumerator"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.IEnumerator"/> of all metadata items. |
| | | </summary> |
| | | <returns>An <see cref="T:System.Collections.IEnumerator"/> of all metadata items.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.System#Collections#Generic#IEnumerable{System#Object}#GetEnumerator"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.Generic.IEnumerator`1"/> of all metadata items. |
| | | </summary> |
| | | <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"/> of all metadata items.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.System#Collections#IEnumerable#GetEnumerator"> |
| | | <summary> |
| | | Gets an <see cref="T:System.Collections.IEnumerator"/> of all metadata items. |
| | | </summary> |
| | | <returns>An <see cref="T:System.Collections.IEnumerator"/> of all metadata items.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator"> |
| | | <summary> |
| | | Enumerates the elements of an <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current"> |
| | | <summary> |
| | | Gets the element at the current position of the enumerator |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Dispose"> |
| | | <summary> |
| | | Releases all resources used by the <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.MoveNext"> |
| | | <summary> |
| | | Advances the enumerator to the next element of the <see cref="T:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator"/>. |
| | | </summary> |
| | | <returns> |
| | | <c>true</c> if the enumerator was successfully advanced to the next element; |
| | | <c>false</c> if the enumerator has passed the end of the collection. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Reset"> |
| | | <summary> |
| | | Sets the enumerator to its initial position, which is before the first element in the collection. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Http.Features.IEndpointFeature"> |
| | | <summary> |
| | | A feature interface for endpoint routing. Use <see cref="P:Microsoft.AspNetCore.Http.HttpContext.Features"/> |
| | | to access an instance associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IEndpointFeature.Endpoint"> |
| | | <summary> |
| | | Gets or sets the selected <see cref="T:Microsoft.AspNetCore.Http.Endpoint"/> for the current |
| | | request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Http.Features.IRouteValuesFeature.RouteValues"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> associated with the currrent |
| | | request. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IOutboundParameterTransformer"> |
| | | <summary> |
| | | Defines the contract that a class must implement to transform route values while building |
| | | a URI. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.IOutboundParameterTransformer.TransformOutbound(System.Object)"> |
| | | <summary> |
| | | Transforms the specified route value to a string for inclusion in a URI. |
| | | </summary> |
| | | <param name="value">The route value to transform.</param> |
| | | <returns>The transformed value.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IParameterPolicy"> |
| | | <summary> |
| | | A marker interface for types that are associated with route parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IRouteConstraint"> |
| | | <summary> |
| | | Defines the contract that a class must implement in order to check whether a URL parameter |
| | | value is valid for a constraint. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.IRouteConstraint.Match(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.IRouter,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteDirection)"> |
| | | <summary> |
| | | Determines whether the URL parameter contains a valid value for this constraint. |
| | | </summary> |
| | | <param name="httpContext">An object that encapsulates information about the HTTP request.</param> |
| | | <param name="route">The router that this constraint belongs to.</param> |
| | | <param name="routeKey">The name of the parameter that is being checked.</param> |
| | | <param name="values">A dictionary that contains the parameters for the URL.</param> |
| | | <param name="routeDirection"> |
| | | An object that indicates whether the constraint check is being performed |
| | | when an incoming request is being handled or when a URL is being generated. |
| | | </param> |
| | | <returns><c>true</c> if the URL parameter contains a valid value; otherwise, <c>false</c>.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IRouteHandler"> |
| | | <summary> |
| | | Defines a contract for a handler of a route. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.IRouteHandler.GetRequestHandler(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteData)"> |
| | | <summary> |
| | | Gets a <see cref="T:Microsoft.AspNetCore.Http.RequestDelegate"/> to handle the request, based on the provided |
| | | <paramref name="routeData"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current routing match.</param> |
| | | <returns> |
| | | A <see cref="T:Microsoft.AspNetCore.Http.RequestDelegate"/>, or <c>null</c> if the handler cannot handle this request. |
| | | </returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.IRoutingFeature"> |
| | | <summary> |
| | | A feature interface for routing functionality. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.IRoutingFeature.RouteData"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.LinkGenerator"> |
| | | <summary> |
| | | Defines a contract to generate absolute and related URIs based on endpoint routing. |
| | | </summary> |
| | | <remarks> |
| | | <para> |
| | | Generating URIs in endpoint routing occurs in two phases. First, an address is bound to a list of |
| | | endpoints that match the address. Secondly, each endpoint's <c>RoutePattern</c> is evaluated, until |
| | | a route pattern that matches the supplied values is found. The resulting output is combined with |
| | | the other URI parts supplied to the link generator and returned. |
| | | </para> |
| | | <para> |
| | | The methods provided by the <see cref="T:Microsoft.AspNetCore.Routing.LinkGenerator"/> type are general infrastructure, and support |
| | | the standard link generator functionality for any type of address. The most convenient way to use |
| | | <see cref="T:Microsoft.AspNetCore.Routing.LinkGenerator"/> is through extension methods that perform operations for a specific |
| | | address type. |
| | | </para> |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetPathByAddress``1(Microsoft.AspNetCore.Http.HttpContext,``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.Nullable{Microsoft.AspNetCore.Http.PathString},Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates a URI with an absolute path based on the provided values and <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="ambientValues">The values associated with the current request. Optional.</param> |
| | | <param name="pathBase"> |
| | | An optional URI path base. Prepended to the path in the resulting URI. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"/> will be used. |
| | | </param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>A URI with an absolute path, or <c>null</c>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetPathByAddress``1(``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates a URI with an absolute path based on the provided values. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="pathBase">An optional URI path base. Prepended to the path in the resulting URI.</param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>A URI with an absolute path, or <c>null</c>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetUriByAddress``1(Microsoft.AspNetCore.Http.HttpContext,``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String,System.Nullable{Microsoft.AspNetCore.Http.HostString},System.Nullable{Microsoft.AspNetCore.Http.PathString},Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates an absolute URI based on the provided values and <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="ambientValues">The values associated with the current request. Optional.</param> |
| | | <param name="scheme"> |
| | | The URI scheme, applied to the resulting URI. Optional. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Scheme"/> will be used. |
| | | </param> |
| | | <param name="host"> |
| | | The URI host/authority, applied to the resulting URI. Optional. If not provided, the value <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Host"/> will be used. |
| | | See the remarks section for details about the security implications of the <paramref name="host"/>. |
| | | </param> |
| | | <param name="pathBase"> |
| | | An optional URI path base. Prepended to the path in the resulting URI. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"/> will be used. |
| | | </param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>A URI with an absolute path, or <c>null</c>.</returns> |
| | | <remarks> |
| | | <para> |
| | | The value of <paramref name="host" /> should be a trusted value. Relying on the value of the current request |
| | | can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated. |
| | | See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in |
| | | your deployment environment. |
| | | </para> |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetUriByAddress``1(``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String,Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)"> |
| | | <summary> |
| | | Generates an absolute URI based on the provided values. |
| | | </summary> |
| | | <typeparam name="TAddress">The address type.</typeparam> |
| | | <param name="address">The address value. Used to resolve endpoints.</param> |
| | | <param name="values">The route values. Used to expand parameters in the route template. Optional.</param> |
| | | <param name="scheme">The URI scheme, applied to the resulting URI.</param> |
| | | <param name="host"> |
| | | The URI host/authority, applied to the resulting URI. |
| | | See the remarks section for details about the security implications of the <paramref name="host"/>. |
| | | </param> |
| | | <param name="pathBase">An optional URI path base. Prepended to the path in the resulting URI.</param> |
| | | <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param> |
| | | <param name="options"> |
| | | An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching |
| | | names from <c>RouteOptions</c>. |
| | | </param> |
| | | <returns>An absolute URI, or <c>null</c>.</returns> |
| | | <remarks> |
| | | <para> |
| | | The value of <paramref name="host" /> should be a trusted value. Relying on the value of the current request |
| | | can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated. |
| | | See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in |
| | | your deployment environment. |
| | | </para> |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseUrls"> |
| | | <summary> |
| | | Gets or sets a value indicating whether all generated paths URLs are lower-case. |
| | | Use <see cref="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseQueryStrings" /> to configure the behavior for query strings. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseQueryStrings"> |
| | | <summary> |
| | | Gets or sets a value indicating whether a generated query strings are lower-case. |
| | | This property will be unless <see cref="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseUrls" /> is also <c>true</c>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.AppendTrailingSlash"> |
| | | <summary> |
| | | Gets or sets a value indicating whether a trailing slash should be appended to the generated URLs. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.Abstractions.Resources.RouteValueDictionary_DuplicateKey"> |
| | | <summary> |
| | | An element with the key '{0}' already exists in the {1}. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.Abstractions.Resources.FormatRouteValueDictionary_DuplicateKey(System.Object,System.Object)"> |
| | | <summary> |
| | | An element with the key '{0}' already exists in the {1}. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.Abstractions.Resources.RouteValueDictionary_DuplicatePropertyName"> |
| | | <summary> |
| | | The type '{0}' defines properties '{1}' and '{2}' which differ only by casing. This is not supported by {3} which uses case-insensitive comparisons. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.Abstractions.Resources.FormatRouteValueDictionary_DuplicatePropertyName(System.Object,System.Object,System.Object,System.Object)"> |
| | | <summary> |
| | | The type '{0}' defines properties '{1}' and '{2}' which differ only by casing. This is not supported by {3} which uses case-insensitive comparisons. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteContext"> |
| | | <summary> |
| | | A context object for <see cref="M:Microsoft.AspNetCore.Routing.IRouter.RouteAsync(Microsoft.AspNetCore.Routing.RouteContext)"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteContext.#ctor(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteContext"/> for the provided <paramref name="httpContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteContext.Handler"> |
| | | <summary> |
| | | Gets or sets the handler for the request. An <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> should set <see cref="P:Microsoft.AspNetCore.Routing.RouteContext.Handler"/> |
| | | when it matches. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteContext.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteContext.RouteData"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current context. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteData"> |
| | | <summary> |
| | | Information about the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor(Microsoft.AspNetCore.Routing.RouteData)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance with values copied from <paramref name="other"/>. |
| | | </summary> |
| | | <param name="other">The other <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance to copy.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor(Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance with the specified values. |
| | | </summary> |
| | | <param name="values">The <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> values.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"> |
| | | <summary> |
| | | Gets the data tokens produced by routes on the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteData.Routers"> |
| | | <summary> |
| | | Gets the list of <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> instances on the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteData.Values"> |
| | | <summary> |
| | | Gets the values produced by routes on the current routing path. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.PushState(Microsoft.AspNetCore.Routing.IRouter,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | <para> |
| | | Creates a snapshot of the current state of the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> before appending |
| | | <paramref name="router"/> to <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>, merging <paramref name="values"/> into |
| | | <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/>, and merging <paramref name="dataTokens"/> into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/>. |
| | | </para> |
| | | <para> |
| | | Call <see cref="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore"/> to restore the state of this <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> |
| | | to the state at the time of calling |
| | | <see cref="M:Microsoft.AspNetCore.Routing.RouteData.PushState(Microsoft.AspNetCore.Routing.IRouter,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"/>. |
| | | </para> |
| | | </summary> |
| | | <param name="router"> |
| | | An <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> to append to <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>. If <c>null</c>, then <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/> |
| | | will not be changed. |
| | | </param> |
| | | <param name="values"> |
| | | A <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> to merge into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/>. If <c>null</c>, then |
| | | <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/> will not be changed. |
| | | </param> |
| | | <param name="dataTokens"> |
| | | A <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> to merge into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/>. If <c>null</c>, then |
| | | <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/> will not be changed. |
| | | </param> |
| | | <returns>A <see cref="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"/> that captures the current state.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"> |
| | | <summary> |
| | | A snapshot of the state of a <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.#ctor(Microsoft.AspNetCore.Routing.RouteData,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.Collections.Generic.IList{Microsoft.AspNetCore.Routing.IRouter},Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"/> for <paramref name="routeData"/>. |
| | | </summary> |
| | | <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>.</param> |
| | | <param name="dataTokens">The data tokens.</param> |
| | | <param name="routers">The routers.</param> |
| | | <param name="values">The route values.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore"> |
| | | <summary> |
| | | Restores the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> to the captured state. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteDirection"> |
| | | <summary> |
| | | Indicates whether ASP.NET routing is processing a URL from an HTTP request or generating a URL. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Routing.RouteDirection.IncomingRequest"> |
| | | <summary> |
| | | A URL from a client is being processed. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.AspNetCore.Routing.RouteDirection.UrlGeneration"> |
| | | <summary> |
| | | A URL is being created based on the route definition. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"> |
| | | <summary> |
| | | An <see cref="T:System.Collections.Generic.IDictionary`2"/> type for route values. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.FromArray(System.Collections.Generic.KeyValuePair{System.String,System.Object}[])"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> from the provided array. |
| | | The new instance will take ownership of the array, and may mutate it. |
| | | </summary> |
| | | <param name="items">The items array.</param> |
| | | <returns>A new <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.#ctor"> |
| | | <summary> |
| | | Creates an empty <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.#ctor(System.Object)"> |
| | | <summary> |
| | | Creates a <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> initialized with the specified <paramref name="values"/>. |
| | | </summary> |
| | | <param name="values">An object to initialize the dictionary. The value can be of type |
| | | <see cref="T:System.Collections.Generic.IDictionary`2"/> or <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2"/> |
| | | or an object with public properties as key-value pairs. |
| | | </param> |
| | | <remarks> |
| | | If the value is a dictionary or other <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Collections.Generic.KeyValuePair`2"/>, |
| | | then its entries are copied. Otherwise the object is interpreted as a set of key-value pairs where the |
| | | property names are keys, and property values are the values, and copied into the dictionary. |
| | | Only public instance non-index properties are considered. |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Item(System.String)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Comparer"> |
| | | <summary> |
| | | Gets the comparer for this dictionary. |
| | | </summary> |
| | | <remarks> |
| | | This will always be a reference to <see cref="P:System.StringComparer.OrdinalIgnoreCase"/> |
| | | </remarks> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Count"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#IsReadOnly"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Keys"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.RouteValueDictionary.Values"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Add(System.String,System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Clear"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.ContainsKey(System.String)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.GetEnumerator"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#GetEnumerator"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#IEnumerable#GetEnumerator"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Remove(System.String)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.Remove(System.String,System.Object@)"> |
| | | <summary> |
| | | Attempts to remove and return the value that has the specified key from the <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>. |
| | | </summary> |
| | | <param name="key">The key of the element to remove and return.</param> |
| | | <param name="value">When this method returns, contains the object removed from the <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/>, or <c>null</c> if key does not exist.</param> |
| | | <returns> |
| | | <c>true</c> if the object was removed successfully; otherwise, <c>false</c>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.TryAdd(System.String,System.Object)"> |
| | | <summary> |
| | | Attempts to the add the provided <paramref name="key"/> and <paramref name="value"/> to the dictionary. |
| | | </summary> |
| | | <param name="key">The key.</param> |
| | | <param name="value">The value.</param> |
| | | <returns>Returns <c>true</c> if the value was added. Returns <c>false</c> if the key was already present.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RouteValueDictionary.TryGetValue(System.String,System.Object@)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions"> |
| | | <summary> |
| | | Extension methods for <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> related to routing. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions.GetRouteData(Microsoft.AspNetCore.Http.HttpContext)"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the provided <paramref name="httpContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <returns>The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>, or null.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions.GetRouteValue(Microsoft.AspNetCore.Http.HttpContext,System.String)"> |
| | | <summary> |
| | | Gets a route value from <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/> associated with the provided |
| | | <paramref name="httpContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="key">The key of the route value.</param> |
| | | <returns>The corresponding route value, or null.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.VirtualPathContext"> |
| | | <summary> |
| | | A context for virtual path generation operations. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="ambientValues">The set of route values associated with the current request.</param> |
| | | <param name="values">The set of new values provided for virtual path generation.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String)"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathContext"/>. |
| | | </summary> |
| | | <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param> |
| | | <param name="ambientValues">The set of route values associated with the current request.</param> |
| | | <param name="values">The set of new values provided for virtual path generation.</param> |
| | | <param name="routeName">The name of the route to use for virtual path generation.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.AmbientValues"> |
| | | <summary> |
| | | Gets the set of route values associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.HttpContext"> |
| | | <summary> |
| | | Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.RouteName"> |
| | | <summary> |
| | | Gets the name of the route to use for virtual path generation. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.Values"> |
| | | <summary> |
| | | Gets or sets the set of new values provided for virtual path generation. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.AspNetCore.Routing.VirtualPathData"> |
| | | <summary> |
| | | Represents information about the route and virtual path that are the result of |
| | | generating a URL with the ASP.NET routing middleware. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathData.#ctor(Microsoft.AspNetCore.Routing.IRouter,System.String)"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathData"/> class. |
| | | </summary> |
| | | <param name="router">The object that is used to generate the URL.</param> |
| | | <param name="virtualPath">The generated URL.</param> |
| | | </member> |
| | | <member name="M:Microsoft.AspNetCore.Routing.VirtualPathData.#ctor(Microsoft.AspNetCore.Routing.IRouter,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)"> |
| | | <summary> |
| | | Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathData"/> class. |
| | | </summary> |
| | | <param name="router">The object that is used to generate the URL.</param> |
| | | <param name="virtualPath">The generated URL.</param> |
| | | <param name="dataTokens">The collection of custom values.</param> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.DataTokens"> |
| | | <summary> |
| | | Gets the collection of custom values for the <see cref="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"> |
| | | <summary> |
| | | Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> that was used to generate the URL. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.VirtualPath"> |
| | | <summary> |
| | | Gets or sets the URL that was generated from the <see cref="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"/>. |
| | | </summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.Extensions.Primitives</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:Microsoft.Extensions.Primitives.CancellationChangeToken"> |
| | | <summary> |
| | | A <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> implementation using <see cref="T:System.Threading.CancellationToken"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.#ctor(System.Threading.CancellationToken)"> |
| | | <summary> |
| | | Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.CancellationChangeToken"/>. |
| | | </summary> |
| | | <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/>.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.ActiveChangeCallbacks"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.HasChanged"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.ChangeToken"> |
| | | <summary> |
| | | Propagates notifications that a change has occurred. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action)"> |
| | | <summary> |
| | | Registers the <paramref name="changeTokenConsumer"/> action to be called whenever the token produced changes. |
| | | </summary> |
| | | <param name="changeTokenProducer">Produces the change token.</param> |
| | | <param name="changeTokenConsumer">Action called when the token changes.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange``1(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action{``0},``0)"> |
| | | <summary> |
| | | Registers the <paramref name="changeTokenConsumer"/> action to be called whenever the token produced changes. |
| | | </summary> |
| | | <param name="changeTokenProducer">Produces the change token.</param> |
| | | <param name="changeTokenConsumer">Action called when the token changes.</param> |
| | | <param name="state">state for the consumer.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.CompositeChangeToken"> |
| | | <summary> |
| | | An <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which represents one or more <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> instances. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.Primitives.IChangeToken})"> |
| | | <summary> |
| | | Creates a new instance of <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken"/>. |
| | | </summary> |
| | | <param name="changeTokens">The list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> to compose.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens"> |
| | | <summary> |
| | | Returns the list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which compose the current <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.HasChanged"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ActiveChangeCallbacks"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.Extensions.Append(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Add the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to the <see cref="T:System.Text.StringBuilder"/>. |
| | | </summary> |
| | | <param name="builder">The <see cref="T:System.Text.StringBuilder"/> to add to.</param> |
| | | <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to add.</param> |
| | | <returns>The original <see cref="T:System.Text.StringBuilder"/>.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.IChangeToken"> |
| | | <summary> |
| | | Propagates notifications that a change has occurred. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"> |
| | | <summary> |
| | | Gets a value that indicates if a change has occurred. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.IChangeToken.ActiveChangeCallbacks"> |
| | | <summary> |
| | | Indicates if this token will pro-actively raise callbacks. If <c>false</c>, the token consumer must |
| | | poll <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> to detect changes. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.IChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)"> |
| | | <summary> |
| | | Registers for a callback that will be invoked when the entry has changed. |
| | | <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"/> MUST be set before the callback is invoked. |
| | | </summary> |
| | | <param name="callback">The <see cref="T:System.Action`1"/> to invoke.</param> |
| | | <param name="state">State to be passed into the callback.</param> |
| | | <returns>An <see cref="T:System.IDisposable"/> that is used to unregister the callback.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.Resources"> |
| | | <summary> |
| | | A strongly-typed resource class, for looking up localized strings, etc. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.ResourceManager"> |
| | | <summary> |
| | | Returns the cached ResourceManager instance used by this class. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.Culture"> |
| | | <summary> |
| | | Overrides the current thread's CurrentUICulture property for all |
| | | resource lookups using this strongly typed resource class. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.Argument_InvalidOffsetLength"> |
| | | <summary> |
| | | Looks up a localized string similar to Offset and length are out of bounds for the string or length is greater than the number of characters from index to the end of the string.. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.Resources.Capacity_CannotChangeAfterWriteStarted"> |
| | | <summary> |
| | | Looks up a localized string similar to Cannot change capacity after write started.. |
| | | </summary> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.StringSegment"> |
| | | <summary> |
| | | An optimized representation of a substring. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.Extensions.Primitives.StringSegment.Empty"> |
| | | <summary> |
| | | A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> for <see cref="F:System.String.Empty"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String)"> |
| | | <summary> |
| | | Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> struct. |
| | | </summary> |
| | | <param name="buffer"> |
| | | The original <see cref="T:System.String"/>. The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> includes the whole <see cref="T:System.String"/>. |
| | | </param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String,System.Int32,System.Int32)"> |
| | | <summary> |
| | | Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> struct. |
| | | </summary> |
| | | <param name="buffer">The original <see cref="T:System.String"/> used as buffer.</param> |
| | | <param name="offset">The offset of the segment within the <paramref name="buffer"/>.</param> |
| | | <param name="length">The length of the segment.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Buffer"> |
| | | <summary> |
| | | Gets the <see cref="T:System.String"/> buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Offset"> |
| | | <summary> |
| | | Gets the offset within the buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Length"> |
| | | <summary> |
| | | Gets the length of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Value"> |
| | | <summary> |
| | | Gets the value of this segment as a <see cref="T:System.String"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.HasValue"> |
| | | <summary> |
| | | Gets whether or not this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> contains a valid value. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Extensions.Primitives.StringSegment.Item(System.Int32)"> |
| | | <summary> |
| | | Gets the <see cref="T:System.Char"/> at a specified position in the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="index">The offset into the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></param> |
| | | <returns>The <see cref="T:System.Char"/> at a specified position.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsSpan"> |
| | | <summary> |
| | | Gets a <see cref="T:System.ReadOnlySpan`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <returns>The <see cref="T:System.ReadOnlySpan`1"/> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsMemory"> |
| | | <summary> |
| | | Gets a <see cref="T:System.ReadOnlyMemory`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <returns>The <see cref="T:System.ReadOnlyMemory`1"/> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)"> |
| | | <summary> |
| | | Compares substrings of two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> objects using the specified rules, |
| | | and returns an integer that indicates their relative position in the sort order. |
| | | </summary> |
| | | <param name="a">The first StringSegment to compare.</param> |
| | | <param name="b">The second StringSegment to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param> |
| | | <returns> |
| | | A 32-bit signed integer indicating the lexical relationship between the two comparands. |
| | | The value is negative if <paramref name="a"/> is less than <paramref name="b"/>, 0 if the two comparands are equal, |
| | | and positive if <paramref name="a"/> is greater than <paramref name="b"/>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.Object)"> |
| | | <inheritdoc /> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Indicates whether the current object is equal to another object of the same type. |
| | | </summary> |
| | | <param name="other">An object to compare with this object.</param> |
| | | <returns><code>true</code> if the current object is equal to the other parameter; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)"> |
| | | <summary> |
| | | Indicates whether the current object is equal to another object of the same type. |
| | | </summary> |
| | | <param name="other">An object to compare with this object.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if the current object is equal to the other parameter; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)"> |
| | | <summary> |
| | | Determines whether two specified StringSegment objects have the same value. A parameter specifies the culture, case, and |
| | | sort rules used in the comparison. |
| | | </summary> |
| | | <param name="a">The first StringSegment to compare.</param> |
| | | <param name="b">The second StringSegment to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param> |
| | | <returns><code>true</code> if the objects are equal; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String)"> |
| | | <summary> |
| | | Checks if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <returns><code>true</code> if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String,System.StringComparison)"> |
| | | <summary> |
| | | Checks if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.GetHashCode"> |
| | | <inheritdoc /> |
| | | <remarks> |
| | | This GetHashCode is expensive since it allocates on every call. |
| | | However this is required to ensure we retain any behavior (such as hash code randomization) that |
| | | string.GetHashCode has. |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Equality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> have the same value. |
| | | </summary> |
| | | <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <returns><code>true</code> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Inequality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> have different values. |
| | | </summary> |
| | | <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <code>null</code>.</param> |
| | | <returns><code>true</code> if the value of <paramref name="left"/> is different from the value of <paramref name="right"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringSegment"> |
| | | <summary> |
| | | Creates a new <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> from the given <see cref="T:System.String"/>. |
| | | </summary> |
| | | <param name="value">The <see cref="T:System.String"/> to convert to a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlySpan{System.Char}"> |
| | | <summary> |
| | | Creates a see <see cref="T:System.ReadOnlySpan`1"/> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to convert to a <see cref="T:System.ReadOnlySpan`1"/>.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlyMemory{System.Char}"> |
| | | <summary> |
| | | Creates a see <see cref="T:System.ReadOnlyMemory`1"/> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to convert to a <see cref="T:System.ReadOnlyMemory`1"/>.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.StartsWith(System.String,System.StringComparison)"> |
| | | <summary> |
| | | Checks if the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> matches the specified <see cref="T:System.String"/> when compared using the specified <paramref name="comparisonType"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/>to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if <paramref name="text"/> matches the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.EndsWith(System.String,System.StringComparison)"> |
| | | <summary> |
| | | Checks if the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> matches the specified <see cref="T:System.String"/> when compared using the specified <paramref name="comparisonType"/>. |
| | | </summary> |
| | | <param name="text">The <see cref="T:System.String"/>to compare.</param> |
| | | <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param> |
| | | <returns><code>true</code> if <paramref name="text"/> matches the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32)"> |
| | | <summary> |
| | | Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The substring starts at the position specified by <paramref name="offset"/> and has the remaining length. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <returns>A <see cref="T:System.String"/> that is equivalent to the substring of remaining length that begins at |
| | | <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32,System.Int32)"> |
| | | <summary> |
| | | Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The substring starts at the position specified by <paramref name="offset"/> and has the specified <paramref name="length"/>. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <param name="length">The number of characters in the substring.</param> |
| | | <returns>A <see cref="T:System.String"/> that is equivalent to the substring of length <paramref name="length"/> that begins at |
| | | <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32)"> |
| | | <summary> |
| | | Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> starts at the position specified by <paramref name="offset"/>. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that begins at <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> |
| | | whose length is the remainder.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32,System.Int32)"> |
| | | <summary> |
| | | Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> starts at the position specified by <paramref name="offset"/> and has the specified <paramref name="length"/>. |
| | | </summary> |
| | | <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param> |
| | | <param name="length">The number of characters in the substring.</param> |
| | | <returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that is equivalent to the substring of length <paramref name="length"/> that begins at <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32,System.Int32)"> |
| | | <summary> |
| | | Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The search starts at <paramref name="start"/> and examines a specified number of <paramref name="count"/> character positions. |
| | | </summary> |
| | | <param name="c">The Unicode character to seek.</param> |
| | | <param name="start">The zero-based index position at which the search starts. </param> |
| | | <param name="count">The number of characters to examine.</param> |
| | | <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32)"> |
| | | <summary> |
| | | Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | The search starts at <paramref name="start"/>. |
| | | </summary> |
| | | <param name="c">The Unicode character to seek.</param> |
| | | <param name="start">The zero-based index position at which the search starts. </param> |
| | | <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char)"> |
| | | <summary> |
| | | Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>. |
| | | </summary> |
| | | <param name="c">The Unicode character to seek.</param> |
| | | <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32,System.Int32)"> |
| | | <summary> |
| | | Reports the zero-based index of the first occurrence in this instance of any character in a specified array |
| | | of Unicode characters. The search starts at a specified character position and examines a specified number |
| | | of character positions. |
| | | </summary> |
| | | <param name="anyOf">A Unicode character array containing one or more characters to seek.</param> |
| | | <param name="startIndex">The search starting position.</param> |
| | | <param name="count">The number of character positions to examine.</param> |
| | | <returns>The zero-based index position of the first occurrence in this instance where any character in anyOf |
| | | was found; -1 if no character in anyOf was found.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32)"> |
| | | <summary> |
| | | Reports the zero-based index of the first occurrence in this instance of any character in a specified array |
| | | of Unicode characters. The search starts at a specified character position. |
| | | </summary> |
| | | <param name="anyOf">A Unicode character array containing one or more characters to seek.</param> |
| | | <param name="startIndex">The search starting position.</param> |
| | | <returns>The zero-based index position of the first occurrence in this instance where any character in anyOf |
| | | was found; -1 if no character in anyOf was found.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[])"> |
| | | <summary> |
| | | Reports the zero-based index of the first occurrence in this instance of any character in a specified array |
| | | of Unicode characters. |
| | | </summary> |
| | | <param name="anyOf">A Unicode character array containing one or more characters to seek.</param> |
| | | <returns>The zero-based index position of the first occurrence in this instance where any character in anyOf |
| | | was found; -1 if no character in anyOf was found.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.LastIndexOf(System.Char)"> |
| | | <summary> |
| | | Reports the zero-based index position of the last occurrence of a specified Unicode character within this instance. |
| | | </summary> |
| | | <param name="value">The Unicode character to seek.</param> |
| | | <returns>The zero-based index position of value if that character is found, or -1 if it is not.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Trim"> |
| | | <summary> |
| | | Removes all leading and trailing whitespaces. |
| | | </summary> |
| | | <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimStart"> |
| | | <summary> |
| | | Removes all leading whitespaces. |
| | | </summary> |
| | | <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimEnd"> |
| | | <summary> |
| | | Removes all trailing whitespaces. |
| | | </summary> |
| | | <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.Split(System.Char[])"> |
| | | <summary> |
| | | Splits a string into StringSegments that are based on the characters in an array. |
| | | </summary> |
| | | <param name="chars">A character array that delimits the substrings in this string, an empty array that |
| | | contains no delimiters, or null.</param> |
| | | <returns>An <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/> whose elements contain the StringSegmeents from this instance |
| | | that are delimited by one or more characters in separator.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Indicates whether the specified StringSegment is null or an Empty string. |
| | | </summary> |
| | | <param name="value">The StringSegment to test.</param> |
| | | <returns></returns> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringSegment.ToString"> |
| | | <summary> |
| | | Returns the <see cref="T:System.String"/> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> or <code>String.Empty</code> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> does not contain a value. |
| | | </summary> |
| | | <returns>The <see cref="T:System.String"/> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> or <code>String.Empty</code> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> does not contain a value.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.StringTokenizer"> |
| | | <summary> |
| | | Tokenizes a <c>string</c> into <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>s. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(System.String,System.Char[])"> |
| | | <summary> |
| | | Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/>. |
| | | </summary> |
| | | <param name="value">The <c>string</c> to tokenize.</param> |
| | | <param name="separators">The characters to tokenize by.</param> |
| | | </member> |
| | | <member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Char[])"> |
| | | <summary> |
| | | Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/>. |
| | | </summary> |
| | | <param name="value">The <c>StringSegment</c> to tokenize.</param> |
| | | <param name="separators">The characters to tokenize by.</param> |
| | | </member> |
| | | <member name="T:Microsoft.Extensions.Primitives.StringValues"> |
| | | <summary> |
| | | Represents zero/null, one, or many strings in an efficient way. |
| | | </summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>Microsoft.Net.Http.Headers</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.SetHttpFileName(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Sets both FileName and FileNameStar using encodings appropriate for HTTP headers. |
| | | </summary> |
| | | <param name="fileName"></param> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.SetMimeFileName(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Sets the FileName parameter using encodings appropriate for MIME headers. |
| | | The FileNameStar parameter is removed. |
| | | </summary> |
| | | <param name="fileName"></param> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.ContentDispositionHeaderValueIdentityExtensions"> |
| | | <summary> |
| | | Various extension methods for <see cref="T:Microsoft.Net.Http.Headers.ContentDispositionHeaderValue"/> for identifying the type of the disposition header |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValueIdentityExtensions.IsFileDisposition(Microsoft.Net.Http.Headers.ContentDispositionHeaderValue)"> |
| | | <summary> |
| | | Checks if the content disposition header is a file disposition |
| | | </summary> |
| | | <param name="header">The header to check</param> |
| | | <returns>True if the header is file disposition, false otherwise</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.ContentDispositionHeaderValueIdentityExtensions.IsFormDisposition(Microsoft.Net.Http.Headers.ContentDispositionHeaderValue)"> |
| | | <summary> |
| | | Checks if the content disposition header is a form disposition |
| | | </summary> |
| | | <param name="header">The header to check</param> |
| | | <returns>True if the header is form disposition, false otherwise</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.EntityTagHeaderValue.Equals(System.Object)"> |
| | | <summary> |
| | | Check against another <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> for equality. |
| | | This equality check should not be used to determine if two values match under the RFC specifications (https://tools.ietf.org/html/rfc7232#section-2.3.2). |
| | | </summary> |
| | | <param name="obj">The other value to check against for equality.</param> |
| | | <returns> |
| | | <c>true</c> if the strength and tag of the two values match, |
| | | <c>false</c> if the other value is null, is not an <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/>, or if there is a mismatch of strength or tag between the two values. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.EntityTagHeaderValue.Compare(Microsoft.Net.Http.Headers.EntityTagHeaderValue,System.Boolean)"> |
| | | <summary> |
| | | Compares against another <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> to see if they match under the RFC specifications (https://tools.ietf.org/html/rfc7232#section-2.3.2). |
| | | </summary> |
| | | <param name="other">The other <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> to compare against.</param> |
| | | <param name="useStrongComparison"><c>true</c> to use a strong comparison, <c>false</c> to use a weak comparison</param> |
| | | <returns> |
| | | <c>true</c> if the <see cref="T:Microsoft.Net.Http.Headers.EntityTagHeaderValue"/> match for the given comparison type, |
| | | <c>false</c> if the other value is null or the comparison failed. |
| | | </returns> |
| | | </member> |
| | | <member name="F:Microsoft.Net.Http.Headers.HeaderQuality.Match"> |
| | | <summary> |
| | | Quality factor to indicate a perfect match. |
| | | </summary> |
| | | </member> |
| | | <member name="F:Microsoft.Net.Http.Headers.HeaderQuality.NoMatch"> |
| | | <summary> |
| | | Quality factor to indicate no match. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.TryParseSeconds(Microsoft.Extensions.Primitives.StringValues,System.String,System.Nullable{System.TimeSpan}@)"> |
| | | <summary> |
| | | Try to find a target header value among the set of given header values and parse it as a |
| | | <see cref="T:System.TimeSpan"/>. |
| | | </summary> |
| | | <param name="headerValues"> |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> containing the set of header values to search. |
| | | </param> |
| | | <param name="targetValue"> |
| | | The target header value to look for. |
| | | </param> |
| | | <param name="value"> |
| | | When this method returns, contains the parsed <see cref="T:System.TimeSpan"/>, if the parsing succeeded, or |
| | | null if the parsing failed. The conversion fails if the <paramref name="targetValue"/> was not |
| | | found or could not be parsed as a <see cref="T:System.TimeSpan"/>. This parameter is passed uninitialized; |
| | | any value originally supplied in result will be overwritten. |
| | | </param> |
| | | <returns> |
| | | <code>true</code> if <paramref name="targetValue"/> is found and successfully parsed; otherwise, |
| | | <code>false</code>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.ContainsCacheDirective(Microsoft.Extensions.Primitives.StringValues,System.String)"> |
| | | <summary> |
| | | Check if a target directive exists among the set of given cache control directives. |
| | | </summary> |
| | | <param name="cacheControlDirectives"> |
| | | The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> containing the set of cache control directives. |
| | | </param> |
| | | <param name="targetDirectives"> |
| | | The target cache control directives to look for. |
| | | </param> |
| | | <returns> |
| | | <code>true</code> if <paramref name="targetDirectives"/> is contained in <paramref name="cacheControlDirectives"/>; |
| | | otherwise, <code>false</code>. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.TryParseNonNegativeInt32(Microsoft.Extensions.Primitives.StringSegment,System.Int32@)"> |
| | | <summary> |
| | | Try to convert a string representation of a positive number to its 64-bit signed integer equivalent. |
| | | A return value indicates whether the conversion succeeded or failed. |
| | | </summary> |
| | | <param name="value"> |
| | | A string containing a number to convert. |
| | | </param> |
| | | <param name="result"> |
| | | When this method returns, contains the 64-bit signed integer value equivalent of the number contained |
| | | in the string, if the conversion succeeded, or zero if the conversion failed. The conversion fails if |
| | | the string is null or String.Empty, is not of the correct format, is negative, or represents a number |
| | | greater than Int64.MaxValue. This parameter is passed uninitialized; any value originally supplied in |
| | | result will be overwritten. |
| | | </param> |
| | | <returns><code>true</code> if parsing succeeded; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.TryParseNonNegativeInt64(Microsoft.Extensions.Primitives.StringSegment,System.Int64@)"> |
| | | <summary> |
| | | Try to convert a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> representation of a positive number to its 64-bit signed |
| | | integer equivalent. A return value indicates whether the conversion succeeded or failed. |
| | | </summary> |
| | | <param name="value"> |
| | | A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> containing a number to convert. |
| | | </param> |
| | | <param name="result"> |
| | | When this method returns, contains the 64-bit signed integer value equivalent of the number contained |
| | | in the string, if the conversion succeeded, or zero if the conversion failed. The conversion fails if |
| | | the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> is null or String.Empty, is not of the correct format, is negative, or |
| | | represents a number greater than Int64.MaxValue. This parameter is passed uninitialized; any value |
| | | originally supplied in result will be overwritten. |
| | | </param> |
| | | <returns><code>true</code> if parsing succeeded; otherwise, <code>false</code>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.FormatNonNegativeInt64(System.Int64)"> |
| | | <summary> |
| | | Converts the non-negative 64-bit numeric value to its equivalent string representation. |
| | | </summary> |
| | | <param name="value"> |
| | | The number to convert. |
| | | </param> |
| | | <returns> |
| | | The string representation of the value of this instance, consisting of a sequence of digits ranging from 0 to 9 with no leading zeroes. |
| | | </returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.UnescapeAsQuotedString(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Given a quoted-string as defined by <see href="https://tools.ietf.org/html/rfc7230#section-3.2.6">the RFC specification</see>, |
| | | removes quotes and unescapes backslashes and quotes. This assumes that the input is a valid quoted-string. |
| | | </summary> |
| | | <param name="input">The quoted-string to be unescaped.</param> |
| | | <returns>An unescaped version of the quoted-string.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.HeaderUtilities.EscapeAsQuotedString(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Escapes a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> as a quoted-string, which is defined by |
| | | <see href="https://tools.ietf.org/html/rfc7230#section-3.2.6">the RFC specification</see>. |
| | | </summary> |
| | | <remarks> |
| | | This will add a backslash before each backslash and quote and add quotes |
| | | around the input. Assumes that the input does not have quotes around it, |
| | | as this method will add them. Throws if the input contains any invalid escape characters, |
| | | as defined by rfc7230. |
| | | </remarks> |
| | | <param name="input">The input to be escaped.</param> |
| | | <returns>An escaped version of the quoted-string.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"> |
| | | <summary> |
| | | Representation of the media type header. See <see href="https://tools.ietf.org/html/rfc6838"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.#ctor(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Initializes a <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> instance. |
| | | </summary> |
| | | <param name="mediaType">A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> representation of a media type. |
| | | The text provided must be a single media type without parameters. </param> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Double)"> |
| | | <summary> |
| | | Initializes a <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> instance. |
| | | </summary> |
| | | <param name="mediaType">A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> representation of a media type. |
| | | The text provided must be a single media type without parameters. </param> |
| | | <param name="quality">The <see cref="T:System.Double"/> with the quality of the media type.</param> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Charset"> |
| | | <summary> |
| | | Gets or sets the value of the charset parameter. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no charset. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Encoding"> |
| | | <summary> |
| | | Gets or sets the value of the Encoding parameter. Setting the Encoding will set |
| | | the <see cref="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Charset"/> to <see cref="P:System.Text.Encoding.WebName"/>. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Boundary"> |
| | | <summary> |
| | | Gets or sets the value of the boundary parameter. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no boundary. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Parameters"> |
| | | <summary> |
| | | Gets or sets the media type's parameters. Returns an empty <see cref="T:System.Collections.Generic.IList`1"/> |
| | | if there are no parameters. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Quality"> |
| | | <summary> |
| | | Gets or sets the value of the quality parameter. Returns null |
| | | if there is no quality. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MediaType"> |
| | | <summary> |
| | | Gets or sets the value of the media type. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no media type. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/json"</c>, the property gives the value |
| | | <c>"application/json"</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Type"> |
| | | <summary> |
| | | Gets the type of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/json"</c>, the property gives the value <c>"application"</c>. |
| | | </example> |
| | | <remarks>See <see href="https://tools.ietf.org/html/rfc6838#section-4.2"/> for more details on the type.</remarks> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.SubType"> |
| | | <summary> |
| | | Gets the subtype of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value |
| | | <c>"vnd.example+json"</c>. |
| | | </example> |
| | | <remarks>See <see href="https://tools.ietf.org/html/rfc6838#section-4.2"/> for more details on the subtype.</remarks> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.SubTypeWithoutSuffix"> |
| | | <summary> |
| | | Gets subtype of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>, excluding any structured syntax suffix. Returns <see cref="F:Microsoft.Extensions.Primitives.StringSegment.Empty"/> |
| | | if there is no subtype without suffix. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value |
| | | <c>"vnd.example"</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Suffix"> |
| | | <summary> |
| | | Gets the structured syntax suffix of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> if it has one. |
| | | See <see href="https://tools.ietf.org/html/rfc6838#section-4.8">The RFC documentation on structured syntaxes.</see> |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value |
| | | <c>"json"</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Facets"> |
| | | <summary> |
| | | Get a <see cref="T:System.Collections.Generic.IList`1"/> of facets of the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>. Facets are a |
| | | period separated list of StringSegments in the <see cref="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.SubTypeWithoutSuffix"/>. |
| | | See <see href="https://tools.ietf.org/html/rfc6838#section-3">The RFC documentation on facets.</see> |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, the property gives the value: |
| | | <c>{"vnd", "example"}</c> |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MatchesAllTypes"> |
| | | <summary> |
| | | Gets whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> matches all types. |
| | | </summary> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MatchesAllSubTypes"> |
| | | <summary> |
| | | Gets whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> matches all subtypes. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/*"</c>, this property is <c>true</c>. |
| | | </example> |
| | | <example> |
| | | For the media type <c>"application/json"</c>, this property is <c>false</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.MatchesAllSubTypesWithoutSuffix"> |
| | | <summary> |
| | | Gets whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> matches all subtypes, ignoring any structured syntax suffix. |
| | | </summary> |
| | | <example> |
| | | For the media type <c>"application/*+json"</c>, this property is <c>true</c>. |
| | | </example> |
| | | <example> |
| | | For the media type <c>"application/vnd.example+json"</c>, this property is <c>false</c>. |
| | | </example> |
| | | </member> |
| | | <member name="P:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.IsReadOnly"> |
| | | <summary> |
| | | Gets whether the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> is readonly. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.IsSubsetOf(Microsoft.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <summary> |
| | | Gets a value indicating whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> is a subset of |
| | | <paramref name="otherMediaType"/>. A "subset" is defined as the same or a more specific media type |
| | | according to the precedence described in https://www.ietf.org/rfc/rfc2068.txt section 14.1, Accept. |
| | | </summary> |
| | | <param name="otherMediaType">The <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> to compare.</param> |
| | | <returns> |
| | | A value indicating whether this <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> is a subset of |
| | | <paramref name="otherMediaType"/>. |
| | | </returns> |
| | | <remarks> |
| | | For example "multipart/mixed; boundary=1234" is a subset of "multipart/mixed; boundary=1234", |
| | | "multipart/mixed", "multipart/*", and "*/*" but not "multipart/mixed; boundary=2345" or |
| | | "multipart/message; boundary=1234". |
| | | </remarks> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Copy"> |
| | | <summary> |
| | | Performs a deep copy of this object and all of it's NameValueHeaderValue sub components, |
| | | while avoiding the cost of re-validating the components. |
| | | </summary> |
| | | <returns>A deep copy.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.CopyAsReadOnly"> |
| | | <summary> |
| | | Performs a deep copy of this object and all of it's NameValueHeaderValue sub components, |
| | | while avoiding the cost of re-validating the components. This copy is read-only. |
| | | </summary> |
| | | <returns>A deep, read-only, copy.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.Parse(Microsoft.Extensions.Primitives.StringSegment)"> |
| | | <summary> |
| | | Takes a media type and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue" /> and its associated parameters. |
| | | </summary> |
| | | <param name="input">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> with the media type.</param> |
| | | <returns>The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.TryParse(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Net.Http.Headers.MediaTypeHeaderValue@)"> |
| | | <summary> |
| | | Takes a media type, which can include parameters, and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue" /> and its associated parameters. |
| | | </summary> |
| | | <param name="input">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> with the media type. The media type constructed here must not have an y</param> |
| | | <param name="parsedValue">The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/></param> |
| | | <returns>True if the value was successfully parsed.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.ParseList(System.Collections.Generic.IList{System.String})"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <returns>The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.ParseStrictList(System.Collections.Generic.IList{System.String})"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | Throws if there is invalid data in a string. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <returns>The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.TryParseList(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{Microsoft.Net.Http.Headers.MediaTypeHeaderValue}@)"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <param name="parsedValues">The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</param> |
| | | <returns>True if the value was successfully parsed.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValue.TryParseStrictList(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{Microsoft.Net.Http.Headers.MediaTypeHeaderValue}@)"> |
| | | <summary> |
| | | Takes an <see cref="T:System.Collections.Generic.IList`1"/> of <see cref="T:System.String"/> and parses it into the <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"></see> and its associated parameters. |
| | | </summary> |
| | | <param name="inputs">A list of media types</param> |
| | | <param name="parsedValues">The parsed <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/>.</param> |
| | | <returns>True if the value was successfully parsed.</returns> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer"> |
| | | <summary> |
| | | Implementation of <see cref="T:System.Collections.Generic.IComparer`1"/> that can compare accept media type header fields |
| | | based on their quality values (a.k.a q-values). |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer.Compare(Microsoft.Net.Http.Headers.MediaTypeHeaderValue,Microsoft.Net.Http.Headers.MediaTypeHeaderValue)"> |
| | | <inheritdoc /> |
| | | <remarks> |
| | | Performs comparisons based on the arguments' quality values |
| | | (aka their "q-value"). Values with identical q-values are considered equal (i.e. the result is 0) |
| | | with the exception that suffixed subtype wildcards are considered less than subtype wildcards, subtype wildcards |
| | | are considered less than specific media types and full wildcards are considered less than |
| | | subtype wildcards. This allows callers to sort a sequence of <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValue"/> following |
| | | their q-values in the order of specific media types, subtype wildcards, and last any full wildcards. |
| | | </remarks> |
| | | <example> |
| | | If we had a list of media types (comma separated): { text/*;q=0.8, text/*+json;q=0.8, */*;q=1, */*;q=0.8, text/plain;q=0.8 } |
| | | Sorting them using Compare would return: { */*;q=0.8, text/*;q=0.8, text/*+json;q=0.8, text/plain;q=0.8, */*;q=1 } |
| | | </example> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.NameValueHeaderValue.Copy"> |
| | | <summary> |
| | | Provides a copy of this object without the cost of re-validating the values. |
| | | </summary> |
| | | <returns>A copy.</returns> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.SetCookieHeaderValue.AppendToStringBuilder(System.Text.StringBuilder)"> |
| | | <summary> |
| | | Append string representation of this <see cref="T:Microsoft.Net.Http.Headers.SetCookieHeaderValue"/> to given |
| | | <paramref name="builder"/>. |
| | | </summary> |
| | | <param name="builder"> |
| | | The <see cref="T:System.Text.StringBuilder"/> to receive the string representation of this |
| | | <see cref="T:Microsoft.Net.Http.Headers.SetCookieHeaderValue"/>. |
| | | </param> |
| | | </member> |
| | | <member name="T:Microsoft.Net.Http.Headers.StringWithQualityHeaderValueComparer"> |
| | | <summary> |
| | | Implementation of <see cref="T:System.Collections.Generic.IComparer`1"/> that can compare content negotiation header fields |
| | | based on their quality values (a.k.a q-values). This applies to values used in accept-charset, |
| | | accept-encoding, accept-language and related header fields with similar syntax rules. See |
| | | <see cref="T:Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer"/> for a comparer for media type |
| | | q-values. |
| | | </summary> |
| | | </member> |
| | | <member name="M:Microsoft.Net.Http.Headers.StringWithQualityHeaderValueComparer.Compare(Microsoft.Net.Http.Headers.StringWithQualityHeaderValue,Microsoft.Net.Http.Headers.StringWithQualityHeaderValue)"> |
| | | <summary> |
| | | Compares two <see cref="T:Microsoft.Net.Http.Headers.StringWithQualityHeaderValue"/> based on their quality value |
| | | (a.k.a their "q-value"). |
| | | Values with identical q-values are considered equal (i.e the result is 0) with the exception of wild-card |
| | | values (i.e. a value of "*") which are considered less than non-wild-card values. This allows to sort |
| | | a sequence of <see cref="T:Microsoft.Net.Http.Headers.StringWithQualityHeaderValue"/> following their q-values ending up with any |
| | | wild-cards at the end. |
| | | </summary> |
| | | <param name="stringWithQuality1">The first value to compare.</param> |
| | | <param name="stringWithQuality2">The second value to compare</param> |
| | | <returns>The result of the comparison.</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) .NET Foundation and Contributors |
| | | |
| | | All rights reserved. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | .NET Runtime uses third-party libraries or other resources that may be |
| | | distributed under licenses different than the .NET Runtime software. |
| | | |
| | | In the event that we accidentally failed to list a required notice, please |
| | | bring it to our attention. Post an issue or email us: |
| | | |
| | | dotnet@microsoft.com |
| | | |
| | | The attached notices are provided for information only. |
| | | |
| | | License notice for ASP.NET |
| | | ------------------------------- |
| | | |
| | | Copyright (c) .NET Foundation. All rights reserved. |
| | | Licensed under the Apache License, Version 2.0. |
| | | |
| | | Available at |
| | | https://github.com/dotnet/aspnetcore/blob/main/LICENSE.txt |
| | | |
| | | License notice for Slicing-by-8 |
| | | ------------------------------- |
| | | |
| | | http://sourceforge.net/projects/slicing-by-8/ |
| | | |
| | | Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved |
| | | |
| | | |
| | | This software program is licensed subject to the BSD License, available at |
| | | http://www.opensource.org/licenses/bsd-license.html. |
| | | |
| | | |
| | | License notice for Unicode data |
| | | ------------------------------- |
| | | |
| | | https://www.unicode.org/license.html |
| | | |
| | | Copyright © 1991-2020 Unicode, Inc. All rights reserved. |
| | | Distributed under the Terms of Use in https://www.unicode.org/copyright.html. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of the Unicode data files and any associated documentation |
| | | (the "Data Files") or Unicode software and any associated documentation |
| | | (the "Software") to deal in the Data Files or Software |
| | | without restriction, including without limitation the rights to use, |
| | | copy, modify, merge, publish, distribute, and/or sell copies of |
| | | the Data Files or Software, and to permit persons to whom the Data Files |
| | | or Software are furnished to do so, provided that either |
| | | (a) this copyright and permission notice appear with all copies |
| | | of the Data Files or Software, or |
| | | (b) this copyright and permission notice appear in associated |
| | | Documentation. |
| | | |
| | | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF |
| | | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| | | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
| | | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS |
| | | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL |
| | | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, |
| | | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| | | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| | | PERFORMANCE OF THE DATA FILES OR SOFTWARE. |
| | | |
| | | Except as contained in this notice, the name of a copyright holder |
| | | shall not be used in advertising or otherwise to promote the sale, |
| | | use or other dealings in these Data Files or Software without prior |
| | | written authorization of the copyright holder. |
| | | |
| | | License notice for Zlib |
| | | ----------------------- |
| | | |
| | | https://github.com/madler/zlib |
| | | http://zlib.net/zlib_license.html |
| | | |
| | | /* zlib.h -- interface of the 'zlib' general purpose compression library |
| | | version 1.2.11, January 15th, 2017 |
| | | |
| | | Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | | arising from the use of this software. |
| | | |
| | | Permission is granted to anyone to use this software for any purpose, |
| | | including commercial applications, and to alter it and redistribute it |
| | | freely, subject to the following restrictions: |
| | | |
| | | 1. The origin of this software must not be misrepresented; you must not |
| | | claim that you wrote the original software. If you use this software |
| | | in a product, an acknowledgment in the product documentation would be |
| | | appreciated but is not required. |
| | | 2. Altered source versions must be plainly marked as such, and must not be |
| | | misrepresented as being the original software. |
| | | 3. This notice may not be removed or altered from any source distribution. |
| | | |
| | | Jean-loup Gailly Mark Adler |
| | | jloup@gzip.org madler@alumni.caltech.edu |
| | | |
| | | */ |
| | | |
| | | License notice for Mono |
| | | ------------------------------- |
| | | |
| | | http://www.mono-project.com/docs/about-mono/ |
| | | |
| | | Copyright (c) .NET Foundation Contributors |
| | | |
| | | MIT License |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the Software), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| | | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| | | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| | | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for International Organization for Standardization |
| | | ----------------------------------------------------------------- |
| | | |
| | | Portions (C) International Organization for Standardization 1986: |
| | | Permission to copy in any form is granted for use with |
| | | conforming SGML systems and applications as defined in |
| | | ISO 8879, provided this notice is included in all copies. |
| | | |
| | | License notice for Intel |
| | | ------------------------ |
| | | |
| | | "Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are met: |
| | | |
| | | 1. Redistributions of source code must retain the above copyright notice, this |
| | | list of conditions and the following disclaimer. |
| | | |
| | | 2. Redistributions in binary form must reproduce the above copyright notice, |
| | | this list of conditions and the following disclaimer in the documentation |
| | | and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| | | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| | | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| | | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| | | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| | | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| | | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| | | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Xamarin and Novell |
| | | ------------------------------------- |
| | | |
| | | Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | Copyright (c) 2011 Novell, Inc (http://www.novell.com) |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | Third party notice for W3C |
| | | -------------------------- |
| | | |
| | | "W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE |
| | | Status: This license takes effect 13 May, 2015. |
| | | This work is being provided by the copyright holders under the following license. |
| | | License |
| | | By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. |
| | | Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: |
| | | The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. |
| | | Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. |
| | | Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." |
| | | Disclaimers |
| | | THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. |
| | | COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. |
| | | The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." |
| | | |
| | | License notice for Bit Twiddling Hacks |
| | | -------------------------------------- |
| | | |
| | | Bit Twiddling Hacks |
| | | |
| | | By Sean Eron Anderson |
| | | seander@cs.stanford.edu |
| | | |
| | | Individually, the code snippets here are in the public domain (unless otherwise |
| | | noted) â feel free to use them however you please. The aggregate collection and |
| | | descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are |
| | | distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and |
| | | without even the implied warranty of merchantability or fitness for a particular |
| | | purpose. |
| | | |
| | | License notice for Brotli |
| | | -------------------------------------- |
| | | |
| | | Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | compress_fragment.c: |
| | | Copyright (c) 2011, Google Inc. |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following disclaimer |
| | | in the documentation and/or other materials provided with the |
| | | distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived from |
| | | this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | decode_fuzzer.c: |
| | | Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following disclaimer |
| | | in the documentation and/or other materials provided with the |
| | | distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived from |
| | | this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
| | | |
| | | License notice for Json.NET |
| | | ------------------------------- |
| | | |
| | | https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) 2007 James Newton-King |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| | | this software and associated documentation files (the "Software"), to deal in |
| | | the Software without restriction, including without limitation the rights to |
| | | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| | | the Software, and to permit persons to whom the Software is furnished to do so, |
| | | subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| | | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| | | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| | | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| | | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for vectorized base64 encoding / decoding |
| | | -------------------------------------------------------- |
| | | |
| | | Copyright (c) 2005-2007, Nick Galbreath |
| | | Copyright (c) 2013-2017, Alfred Klomp |
| | | Copyright (c) 2015-2017, Wojciech Mula |
| | | Copyright (c) 2016-2017, Matthieu Darbois |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | - Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions and the following disclaimer. |
| | | |
| | | - Redistributions in binary form must reproduce the above copyright |
| | | notice, this list of conditions and the following disclaimer in the |
| | | documentation and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
| | | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| | | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| | | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| | | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| | | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| | | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| | | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| | | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for RFC 3492 |
| | | --------------------------- |
| | | |
| | | The punycode implementation is based on the sample code in RFC 3492 |
| | | |
| | | Copyright (C) The Internet Society (2003). All Rights Reserved. |
| | | |
| | | This document and translations of it may be copied and furnished to |
| | | others, and derivative works that comment on or otherwise explain it |
| | | or assist in its implementation may be prepared, copied, published |
| | | and distributed, in whole or in part, without restriction of any |
| | | kind, provided that the above copyright notice and this paragraph are |
| | | included on all such copies and derivative works. However, this |
| | | document itself may not be modified in any way, such as by removing |
| | | the copyright notice or references to the Internet Society or other |
| | | Internet organizations, except as needed for the purpose of |
| | | developing Internet standards in which case the procedures for |
| | | copyrights defined in the Internet Standards process must be |
| | | followed, or as required to translate it into languages other than |
| | | English. |
| | | |
| | | The limited permissions granted above are perpetual and will not be |
| | | revoked by the Internet Society or its successors or assigns. |
| | | |
| | | This document and the information contained herein is provided on an |
| | | "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING |
| | | TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING |
| | | BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION |
| | | HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF |
| | | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
| | | |
| | | License notice for Algorithm from Internet Draft document "UUIDs and GUIDs" |
| | | --------------------------------------------------------------------------- |
| | | |
| | | Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. |
| | | Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & |
| | | Digital Equipment Corporation, Maynard, Mass. |
| | | To anyone who acknowledges that this file is provided "AS IS" |
| | | without any express or implied warranty: permission to use, copy, |
| | | modify, and distribute this file for any purpose is hereby |
| | | granted without fee, provided that the above copyright notices and |
| | | this notice appears in all source code copies, and that none of |
| | | the names of Open Software Foundation, Inc., Hewlett-Packard |
| | | Company, or Digital Equipment Corporation be used in advertising |
| | | or publicity pertaining to distribution of the software without |
| | | specific, written prior permission. Neither Open Software |
| | | Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital Equipment |
| | | Corporation makes any representations about the suitability of |
| | | this software for any purpose. |
| | | |
| | | Copyright(C) The Internet Society 1997. All Rights Reserved. |
| | | |
| | | This document and translations of it may be copied and furnished to others, |
| | | and derivative works that comment on or otherwise explain it or assist in |
| | | its implementation may be prepared, copied, published and distributed, in |
| | | whole or in part, without restriction of any kind, provided that the above |
| | | copyright notice and this paragraph are included on all such copies and |
| | | derivative works.However, this document itself may not be modified in any |
| | | way, such as by removing the copyright notice or references to the Internet |
| | | Society or other Internet organizations, except as needed for the purpose of |
| | | developing Internet standards in which case the procedures for copyrights |
| | | defined in the Internet Standards process must be followed, or as required |
| | | to translate it into languages other than English. |
| | | |
| | | The limited permissions granted above are perpetual and will not be revoked |
| | | by the Internet Society or its successors or assigns. |
| | | |
| | | This document and the information contained herein is provided on an "AS IS" |
| | | basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE |
| | | DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO |
| | | ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY |
| | | RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A |
| | | PARTICULAR PURPOSE. |
| | | |
| | | License notice for Algorithm from RFC 4122 - |
| | | A Universally Unique IDentifier (UUID) URN Namespace |
| | | ---------------------------------------------------- |
| | | |
| | | Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. |
| | | Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & |
| | | Digital Equipment Corporation, Maynard, Mass. |
| | | Copyright (c) 1998 Microsoft. |
| | | To anyone who acknowledges that this file is provided "AS IS" |
| | | without any express or implied warranty: permission to use, copy, |
| | | modify, and distribute this file for any purpose is hereby |
| | | granted without fee, provided that the above copyright notices and |
| | | this notice appears in all source code copies, and that none of |
| | | the names of Open Software Foundation, Inc., Hewlett-Packard |
| | | Company, Microsoft, or Digital Equipment Corporation be used in |
| | | advertising or publicity pertaining to distribution of the software |
| | | without specific, written prior permission. Neither Open Software |
| | | Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital |
| | | Equipment Corporation makes any representations about the |
| | | suitability of this software for any purpose." |
| | | |
| | | License notice for The LLVM Compiler Infrastructure |
| | | --------------------------------------------------- |
| | | |
| | | Developed by: |
| | | |
| | | LLVM Team |
| | | |
| | | University of Illinois at Urbana-Champaign |
| | | |
| | | http://llvm.org |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| | | this software and associated documentation files (the "Software"), to deal with |
| | | the Software without restriction, including without limitation the rights to |
| | | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
| | | of the Software, and to permit persons to whom the Software is furnished to do |
| | | so, subject to the following conditions: |
| | | |
| | | * Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions and the following disclaimers. |
| | | |
| | | * Redistributions in binary form must reproduce the above copyright notice, |
| | | this list of conditions and the following disclaimers in the |
| | | documentation and/or other materials provided with the distribution. |
| | | |
| | | * Neither the names of the LLVM Team, University of Illinois at |
| | | Urbana-Champaign, nor the names of its contributors may be used to |
| | | endorse or promote products derived from this Software without specific |
| | | prior written permission. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| | | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE |
| | | SOFTWARE. |
| | | |
| | | License notice for Bob Jenkins |
| | | ------------------------------ |
| | | |
| | | By Bob Jenkins, 1996. bob_jenkins@burtleburtle.net. You may use this |
| | | code any way you wish, private, educational, or commercial. It's free. |
| | | |
| | | License notice for Greg Parker |
| | | ------------------------------ |
| | | |
| | | Greg Parker gparker@cs.stanford.edu December 2000 |
| | | This code is in the public domain and may be copied or modified without |
| | | permission. |
| | | |
| | | License notice for libunwind based code |
| | | ---------------------------------------- |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of this software and associated documentation files (the |
| | | "Software"), to deal in the Software without restriction, including |
| | | without limitation the rights to use, copy, modify, merge, publish, |
| | | distribute, sublicense, and/or sell copies of the Software, and to |
| | | permit persons to whom the Software is furnished to do so, subject to |
| | | the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be |
| | | included in all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| | | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| | | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| | | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for Printing Floating-Point Numbers (Dragon4) |
| | | ------------------------------------------------------------ |
| | | |
| | | /****************************************************************************** |
| | | Copyright (c) 2014 Ryan Juckett |
| | | http://www.ryanjuckett.com/ |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | | arising from the use of this software. |
| | | |
| | | Permission is granted to anyone to use this software for any purpose, |
| | | including commercial applications, and to alter it and redistribute it |
| | | freely, subject to the following restrictions: |
| | | |
| | | 1. The origin of this software must not be misrepresented; you must not |
| | | claim that you wrote the original software. If you use this software |
| | | in a product, an acknowledgment in the product documentation would be |
| | | appreciated but is not required. |
| | | |
| | | 2. Altered source versions must be plainly marked as such, and must not be |
| | | misrepresented as being the original software. |
| | | |
| | | 3. This notice may not be removed or altered from any source |
| | | distribution. |
| | | ******************************************************************************/ |
| | | |
| | | License notice for Printing Floating-point Numbers (Grisu3) |
| | | ----------------------------------------------------------- |
| | | |
| | | Copyright 2012 the V8 project authors. All rights reserved. |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following |
| | | disclaimer in the documentation and/or other materials provided |
| | | with the distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived |
| | | from this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for xxHash |
| | | ------------------------- |
| | | |
| | | xxHash Library |
| | | Copyright (c) 2012-2014, Yann Collet |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, |
| | | are permitted provided that the following conditions are met: |
| | | |
| | | * Redistributions of source code must retain the above copyright notice, this |
| | | list of conditions and the following disclaimer. |
| | | |
| | | * Redistributions in binary form must reproduce the above copyright notice, this |
| | | list of conditions and the following disclaimer in the documentation and/or |
| | | other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| | | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR |
| | | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| | | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| | | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| | | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| | | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Berkeley SoftFloat Release 3e |
| | | ------------------------------------------------ |
| | | |
| | | https://github.com/ucb-bar/berkeley-softfloat-3 |
| | | https://github.com/ucb-bar/berkeley-softfloat-3/blob/master/COPYING.txt |
| | | |
| | | License for Berkeley SoftFloat Release 3e |
| | | |
| | | John R. Hauser |
| | | 2018 January 20 |
| | | |
| | | The following applies to the whole of SoftFloat Release 3e as well as to |
| | | each source file individually. |
| | | |
| | | Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the |
| | | University of California. All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are met: |
| | | |
| | | 1. Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions, and the following disclaimer. |
| | | |
| | | 2. Redistributions in binary form must reproduce the above copyright |
| | | notice, this list of conditions, and the following disclaimer in the |
| | | documentation and/or other materials provided with the distribution. |
| | | |
| | | 3. Neither the name of the University nor the names of its contributors |
| | | may be used to endorse or promote products derived from this software |
| | | without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY |
| | | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY |
| | | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| | | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| | | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| | | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| | | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for xoshiro RNGs |
| | | -------------------------------- |
| | | |
| | | Written in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org) |
| | | |
| | | To the extent possible under law, the author has dedicated all copyright |
| | | and related and neighboring rights to this software to the public domain |
| | | worldwide. This software is distributed without any warranty. |
| | | |
| | | See <http://creativecommons.org/publicdomain/zero/1.0/>. |
| | | |
| | | License for fastmod (https://github.com/lemire/fastmod) and ibm-fpgen (https://github.com/nigeltao/parse-number-fxx-test-data) |
| | | -------------------------------------- |
| | | |
| | | Copyright 2018 Daniel Lemire |
| | | |
| | | Licensed under the Apache License, Version 2.0 (the "License"); |
| | | you may not use this file except in compliance with the License. |
| | | You may obtain a copy of the License at |
| | | |
| | | http://www.apache.org/licenses/LICENSE-2.0 |
| | | |
| | | Unless required by applicable law or agreed to in writing, software |
| | | distributed under the License is distributed on an "AS IS" BASIS, |
| | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | See the License for the specific language governing permissions and |
| | | limitations under the License. |
| | | |
| | | License notice for The C++ REST SDK |
| | | ----------------------------------- |
| | | |
| | | C++ REST SDK |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) Microsoft Corporation |
| | | |
| | | All rights reserved. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| | | this software and associated documentation files (the "Software"), to deal in |
| | | the Software without restriction, including without limitation the rights to |
| | | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| | | the Software, and to permit persons to whom the Software is furnished to do so, |
| | | subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for MessagePack-CSharp |
| | | ------------------------------------- |
| | | |
| | | MessagePack for C# |
| | | |
| | | MIT License |
| | | |
| | | Copyright (c) 2017 Yoshifumi Kawai |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for lz4net |
| | | ------------------------------------- |
| | | |
| | | lz4net |
| | | |
| | | Copyright (c) 2013-2017, Milosz Krajewski |
| | | |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
| | | |
| | | Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
| | | |
| | | Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Nerdbank.Streams |
| | | ----------------------------------- |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) Andrew Arnott |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for RapidJSON |
| | | ---------------------------- |
| | | |
| | | Tencent is pleased to support the open source community by making RapidJSON available. |
| | | |
| | | Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. |
| | | |
| | | Licensed under the MIT License (the "License"); you may not use this file except |
| | | in compliance with the License. You may obtain a copy of the License at |
| | | |
| | | http://opensource.org/licenses/MIT |
| | | |
| | | Unless required by applicable law or agreed to in writing, software distributed |
| | | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| | | CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| | | specific language governing permissions and limitations under the License. |
| | | |
| | | License notice for DirectX Math Library |
| | | --------------------------------------- |
| | | |
| | | https://github.com/microsoft/DirectXMath/blob/master/LICENSE |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) 2011-2020 Microsoft Corp |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of this |
| | | software and associated documentation files (the "Software"), to deal in the Software |
| | | without restriction, including without limitation the rights to use, copy, modify, |
| | | merge, publish, distribute, sublicense, and/or sell copies of the Software, and to |
| | | permit persons to whom the Software is furnished to do so, subject to the following |
| | | conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all copies |
| | | or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
| | | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A |
| | | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| | | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF |
| | | CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE |
| | | OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for ldap4net |
| | | --------------------------- |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) 2018 Alexander Chermyanin |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for vectorized sorting code |
| | | ------------------------------------------ |
| | | |
| | | MIT License |
| | | |
| | | Copyright (c) 2020 Dan Shechter |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for musl |
| | | ----------------------- |
| | | |
| | | musl as a whole is licensed under the following standard MIT license: |
| | | |
| | | Copyright © 2005-2020 Rich Felker, et al. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of this software and associated documentation files (the |
| | | "Software"), to deal in the Software without restriction, including |
| | | without limitation the rights to use, copy, modify, merge, publish, |
| | | distribute, sublicense, and/or sell copies of the Software, and to |
| | | permit persons to whom the Software is furnished to do so, subject to |
| | | the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be |
| | | included in all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| | | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| | | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| | | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| | | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | |
| | | License notice for "Faster Unsigned Division by Constants" |
| | | ------------------------------ |
| | | |
| | | Reference implementations of computing and using the "magic number" approach to dividing |
| | | by constants, including codegen instructions. The unsigned division incorporates the |
| | | "round down" optimization per ridiculous_fish. |
| | | |
| | | This is free and unencumbered software. Any copyright is dedicated to the Public Domain. |
| | | |
| | | |
| | | License notice for mimalloc |
| | | ----------------------------------- |
| | | |
| | | MIT License |
| | | |
| | | Copyright (c) 2019 Microsoft Corporation, Daan Leijen |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <Project InitialTargets="NETStandardCompatError_System_CodeDom_netcoreapp3_1"> |
| | | <Target Name="NETStandardCompatError_System_CodeDom_netcoreapp3_1" |
| | | Condition="'$(SuppressTfmSupportBuildWarnings)' == ''"> |
| | | <Error Text="System.CodeDom doesn't support $(TargetFramework). Consider updating your TargetFramework to netcoreapp3.1 or later." /> |
| | | </Target> |
| | | </Project> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.CodeDom</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:System.SR.CodeDomProvider_NotDefined"> |
| | | <summary>There is no CodeDom provider defined for the language.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NotSupported_CodeDomAPI"> |
| | | <summary>This CodeDomProvider does not support this method.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenOutputWriter"> |
| | | <summary>The output writer for code generation and the writer supplied don't match and cannot be used. This is generally caused by a bad implementation of a CodeGenerator derived class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenReentrance"> |
| | | <summary>This code generation API cannot be called while the generator is being used to generate something else.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidElementType"> |
| | | <summary>Element type {0} is not supported.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Argument_NullComment"> |
| | | <summary>The 'Comment' property of the CodeCommentStatement '{0}' cannot be null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPrimitiveType"> |
| | | <summary>Invalid Primitive Type: {0}. Consider using CodeObjectCreateExpression.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidIdentifier"> |
| | | <summary>Identifier '{0}' is not valid.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ArityDoesntMatch"> |
| | | <summary>The total arity specified in '{0}' does not match the number of TypeArguments supplied. There were '{1}' TypeArguments supplied.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidNullEmptyArgument"> |
| | | <summary>Argument {0} cannot be null or zero-length.</summary> |
| | | </member> |
| | | <member name="P:System.SR.DuplicateFileName"> |
| | | <summary>The file name '{0}' was already in the collection.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidTypeName"> |
| | | <summary>The type name:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent type name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidRegion"> |
| | | <summary>The region directive '{0}' contains invalid characters. RegionText cannot contain any new line characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPathCharsInChecksum"> |
| | | <summary>The CodeChecksumPragma file name '{0}' contains invalid path characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ExecTimeout"> |
| | | <summary>Timed out waiting for a program to execute. The command being executed was {0}.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Provider_does_not_support_options"> |
| | | <summary>This CodeDomProvider type does not have a constructor that takes providerOptions - "{0}".</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidLanguageIdentifier"> |
| | | <summary>The identifier:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent identifier name. Check to see if CodeGenerator.IsValidLanguageIndependentIdentifier allows the identifier name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.toStringUnknown"> |
| | | <summary>{unknown}</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line1"> |
| | | <summary>auto-generated></summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line2"> |
| | | <summary>This code was generated by a tool.</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line4"> |
| | | <summary>Changes to this file may cause incorrect behavior and will be lost if</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line5"> |
| | | <summary>the code is regenerated.</summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.OSPlatformAttribute"> |
| | | <summary> |
| | | Base type for all platform-specific API attributes. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.TargetPlatformAttribute"> |
| | | <summary> |
| | | Records the platform that the project targeted. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Records the operating system (and minimum version) that supports an API. Multiple attributes can be |
| | | applied to indicate support on multiple operating systems. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" /> |
| | | or use guards to prevent calls to APIs on unsupported operating systems. |
| | | |
| | | A given platform should only be specified once. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Marks APIs that were removed in a given operating system version. |
| | | </summary> |
| | | <remarks> |
| | | Primarily used by OS bindings to indicate APIs that are only available in |
| | | earlier versions. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates a custom guard field, property or method with a supported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple supported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates the custom guard field, property or method with an unsupported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple unsupported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.CodeDom</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:Microsoft.VisualBasic.VBCodeGenerator.IsCurrentModule"> |
| | | <summary>Tells whether or not the current class should be generated as a module</summary> |
| | | </member> |
| | | <member name="P:System.CodeDom.Compiler.CompilerParameters.CoreAssemblyFileName"> |
| | | <summary> |
| | | The "core" or "standard" assembly that contains basic types such as <code>Object</code>, <code>Int32</code> and the like |
| | | that is to be used for the compilation.<br /> |
| | | If the value of this property is an empty string (or <code>null</code>), the default core assembly will be used by the |
| | | compiler (depending on the compiler version this may be <code>mscorlib.dll</code> or <code>System.Runtime.dll</code> in |
| | | a Framework or reference assembly directory).<br /> |
| | | If the value of this property is not empty, CodeDom will emit compiler options to not reference <em>any</em> assemblies |
| | | implicitly during compilation. It will also explicitly reference the assembly file specified in this property.<br /> |
| | | For compilers that only implicitly reference the "core" or "standard" assembly by default, this option can be used on its own. |
| | | For compilers that implicitly reference more assemblies on top of the "core" / "standard" assembly, using this option may require |
| | | specifying additional entries in the <code>System.CodeDom.Compiler.<bold>ReferencedAssemblies</bold></code> collection.<br /> |
| | | Note: An <code>ICodeCompiler</code> / <code>CoodeDomProvider</code> implementation may choose to ignore this property. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.CSharpHelpers"> |
| | | <devdoc> |
| | | <para>Provides a base class for code generators.</para> |
| | | </devdoc> |
| | | </member> |
| | | <member name="M:System.CSharpHelpers.IsValidLanguageIndependentIdentifier(System.String)"> |
| | | <devdoc> |
| | | <para> |
| | | Gets a value indicating whether the specified value is a valid language |
| | | independent identifier. |
| | | </para> |
| | | </devdoc> |
| | | </member> |
| | | <member name="P:System.SR.CodeDomProvider_NotDefined"> |
| | | <summary>There is no CodeDom provider defined for the language.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NotSupported_CodeDomAPI"> |
| | | <summary>This CodeDomProvider does not support this method.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenOutputWriter"> |
| | | <summary>The output writer for code generation and the writer supplied don't match and cannot be used. This is generally caused by a bad implementation of a CodeGenerator derived class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenReentrance"> |
| | | <summary>This code generation API cannot be called while the generator is being used to generate something else.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidElementType"> |
| | | <summary>Element type {0} is not supported.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Argument_NullComment"> |
| | | <summary>The 'Comment' property of the CodeCommentStatement '{0}' cannot be null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPrimitiveType"> |
| | | <summary>Invalid Primitive Type: {0}. Consider using CodeObjectCreateExpression.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidIdentifier"> |
| | | <summary>Identifier '{0}' is not valid.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ArityDoesntMatch"> |
| | | <summary>The total arity specified in '{0}' does not match the number of TypeArguments supplied. There were '{1}' TypeArguments supplied.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidNullEmptyArgument"> |
| | | <summary>Argument {0} cannot be null or zero-length.</summary> |
| | | </member> |
| | | <member name="P:System.SR.DuplicateFileName"> |
| | | <summary>The file name '{0}' was already in the collection.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidTypeName"> |
| | | <summary>The type name:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent type name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidRegion"> |
| | | <summary>The region directive '{0}' contains invalid characters. RegionText cannot contain any new line characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPathCharsInChecksum"> |
| | | <summary>The CodeChecksumPragma file name '{0}' contains invalid path characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ExecTimeout"> |
| | | <summary>Timed out waiting for a program to execute. The command being executed was {0}.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Provider_does_not_support_options"> |
| | | <summary>This CodeDomProvider type does not have a constructor that takes providerOptions - "{0}".</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidLanguageIdentifier"> |
| | | <summary>The identifier:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent identifier name. Check to see if CodeGenerator.IsValidLanguageIndependentIdentifier allows the identifier name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.toStringUnknown"> |
| | | <summary>{unknown}</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line1"> |
| | | <summary>auto-generated></summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line2"> |
| | | <summary>This code was generated by a tool.</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line4"> |
| | | <summary>Changes to this file may cause incorrect behavior and will be lost if</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line5"> |
| | | <summary>the code is regenerated.</summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.CodeDom</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:Microsoft.VisualBasic.VBCodeGenerator.IsCurrentModule"> |
| | | <summary>Tells whether or not the current class should be generated as a module</summary> |
| | | </member> |
| | | <member name="P:System.CodeDom.Compiler.CompilerParameters.CoreAssemblyFileName"> |
| | | <summary> |
| | | The "core" or "standard" assembly that contains basic types such as <code>Object</code>, <code>Int32</code> and the like |
| | | that is to be used for the compilation.<br /> |
| | | If the value of this property is an empty string (or <code>null</code>), the default core assembly will be used by the |
| | | compiler (depending on the compiler version this may be <code>mscorlib.dll</code> or <code>System.Runtime.dll</code> in |
| | | a Framework or reference assembly directory).<br /> |
| | | If the value of this property is not empty, CodeDom will emit compiler options to not reference <em>any</em> assemblies |
| | | implicitly during compilation. It will also explicitly reference the assembly file specified in this property.<br /> |
| | | For compilers that only implicitly reference the "core" or "standard" assembly by default, this option can be used on its own. |
| | | For compilers that implicitly reference more assemblies on top of the "core" / "standard" assembly, using this option may require |
| | | specifying additional entries in the <code>System.CodeDom.Compiler.<bold>ReferencedAssemblies</bold></code> collection.<br /> |
| | | Note: An <code>ICodeCompiler</code> / <code>CoodeDomProvider</code> implementation may choose to ignore this property. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.CSharpHelpers"> |
| | | <devdoc> |
| | | <para>Provides a base class for code generators.</para> |
| | | </devdoc> |
| | | </member> |
| | | <member name="M:System.CSharpHelpers.IsValidLanguageIndependentIdentifier(System.String)"> |
| | | <devdoc> |
| | | <para> |
| | | Gets a value indicating whether the specified value is a valid language |
| | | independent identifier. |
| | | </para> |
| | | </devdoc> |
| | | </member> |
| | | <member name="P:System.SR.CodeDomProvider_NotDefined"> |
| | | <summary>There is no CodeDom provider defined for the language.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NotSupported_CodeDomAPI"> |
| | | <summary>This CodeDomProvider does not support this method.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenOutputWriter"> |
| | | <summary>The output writer for code generation and the writer supplied don't match and cannot be used. This is generally caused by a bad implementation of a CodeGenerator derived class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CodeGenReentrance"> |
| | | <summary>This code generation API cannot be called while the generator is being used to generate something else.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidElementType"> |
| | | <summary>Element type {0} is not supported.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Argument_NullComment"> |
| | | <summary>The 'Comment' property of the CodeCommentStatement '{0}' cannot be null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPrimitiveType"> |
| | | <summary>Invalid Primitive Type: {0}. Consider using CodeObjectCreateExpression.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidIdentifier"> |
| | | <summary>Identifier '{0}' is not valid.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ArityDoesntMatch"> |
| | | <summary>The total arity specified in '{0}' does not match the number of TypeArguments supplied. There were '{1}' TypeArguments supplied.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidNullEmptyArgument"> |
| | | <summary>Argument {0} cannot be null or zero-length.</summary> |
| | | </member> |
| | | <member name="P:System.SR.DuplicateFileName"> |
| | | <summary>The file name '{0}' was already in the collection.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidTypeName"> |
| | | <summary>The type name:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent type name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidRegion"> |
| | | <summary>The region directive '{0}' contains invalid characters. RegionText cannot contain any new line characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidPathCharsInChecksum"> |
| | | <summary>The CodeChecksumPragma file name '{0}' contains invalid path characters.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ExecTimeout"> |
| | | <summary>Timed out waiting for a program to execute. The command being executed was {0}.</summary> |
| | | </member> |
| | | <member name="P:System.SR.Provider_does_not_support_options"> |
| | | <summary>This CodeDomProvider type does not have a constructor that takes providerOptions - "{0}".</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidLanguageIdentifier"> |
| | | <summary>The identifier:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent identifier name. Check to see if CodeGenerator.IsValidLanguageIndependentIdentifier allows the identifier name.</summary> |
| | | </member> |
| | | <member name="P:System.SR.toStringUnknown"> |
| | | <summary>{unknown}</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line1"> |
| | | <summary>auto-generated></summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line2"> |
| | | <summary>This code was generated by a tool.</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line4"> |
| | | <summary>Changes to this file may cause incorrect behavior and will be lost if</summary> |
| | | </member> |
| | | <member name="P:System.SR.AutoGen_Comment_Line5"> |
| | | <summary>the code is regenerated.</summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.OSPlatformAttribute"> |
| | | <summary> |
| | | Base type for all platform-specific API attributes. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.TargetPlatformAttribute"> |
| | | <summary> |
| | | Records the platform that the project targeted. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Records the operating system (and minimum version) that supports an API. Multiple attributes can be |
| | | applied to indicate support on multiple operating systems. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" /> |
| | | or use guards to prevent calls to APIs on unsupported operating systems. |
| | | |
| | | A given platform should only be specified once. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Marks APIs that were removed in a given operating system version. |
| | | </summary> |
| | | <remarks> |
| | | Primarily used by OS bindings to indicate APIs that are only available in |
| | | earlier versions. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates a custom guard field, property or method with a supported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple supported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates the custom guard field, property or method with an unsupported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple unsupported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) .NET Foundation and Contributors |
| | | |
| | | All rights reserved. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | .NET Runtime uses third-party libraries or other resources that may be |
| | | distributed under licenses different than the .NET Runtime software. |
| | | |
| | | In the event that we accidentally failed to list a required notice, please |
| | | bring it to our attention. Post an issue or email us: |
| | | |
| | | dotnet@microsoft.com |
| | | |
| | | The attached notices are provided for information only. |
| | | |
| | | License notice for ASP.NET |
| | | ------------------------------- |
| | | |
| | | Copyright (c) .NET Foundation. All rights reserved. |
| | | Licensed under the Apache License, Version 2.0. |
| | | |
| | | Available at |
| | | https://github.com/dotnet/aspnetcore/blob/main/LICENSE.txt |
| | | |
| | | License notice for Slicing-by-8 |
| | | ------------------------------- |
| | | |
| | | http://sourceforge.net/projects/slicing-by-8/ |
| | | |
| | | Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved |
| | | |
| | | |
| | | This software program is licensed subject to the BSD License, available at |
| | | http://www.opensource.org/licenses/bsd-license.html. |
| | | |
| | | |
| | | License notice for Unicode data |
| | | ------------------------------- |
| | | |
| | | https://www.unicode.org/license.html |
| | | |
| | | Copyright © 1991-2020 Unicode, Inc. All rights reserved. |
| | | Distributed under the Terms of Use in https://www.unicode.org/copyright.html. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of the Unicode data files and any associated documentation |
| | | (the "Data Files") or Unicode software and any associated documentation |
| | | (the "Software") to deal in the Data Files or Software |
| | | without restriction, including without limitation the rights to use, |
| | | copy, modify, merge, publish, distribute, and/or sell copies of |
| | | the Data Files or Software, and to permit persons to whom the Data Files |
| | | or Software are furnished to do so, provided that either |
| | | (a) this copyright and permission notice appear with all copies |
| | | of the Data Files or Software, or |
| | | (b) this copyright and permission notice appear in associated |
| | | Documentation. |
| | | |
| | | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF |
| | | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| | | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
| | | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS |
| | | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL |
| | | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, |
| | | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| | | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| | | PERFORMANCE OF THE DATA FILES OR SOFTWARE. |
| | | |
| | | Except as contained in this notice, the name of a copyright holder |
| | | shall not be used in advertising or otherwise to promote the sale, |
| | | use or other dealings in these Data Files or Software without prior |
| | | written authorization of the copyright holder. |
| | | |
| | | License notice for Zlib |
| | | ----------------------- |
| | | |
| | | https://github.com/madler/zlib |
| | | http://zlib.net/zlib_license.html |
| | | |
| | | /* zlib.h -- interface of the 'zlib' general purpose compression library |
| | | version 1.2.11, January 15th, 2017 |
| | | |
| | | Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | | arising from the use of this software. |
| | | |
| | | Permission is granted to anyone to use this software for any purpose, |
| | | including commercial applications, and to alter it and redistribute it |
| | | freely, subject to the following restrictions: |
| | | |
| | | 1. The origin of this software must not be misrepresented; you must not |
| | | claim that you wrote the original software. If you use this software |
| | | in a product, an acknowledgment in the product documentation would be |
| | | appreciated but is not required. |
| | | 2. Altered source versions must be plainly marked as such, and must not be |
| | | misrepresented as being the original software. |
| | | 3. This notice may not be removed or altered from any source distribution. |
| | | |
| | | Jean-loup Gailly Mark Adler |
| | | jloup@gzip.org madler@alumni.caltech.edu |
| | | |
| | | */ |
| | | |
| | | License notice for Mono |
| | | ------------------------------- |
| | | |
| | | http://www.mono-project.com/docs/about-mono/ |
| | | |
| | | Copyright (c) .NET Foundation Contributors |
| | | |
| | | MIT License |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the Software), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| | | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| | | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| | | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for International Organization for Standardization |
| | | ----------------------------------------------------------------- |
| | | |
| | | Portions (C) International Organization for Standardization 1986: |
| | | Permission to copy in any form is granted for use with |
| | | conforming SGML systems and applications as defined in |
| | | ISO 8879, provided this notice is included in all copies. |
| | | |
| | | License notice for Intel |
| | | ------------------------ |
| | | |
| | | "Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are met: |
| | | |
| | | 1. Redistributions of source code must retain the above copyright notice, this |
| | | list of conditions and the following disclaimer. |
| | | |
| | | 2. Redistributions in binary form must reproduce the above copyright notice, |
| | | this list of conditions and the following disclaimer in the documentation |
| | | and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| | | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| | | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| | | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| | | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| | | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| | | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| | | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Xamarin and Novell |
| | | ------------------------------------- |
| | | |
| | | Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | Copyright (c) 2011 Novell, Inc (http://www.novell.com) |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | Third party notice for W3C |
| | | -------------------------- |
| | | |
| | | "W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE |
| | | Status: This license takes effect 13 May, 2015. |
| | | This work is being provided by the copyright holders under the following license. |
| | | License |
| | | By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. |
| | | Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: |
| | | The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. |
| | | Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. |
| | | Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." |
| | | Disclaimers |
| | | THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. |
| | | COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. |
| | | The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." |
| | | |
| | | License notice for Bit Twiddling Hacks |
| | | -------------------------------------- |
| | | |
| | | Bit Twiddling Hacks |
| | | |
| | | By Sean Eron Anderson |
| | | seander@cs.stanford.edu |
| | | |
| | | Individually, the code snippets here are in the public domain (unless otherwise |
| | | noted) â feel free to use them however you please. The aggregate collection and |
| | | descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are |
| | | distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and |
| | | without even the implied warranty of merchantability or fitness for a particular |
| | | purpose. |
| | | |
| | | License notice for Brotli |
| | | -------------------------------------- |
| | | |
| | | Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | compress_fragment.c: |
| | | Copyright (c) 2011, Google Inc. |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following disclaimer |
| | | in the documentation and/or other materials provided with the |
| | | distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived from |
| | | this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | decode_fuzzer.c: |
| | | Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following disclaimer |
| | | in the documentation and/or other materials provided with the |
| | | distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived from |
| | | this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
| | | |
| | | License notice for Json.NET |
| | | ------------------------------- |
| | | |
| | | https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) 2007 James Newton-King |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| | | this software and associated documentation files (the "Software"), to deal in |
| | | the Software without restriction, including without limitation the rights to |
| | | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| | | the Software, and to permit persons to whom the Software is furnished to do so, |
| | | subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| | | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| | | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| | | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| | | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for vectorized base64 encoding / decoding |
| | | -------------------------------------------------------- |
| | | |
| | | Copyright (c) 2005-2007, Nick Galbreath |
| | | Copyright (c) 2013-2017, Alfred Klomp |
| | | Copyright (c) 2015-2017, Wojciech Mula |
| | | Copyright (c) 2016-2017, Matthieu Darbois |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | - Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions and the following disclaimer. |
| | | |
| | | - Redistributions in binary form must reproduce the above copyright |
| | | notice, this list of conditions and the following disclaimer in the |
| | | documentation and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
| | | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| | | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| | | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| | | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| | | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| | | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| | | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| | | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for RFC 3492 |
| | | --------------------------- |
| | | |
| | | The punycode implementation is based on the sample code in RFC 3492 |
| | | |
| | | Copyright (C) The Internet Society (2003). All Rights Reserved. |
| | | |
| | | This document and translations of it may be copied and furnished to |
| | | others, and derivative works that comment on or otherwise explain it |
| | | or assist in its implementation may be prepared, copied, published |
| | | and distributed, in whole or in part, without restriction of any |
| | | kind, provided that the above copyright notice and this paragraph are |
| | | included on all such copies and derivative works. However, this |
| | | document itself may not be modified in any way, such as by removing |
| | | the copyright notice or references to the Internet Society or other |
| | | Internet organizations, except as needed for the purpose of |
| | | developing Internet standards in which case the procedures for |
| | | copyrights defined in the Internet Standards process must be |
| | | followed, or as required to translate it into languages other than |
| | | English. |
| | | |
| | | The limited permissions granted above are perpetual and will not be |
| | | revoked by the Internet Society or its successors or assigns. |
| | | |
| | | This document and the information contained herein is provided on an |
| | | "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING |
| | | TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING |
| | | BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION |
| | | HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF |
| | | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
| | | |
| | | License notice for Algorithm from Internet Draft document "UUIDs and GUIDs" |
| | | --------------------------------------------------------------------------- |
| | | |
| | | Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. |
| | | Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & |
| | | Digital Equipment Corporation, Maynard, Mass. |
| | | To anyone who acknowledges that this file is provided "AS IS" |
| | | without any express or implied warranty: permission to use, copy, |
| | | modify, and distribute this file for any purpose is hereby |
| | | granted without fee, provided that the above copyright notices and |
| | | this notice appears in all source code copies, and that none of |
| | | the names of Open Software Foundation, Inc., Hewlett-Packard |
| | | Company, or Digital Equipment Corporation be used in advertising |
| | | or publicity pertaining to distribution of the software without |
| | | specific, written prior permission. Neither Open Software |
| | | Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital Equipment |
| | | Corporation makes any representations about the suitability of |
| | | this software for any purpose. |
| | | |
| | | Copyright(C) The Internet Society 1997. All Rights Reserved. |
| | | |
| | | This document and translations of it may be copied and furnished to others, |
| | | and derivative works that comment on or otherwise explain it or assist in |
| | | its implementation may be prepared, copied, published and distributed, in |
| | | whole or in part, without restriction of any kind, provided that the above |
| | | copyright notice and this paragraph are included on all such copies and |
| | | derivative works.However, this document itself may not be modified in any |
| | | way, such as by removing the copyright notice or references to the Internet |
| | | Society or other Internet organizations, except as needed for the purpose of |
| | | developing Internet standards in which case the procedures for copyrights |
| | | defined in the Internet Standards process must be followed, or as required |
| | | to translate it into languages other than English. |
| | | |
| | | The limited permissions granted above are perpetual and will not be revoked |
| | | by the Internet Society or its successors or assigns. |
| | | |
| | | This document and the information contained herein is provided on an "AS IS" |
| | | basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE |
| | | DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO |
| | | ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY |
| | | RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A |
| | | PARTICULAR PURPOSE. |
| | | |
| | | License notice for Algorithm from RFC 4122 - |
| | | A Universally Unique IDentifier (UUID) URN Namespace |
| | | ---------------------------------------------------- |
| | | |
| | | Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. |
| | | Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & |
| | | Digital Equipment Corporation, Maynard, Mass. |
| | | Copyright (c) 1998 Microsoft. |
| | | To anyone who acknowledges that this file is provided "AS IS" |
| | | without any express or implied warranty: permission to use, copy, |
| | | modify, and distribute this file for any purpose is hereby |
| | | granted without fee, provided that the above copyright notices and |
| | | this notice appears in all source code copies, and that none of |
| | | the names of Open Software Foundation, Inc., Hewlett-Packard |
| | | Company, Microsoft, or Digital Equipment Corporation be used in |
| | | advertising or publicity pertaining to distribution of the software |
| | | without specific, written prior permission. Neither Open Software |
| | | Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital |
| | | Equipment Corporation makes any representations about the |
| | | suitability of this software for any purpose." |
| | | |
| | | License notice for The LLVM Compiler Infrastructure |
| | | --------------------------------------------------- |
| | | |
| | | Developed by: |
| | | |
| | | LLVM Team |
| | | |
| | | University of Illinois at Urbana-Champaign |
| | | |
| | | http://llvm.org |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| | | this software and associated documentation files (the "Software"), to deal with |
| | | the Software without restriction, including without limitation the rights to |
| | | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
| | | of the Software, and to permit persons to whom the Software is furnished to do |
| | | so, subject to the following conditions: |
| | | |
| | | * Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions and the following disclaimers. |
| | | |
| | | * Redistributions in binary form must reproduce the above copyright notice, |
| | | this list of conditions and the following disclaimers in the |
| | | documentation and/or other materials provided with the distribution. |
| | | |
| | | * Neither the names of the LLVM Team, University of Illinois at |
| | | Urbana-Champaign, nor the names of its contributors may be used to |
| | | endorse or promote products derived from this Software without specific |
| | | prior written permission. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| | | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE |
| | | SOFTWARE. |
| | | |
| | | License notice for Bob Jenkins |
| | | ------------------------------ |
| | | |
| | | By Bob Jenkins, 1996. bob_jenkins@burtleburtle.net. You may use this |
| | | code any way you wish, private, educational, or commercial. It's free. |
| | | |
| | | License notice for Greg Parker |
| | | ------------------------------ |
| | | |
| | | Greg Parker gparker@cs.stanford.edu December 2000 |
| | | This code is in the public domain and may be copied or modified without |
| | | permission. |
| | | |
| | | License notice for libunwind based code |
| | | ---------------------------------------- |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of this software and associated documentation files (the |
| | | "Software"), to deal in the Software without restriction, including |
| | | without limitation the rights to use, copy, modify, merge, publish, |
| | | distribute, sublicense, and/or sell copies of the Software, and to |
| | | permit persons to whom the Software is furnished to do so, subject to |
| | | the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be |
| | | included in all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| | | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| | | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| | | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for Printing Floating-Point Numbers (Dragon4) |
| | | ------------------------------------------------------------ |
| | | |
| | | /****************************************************************************** |
| | | Copyright (c) 2014 Ryan Juckett |
| | | http://www.ryanjuckett.com/ |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | | arising from the use of this software. |
| | | |
| | | Permission is granted to anyone to use this software for any purpose, |
| | | including commercial applications, and to alter it and redistribute it |
| | | freely, subject to the following restrictions: |
| | | |
| | | 1. The origin of this software must not be misrepresented; you must not |
| | | claim that you wrote the original software. If you use this software |
| | | in a product, an acknowledgment in the product documentation would be |
| | | appreciated but is not required. |
| | | |
| | | 2. Altered source versions must be plainly marked as such, and must not be |
| | | misrepresented as being the original software. |
| | | |
| | | 3. This notice may not be removed or altered from any source |
| | | distribution. |
| | | ******************************************************************************/ |
| | | |
| | | License notice for Printing Floating-point Numbers (Grisu3) |
| | | ----------------------------------------------------------- |
| | | |
| | | Copyright 2012 the V8 project authors. All rights reserved. |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following |
| | | disclaimer in the documentation and/or other materials provided |
| | | with the distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived |
| | | from this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for xxHash |
| | | ------------------------- |
| | | |
| | | xxHash Library |
| | | Copyright (c) 2012-2014, Yann Collet |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, |
| | | are permitted provided that the following conditions are met: |
| | | |
| | | * Redistributions of source code must retain the above copyright notice, this |
| | | list of conditions and the following disclaimer. |
| | | |
| | | * Redistributions in binary form must reproduce the above copyright notice, this |
| | | list of conditions and the following disclaimer in the documentation and/or |
| | | other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| | | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR |
| | | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| | | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| | | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| | | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| | | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Berkeley SoftFloat Release 3e |
| | | ------------------------------------------------ |
| | | |
| | | https://github.com/ucb-bar/berkeley-softfloat-3 |
| | | https://github.com/ucb-bar/berkeley-softfloat-3/blob/master/COPYING.txt |
| | | |
| | | License for Berkeley SoftFloat Release 3e |
| | | |
| | | John R. Hauser |
| | | 2018 January 20 |
| | | |
| | | The following applies to the whole of SoftFloat Release 3e as well as to |
| | | each source file individually. |
| | | |
| | | Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the |
| | | University of California. All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are met: |
| | | |
| | | 1. Redistributions of source code must retain the above copyright notice, |
| | | this list of conditions, and the following disclaimer. |
| | | |
| | | 2. Redistributions in binary form must reproduce the above copyright |
| | | notice, this list of conditions, and the following disclaimer in the |
| | | documentation and/or other materials provided with the distribution. |
| | | |
| | | 3. Neither the name of the University nor the names of its contributors |
| | | may be used to endorse or promote products derived from this software |
| | | without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY |
| | | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY |
| | | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| | | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| | | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| | | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| | | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for xoshiro RNGs |
| | | -------------------------------- |
| | | |
| | | Written in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org) |
| | | |
| | | To the extent possible under law, the author has dedicated all copyright |
| | | and related and neighboring rights to this software to the public domain |
| | | worldwide. This software is distributed without any warranty. |
| | | |
| | | See <http://creativecommons.org/publicdomain/zero/1.0/>. |
| | | |
| | | License for fastmod (https://github.com/lemire/fastmod) and ibm-fpgen (https://github.com/nigeltao/parse-number-fxx-test-data) |
| | | -------------------------------------- |
| | | |
| | | Copyright 2018 Daniel Lemire |
| | | |
| | | Licensed under the Apache License, Version 2.0 (the "License"); |
| | | you may not use this file except in compliance with the License. |
| | | You may obtain a copy of the License at |
| | | |
| | | http://www.apache.org/licenses/LICENSE-2.0 |
| | | |
| | | Unless required by applicable law or agreed to in writing, software |
| | | distributed under the License is distributed on an "AS IS" BASIS, |
| | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | See the License for the specific language governing permissions and |
| | | limitations under the License. |
| | | |
| | | License notice for The C++ REST SDK |
| | | ----------------------------------- |
| | | |
| | | C++ REST SDK |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) Microsoft Corporation |
| | | |
| | | All rights reserved. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| | | this software and associated documentation files (the "Software"), to deal in |
| | | the Software without restriction, including without limitation the rights to |
| | | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| | | the Software, and to permit persons to whom the Software is furnished to do so, |
| | | subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for MessagePack-CSharp |
| | | ------------------------------------- |
| | | |
| | | MessagePack for C# |
| | | |
| | | MIT License |
| | | |
| | | Copyright (c) 2017 Yoshifumi Kawai |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for lz4net |
| | | ------------------------------------- |
| | | |
| | | lz4net |
| | | |
| | | Copyright (c) 2013-2017, Milosz Krajewski |
| | | |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
| | | |
| | | Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
| | | |
| | | Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Nerdbank.Streams |
| | | ----------------------------------- |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) Andrew Arnott |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for RapidJSON |
| | | ---------------------------- |
| | | |
| | | Tencent is pleased to support the open source community by making RapidJSON available. |
| | | |
| | | Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. |
| | | |
| | | Licensed under the MIT License (the "License"); you may not use this file except |
| | | in compliance with the License. You may obtain a copy of the License at |
| | | |
| | | http://opensource.org/licenses/MIT |
| | | |
| | | Unless required by applicable law or agreed to in writing, software distributed |
| | | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| | | CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| | | specific language governing permissions and limitations under the License. |
| | | |
| | | License notice for DirectX Math Library |
| | | --------------------------------------- |
| | | |
| | | https://github.com/microsoft/DirectXMath/blob/master/LICENSE |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) 2011-2020 Microsoft Corp |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of this |
| | | software and associated documentation files (the "Software"), to deal in the Software |
| | | without restriction, including without limitation the rights to use, copy, modify, |
| | | merge, publish, distribute, sublicense, and/or sell copies of the Software, and to |
| | | permit persons to whom the Software is furnished to do so, subject to the following |
| | | conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all copies |
| | | or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
| | | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A |
| | | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| | | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF |
| | | CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE |
| | | OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for ldap4net |
| | | --------------------------- |
| | | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) 2018 Alexander Chermyanin |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for vectorized sorting code |
| | | ------------------------------------------ |
| | | |
| | | MIT License |
| | | |
| | | Copyright (c) 2020 Dan Shechter |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| | | |
| | | License notice for musl |
| | | ----------------------- |
| | | |
| | | musl as a whole is licensed under the following standard MIT license: |
| | | |
| | | Copyright © 2005-2020 Rich Felker, et al. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of this software and associated documentation files (the |
| | | "Software"), to deal in the Software without restriction, including |
| | | without limitation the rights to use, copy, modify, merge, publish, |
| | | distribute, sublicense, and/or sell copies of the Software, and to |
| | | permit persons to whom the Software is furnished to do so, subject to |
| | | the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be |
| | | included in all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| | | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| | | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| | | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| | | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | |
| | | License notice for "Faster Unsigned Division by Constants" |
| | | ------------------------------ |
| | | |
| | | Reference implementations of computing and using the "magic number" approach to dividing |
| | | by constants, including codegen instructions. The unsigned division incorporates the |
| | | "round down" optimization per ridiculous_fish. |
| | | |
| | | This is free and unencumbered software. Any copyright is dedicated to the Public Domain. |
| | | |
| | | |
| | | License notice for mimalloc |
| | | ----------------------------------- |
| | | |
| | | MIT License |
| | | |
| | | Copyright (c) 2019 Microsoft Corporation, Daan Leijen |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <Project InitialTargets="NETStandardCompatError_System_Management_netcoreapp3_1"> |
| | | <Target Name="NETStandardCompatError_System_Management_netcoreapp3_1" |
| | | Condition="'$(SuppressTfmSupportBuildWarnings)' == ''"> |
| | | <Error Text="System.Management doesn't support $(TargetFramework). Consider updating your TargetFramework to netcoreapp3.1 or later." /> |
| | | </Target> |
| | | </Project> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.Management</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:System.SR.InvalidQuery"> |
| | | <summary>The Query string supplied was invalid or improperly formed</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryDuplicatedToken"> |
| | | <summary>The Query string supplied was invalid because it contains a duplicate token</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryNullToken"> |
| | | <summary>The Query string supplied was invalid because a supplied token was null</summary> |
| | | </member> |
| | | <member name="P:System.SR.WorkerThreadWakeupFailed"> |
| | | <summary>Unable to wakeup the worker thread to create an object in MTA</summary> |
| | | </member> |
| | | <member name="P:System.SR.ClassNameNotInitializedException"> |
| | | <summary>ClassName not initialized.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ClassNameNotFoundException"> |
| | | <summary>Class name does not match.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentAttributeProperty"> |
| | | <summary>Every property added to the class for WMI property has attributes set to define its behavior in Visual Studio designer and also to define a TypeConverter to be used.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentAutoCommitProperty"> |
| | | <summary>Property to show the commit behavior for the WMI object. If true, WMI object will be automatically saved after each property modification.(ie. Put() is called after modification of a property).</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentClassBegin"> |
| | | <summary>An Early Bound class generated for the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentConstructors"> |
| | | <summary>Below are different overloads of constructors to initialize an instance of the class with a WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCreatedClass"> |
| | | <summary>Private property to hold the name of WMI class which created this class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCreatedWmiNamespace"> |
| | | <summary>Private property to hold the WMI namespace in which the class resides.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCurrentObject"> |
| | | <summary>The current WMI object used</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentDateConversionFunction"> |
| | | <summary>Datetime conversion functions ToDateTime and ToDmtfDateTime are added to the class to convert DMTF datetime to System.DateTime and vice-versa.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentEmbeddedObject"> |
| | | <summary>Private variable to hold the embedded property representing the instance.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentEnumeratorImplementation"> |
| | | <summary>Enumerator implementation for enumerating instances of the class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentFlagForEmbedded"> |
| | | <summary>Flag to indicate if the instance is an embedded object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentGetInstances"> |
| | | <summary>Different overloads of GetInstances() help in enumerating instances of the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentIsPropNull"> |
| | | <summary>Functions Is<PropertyName>Null() are used to check if a property is NULL.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentLateBoundObject"> |
| | | <summary>Underlying lateBound WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentLateBoundProperty"> |
| | | <summary>Property returning the underlying lateBound object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentManagementPath"> |
| | | <summary>The ManagementPath of the underlying WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentManagementScope"> |
| | | <summary>ManagementScope of the object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentOriginNamespace"> |
| | | <summary>Property returns the namespace of the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentPrivateAutoCommit"> |
| | | <summary>Member variable to store the 'automatic commit' behavior for the class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentPrototypeConverter"> |
| | | <summary>TypeConverter to handle null values for ValueType properties</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentResetProperty"> |
| | | <summary>Functions Reset<PropertyName> are added for Nullable Read/Write properties. These functions are used by VS designer in property browser to set a property to NULL.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentShouldSerialize"> |
| | | <summary>Functions ShouldSerialize<PropertyName> are functions used by VS property browser to check if a particular property has to be serialized. These functions are added for all ValueType properties ( properties of type Int32, BOOL etc.. which cannot be set to n ...</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentStaticManagementScope"> |
| | | <summary>Private member variable to hold the ManagementScope which is used by the various methods.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentStaticScopeProperty"> |
| | | <summary>Public static scope property which is used by the various methods.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentSystemObject"> |
| | | <summary>Property pointing to an embedded object to get System properties of the WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentSystemPropertiesClass"> |
| | | <summary>Embedded class to represent WMI system Properties.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentTimeSpanConvertionFunction"> |
| | | <summary>Time interval functions ToTimeSpan and ToDmtfTimeInterval are added to the class to convert DMTF Time Interval to System.TimeSpan and vice-versa.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDateTime"> |
| | | <summary>Converts a given datetime in DMTF format to System.DateTime object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDmtfDateTime"> |
| | | <summary>Converts a given System.DateTime object to DMTF datetime format.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDmtfTimeInterval"> |
| | | <summary>Converts a given System.TimeSpan object to DMTF Time interval format.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToTimeSpan"> |
| | | <summary>Converts a given time interval in DMTF format to System.TimeSpan object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment"> |
| | | <summary>If the embedded property is strongly typed then, to strongly type the property to the type of</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment2"> |
| | | <summary>the embedded object, you have to do the following things.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment3"> |
| | | <summary>\t1. Generate Managed class for the WMI class of the embedded property. This can be done with MgmtClassGen.exe tool or from Server Explorer.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment4"> |
| | | <summary>\t2. Include the namespace of the generated class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment5"> |
| | | <summary>\t3. Change the property get/set functions so as return the instance of the Managed class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment6"> |
| | | <summary>Below is a sample code.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment7"> |
| | | <summary>VB Code</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment8"> |
| | | <summary>C# Code</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment1"> |
| | | <summary>public <ManagedClassName of Embedded property> <PropertyName></summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment10"> |
| | | <summary>\t\tIf (AutoCommitProp == true && isEmbedded == false)</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment11"> |
| | | <summary>\t\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment12"> |
| | | <summary>\t\t\tPrivateLateBoundObject.Put();</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment13"> |
| | | <summary>\t\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment14"> |
| | | <summary>\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment15"> |
| | | <summary>}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment2"> |
| | | <summary>{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment3"> |
| | | <summary>\tget</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment4"> |
| | | <summary>\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment5"> |
| | | <summary>\t\treturn new <ManagedClassName of Embedded property>((System.Management.ManagementBaseObject)(curObj["<PropertyName>"]));</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment6"> |
| | | <summary>\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment7"> |
| | | <summary>\tset</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment8"> |
| | | <summary>\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment9"> |
| | | <summary>\t\tcurObj["<PropertyName>"] = value.LateBoundObject;</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment1"> |
| | | <summary>Public Property <PropertyName>() As <ManagedClassName of Embedded property></summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment10"> |
| | | <summary>\tEnd Set</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment2"> |
| | | <summary>\tGet</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment3"> |
| | | <summary>\t\tReturn New <ManagedClassName of Embedded Property>(CType(curObj("<PropertyName>"),System.Management.ManagementBaseObject))</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment4"> |
| | | <summary>\tEnd Get</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment5"> |
| | | <summary>\tSet(ByVal Value As <ManagedClassName of Embedded property>)</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment6"> |
| | | <summary>\t\tcurObj("EObject")=Value.LateBoundObject</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment7"> |
| | | <summary>\t\tIf (AutoCommitProp = True And isEmbedded = False) Then</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment8"> |
| | | <summary>\t\t\tPrivateLateBoundObject.Put()</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment9"> |
| | | <summary>\t\tEnd If</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmptyFilePathException"> |
| | | <summary>FilePath cannot be empty.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NamespaceNotInitializedException"> |
| | | <summary>Namespace not initialized.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NullFilePathException"> |
| | | <summary>FilePath or code generator object is null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.UnableToCreateCodeGeneratorException"> |
| | | <summary>Unable to create code generator for '{0}'</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_SystemManagement"> |
| | | <summary>System.Management currently is only supported for Windows desktop applications.</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_FullFrameworkRequired"> |
| | | <summary>Could not find an installation of .NET Framework v4.0.30319. System.Management requires native modules from the .NET Framework to operate.</summary> |
| | | </member> |
| | | <member name="P:System.SR.LoadLibraryFailed"> |
| | | <summary>Failed to load required native library '{0}'.</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_FrameworkUpdatedRequired"> |
| | | <summary>The native library '{0}' does not have all required functions. Please, update the .NET Framework.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryTokenExpected"> |
| | | <summary>The Query string supplied was invalid or improperly formed. Token `{0}` is expected</summary> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.Management</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:System.SR.InvalidQuery"> |
| | | <summary>The Query string supplied was invalid or improperly formed</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryDuplicatedToken"> |
| | | <summary>The Query string supplied was invalid because it contains a duplicate token</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryNullToken"> |
| | | <summary>The Query string supplied was invalid because a supplied token was null</summary> |
| | | </member> |
| | | <member name="P:System.SR.WorkerThreadWakeupFailed"> |
| | | <summary>Unable to wakeup the worker thread to create an object in MTA</summary> |
| | | </member> |
| | | <member name="P:System.SR.ClassNameNotInitializedException"> |
| | | <summary>ClassName not initialized.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ClassNameNotFoundException"> |
| | | <summary>Class name does not match.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentAttributeProperty"> |
| | | <summary>Every property added to the class for WMI property has attributes set to define its behavior in Visual Studio designer and also to define a TypeConverter to be used.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentAutoCommitProperty"> |
| | | <summary>Property to show the commit behavior for the WMI object. If true, WMI object will be automatically saved after each property modification.(ie. Put() is called after modification of a property).</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentClassBegin"> |
| | | <summary>An Early Bound class generated for the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentConstructors"> |
| | | <summary>Below are different overloads of constructors to initialize an instance of the class with a WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCreatedClass"> |
| | | <summary>Private property to hold the name of WMI class which created this class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCreatedWmiNamespace"> |
| | | <summary>Private property to hold the WMI namespace in which the class resides.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCurrentObject"> |
| | | <summary>The current WMI object used</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentDateConversionFunction"> |
| | | <summary>Datetime conversion functions ToDateTime and ToDmtfDateTime are added to the class to convert DMTF datetime to System.DateTime and vice-versa.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentEmbeddedObject"> |
| | | <summary>Private variable to hold the embedded property representing the instance.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentEnumeratorImplementation"> |
| | | <summary>Enumerator implementation for enumerating instances of the class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentFlagForEmbedded"> |
| | | <summary>Flag to indicate if the instance is an embedded object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentGetInstances"> |
| | | <summary>Different overloads of GetInstances() help in enumerating instances of the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentIsPropNull"> |
| | | <summary>Functions Is<PropertyName>Null() are used to check if a property is NULL.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentLateBoundObject"> |
| | | <summary>Underlying lateBound WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentLateBoundProperty"> |
| | | <summary>Property returning the underlying lateBound object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentManagementPath"> |
| | | <summary>The ManagementPath of the underlying WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentManagementScope"> |
| | | <summary>ManagementScope of the object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentOriginNamespace"> |
| | | <summary>Property returns the namespace of the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentPrivateAutoCommit"> |
| | | <summary>Member variable to store the 'automatic commit' behavior for the class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentPrototypeConverter"> |
| | | <summary>TypeConverter to handle null values for ValueType properties</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentResetProperty"> |
| | | <summary>Functions Reset<PropertyName> are added for Nullable Read/Write properties. These functions are used by VS designer in property browser to set a property to NULL.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentShouldSerialize"> |
| | | <summary>Functions ShouldSerialize<PropertyName> are functions used by VS property browser to check if a particular property has to be serialized. These functions are added for all ValueType properties ( properties of type Int32, BOOL etc.. which cannot be set to n ...</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentStaticManagementScope"> |
| | | <summary>Private member variable to hold the ManagementScope which is used by the various methods.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentStaticScopeProperty"> |
| | | <summary>Public static scope property which is used by the various methods.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentSystemObject"> |
| | | <summary>Property pointing to an embedded object to get System properties of the WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentSystemPropertiesClass"> |
| | | <summary>Embedded class to represent WMI system Properties.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentTimeSpanConvertionFunction"> |
| | | <summary>Time interval functions ToTimeSpan and ToDmtfTimeInterval are added to the class to convert DMTF Time Interval to System.TimeSpan and vice-versa.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDateTime"> |
| | | <summary>Converts a given datetime in DMTF format to System.DateTime object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDmtfDateTime"> |
| | | <summary>Converts a given System.DateTime object to DMTF datetime format.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDmtfTimeInterval"> |
| | | <summary>Converts a given System.TimeSpan object to DMTF Time interval format.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToTimeSpan"> |
| | | <summary>Converts a given time interval in DMTF format to System.TimeSpan object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment"> |
| | | <summary>If the embedded property is strongly typed then, to strongly type the property to the type of</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment2"> |
| | | <summary>the embedded object, you have to do the following things.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment3"> |
| | | <summary>\t1. Generate Managed class for the WMI class of the embedded property. This can be done with MgmtClassGen.exe tool or from Server Explorer.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment4"> |
| | | <summary>\t2. Include the namespace of the generated class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment5"> |
| | | <summary>\t3. Change the property get/set functions so as return the instance of the Managed class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment6"> |
| | | <summary>Below is a sample code.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment7"> |
| | | <summary>VB Code</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment8"> |
| | | <summary>C# Code</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment1"> |
| | | <summary>public <ManagedClassName of Embedded property> <PropertyName></summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment10"> |
| | | <summary>\t\tIf (AutoCommitProp == true && isEmbedded == false)</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment11"> |
| | | <summary>\t\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment12"> |
| | | <summary>\t\t\tPrivateLateBoundObject.Put();</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment13"> |
| | | <summary>\t\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment14"> |
| | | <summary>\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment15"> |
| | | <summary>}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment2"> |
| | | <summary>{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment3"> |
| | | <summary>\tget</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment4"> |
| | | <summary>\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment5"> |
| | | <summary>\t\treturn new <ManagedClassName of Embedded property>((System.Management.ManagementBaseObject)(curObj["<PropertyName>"]));</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment6"> |
| | | <summary>\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment7"> |
| | | <summary>\tset</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment8"> |
| | | <summary>\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment9"> |
| | | <summary>\t\tcurObj["<PropertyName>"] = value.LateBoundObject;</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment1"> |
| | | <summary>Public Property <PropertyName>() As <ManagedClassName of Embedded property></summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment10"> |
| | | <summary>\tEnd Set</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment2"> |
| | | <summary>\tGet</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment3"> |
| | | <summary>\t\tReturn New <ManagedClassName of Embedded Property>(CType(curObj("<PropertyName>"),System.Management.ManagementBaseObject))</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment4"> |
| | | <summary>\tEnd Get</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment5"> |
| | | <summary>\tSet(ByVal Value As <ManagedClassName of Embedded property>)</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment6"> |
| | | <summary>\t\tcurObj("EObject")=Value.LateBoundObject</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment7"> |
| | | <summary>\t\tIf (AutoCommitProp = True And isEmbedded = False) Then</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment8"> |
| | | <summary>\t\t\tPrivateLateBoundObject.Put()</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment9"> |
| | | <summary>\t\tEnd If</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmptyFilePathException"> |
| | | <summary>FilePath cannot be empty.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NamespaceNotInitializedException"> |
| | | <summary>Namespace not initialized.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NullFilePathException"> |
| | | <summary>FilePath or code generator object is null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.UnableToCreateCodeGeneratorException"> |
| | | <summary>Unable to create code generator for '{0}'</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_SystemManagement"> |
| | | <summary>System.Management currently is only supported for Windows desktop applications.</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_FullFrameworkRequired"> |
| | | <summary>Could not find an installation of .NET Framework v4.0.30319. System.Management requires native modules from the .NET Framework to operate.</summary> |
| | | </member> |
| | | <member name="P:System.SR.LoadLibraryFailed"> |
| | | <summary>Failed to load required native library '{0}'.</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_FrameworkUpdatedRequired"> |
| | | <summary>The native library '{0}' does not have all required functions. Please, update the .NET Framework.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryTokenExpected"> |
| | | <summary>The Query string supplied was invalid or improperly formed. Token `{0}` is expected</summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.OSPlatformAttribute"> |
| | | <summary> |
| | | Base type for all platform-specific API attributes. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.TargetPlatformAttribute"> |
| | | <summary> |
| | | Records the platform that the project targeted. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Records the operating system (and minimum version) that supports an API. Multiple attributes can be |
| | | applied to indicate support on multiple operating systems. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" /> |
| | | or use guards to prevent calls to APIs on unsupported operating systems. |
| | | |
| | | A given platform should only be specified once. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Marks APIs that were removed in a given operating system version. |
| | | </summary> |
| | | <remarks> |
| | | Primarily used by OS bindings to indicate APIs that are only available in |
| | | earlier versions. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates a custom guard field, property or method with a supported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple supported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates the custom guard field, property or method with an unsupported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple unsupported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0"?> |
| | | <doc> |
| | | <assembly> |
| | | <name>System.Management</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="P:System.SR.InvalidQuery"> |
| | | <summary>The Query string supplied was invalid or improperly formed</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryDuplicatedToken"> |
| | | <summary>The Query string supplied was invalid because it contains a duplicate token</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryNullToken"> |
| | | <summary>The Query string supplied was invalid because a supplied token was null</summary> |
| | | </member> |
| | | <member name="P:System.SR.WorkerThreadWakeupFailed"> |
| | | <summary>Unable to wakeup the worker thread to create an object in MTA</summary> |
| | | </member> |
| | | <member name="P:System.SR.ClassNameNotInitializedException"> |
| | | <summary>ClassName not initialized.</summary> |
| | | </member> |
| | | <member name="P:System.SR.ClassNameNotFoundException"> |
| | | <summary>Class name does not match.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentAttributeProperty"> |
| | | <summary>Every property added to the class for WMI property has attributes set to define its behavior in Visual Studio designer and also to define a TypeConverter to be used.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentAutoCommitProperty"> |
| | | <summary>Property to show the commit behavior for the WMI object. If true, WMI object will be automatically saved after each property modification.(ie. Put() is called after modification of a property).</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentClassBegin"> |
| | | <summary>An Early Bound class generated for the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentConstructors"> |
| | | <summary>Below are different overloads of constructors to initialize an instance of the class with a WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCreatedClass"> |
| | | <summary>Private property to hold the name of WMI class which created this class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCreatedWmiNamespace"> |
| | | <summary>Private property to hold the WMI namespace in which the class resides.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentCurrentObject"> |
| | | <summary>The current WMI object used</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentDateConversionFunction"> |
| | | <summary>Datetime conversion functions ToDateTime and ToDmtfDateTime are added to the class to convert DMTF datetime to System.DateTime and vice-versa.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentEmbeddedObject"> |
| | | <summary>Private variable to hold the embedded property representing the instance.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentEnumeratorImplementation"> |
| | | <summary>Enumerator implementation for enumerating instances of the class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentFlagForEmbedded"> |
| | | <summary>Flag to indicate if the instance is an embedded object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentGetInstances"> |
| | | <summary>Different overloads of GetInstances() help in enumerating instances of the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentIsPropNull"> |
| | | <summary>Functions Is<PropertyName>Null() are used to check if a property is NULL.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentLateBoundObject"> |
| | | <summary>Underlying lateBound WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentLateBoundProperty"> |
| | | <summary>Property returning the underlying lateBound object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentManagementPath"> |
| | | <summary>The ManagementPath of the underlying WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentManagementScope"> |
| | | <summary>ManagementScope of the object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentOriginNamespace"> |
| | | <summary>Property returns the namespace of the WMI class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentPrivateAutoCommit"> |
| | | <summary>Member variable to store the 'automatic commit' behavior for the class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentPrototypeConverter"> |
| | | <summary>TypeConverter to handle null values for ValueType properties</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentResetProperty"> |
| | | <summary>Functions Reset<PropertyName> are added for Nullable Read/Write properties. These functions are used by VS designer in property browser to set a property to NULL.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentShouldSerialize"> |
| | | <summary>Functions ShouldSerialize<PropertyName> are functions used by VS property browser to check if a particular property has to be serialized. These functions are added for all ValueType properties ( properties of type Int32, BOOL etc.. which cannot be set to n ...</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentStaticManagementScope"> |
| | | <summary>Private member variable to hold the ManagementScope which is used by the various methods.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentStaticScopeProperty"> |
| | | <summary>Public static scope property which is used by the various methods.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentSystemObject"> |
| | | <summary>Property pointing to an embedded object to get System properties of the WMI object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentSystemPropertiesClass"> |
| | | <summary>Embedded class to represent WMI system Properties.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentTimeSpanConvertionFunction"> |
| | | <summary>Time interval functions ToTimeSpan and ToDmtfTimeInterval are added to the class to convert DMTF Time Interval to System.TimeSpan and vice-versa.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDateTime"> |
| | | <summary>Converts a given datetime in DMTF format to System.DateTime object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDmtfDateTime"> |
| | | <summary>Converts a given System.DateTime object to DMTF datetime format.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToDmtfTimeInterval"> |
| | | <summary>Converts a given System.TimeSpan object to DMTF Time interval format.</summary> |
| | | </member> |
| | | <member name="P:System.SR.CommentToTimeSpan"> |
| | | <summary>Converts a given time interval in DMTF format to System.TimeSpan object.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment"> |
| | | <summary>If the embedded property is strongly typed then, to strongly type the property to the type of</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment2"> |
| | | <summary>the embedded object, you have to do the following things.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment3"> |
| | | <summary>\t1. Generate Managed class for the WMI class of the embedded property. This can be done with MgmtClassGen.exe tool or from Server Explorer.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment4"> |
| | | <summary>\t2. Include the namespace of the generated class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment5"> |
| | | <summary>\t3. Change the property get/set functions so as return the instance of the Managed class.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment6"> |
| | | <summary>Below is a sample code.</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment7"> |
| | | <summary>VB Code</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedComment8"> |
| | | <summary>C# Code</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment1"> |
| | | <summary>public <ManagedClassName of Embedded property> <PropertyName></summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment10"> |
| | | <summary>\t\tIf (AutoCommitProp == true && isEmbedded == false)</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment11"> |
| | | <summary>\t\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment12"> |
| | | <summary>\t\t\tPrivateLateBoundObject.Put();</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment13"> |
| | | <summary>\t\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment14"> |
| | | <summary>\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment15"> |
| | | <summary>}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment2"> |
| | | <summary>{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment3"> |
| | | <summary>\tget</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment4"> |
| | | <summary>\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment5"> |
| | | <summary>\t\treturn new <ManagedClassName of Embedded property>((System.Management.ManagementBaseObject)(curObj["<PropertyName>"]));</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment6"> |
| | | <summary>\t}</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment7"> |
| | | <summary>\tset</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment8"> |
| | | <summary>\t{</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedCSharpComment9"> |
| | | <summary>\t\tcurObj["<PropertyName>"] = value.LateBoundObject;</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment1"> |
| | | <summary>Public Property <PropertyName>() As <ManagedClassName of Embedded property></summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment10"> |
| | | <summary>\tEnd Set</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment2"> |
| | | <summary>\tGet</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment3"> |
| | | <summary>\t\tReturn New <ManagedClassName of Embedded Property>(CType(curObj("<PropertyName>"),System.Management.ManagementBaseObject))</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment4"> |
| | | <summary>\tEnd Get</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment5"> |
| | | <summary>\tSet(ByVal Value As <ManagedClassName of Embedded property>)</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment6"> |
| | | <summary>\t\tcurObj("EObject")=Value.LateBoundObject</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment7"> |
| | | <summary>\t\tIf (AutoCommitProp = True And isEmbedded = False) Then</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment8"> |
| | | <summary>\t\t\tPrivateLateBoundObject.Put()</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmbeddedVisualBasicComment9"> |
| | | <summary>\t\tEnd If</summary> |
| | | </member> |
| | | <member name="P:System.SR.EmptyFilePathException"> |
| | | <summary>FilePath cannot be empty.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NamespaceNotInitializedException"> |
| | | <summary>Namespace not initialized.</summary> |
| | | </member> |
| | | <member name="P:System.SR.NullFilePathException"> |
| | | <summary>FilePath or code generator object is null.</summary> |
| | | </member> |
| | | <member name="P:System.SR.UnableToCreateCodeGeneratorException"> |
| | | <summary>Unable to create code generator for '{0}'</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_SystemManagement"> |
| | | <summary>System.Management currently is only supported for Windows desktop applications.</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_FullFrameworkRequired"> |
| | | <summary>Could not find an installation of .NET Framework v4.0.30319. System.Management requires native modules from the .NET Framework to operate.</summary> |
| | | </member> |
| | | <member name="P:System.SR.LoadLibraryFailed"> |
| | | <summary>Failed to load required native library '{0}'.</summary> |
| | | </member> |
| | | <member name="P:System.SR.PlatformNotSupported_FrameworkUpdatedRequired"> |
| | | <summary>The native library '{0}' does not have all required functions. Please, update the .NET Framework.</summary> |
| | | </member> |
| | | <member name="P:System.SR.InvalidQueryTokenExpected"> |
| | | <summary>The Query string supplied was invalid or improperly formed. Token `{0}` is expected</summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.OSPlatformAttribute"> |
| | | <summary> |
| | | Base type for all platform-specific API attributes. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.TargetPlatformAttribute"> |
| | | <summary> |
| | | Records the platform that the project targeted. |
| | | </summary> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Records the operating system (and minimum version) that supports an API. Multiple attributes can be |
| | | applied to indicate support on multiple operating systems. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" /> |
| | | or use guards to prevent calls to APIs on unsupported operating systems. |
| | | |
| | | A given platform should only be specified once. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute"> |
| | | <summary> |
| | | Marks APIs that were removed in a given operating system version. |
| | | </summary> |
| | | <remarks> |
| | | Primarily used by OS bindings to indicate APIs that are only available in |
| | | earlier versions. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates a custom guard field, property or method with a supported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple supported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute"> |
| | | <summary> |
| | | Annotates the custom guard field, property or method with an unsupported platform name and optional version. |
| | | Multiple attributes can be applied to indicate guard for multiple unsupported platforms. |
| | | </summary> |
| | | <remarks> |
| | | Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method |
| | | and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. |
| | | |
| | | The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. |
| | | </remarks> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | The MIT License (MIT) |
| | | |
| | | Copyright (c) .NET Foundation and Contributors |
| | | |
| | | All rights reserved. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| | | SOFTWARE. |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | .NET Core uses third-party libraries or other resources that may be |
| | | distributed under licenses different than the .NET Core software. |
| | | |
| | | In the event that we accidentally failed to list a required notice, please |
| | | bring it to our attention. Post an issue or email us: |
| | | |
| | | dotnet@microsoft.com |
| | | |
| | | The attached notices are provided for information only. |
| | | |
| | | License notice for Slicing-by-8 |
| | | ------------------------------- |
| | | |
| | | http://sourceforge.net/projects/slicing-by-8/ |
| | | |
| | | Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved |
| | | |
| | | |
| | | This software program is licensed subject to the BSD License, available at |
| | | http://www.opensource.org/licenses/bsd-license.html. |
| | | |
| | | |
| | | License notice for Unicode data |
| | | ------------------------------- |
| | | |
| | | http://www.unicode.org/copyright.html#License |
| | | |
| | | Copyright © 1991-2017 Unicode, Inc. All rights reserved. |
| | | Distributed under the Terms of Use in http://www.unicode.org/copyright.html. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining |
| | | a copy of the Unicode data files and any associated documentation |
| | | (the "Data Files") or Unicode software and any associated documentation |
| | | (the "Software") to deal in the Data Files or Software |
| | | without restriction, including without limitation the rights to use, |
| | | copy, modify, merge, publish, distribute, and/or sell copies of |
| | | the Data Files or Software, and to permit persons to whom the Data Files |
| | | or Software are furnished to do so, provided that either |
| | | (a) this copyright and permission notice appear with all copies |
| | | of the Data Files or Software, or |
| | | (b) this copyright and permission notice appear in associated |
| | | Documentation. |
| | | |
| | | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF |
| | | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| | | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
| | | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS |
| | | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL |
| | | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, |
| | | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| | | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| | | PERFORMANCE OF THE DATA FILES OR SOFTWARE. |
| | | |
| | | Except as contained in this notice, the name of a copyright holder |
| | | shall not be used in advertising or otherwise to promote the sale, |
| | | use or other dealings in these Data Files or Software without prior |
| | | written authorization of the copyright holder. |
| | | |
| | | License notice for Zlib |
| | | ----------------------- |
| | | |
| | | https://github.com/madler/zlib |
| | | http://zlib.net/zlib_license.html |
| | | |
| | | /* zlib.h -- interface of the 'zlib' general purpose compression library |
| | | version 1.2.11, January 15th, 2017 |
| | | |
| | | Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | | arising from the use of this software. |
| | | |
| | | Permission is granted to anyone to use this software for any purpose, |
| | | including commercial applications, and to alter it and redistribute it |
| | | freely, subject to the following restrictions: |
| | | |
| | | 1. The origin of this software must not be misrepresented; you must not |
| | | claim that you wrote the original software. If you use this software |
| | | in a product, an acknowledgment in the product documentation would be |
| | | appreciated but is not required. |
| | | 2. Altered source versions must be plainly marked as such, and must not be |
| | | misrepresented as being the original software. |
| | | 3. This notice may not be removed or altered from any source distribution. |
| | | |
| | | Jean-loup Gailly Mark Adler |
| | | jloup@gzip.org madler@alumni.caltech.edu |
| | | |
| | | */ |
| | | |
| | | License notice for Mono |
| | | ------------------------------- |
| | | |
| | | http://www.mono-project.com/docs/about-mono/ |
| | | |
| | | Copyright (c) .NET Foundation Contributors |
| | | |
| | | MIT License |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the Software), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in all |
| | | copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| | | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| | | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| | | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| | | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| | | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| | | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | License notice for International Organization for Standardization |
| | | ----------------------------------------------------------------- |
| | | |
| | | Portions (C) International Organization for Standardization 1986: |
| | | Permission to copy in any form is granted for use with |
| | | conforming SGML systems and applications as defined in |
| | | ISO 8879, provided this notice is included in all copies. |
| | | |
| | | License notice for Intel |
| | | ------------------------ |
| | | |
| | | "Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are met: |
| | | |
| | | 1. Redistributions of source code must retain the above copyright notice, this |
| | | list of conditions and the following disclaimer. |
| | | |
| | | 2. Redistributions in binary form must reproduce the above copyright notice, |
| | | this list of conditions and the following disclaimer in the documentation |
| | | and/or other materials provided with the distribution. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| | | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| | | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| | | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| | | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| | | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| | | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| | | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| | | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | License notice for Xamarin and Novell |
| | | ------------------------------------- |
| | | |
| | | Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | Copyright (c) 2011 Novell, Inc (http://www.novell.com) |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | Third party notice for W3C |
| | | -------------------------- |
| | | |
| | | "W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE |
| | | Status: This license takes effect 13 May, 2015. |
| | | This work is being provided by the copyright holders under the following license. |
| | | License |
| | | By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. |
| | | Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: |
| | | The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. |
| | | Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. |
| | | Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." |
| | | Disclaimers |
| | | THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. |
| | | COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. |
| | | The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." |
| | | |
| | | License notice for Bit Twiddling Hacks |
| | | -------------------------------------- |
| | | |
| | | Bit Twiddling Hacks |
| | | |
| | | By Sean Eron Anderson |
| | | seander@cs.stanford.edu |
| | | |
| | | Individually, the code snippets here are in the public domain (unless otherwise |
| | | noted) â feel free to use them however you please. The aggregate collection and |
| | | descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are |
| | | distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and |
| | | without even the implied warranty of merchantability or fitness for a particular |
| | | purpose. |
| | | |
| | | License notice for Brotli |
| | | -------------------------------------- |
| | | |
| | | Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. |
| | | |
| | | Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | of this software and associated documentation files (the "Software"), to deal |
| | | in the Software without restriction, including without limitation the rights |
| | | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| | | copies of the Software, and to permit persons to whom the Software is |
| | | furnished to do so, subject to the following conditions: |
| | | |
| | | The above copyright notice and this permission notice shall be included in |
| | | all copies or substantial portions of the Software. |
| | | |
| | | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| | | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| | | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| | | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| | | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| | | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| | | THE SOFTWARE. |
| | | |
| | | compress_fragment.c: |
| | | Copyright (c) 2011, Google Inc. |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following disclaimer |
| | | in the documentation and/or other materials provided with the |
| | | distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived from |
| | | this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | |
| | | decode_fuzzer.c: |
| | | Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without |
| | | modification, are permitted provided that the following conditions are |
| | | met: |
| | | |
| | | * Redistributions of source code must retain the above copyright |
| | | notice, this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above |
| | | copyright notice, this list of conditions and the following disclaimer |
| | | in the documentation and/or other materials provided with the |
| | | distribution. |
| | | * Neither the name of Google Inc. nor the names of its |
| | | contributors may be used to endorse or promote products derived from |
| | | this software without specific prior written permission. |
| | | |
| | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| | | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
| | | |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="utf-8"?><doc> |
| | | <assembly> |
| | | <name>System.Text.Encodings.Web</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:System.Text.Encodings.Web.HtmlEncoder"> |
| | | <summary>Represents an HTML character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of the HtmlEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.HtmlEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.JavaScriptEncoder"> |
| | | <summary>Represents a JavaScript character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of JavaScriptEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the JavaScriptEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.TextEncoder"> |
| | | <summary>The base class of web encoders.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.TextEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)"> |
| | | <summary>Encodes the supplied string and returns the encoded text as a new string.</summary> |
| | | <param name="value">The string to encode.</param> |
| | | <returns>The encoded string.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)"> |
| | | <summary>Encodes the specified string to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The string to encode.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)"> |
| | | <summary>Encodes characters from an array and writes them to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The array of characters to encode.</param> |
| | | <param name="startIndex">The array index of the first character to encode.</param> |
| | | <param name="characterCount">The number of characters in the array to encode.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)"> |
| | | <summary>Encodes a substring and writes it to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The string whose substring is to be encoded.</param> |
| | | <param name="startIndex">The index where the substring starts.</param> |
| | | <param name="characterCount">The number of characters in the substring.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)"> |
| | | <summary>Finds the index of the first character to encode.</summary> |
| | | <param name="text">The text buffer to search.</param> |
| | | <param name="textLength">The number of characters in <paramref name="text">text</paramref>.</param> |
| | | <returns>The index of the first character to encode.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"> |
| | | <summary>Gets the maximum number of characters that this encoder can generate for each input code point.</summary> |
| | | <returns>The maximum number of characters.</returns> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"> |
| | | <summary>Encodes a Unicode scalar value and writes it to a buffer.</summary> |
| | | <param name="unicodeScalar">A Unicode scalar value.</param> |
| | | <param name="buffer">A pointer to the buffer to which to write the encoded text.</param> |
| | | <param name="bufferLength">The length of the destination <paramref name="buffer">buffer</paramref> in characters.</param> |
| | | <param name="numberOfCharactersWritten">When the method returns, indicates the number of characters written to the <paramref name="buffer">buffer</paramref>.</param> |
| | | <returns>false if <paramref name="bufferLength">bufferLength</paramref> is too small to fit the encoded text; otherwise, returns true.</returns> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.WillEncode(System.Int32)"> |
| | | <summary>Determines if a given Unicode scalar value will be encoded.</summary> |
| | | <param name="unicodeScalar">A Unicode scalar value.</param> |
| | | <returns>true if the <paramref name="unicodeScalar">unicodeScalar</paramref> value will be encoded by this encoder; otherwise, returns false.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.TextEncoderSettings"> |
| | | <summary>Represents a filter that allows only certain Unicode code points.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor"> |
| | | <summary>Instantiates an empty filter (allows no code points through by default).</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Instantiates a filter by cloning the allowed list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object.</summary> |
| | | <param name="other">The other <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object to be cloned.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Instantiates a filter where only the character ranges specified by <paramref name="allowedRanges">allowedRanges</paramref> are allowed by the filter.</summary> |
| | | <param name="allowedRanges">The allowed character ranges.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacter(System.Char)"> |
| | | <summary>Allows the character specified by <paramref name="character">character</paramref> through the filter.</summary> |
| | | <param name="character">The allowed character.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacters(System.Char[])"> |
| | | <summary>Allows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary> |
| | | <param name="characters">The allowed characters.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCodePoints(System.Collections.Generic.IEnumerable{System.Int32})"> |
| | | <summary>Allows all code points specified by <paramref name="codePoints">codePoints</paramref>.</summary> |
| | | <param name="codePoints">The allowed code points.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="codePoints">codePoints</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRange(System.Text.Unicode.UnicodeRange)"> |
| | | <summary>Allows all characters specified by <paramref name="range">range</paramref> through the filter.</summary> |
| | | <param name="range">The range of characters to be allowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRanges(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Allows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary> |
| | | <param name="ranges">The ranges of characters to be allowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.Clear"> |
| | | <summary>Resets this object by disallowing all characters.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacter(System.Char)"> |
| | | <summary>Disallows the character <paramref name="character">character</paramref> through the filter.</summary> |
| | | <param name="character">The disallowed character.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacters(System.Char[])"> |
| | | <summary>Disallows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary> |
| | | <param name="characters">The disallowed characters.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRange(System.Text.Unicode.UnicodeRange)"> |
| | | <summary>Disallows all characters specified by <paramref name="range">range</paramref> through the filter.</summary> |
| | | <param name="range">The range of characters to be disallowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRanges(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Disallows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary> |
| | | <param name="ranges">The ranges of characters to be disallowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePoints"> |
| | | <summary>Gets an enumerator of all allowed code points.</summary> |
| | | <returns>The enumerator of allowed code points.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.UrlEncoder"> |
| | | <summary>Represents a URL character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of UrlEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the UrlEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.UrlEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Unicode.UnicodeRange"> |
| | | <summary>Represents a contiguous range of Unicode code points.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Unicode.UnicodeRange.#ctor(System.Int32,System.Int32)"> |
| | | <summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> that includes a specified number of characters starting at a specified Unicode code point.</summary> |
| | | <param name="firstCodePoint">The first code point in the range.</param> |
| | | <param name="length">The number of code points in the range.</param> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="firstCodePoint">firstCodePoint</paramref> is less than zero or greater than 0xFFFF. |
| | | -or- |
| | | <paramref name="length">length</paramref> is less than zero. |
| | | -or- |
| | | <paramref name="firstCodePoint">firstCodePoint</paramref> plus <paramref name="length">length</paramref> is greater than 0xFFFF.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Unicode.UnicodeRange.Create(System.Char,System.Char)"> |
| | | <summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance from a span of characters.</summary> |
| | | <param name="firstCharacter">The first character in the range.</param> |
| | | <param name="lastCharacter">The last character in the range.</param> |
| | | <returns>A range that includes all characters between <paramref name="firstCharacter">firstCharacter</paramref> and <paramref name="lastCharacter">lastCharacter</paramref>.</returns> |
| | | <exception cref="System.ArgumentOutOfRangeException"><paramref name="lastCharacter">lastCharacter</paramref> precedes <paramref name="firstCharacter">firstCharacter</paramref>.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRange.FirstCodePoint"> |
| | | <summary>Gets the first code point in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary> |
| | | <returns>The first code point in the range.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRange.Length"> |
| | | <summary>Gets the number of code points in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary> |
| | | <returns>The number of code points in the range.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Unicode.UnicodeRanges"> |
| | | <summary>Provides static properties that return predefined <see cref="T:System.Text.Unicode.UnicodeRange"></see> instances that correspond to blocks from the Unicode specification.</summary> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.All"> |
| | | <summary>Gets a range that consists of the entire Basic Multilingual Plane (BMP), from U+0000 to U+FFFF).</summary> |
| | | <returns>A range that consists of the entire BMP.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.AlphabeticPresentationForms"> |
| | | <summary>Gets the Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).</summary> |
| | | <returns>The Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Arabic"> |
| | | <summary>Gets the Arabic Unicode block (U+0600-U+06FF).</summary> |
| | | <returns>The Arabic Unicode block (U+0600-U+06FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedA"> |
| | | <summary>Gets the Arabic Extended-A Unicode block (U+08A0-U+08FF).</summary> |
| | | <returns>The Arabic Extended-A Unicode block (U+08A0-U+08FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsA"> |
| | | <summary>Gets the Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</summary> |
| | | <returns>The Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsB"> |
| | | <summary>Gets the Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).</summary> |
| | | <returns>The Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicSupplement"> |
| | | <summary>Gets the Arabic Supplement Unicode block (U+0750-U+077F).</summary> |
| | | <returns>The Arabic Supplement Unicode block (U+0750-U+077F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Armenian"> |
| | | <summary>Gets the Armenian Unicode block (U+0530-U+058F).</summary> |
| | | <returns>The Armenian Unicode block (U+0530-U+058F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Arrows"> |
| | | <summary>Gets the Arrows Unicode block (U+2190-U+21FF).</summary> |
| | | <returns>The Arrows Unicode block (U+2190-U+21FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Balinese"> |
| | | <summary>Gets the Balinese Unicode block (U+1B00-U+1B7F).</summary> |
| | | <returns>The Balinese Unicode block (U+1B00-U+1B7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bamum"> |
| | | <summary>Gets the Bamum Unicode block (U+A6A0-U+A6FF).</summary> |
| | | <returns>The Bamum Unicode block (U+A6A0-U+A6FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BasicLatin"> |
| | | <summary>Gets the Basic Latin Unicode block (U+0021-U+007F).</summary> |
| | | <returns>The Basic Latin Unicode block (U+0021-U+007F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Batak"> |
| | | <summary>Gets the Batak Unicode block (U+1BC0-U+1BFF).</summary> |
| | | <returns>The Batak Unicode block (U+1BC0-U+1BFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bengali"> |
| | | <summary>Gets the Bengali Unicode block (U+0980-U+09FF).</summary> |
| | | <returns>The Bengali Unicode block (U+0980-U+09FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BlockElements"> |
| | | <summary>Gets the Block Elements Unicode block (U+2580-U+259F).</summary> |
| | | <returns>The Block Elements Unicode block (U+2580-U+259F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bopomofo"> |
| | | <summary>Gets the Bopomofo Unicode block (U+3100-U+312F).</summary> |
| | | <returns>The Bopomofo Unicode block (U+3105-U+312F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BopomofoExtended"> |
| | | <summary>Gets the Bopomofo Extended Unicode block (U+31A0-U+31BF).</summary> |
| | | <returns>The Bopomofo Extended Unicode block (U+31A0-U+31BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BoxDrawing"> |
| | | <summary>Gets the Box Drawing Unicode block (U+2500-U+257F).</summary> |
| | | <returns>The Box Drawing Unicode block (U+2500-U+257F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BraillePatterns"> |
| | | <summary>Gets the Braille Patterns Unicode block (U+2800-U+28FF).</summary> |
| | | <returns>The Braille Patterns Unicode block (U+2800-U+28FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Buginese"> |
| | | <summary>Gets the Buginese Unicode block (U+1A00-U+1A1F).</summary> |
| | | <returns>The Buginese Unicode block (U+1A00-U+1A1F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Buhid"> |
| | | <summary>Gets the Buhid Unicode block (U+1740-U+175F).</summary> |
| | | <returns>The Buhid Unicode block (U+1740-U+175F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cham"> |
| | | <summary>Gets the Cham Unicode block (U+AA00-U+AA5F).</summary> |
| | | <returns>The Cham Unicode block (U+AA00-U+AA5F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cherokee"> |
| | | <summary>Gets the Cherokee Unicode block (U+13A0-U+13FF).</summary> |
| | | <returns>The Cherokee Unicode block (U+13A0-U+13FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CherokeeSupplement"> |
| | | <summary>Gets the Cherokee Supplement Unicode block (U+AB70-U+ABBF).</summary> |
| | | <returns>The Cherokee Supplement Unicode block (U+AB70-U+ABBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibility"> |
| | | <summary>Gets the CJK Compatibility Unicode block (U+3300-U+33FF).</summary> |
| | | <returns>The CJK Compatibility Unicode block (U+3300-U+33FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityForms"> |
| | | <summary>Gets the CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).</summary> |
| | | <returns>The CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityIdeographs"> |
| | | <summary>Gets the CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).</summary> |
| | | <returns>The CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkRadicalsSupplement"> |
| | | <summary>Gets the CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).</summary> |
| | | <returns>The CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkStrokes"> |
| | | <summary>Gets the CJK Strokes Unicode block (U+31C0-U+31EF).</summary> |
| | | <returns>The CJK Strokes Unicode block (U+31C0-U+31EF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkSymbolsandPunctuation"> |
| | | <summary>Gets the CJK Symbols and Punctuation Unicode block (U+3000-U+303F).</summary> |
| | | <returns>The CJK Symbols and Punctuation Unicode block (U+3000-U+303F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographs"> |
| | | <summary>Gets the CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).</summary> |
| | | <returns>The CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographsExtensionA"> |
| | | <summary>Gets the CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).</summary> |
| | | <returns>The CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarks"> |
| | | <summary>Gets the Combining Diacritical Marks Unicode block (U+0300-U+036F).</summary> |
| | | <returns>The Combining Diacritical Marks Unicode block (U+0300-U+036F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksExtended"> |
| | | <summary>Gets the Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).</summary> |
| | | <returns>The Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksforSymbols"> |
| | | <summary>Gets the Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).</summary> |
| | | <returns>The Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksSupplement"> |
| | | <summary>Gets the Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).</summary> |
| | | <returns>The Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningHalfMarks"> |
| | | <summary>Gets the Combining Half Marks Unicode block (U+FE20-U+FE2F).</summary> |
| | | <returns>The Combining Half Marks Unicode block (U+FE20-U+FE2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CommonIndicNumberForms"> |
| | | <summary>Gets the Common Indic Number Forms Unicode block (U+A830-U+A83F).</summary> |
| | | <returns>The Common Indic Number Forms Unicode block (U+A830-U+A83F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ControlPictures"> |
| | | <summary>Gets the Control Pictures Unicode block (U+2400-U+243F).</summary> |
| | | <returns>The Control Pictures Unicode block (U+2400-U+243F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Coptic"> |
| | | <summary>Gets the Coptic Unicode block (U+2C80-U+2CFF).</summary> |
| | | <returns>The Coptic Unicode block (U+2C80-U+2CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CurrencySymbols"> |
| | | <summary>Gets the Currency Symbols Unicode block (U+20A0-U+20CF).</summary> |
| | | <returns>The Currency Symbols Unicode block (U+20A0-U+20CF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cyrillic"> |
| | | <summary>Gets the Cyrillic Unicode block (U+0400-U+04FF).</summary> |
| | | <returns>The Cyrillic Unicode block (U+0400-U+04FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedA"> |
| | | <summary>Gets the Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).</summary> |
| | | <returns>The Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedB"> |
| | | <summary>Gets the Cyrillic Extended-B Unicode block (U+A640-U+A69F).</summary> |
| | | <returns>The Cyrillic Extended-B Unicode block (U+A640-U+A69F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicSupplement"> |
| | | <summary>Gets the Cyrillic Supplement Unicode block (U+0500-U+052F).</summary> |
| | | <returns>The Cyrillic Supplement Unicode block (U+0500-U+052F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Devanagari"> |
| | | <summary>Gets the Devangari Unicode block (U+0900-U+097F).</summary> |
| | | <returns>The Devangari Unicode block (U+0900-U+097F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.DevanagariExtended"> |
| | | <summary>Gets the Devanagari Extended Unicode block (U+A8E0-U+A8FF).</summary> |
| | | <returns>The Devanagari Extended Unicode block (U+A8E0-U+A8FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Dingbats"> |
| | | <summary>Gets the Dingbats Unicode block (U+2700-U+27BF).</summary> |
| | | <returns>The Dingbats Unicode block (U+2700-U+27BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EnclosedAlphanumerics"> |
| | | <summary>Gets the Enclosed Alphanumerics Unicode block (U+2460-U+24FF).</summary> |
| | | <returns>The Enclosed Alphanumerics Unicode block (U+2460-U+24FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EnclosedCjkLettersandMonths"> |
| | | <summary>Gets the Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).</summary> |
| | | <returns>The Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Ethiopic"> |
| | | <summary>Gets the Ethiopic Unicode block (U+1200-U+137C).</summary> |
| | | <returns>The Ethiopic Unicode block (U+1200-U+137C).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtended"> |
| | | <summary>Gets the Ethipic Extended Unicode block (U+2D80-U+2DDF).</summary> |
| | | <returns>The Ethipic Extended Unicode block (U+2D80-U+2DDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtendedA"> |
| | | <summary>Gets the Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).</summary> |
| | | <returns>The Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicSupplement"> |
| | | <summary>Gets the Ethiopic Supplement Unicode block (U+1380-U+1399).</summary> |
| | | <returns>The Ethiopic Supplement Unicode block (U+1380-U+1399).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeneralPunctuation"> |
| | | <summary>Gets the General Punctuation Unicode block (U+2000-U+206F).</summary> |
| | | <returns>The General Punctuation Unicode block (U+2000-U+206F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeometricShapes"> |
| | | <summary>Gets the Geometric Shapes Unicode block (U+25A0-U+25FF).</summary> |
| | | <returns>The Geometric Shapes Unicode block (U+25A0-U+25FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Georgian"> |
| | | <summary>Gets the Georgian Unicode block (U+10A0-U+10FF).</summary> |
| | | <returns>The Georgian Unicode block (U+10A0-U+10FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeorgianSupplement"> |
| | | <summary>Gets the Georgian Supplement Unicode block (U+2D00-U+2D2F).</summary> |
| | | <returns>The Georgian Supplement Unicode block (U+2D00-U+2D2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Glagolitic"> |
| | | <summary>Gets the Glagolitic Unicode block (U+2C00-U+2C5F).</summary> |
| | | <returns>The Glagolitic Unicode block (U+2C00-U+2C5F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GreekandCoptic"> |
| | | <summary>Gets the Greek and Coptic Unicode block (U+0370-U+03FF).</summary> |
| | | <returns>The Greek and Coptic Unicode block (U+0370-U+03FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GreekExtended"> |
| | | <summary>Gets the Greek Extended Unicode block (U+1F00-U+1FFF).</summary> |
| | | <returns>The Greek Extended Unicode block (U+1F00-U+1FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Gujarati"> |
| | | <summary>Gets the Gujarti Unicode block (U+0A81-U+0AFF).</summary> |
| | | <returns>The Gujarti Unicode block (U+0A81-U+0AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Gurmukhi"> |
| | | <summary>Gets the Gurmukhi Unicode block (U+0A01-U+0A7F).</summary> |
| | | <returns>The Gurmukhi Unicode block (U+0A01-U+0A7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HalfwidthandFullwidthForms"> |
| | | <summary>Gets the Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).</summary> |
| | | <returns>The Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulCompatibilityJamo"> |
| | | <summary>Gets the Hangul Compatibility Jamo Unicode block (U+3131-U+318F).</summary> |
| | | <returns>The Hangul Compatibility Jamo Unicode block (U+3131-U+318F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamo"> |
| | | <summary>Gets the Hangul Jamo Unicode block (U+1100-U+11FF).</summary> |
| | | <returns>The Hangul Jamo Unicode block (U+1100-U+11FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedA"> |
| | | <summary>Gets the Hangul Jamo Extended-A Unicode block (U+A960-U+A9F).</summary> |
| | | <returns>The Hangul Jamo Extended-A Unicode block (U+A960-U+A97F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedB"> |
| | | <summary>Gets the Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).</summary> |
| | | <returns>The Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulSyllables"> |
| | | <summary>Gets the Hangul Syllables Unicode block (U+AC00-U+D7AF).</summary> |
| | | <returns>The Hangul Syllables Unicode block (U+AC00-U+D7AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hanunoo"> |
| | | <summary>Gets the Hanunoo Unicode block (U+1720-U+173F).</summary> |
| | | <returns>The Hanunoo Unicode block (U+1720-U+173F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hebrew"> |
| | | <summary>Gets the Hebrew Unicode block (U+0590-U+05FF).</summary> |
| | | <returns>The Hebrew Unicode block (U+0590-U+05FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hiragana"> |
| | | <summary>Gets the Hiragana Unicode block (U+3040-U+309F).</summary> |
| | | <returns>The Hiragana Unicode block (U+3040-U+309F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.IdeographicDescriptionCharacters"> |
| | | <summary>Gets the Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).</summary> |
| | | <returns>The Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.IpaExtensions"> |
| | | <summary>Gets the IPA Extensions Unicode block (U+0250-U+02AF).</summary> |
| | | <returns>The IPA Extensions Unicode block (U+0250-U+02AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Javanese"> |
| | | <summary>Gets the Javanese Unicode block (U+A980-U+A9DF).</summary> |
| | | <returns>The Javanese Unicode block (U+A980-U+A9DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Kanbun"> |
| | | <summary>Gets the Kanbun Unicode block (U+3190-U+319F).</summary> |
| | | <returns>The Kanbun Unicode block (U+3190-U+319F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KangxiRadicals"> |
| | | <summary>Gets the Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).</summary> |
| | | <returns>The Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Kannada"> |
| | | <summary>Gets the Kannada Unicode block (U+0C81-U+0CFF).</summary> |
| | | <returns>The Kannada Unicode block (U+0C81-U+0CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Katakana"> |
| | | <summary>Gets the Katakana Unicode block (U+30A0-U+30FF).</summary> |
| | | <returns>The Katakana Unicode block (U+30A0-U+30FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KatakanaPhoneticExtensions"> |
| | | <summary>Gets the Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).</summary> |
| | | <returns>The Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KayahLi"> |
| | | <summary>Gets the Kayah Li Unicode block (U+A900-U+A92F).</summary> |
| | | <returns>The Kayah Li Unicode block (U+A900-U+A92F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Khmer"> |
| | | <summary>Gets the Khmer Unicode block (U+1780-U+17FF).</summary> |
| | | <returns>The Khmer Unicode block (U+1780-U+17FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KhmerSymbols"> |
| | | <summary>Gets the Khmer Symbols Unicode block (U+19E0-U+19FF).</summary> |
| | | <returns>The Khmer Symbols Unicode block (U+19E0-U+19FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lao"> |
| | | <summary>Gets the Lao Unicode block (U+0E80-U+0EDF).</summary> |
| | | <returns>The Lao Unicode block (U+0E80-U+0EDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Latin1Supplement"> |
| | | <summary>Gets the Latin-1 Supplement Unicode block (U+00A1-U+00FF).</summary> |
| | | <returns>The Latin-1 Supplement Unicode block (U+00A1-U+00FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedA"> |
| | | <summary>Gets the Latin Extended-A Unicode block (U+0100-U+017F).</summary> |
| | | <returns>The Latin Extended-A Unicode block (U+0100-U+017F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedAdditional"> |
| | | <summary>Gets the Latin Extended Additional Unicode block (U+1E00-U+1EFF).</summary> |
| | | <returns>The Latin Extended Additional Unicode block (U+1E00-U+1EFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedB"> |
| | | <summary>Gets the Latin Extended-B Unicode block (U+0180-U+024F).</summary> |
| | | <returns>The Latin Extended-B Unicode block (U+0180-U+024F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedC"> |
| | | <summary>Gets the Latin Extended-C Unicode block (U+2C60-U+2C7F).</summary> |
| | | <returns>The Latin Extended-C Unicode block (U+2C60-U+2C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedD"> |
| | | <summary>Gets the Latin Extended-D Unicode block (U+A720-U+A7FF).</summary> |
| | | <returns>The Latin Extended-D Unicode block (U+A720-U+A7FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedE"> |
| | | <summary>Gets the Latin Extended-E Unicode block (U+AB30-U+AB6F).</summary> |
| | | <returns>The Latin Extended-E Unicode block (U+AB30-U+AB6F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lepcha"> |
| | | <summary>Gets the Lepcha Unicode block (U+1C00-U+1C4F).</summary> |
| | | <returns>The Lepcha Unicode block (U+1C00-U+1C4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LetterlikeSymbols"> |
| | | <summary>Gets the Letterlike Symbols Unicode block (U+2100-U+214F).</summary> |
| | | <returns>The Letterlike Symbols Unicode block (U+2100-U+214F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Limbu"> |
| | | <summary>Gets the Limbu Unicode block (U+1900-U+194F).</summary> |
| | | <returns>The Limbu Unicode block (U+1900-U+194F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lisu"> |
| | | <summary>Gets the Lisu Unicode block (U+A4D0-U+A4FF).</summary> |
| | | <returns>The Lisu Unicode block (U+A4D0-U+A4FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Malayalam"> |
| | | <summary>Gets the Malayalam Unicode block (U+0D00-U+0D7F).</summary> |
| | | <returns>The Malayalam Unicode block (U+0D00-U+0D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Mandaic"> |
| | | <summary>Gets the Mandaic Unicode block (U+0840-U+085F).</summary> |
| | | <returns>The Mandaic Unicode block (U+0840-U+085F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MathematicalOperators"> |
| | | <summary>Gets the Mathematical Operators Unicode block (U+2200-U+22FF).</summary> |
| | | <returns>The Mathematical Operators Unicode block (U+2200-U+22FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayek"> |
| | | <summary>Gets the Meetei Mayek Unicode block (U+ABC0-U+ABFF).</summary> |
| | | <returns>The Meetei Mayek Unicode block (U+ABC0-U+ABFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayekExtensions"> |
| | | <summary>Gets the Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).</summary> |
| | | <returns>The Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsA"> |
| | | <summary>Gets the Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).</summary> |
| | | <returns>The Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsB"> |
| | | <summary>Gets the Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).</summary> |
| | | <returns>The Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbols"> |
| | | <summary>Gets the Miscellaneous Symbols Unicode block (U+2600-U+26FF).</summary> |
| | | <returns>The Miscellaneous Symbols Unicode block (U+2600-U+26FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbolsandArrows"> |
| | | <summary>Gets the Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).</summary> |
| | | <returns>The Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousTechnical"> |
| | | <summary>Gets the Miscellaneous Technical Unicode block (U+2300-U+23FF).</summary> |
| | | <returns>The Miscellaneous Technical Unicode block (U+2300-U+23FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ModifierToneLetters"> |
| | | <summary>Gets the Modifier Tone Letters Unicode block (U+A700-U+A71F).</summary> |
| | | <returns>The Modifier Tone Letters Unicode block (U+A700-U+A71F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Mongolian"> |
| | | <summary>Gets the Mongolian Unicode block (U+1800-U+18AF).</summary> |
| | | <returns>The Mongolian Unicode block (U+1800-U+18AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Myanmar"> |
| | | <summary>Gets the Myanmar Unicode block (U+1000-U+109F).</summary> |
| | | <returns>The Myanmar Unicode block (U+1000-U+109F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedA"> |
| | | <summary>Gets the Myanmar Extended-A Unicode block (U+AA60-U+AA7F).</summary> |
| | | <returns>The Myanmar Extended-A Unicode block (U+AA60-U+AA7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedB"> |
| | | <summary>Gets the Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).</summary> |
| | | <returns>The Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NewTaiLue"> |
| | | <summary>Gets the New Tai Lue Unicode block (U+1980-U+19DF).</summary> |
| | | <returns>The New Tai Lue Unicode block (U+1980-U+19DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NKo"> |
| | | <summary>Gets the NKo Unicode block (U+07C0-U+07FF).</summary> |
| | | <returns>The NKo Unicode block (U+07C0-U+07FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.None"> |
| | | <summary>Gets an empty Unicode range.</summary> |
| | | <returns>A Unicode range with no elements.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NumberForms"> |
| | | <summary>Gets the Number Forms Unicode block (U+2150-U+218F).</summary> |
| | | <returns>The Number Forms Unicode block (U+2150-U+218F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Ogham"> |
| | | <summary>Gets the Ogham Unicode block (U+1680-U+169F).</summary> |
| | | <returns>The Ogham Unicode block (U+1680-U+169F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.OlChiki"> |
| | | <summary>Gets the Ol Chiki Unicode block (U+1C50-U+1C7F).</summary> |
| | | <returns>The Ol Chiki Unicode block (U+1C50-U+1C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.OpticalCharacterRecognition"> |
| | | <summary>Gets the Optical Character Recognition Unicode block (U+2440-U+245F).</summary> |
| | | <returns>The Optical Character Recognition Unicode block (U+2440-U+245F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Oriya"> |
| | | <summary>Gets the Oriya Unicode block (U+0B00-U+0B7F).</summary> |
| | | <returns>The Oriya Unicode block (U+0B00-U+0B7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Phagspa"> |
| | | <summary>Gets the Phags-pa Unicode block (U+A840-U+A87F).</summary> |
| | | <returns>The Phags-pa Unicode block (U+A840-U+A87F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensions"> |
| | | <summary>Gets the Phonetic Extensions Unicode block (U+1D00-U+1D7F).</summary> |
| | | <returns>The Phonetic Extensions Unicode block (U+1D00-U+1D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensionsSupplement"> |
| | | <summary>Gets the Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).</summary> |
| | | <returns>The Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Rejang"> |
| | | <summary>Gets the Rejang Unicode block (U+A930-U+A95F).</summary> |
| | | <returns>The Rejang Unicode block (U+A930-U+A95F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Runic"> |
| | | <summary>Gets the Runic Unicode block (U+16A0-U+16FF).</summary> |
| | | <returns>The Runic Unicode block (U+16A0-U+16FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Samaritan"> |
| | | <summary>Gets the Samaritan Unicode block (U+0800-U+083F).</summary> |
| | | <returns>The Samaritan Unicode block (U+0800-U+083F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Saurashtra"> |
| | | <summary>Gets the Saurashtra Unicode block (U+A880-U+A8DF).</summary> |
| | | <returns>The Saurashtra Unicode block (U+A880-U+A8DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Sinhala"> |
| | | <summary>Gets the Sinhala Unicode block (U+0D80-U+0DFF).</summary> |
| | | <returns>The Sinhala Unicode block (U+0D80-U+0DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SmallFormVariants"> |
| | | <summary>Gets the Small Form Variants Unicode block (U+FE50-U+FE6F).</summary> |
| | | <returns>The Small Form Variants Unicode block (U+FE50-U+FE6F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SpacingModifierLetters"> |
| | | <summary>Gets the Spacing Modifier Letters Unicode block (U+02B0-U+02FF).</summary> |
| | | <returns>The Spacing Modifier Letters Unicode block (U+02B0-U+02FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Specials"> |
| | | <summary>Gets the Specials Unicode block (U+FFF0-U+FFFF).</summary> |
| | | <returns>The Specials Unicode block (U+FFF0-U+FFFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Sundanese"> |
| | | <summary>Gets the Sundanese Unicode block (U+1B80-U+1BBF).</summary> |
| | | <returns>The Sundanese Unicode block (U+1B80-U+1BBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SundaneseSupplement"> |
| | | <summary>Gets the Sundanese Supplement Unicode block (U+1CC0-U+1CCF).</summary> |
| | | <returns>The Sundanese Supplement Unicode block (U+1CC0-U+1CCF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SuperscriptsandSubscripts"> |
| | | <summary>Gets the Superscripts and Subscripts Unicode block (U+2070-U+209F).</summary> |
| | | <returns>The Superscripts and Subscripts Unicode block (U+2070-U+209F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsA"> |
| | | <summary>Gets the Supplemental Arrows-A Unicode block (U+27F0-U+27FF).</summary> |
| | | <returns>The Supplemental Arrows-A Unicode block (U+27F0-U+27FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsB"> |
| | | <summary>Gets the Supplemental Arrows-B Unicode block (U+2900-U+297F).</summary> |
| | | <returns>The Supplemental Arrows-B Unicode block (U+2900-U+297F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalMathematicalOperators"> |
| | | <summary>Gets the Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).</summary> |
| | | <returns>The Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalPunctuation"> |
| | | <summary>Gets the Supplemental Punctuation Unicode block (U+2E00-U+2E7F).</summary> |
| | | <returns>The Supplemental Punctuation Unicode block (U+2E00-U+2E7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SylotiNagri"> |
| | | <summary>Gets the Syloti Nagri Unicode block (U+A800-U+A82F).</summary> |
| | | <returns>The Syloti Nagri Unicode block (U+A800-U+A82F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Syriac"> |
| | | <summary>Gets the Syriac Unicode block (U+0700-U+074F).</summary> |
| | | <returns>The Syriac Unicode block (U+0700-U+074F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tagalog"> |
| | | <summary>Gets the Tagalog Unicode block (U+1700-U+171F).</summary> |
| | | <returns>The Tagalog Unicode block (U+1700-U+171F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tagbanwa"> |
| | | <summary>Gets the Tagbanwa Unicode block (U+1760-U+177F).</summary> |
| | | <returns>The Tagbanwa Unicode block (U+1760-U+177F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiLe"> |
| | | <summary>Gets the Tai Le Unicode block (U+1950-U+197F).</summary> |
| | | <returns>The Tai Le Unicode block (U+1950-U+197F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiTham"> |
| | | <summary>Gets the Tai Tham Unicode block (U+1A20-U+1AAF).</summary> |
| | | <returns>The Tai Tham Unicode block (U+1A20-U+1AAF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiViet"> |
| | | <summary>Gets the Tai Viet Unicode block (U+AA80-U+AADF).</summary> |
| | | <returns>The Tai Viet Unicode block (U+AA80-U+AADF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tamil"> |
| | | <summary>Gets the Tamil Unicode block (U+0B80-U+0BFF).</summary> |
| | | <returns>The Tamil Unicode block (U+0B82-U+0BFA).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Telugu"> |
| | | <summary>Gets the Telugu Unicode block (U+0C00-U+0C7F).</summary> |
| | | <returns>The Telugu Unicode block (U+0C00-U+0C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Thaana"> |
| | | <summary>Gets the Thaana Unicode block (U+0780-U+07BF).</summary> |
| | | <returns>The Thaana Unicode block (U+0780-U+07BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Thai"> |
| | | <summary>Gets the Thai Unicode block (U+0E00-U+0E7F).</summary> |
| | | <returns>The Thai Unicode block (U+0E00-U+0E7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tibetan"> |
| | | <summary>Gets the Tibetan Unicode block (U+0F00-U+0FFF).</summary> |
| | | <returns>The Tibetan Unicode block (U+0F00-U+0FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tifinagh"> |
| | | <summary>Gets the Tifinagh Unicode block (U+2D30-U+2D7F).</summary> |
| | | <returns>The Tifinagh Unicode block (U+2D30-U+2D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabics"> |
| | | <summary>Gets the Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).</summary> |
| | | <returns>The Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabicsExtended"> |
| | | <summary>Gets the Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).</summary> |
| | | <returns>The Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Vai"> |
| | | <summary>Gets the Vai Unicode block (U+A500-U+A63F).</summary> |
| | | <returns>The Vai Unicode block (U+A500-U+A63F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VariationSelectors"> |
| | | <summary>Gets the Variation Selectors Unicode block (U+FE00-U+FE0F).</summary> |
| | | <returns>The Variation Selectors Unicode block (U+FE00-U+FE0F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VedicExtensions"> |
| | | <summary>Gets the Vedic Extensions Unicode block (U+1CD0-U+1CFF).</summary> |
| | | <returns>The Vedic Extensions Unicode block (U+1CD0-U+1CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VerticalForms"> |
| | | <summary>Gets the Vertical Forms Unicode block (U+FE10-U+FE1F).</summary> |
| | | <returns>The Vertical Forms Unicode block (U+FE10-U+FE1F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YijingHexagramSymbols"> |
| | | <summary>Gets the Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).</summary> |
| | | <returns>The Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YiRadicals"> |
| | | <summary>Gets the Yi Radicals Unicode block (U+A490-U+A4CF).</summary> |
| | | <returns>The Yi Radicals Unicode block (U+A490-U+A4CF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YiSyllables"> |
| | | <summary>Gets the Yi Syllables Unicode block (U+A000-U+A48F).</summary> |
| | | <returns>The Yi Syllables Unicode block (U+A000-U+A48F).</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="utf-8"?><doc> |
| | | <assembly> |
| | | <name>System.Text.Encodings.Web</name> |
| | | </assembly> |
| | | <members> |
| | | <member name="T:System.Text.Encodings.Web.HtmlEncoder"> |
| | | <summary>Represents an HTML character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of the HtmlEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.HtmlEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.JavaScriptEncoder"> |
| | | <summary>Represents a JavaScript character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of JavaScriptEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the JavaScriptEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.JavaScriptEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.TextEncoder"> |
| | | <summary>The base class of web encoders.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.TextEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)"> |
| | | <summary>Encodes the supplied string and returns the encoded text as a new string.</summary> |
| | | <param name="value">The string to encode.</param> |
| | | <returns>The encoded string.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)"> |
| | | <summary>Encodes the specified string to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The string to encode.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)"> |
| | | <summary>Encodes characters from an array and writes them to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The array of characters to encode.</param> |
| | | <param name="startIndex">The array index of the first character to encode.</param> |
| | | <param name="characterCount">The number of characters in the array to encode.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)"> |
| | | <summary>Encodes a substring and writes it to a <see cref="T:System.IO.TextWriter"></see> object.</summary> |
| | | <param name="output">The stream to which to write the encoded text.</param> |
| | | <param name="value">The string whose substring is to be encoded.</param> |
| | | <param name="startIndex">The index where the substring starts.</param> |
| | | <param name="characterCount">The number of characters in the substring.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)"> |
| | | <summary>Finds the index of the first character to encode.</summary> |
| | | <param name="text">The text buffer to search.</param> |
| | | <param name="textLength">The number of characters in <paramref name="text">text</paramref>.</param> |
| | | <returns>The index of the first character to encode.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"> |
| | | <summary>Gets the maximum number of characters that this encoder can generate for each input code point.</summary> |
| | | <returns>The maximum number of characters.</returns> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"> |
| | | <summary>Encodes a Unicode scalar value and writes it to a buffer.</summary> |
| | | <param name="unicodeScalar">A Unicode scalar value.</param> |
| | | <param name="buffer">A pointer to the buffer to which to write the encoded text.</param> |
| | | <param name="bufferLength">The length of the destination <paramref name="buffer">buffer</paramref> in characters.</param> |
| | | <param name="numberOfCharactersWritten">When the method returns, indicates the number of characters written to the <paramref name="buffer">buffer</paramref>.</param> |
| | | <returns>false if <paramref name="bufferLength">bufferLength</paramref> is too small to fit the encoded text; otherwise, returns true.</returns> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoder.WillEncode(System.Int32)"> |
| | | <summary>Determines if a given Unicode scalar value will be encoded.</summary> |
| | | <param name="unicodeScalar">A Unicode scalar value.</param> |
| | | <returns>true if the <paramref name="unicodeScalar">unicodeScalar</paramref> value will be encoded by this encoder; otherwise, returns false.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.TextEncoderSettings"> |
| | | <summary>Represents a filter that allows only certain Unicode code points.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor"> |
| | | <summary>Instantiates an empty filter (allows no code points through by default).</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Instantiates a filter by cloning the allowed list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object.</summary> |
| | | <param name="other">The other <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object to be cloned.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Instantiates a filter where only the character ranges specified by <paramref name="allowedRanges">allowedRanges</paramref> are allowed by the filter.</summary> |
| | | <param name="allowedRanges">The allowed character ranges.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacter(System.Char)"> |
| | | <summary>Allows the character specified by <paramref name="character">character</paramref> through the filter.</summary> |
| | | <param name="character">The allowed character.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacters(System.Char[])"> |
| | | <summary>Allows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary> |
| | | <param name="characters">The allowed characters.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCodePoints(System.Collections.Generic.IEnumerable{System.Int32})"> |
| | | <summary>Allows all code points specified by <paramref name="codePoints">codePoints</paramref>.</summary> |
| | | <param name="codePoints">The allowed code points.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="codePoints">codePoints</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRange(System.Text.Unicode.UnicodeRange)"> |
| | | <summary>Allows all characters specified by <paramref name="range">range</paramref> through the filter.</summary> |
| | | <param name="range">The range of characters to be allowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRanges(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Allows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary> |
| | | <param name="ranges">The ranges of characters to be allowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.Clear"> |
| | | <summary>Resets this object by disallowing all characters.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacter(System.Char)"> |
| | | <summary>Disallows the character <paramref name="character">character</paramref> through the filter.</summary> |
| | | <param name="character">The disallowed character.</param> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacters(System.Char[])"> |
| | | <summary>Disallows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary> |
| | | <param name="characters">The disallowed characters.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRange(System.Text.Unicode.UnicodeRange)"> |
| | | <summary>Disallows all characters specified by <paramref name="range">range</paramref> through the filter.</summary> |
| | | <param name="range">The range of characters to be disallowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRanges(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Disallows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary> |
| | | <param name="ranges">The ranges of characters to be disallowed.</param> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePoints"> |
| | | <summary>Gets an enumerator of all allowed code points.</summary> |
| | | <returns>The enumerator of allowed code points.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Encodings.Web.UrlEncoder"> |
| | | <summary>Represents a URL character encoding.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.#ctor"> |
| | | <summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)"> |
| | | <summary>Creates a new instance of UrlEncoder class with the specified settings.</summary> |
| | | <param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> instance encodes, primarily which characters to encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Unicode.UnicodeRange[])"> |
| | | <summary>Creates a new instance of the UrlEncoder class that specifies characters the encoder is allowed to not encode.</summary> |
| | | <param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param> |
| | | <returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | <exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Encodings.Web.UrlEncoder.Default"> |
| | | <summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary> |
| | | <returns>A built-in instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Unicode.UnicodeRange"> |
| | | <summary>Represents a contiguous range of Unicode code points.</summary> |
| | | </member> |
| | | <member name="M:System.Text.Unicode.UnicodeRange.#ctor(System.Int32,System.Int32)"> |
| | | <summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> that includes a specified number of characters starting at a specified Unicode code point.</summary> |
| | | <param name="firstCodePoint">The first code point in the range.</param> |
| | | <param name="length">The number of code points in the range.</param> |
| | | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="firstCodePoint">firstCodePoint</paramref> is less than zero or greater than 0xFFFF. |
| | | -or- |
| | | <paramref name="length">length</paramref> is less than zero. |
| | | -or- |
| | | <paramref name="firstCodePoint">firstCodePoint</paramref> plus <paramref name="length">length</paramref> is greater than 0xFFFF.</exception> |
| | | </member> |
| | | <member name="M:System.Text.Unicode.UnicodeRange.Create(System.Char,System.Char)"> |
| | | <summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance from a span of characters.</summary> |
| | | <param name="firstCharacter">The first character in the range.</param> |
| | | <param name="lastCharacter">The last character in the range.</param> |
| | | <returns>A range that includes all characters between <paramref name="firstCharacter">firstCharacter</paramref> and <paramref name="lastCharacter">lastCharacter</paramref>.</returns> |
| | | <exception cref="System.ArgumentOutOfRangeException"><paramref name="lastCharacter">lastCharacter</paramref> precedes <paramref name="firstCharacter">firstCharacter</paramref>.</exception> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRange.FirstCodePoint"> |
| | | <summary>Gets the first code point in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary> |
| | | <returns>The first code point in the range.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRange.Length"> |
| | | <summary>Gets the number of code points in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary> |
| | | <returns>The number of code points in the range.</returns> |
| | | </member> |
| | | <member name="T:System.Text.Unicode.UnicodeRanges"> |
| | | <summary>Provides static properties that return predefined <see cref="T:System.Text.Unicode.UnicodeRange"></see> instances that correspond to blocks from the Unicode specification.</summary> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.All"> |
| | | <summary>Gets a range that consists of the entire Basic Multilingual Plane (BMP), from U+0000 to U+FFFF).</summary> |
| | | <returns>A range that consists of the entire BMP.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.AlphabeticPresentationForms"> |
| | | <summary>Gets the Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).</summary> |
| | | <returns>The Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Arabic"> |
| | | <summary>Gets the Arabic Unicode block (U+0600-U+06FF).</summary> |
| | | <returns>The Arabic Unicode block (U+0600-U+06FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedA"> |
| | | <summary>Gets the Arabic Extended-A Unicode block (U+08A0-U+08FF).</summary> |
| | | <returns>The Arabic Extended-A Unicode block (U+08A0-U+08FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsA"> |
| | | <summary>Gets the Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</summary> |
| | | <returns>The Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsB"> |
| | | <summary>Gets the Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).</summary> |
| | | <returns>The Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ArabicSupplement"> |
| | | <summary>Gets the Arabic Supplement Unicode block (U+0750-U+077F).</summary> |
| | | <returns>The Arabic Supplement Unicode block (U+0750-U+077F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Armenian"> |
| | | <summary>Gets the Armenian Unicode block (U+0530-U+058F).</summary> |
| | | <returns>The Armenian Unicode block (U+0530-U+058F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Arrows"> |
| | | <summary>Gets the Arrows Unicode block (U+2190-U+21FF).</summary> |
| | | <returns>The Arrows Unicode block (U+2190-U+21FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Balinese"> |
| | | <summary>Gets the Balinese Unicode block (U+1B00-U+1B7F).</summary> |
| | | <returns>The Balinese Unicode block (U+1B00-U+1B7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bamum"> |
| | | <summary>Gets the Bamum Unicode block (U+A6A0-U+A6FF).</summary> |
| | | <returns>The Bamum Unicode block (U+A6A0-U+A6FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BasicLatin"> |
| | | <summary>Gets the Basic Latin Unicode block (U+0021-U+007F).</summary> |
| | | <returns>The Basic Latin Unicode block (U+0021-U+007F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Batak"> |
| | | <summary>Gets the Batak Unicode block (U+1BC0-U+1BFF).</summary> |
| | | <returns>The Batak Unicode block (U+1BC0-U+1BFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bengali"> |
| | | <summary>Gets the Bengali Unicode block (U+0980-U+09FF).</summary> |
| | | <returns>The Bengali Unicode block (U+0980-U+09FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BlockElements"> |
| | | <summary>Gets the Block Elements Unicode block (U+2580-U+259F).</summary> |
| | | <returns>The Block Elements Unicode block (U+2580-U+259F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Bopomofo"> |
| | | <summary>Gets the Bopomofo Unicode block (U+3100-U+312F).</summary> |
| | | <returns>The Bopomofo Unicode block (U+3105-U+312F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BopomofoExtended"> |
| | | <summary>Gets the Bopomofo Extended Unicode block (U+31A0-U+31BF).</summary> |
| | | <returns>The Bopomofo Extended Unicode block (U+31A0-U+31BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BoxDrawing"> |
| | | <summary>Gets the Box Drawing Unicode block (U+2500-U+257F).</summary> |
| | | <returns>The Box Drawing Unicode block (U+2500-U+257F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.BraillePatterns"> |
| | | <summary>Gets the Braille Patterns Unicode block (U+2800-U+28FF).</summary> |
| | | <returns>The Braille Patterns Unicode block (U+2800-U+28FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Buginese"> |
| | | <summary>Gets the Buginese Unicode block (U+1A00-U+1A1F).</summary> |
| | | <returns>The Buginese Unicode block (U+1A00-U+1A1F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Buhid"> |
| | | <summary>Gets the Buhid Unicode block (U+1740-U+175F).</summary> |
| | | <returns>The Buhid Unicode block (U+1740-U+175F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cham"> |
| | | <summary>Gets the Cham Unicode block (U+AA00-U+AA5F).</summary> |
| | | <returns>The Cham Unicode block (U+AA00-U+AA5F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cherokee"> |
| | | <summary>Gets the Cherokee Unicode block (U+13A0-U+13FF).</summary> |
| | | <returns>The Cherokee Unicode block (U+13A0-U+13FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CherokeeSupplement"> |
| | | <summary>Gets the Cherokee Supplement Unicode block (U+AB70-U+ABBF).</summary> |
| | | <returns>The Cherokee Supplement Unicode block (U+AB70-U+ABBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibility"> |
| | | <summary>Gets the CJK Compatibility Unicode block (U+3300-U+33FF).</summary> |
| | | <returns>The CJK Compatibility Unicode block (U+3300-U+33FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityForms"> |
| | | <summary>Gets the CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).</summary> |
| | | <returns>The CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkCompatibilityIdeographs"> |
| | | <summary>Gets the CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).</summary> |
| | | <returns>The CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkRadicalsSupplement"> |
| | | <summary>Gets the CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).</summary> |
| | | <returns>The CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkStrokes"> |
| | | <summary>Gets the CJK Strokes Unicode block (U+31C0-U+31EF).</summary> |
| | | <returns>The CJK Strokes Unicode block (U+31C0-U+31EF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkSymbolsandPunctuation"> |
| | | <summary>Gets the CJK Symbols and Punctuation Unicode block (U+3000-U+303F).</summary> |
| | | <returns>The CJK Symbols and Punctuation Unicode block (U+3000-U+303F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographs"> |
| | | <summary>Gets the CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).</summary> |
| | | <returns>The CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CjkUnifiedIdeographsExtensionA"> |
| | | <summary>Gets the CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).</summary> |
| | | <returns>The CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarks"> |
| | | <summary>Gets the Combining Diacritical Marks Unicode block (U+0300-U+036F).</summary> |
| | | <returns>The Combining Diacritical Marks Unicode block (U+0300-U+036F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksExtended"> |
| | | <summary>Gets the Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).</summary> |
| | | <returns>The Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksforSymbols"> |
| | | <summary>Gets the Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).</summary> |
| | | <returns>The Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningDiacriticalMarksSupplement"> |
| | | <summary>Gets the Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).</summary> |
| | | <returns>The Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CombiningHalfMarks"> |
| | | <summary>Gets the Combining Half Marks Unicode block (U+FE20-U+FE2F).</summary> |
| | | <returns>The Combining Half Marks Unicode block (U+FE20-U+FE2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CommonIndicNumberForms"> |
| | | <summary>Gets the Common Indic Number Forms Unicode block (U+A830-U+A83F).</summary> |
| | | <returns>The Common Indic Number Forms Unicode block (U+A830-U+A83F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ControlPictures"> |
| | | <summary>Gets the Control Pictures Unicode block (U+2400-U+243F).</summary> |
| | | <returns>The Control Pictures Unicode block (U+2400-U+243F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Coptic"> |
| | | <summary>Gets the Coptic Unicode block (U+2C80-U+2CFF).</summary> |
| | | <returns>The Coptic Unicode block (U+2C80-U+2CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CurrencySymbols"> |
| | | <summary>Gets the Currency Symbols Unicode block (U+20A0-U+20CF).</summary> |
| | | <returns>The Currency Symbols Unicode block (U+20A0-U+20CF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Cyrillic"> |
| | | <summary>Gets the Cyrillic Unicode block (U+0400-U+04FF).</summary> |
| | | <returns>The Cyrillic Unicode block (U+0400-U+04FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedA"> |
| | | <summary>Gets the Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).</summary> |
| | | <returns>The Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedB"> |
| | | <summary>Gets the Cyrillic Extended-B Unicode block (U+A640-U+A69F).</summary> |
| | | <returns>The Cyrillic Extended-B Unicode block (U+A640-U+A69F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.CyrillicSupplement"> |
| | | <summary>Gets the Cyrillic Supplement Unicode block (U+0500-U+052F).</summary> |
| | | <returns>The Cyrillic Supplement Unicode block (U+0500-U+052F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Devanagari"> |
| | | <summary>Gets the Devangari Unicode block (U+0900-U+097F).</summary> |
| | | <returns>The Devangari Unicode block (U+0900-U+097F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.DevanagariExtended"> |
| | | <summary>Gets the Devanagari Extended Unicode block (U+A8E0-U+A8FF).</summary> |
| | | <returns>The Devanagari Extended Unicode block (U+A8E0-U+A8FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Dingbats"> |
| | | <summary>Gets the Dingbats Unicode block (U+2700-U+27BF).</summary> |
| | | <returns>The Dingbats Unicode block (U+2700-U+27BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EnclosedAlphanumerics"> |
| | | <summary>Gets the Enclosed Alphanumerics Unicode block (U+2460-U+24FF).</summary> |
| | | <returns>The Enclosed Alphanumerics Unicode block (U+2460-U+24FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EnclosedCjkLettersandMonths"> |
| | | <summary>Gets the Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).</summary> |
| | | <returns>The Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Ethiopic"> |
| | | <summary>Gets the Ethiopic Unicode block (U+1200-U+137C).</summary> |
| | | <returns>The Ethiopic Unicode block (U+1200-U+137C).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtended"> |
| | | <summary>Gets the Ethipic Extended Unicode block (U+2D80-U+2DDF).</summary> |
| | | <returns>The Ethipic Extended Unicode block (U+2D80-U+2DDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicExtendedA"> |
| | | <summary>Gets the Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).</summary> |
| | | <returns>The Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.EthiopicSupplement"> |
| | | <summary>Gets the Ethiopic Supplement Unicode block (U+1380-U+1399).</summary> |
| | | <returns>The Ethiopic Supplement Unicode block (U+1380-U+1399).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeneralPunctuation"> |
| | | <summary>Gets the General Punctuation Unicode block (U+2000-U+206F).</summary> |
| | | <returns>The General Punctuation Unicode block (U+2000-U+206F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeometricShapes"> |
| | | <summary>Gets the Geometric Shapes Unicode block (U+25A0-U+25FF).</summary> |
| | | <returns>The Geometric Shapes Unicode block (U+25A0-U+25FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Georgian"> |
| | | <summary>Gets the Georgian Unicode block (U+10A0-U+10FF).</summary> |
| | | <returns>The Georgian Unicode block (U+10A0-U+10FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GeorgianSupplement"> |
| | | <summary>Gets the Georgian Supplement Unicode block (U+2D00-U+2D2F).</summary> |
| | | <returns>The Georgian Supplement Unicode block (U+2D00-U+2D2F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Glagolitic"> |
| | | <summary>Gets the Glagolitic Unicode block (U+2C00-U+2C5F).</summary> |
| | | <returns>The Glagolitic Unicode block (U+2C00-U+2C5F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GreekandCoptic"> |
| | | <summary>Gets the Greek and Coptic Unicode block (U+0370-U+03FF).</summary> |
| | | <returns>The Greek and Coptic Unicode block (U+0370-U+03FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.GreekExtended"> |
| | | <summary>Gets the Greek Extended Unicode block (U+1F00-U+1FFF).</summary> |
| | | <returns>The Greek Extended Unicode block (U+1F00-U+1FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Gujarati"> |
| | | <summary>Gets the Gujarti Unicode block (U+0A81-U+0AFF).</summary> |
| | | <returns>The Gujarti Unicode block (U+0A81-U+0AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Gurmukhi"> |
| | | <summary>Gets the Gurmukhi Unicode block (U+0A01-U+0A7F).</summary> |
| | | <returns>The Gurmukhi Unicode block (U+0A01-U+0A7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HalfwidthandFullwidthForms"> |
| | | <summary>Gets the Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).</summary> |
| | | <returns>The Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulCompatibilityJamo"> |
| | | <summary>Gets the Hangul Compatibility Jamo Unicode block (U+3131-U+318F).</summary> |
| | | <returns>The Hangul Compatibility Jamo Unicode block (U+3131-U+318F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamo"> |
| | | <summary>Gets the Hangul Jamo Unicode block (U+1100-U+11FF).</summary> |
| | | <returns>The Hangul Jamo Unicode block (U+1100-U+11FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedA"> |
| | | <summary>Gets the Hangul Jamo Extended-A Unicode block (U+A960-U+A9F).</summary> |
| | | <returns>The Hangul Jamo Extended-A Unicode block (U+A960-U+A97F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulJamoExtendedB"> |
| | | <summary>Gets the Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).</summary> |
| | | <returns>The Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.HangulSyllables"> |
| | | <summary>Gets the Hangul Syllables Unicode block (U+AC00-U+D7AF).</summary> |
| | | <returns>The Hangul Syllables Unicode block (U+AC00-U+D7AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hanunoo"> |
| | | <summary>Gets the Hanunoo Unicode block (U+1720-U+173F).</summary> |
| | | <returns>The Hanunoo Unicode block (U+1720-U+173F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hebrew"> |
| | | <summary>Gets the Hebrew Unicode block (U+0590-U+05FF).</summary> |
| | | <returns>The Hebrew Unicode block (U+0590-U+05FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Hiragana"> |
| | | <summary>Gets the Hiragana Unicode block (U+3040-U+309F).</summary> |
| | | <returns>The Hiragana Unicode block (U+3040-U+309F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.IdeographicDescriptionCharacters"> |
| | | <summary>Gets the Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).</summary> |
| | | <returns>The Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.IpaExtensions"> |
| | | <summary>Gets the IPA Extensions Unicode block (U+0250-U+02AF).</summary> |
| | | <returns>The IPA Extensions Unicode block (U+0250-U+02AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Javanese"> |
| | | <summary>Gets the Javanese Unicode block (U+A980-U+A9DF).</summary> |
| | | <returns>The Javanese Unicode block (U+A980-U+A9DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Kanbun"> |
| | | <summary>Gets the Kanbun Unicode block (U+3190-U+319F).</summary> |
| | | <returns>The Kanbun Unicode block (U+3190-U+319F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KangxiRadicals"> |
| | | <summary>Gets the Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).</summary> |
| | | <returns>The Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Kannada"> |
| | | <summary>Gets the Kannada Unicode block (U+0C81-U+0CFF).</summary> |
| | | <returns>The Kannada Unicode block (U+0C81-U+0CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Katakana"> |
| | | <summary>Gets the Katakana Unicode block (U+30A0-U+30FF).</summary> |
| | | <returns>The Katakana Unicode block (U+30A0-U+30FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KatakanaPhoneticExtensions"> |
| | | <summary>Gets the Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).</summary> |
| | | <returns>The Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KayahLi"> |
| | | <summary>Gets the Kayah Li Unicode block (U+A900-U+A92F).</summary> |
| | | <returns>The Kayah Li Unicode block (U+A900-U+A92F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Khmer"> |
| | | <summary>Gets the Khmer Unicode block (U+1780-U+17FF).</summary> |
| | | <returns>The Khmer Unicode block (U+1780-U+17FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.KhmerSymbols"> |
| | | <summary>Gets the Khmer Symbols Unicode block (U+19E0-U+19FF).</summary> |
| | | <returns>The Khmer Symbols Unicode block (U+19E0-U+19FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lao"> |
| | | <summary>Gets the Lao Unicode block (U+0E80-U+0EDF).</summary> |
| | | <returns>The Lao Unicode block (U+0E80-U+0EDF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Latin1Supplement"> |
| | | <summary>Gets the Latin-1 Supplement Unicode block (U+00A1-U+00FF).</summary> |
| | | <returns>The Latin-1 Supplement Unicode block (U+00A1-U+00FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedA"> |
| | | <summary>Gets the Latin Extended-A Unicode block (U+0100-U+017F).</summary> |
| | | <returns>The Latin Extended-A Unicode block (U+0100-U+017F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedAdditional"> |
| | | <summary>Gets the Latin Extended Additional Unicode block (U+1E00-U+1EFF).</summary> |
| | | <returns>The Latin Extended Additional Unicode block (U+1E00-U+1EFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedB"> |
| | | <summary>Gets the Latin Extended-B Unicode block (U+0180-U+024F).</summary> |
| | | <returns>The Latin Extended-B Unicode block (U+0180-U+024F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedC"> |
| | | <summary>Gets the Latin Extended-C Unicode block (U+2C60-U+2C7F).</summary> |
| | | <returns>The Latin Extended-C Unicode block (U+2C60-U+2C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedD"> |
| | | <summary>Gets the Latin Extended-D Unicode block (U+A720-U+A7FF).</summary> |
| | | <returns>The Latin Extended-D Unicode block (U+A720-U+A7FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LatinExtendedE"> |
| | | <summary>Gets the Latin Extended-E Unicode block (U+AB30-U+AB6F).</summary> |
| | | <returns>The Latin Extended-E Unicode block (U+AB30-U+AB6F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lepcha"> |
| | | <summary>Gets the Lepcha Unicode block (U+1C00-U+1C4F).</summary> |
| | | <returns>The Lepcha Unicode block (U+1C00-U+1C4F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.LetterlikeSymbols"> |
| | | <summary>Gets the Letterlike Symbols Unicode block (U+2100-U+214F).</summary> |
| | | <returns>The Letterlike Symbols Unicode block (U+2100-U+214F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Limbu"> |
| | | <summary>Gets the Limbu Unicode block (U+1900-U+194F).</summary> |
| | | <returns>The Limbu Unicode block (U+1900-U+194F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Lisu"> |
| | | <summary>Gets the Lisu Unicode block (U+A4D0-U+A4FF).</summary> |
| | | <returns>The Lisu Unicode block (U+A4D0-U+A4FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Malayalam"> |
| | | <summary>Gets the Malayalam Unicode block (U+0D00-U+0D7F).</summary> |
| | | <returns>The Malayalam Unicode block (U+0D00-U+0D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Mandaic"> |
| | | <summary>Gets the Mandaic Unicode block (U+0840-U+085F).</summary> |
| | | <returns>The Mandaic Unicode block (U+0840-U+085F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MathematicalOperators"> |
| | | <summary>Gets the Mathematical Operators Unicode block (U+2200-U+22FF).</summary> |
| | | <returns>The Mathematical Operators Unicode block (U+2200-U+22FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayek"> |
| | | <summary>Gets the Meetei Mayek Unicode block (U+ABC0-U+ABFF).</summary> |
| | | <returns>The Meetei Mayek Unicode block (U+ABC0-U+ABFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MeeteiMayekExtensions"> |
| | | <summary>Gets the Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).</summary> |
| | | <returns>The Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsA"> |
| | | <summary>Gets the Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).</summary> |
| | | <returns>The Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousMathematicalSymbolsB"> |
| | | <summary>Gets the Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).</summary> |
| | | <returns>The Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbols"> |
| | | <summary>Gets the Miscellaneous Symbols Unicode block (U+2600-U+26FF).</summary> |
| | | <returns>The Miscellaneous Symbols Unicode block (U+2600-U+26FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousSymbolsandArrows"> |
| | | <summary>Gets the Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).</summary> |
| | | <returns>The Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MiscellaneousTechnical"> |
| | | <summary>Gets the Miscellaneous Technical Unicode block (U+2300-U+23FF).</summary> |
| | | <returns>The Miscellaneous Technical Unicode block (U+2300-U+23FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.ModifierToneLetters"> |
| | | <summary>Gets the Modifier Tone Letters Unicode block (U+A700-U+A71F).</summary> |
| | | <returns>The Modifier Tone Letters Unicode block (U+A700-U+A71F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Mongolian"> |
| | | <summary>Gets the Mongolian Unicode block (U+1800-U+18AF).</summary> |
| | | <returns>The Mongolian Unicode block (U+1800-U+18AF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Myanmar"> |
| | | <summary>Gets the Myanmar Unicode block (U+1000-U+109F).</summary> |
| | | <returns>The Myanmar Unicode block (U+1000-U+109F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedA"> |
| | | <summary>Gets the Myanmar Extended-A Unicode block (U+AA60-U+AA7F).</summary> |
| | | <returns>The Myanmar Extended-A Unicode block (U+AA60-U+AA7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.MyanmarExtendedB"> |
| | | <summary>Gets the Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).</summary> |
| | | <returns>The Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NewTaiLue"> |
| | | <summary>Gets the New Tai Lue Unicode block (U+1980-U+19DF).</summary> |
| | | <returns>The New Tai Lue Unicode block (U+1980-U+19DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NKo"> |
| | | <summary>Gets the NKo Unicode block (U+07C0-U+07FF).</summary> |
| | | <returns>The NKo Unicode block (U+07C0-U+07FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.None"> |
| | | <summary>Gets an empty Unicode range.</summary> |
| | | <returns>A Unicode range with no elements.</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.NumberForms"> |
| | | <summary>Gets the Number Forms Unicode block (U+2150-U+218F).</summary> |
| | | <returns>The Number Forms Unicode block (U+2150-U+218F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Ogham"> |
| | | <summary>Gets the Ogham Unicode block (U+1680-U+169F).</summary> |
| | | <returns>The Ogham Unicode block (U+1680-U+169F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.OlChiki"> |
| | | <summary>Gets the Ol Chiki Unicode block (U+1C50-U+1C7F).</summary> |
| | | <returns>The Ol Chiki Unicode block (U+1C50-U+1C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.OpticalCharacterRecognition"> |
| | | <summary>Gets the Optical Character Recognition Unicode block (U+2440-U+245F).</summary> |
| | | <returns>The Optical Character Recognition Unicode block (U+2440-U+245F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Oriya"> |
| | | <summary>Gets the Oriya Unicode block (U+0B00-U+0B7F).</summary> |
| | | <returns>The Oriya Unicode block (U+0B00-U+0B7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Phagspa"> |
| | | <summary>Gets the Phags-pa Unicode block (U+A840-U+A87F).</summary> |
| | | <returns>The Phags-pa Unicode block (U+A840-U+A87F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensions"> |
| | | <summary>Gets the Phonetic Extensions Unicode block (U+1D00-U+1D7F).</summary> |
| | | <returns>The Phonetic Extensions Unicode block (U+1D00-U+1D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.PhoneticExtensionsSupplement"> |
| | | <summary>Gets the Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).</summary> |
| | | <returns>The Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Rejang"> |
| | | <summary>Gets the Rejang Unicode block (U+A930-U+A95F).</summary> |
| | | <returns>The Rejang Unicode block (U+A930-U+A95F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Runic"> |
| | | <summary>Gets the Runic Unicode block (U+16A0-U+16FF).</summary> |
| | | <returns>The Runic Unicode block (U+16A0-U+16FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Samaritan"> |
| | | <summary>Gets the Samaritan Unicode block (U+0800-U+083F).</summary> |
| | | <returns>The Samaritan Unicode block (U+0800-U+083F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Saurashtra"> |
| | | <summary>Gets the Saurashtra Unicode block (U+A880-U+A8DF).</summary> |
| | | <returns>The Saurashtra Unicode block (U+A880-U+A8DF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Sinhala"> |
| | | <summary>Gets the Sinhala Unicode block (U+0D80-U+0DFF).</summary> |
| | | <returns>The Sinhala Unicode block (U+0D80-U+0DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SmallFormVariants"> |
| | | <summary>Gets the Small Form Variants Unicode block (U+FE50-U+FE6F).</summary> |
| | | <returns>The Small Form Variants Unicode block (U+FE50-U+FE6F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SpacingModifierLetters"> |
| | | <summary>Gets the Spacing Modifier Letters Unicode block (U+02B0-U+02FF).</summary> |
| | | <returns>The Spacing Modifier Letters Unicode block (U+02B0-U+02FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Specials"> |
| | | <summary>Gets the Specials Unicode block (U+FFF0-U+FFFF).</summary> |
| | | <returns>The Specials Unicode block (U+FFF0-U+FFFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Sundanese"> |
| | | <summary>Gets the Sundanese Unicode block (U+1B80-U+1BBF).</summary> |
| | | <returns>The Sundanese Unicode block (U+1B80-U+1BBF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SundaneseSupplement"> |
| | | <summary>Gets the Sundanese Supplement Unicode block (U+1CC0-U+1CCF).</summary> |
| | | <returns>The Sundanese Supplement Unicode block (U+1CC0-U+1CCF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SuperscriptsandSubscripts"> |
| | | <summary>Gets the Superscripts and Subscripts Unicode block (U+2070-U+209F).</summary> |
| | | <returns>The Superscripts and Subscripts Unicode block (U+2070-U+209F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsA"> |
| | | <summary>Gets the Supplemental Arrows-A Unicode block (U+27F0-U+27FF).</summary> |
| | | <returns>The Supplemental Arrows-A Unicode block (U+27F0-U+27FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalArrowsB"> |
| | | <summary>Gets the Supplemental Arrows-B Unicode block (U+2900-U+297F).</summary> |
| | | <returns>The Supplemental Arrows-B Unicode block (U+2900-U+297F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalMathematicalOperators"> |
| | | <summary>Gets the Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).</summary> |
| | | <returns>The Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SupplementalPunctuation"> |
| | | <summary>Gets the Supplemental Punctuation Unicode block (U+2E00-U+2E7F).</summary> |
| | | <returns>The Supplemental Punctuation Unicode block (U+2E00-U+2E7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.SylotiNagri"> |
| | | <summary>Gets the Syloti Nagri Unicode block (U+A800-U+A82F).</summary> |
| | | <returns>The Syloti Nagri Unicode block (U+A800-U+A82F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Syriac"> |
| | | <summary>Gets the Syriac Unicode block (U+0700-U+074F).</summary> |
| | | <returns>The Syriac Unicode block (U+0700-U+074F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tagalog"> |
| | | <summary>Gets the Tagalog Unicode block (U+1700-U+171F).</summary> |
| | | <returns>The Tagalog Unicode block (U+1700-U+171F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tagbanwa"> |
| | | <summary>Gets the Tagbanwa Unicode block (U+1760-U+177F).</summary> |
| | | <returns>The Tagbanwa Unicode block (U+1760-U+177F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiLe"> |
| | | <summary>Gets the Tai Le Unicode block (U+1950-U+197F).</summary> |
| | | <returns>The Tai Le Unicode block (U+1950-U+197F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiTham"> |
| | | <summary>Gets the Tai Tham Unicode block (U+1A20-U+1AAF).</summary> |
| | | <returns>The Tai Tham Unicode block (U+1A20-U+1AAF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.TaiViet"> |
| | | <summary>Gets the Tai Viet Unicode block (U+AA80-U+AADF).</summary> |
| | | <returns>The Tai Viet Unicode block (U+AA80-U+AADF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tamil"> |
| | | <summary>Gets the Tamil Unicode block (U+0B80-U+0BFF).</summary> |
| | | <returns>The Tamil Unicode block (U+0B82-U+0BFA).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Telugu"> |
| | | <summary>Gets the Telugu Unicode block (U+0C00-U+0C7F).</summary> |
| | | <returns>The Telugu Unicode block (U+0C00-U+0C7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Thaana"> |
| | | <summary>Gets the Thaana Unicode block (U+0780-U+07BF).</summary> |
| | | <returns>The Thaana Unicode block (U+0780-U+07BF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Thai"> |
| | | <summary>Gets the Thai Unicode block (U+0E00-U+0E7F).</summary> |
| | | <returns>The Thai Unicode block (U+0E00-U+0E7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tibetan"> |
| | | <summary>Gets the Tibetan Unicode block (U+0F00-U+0FFF).</summary> |
| | | <returns>The Tibetan Unicode block (U+0F00-U+0FFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Tifinagh"> |
| | | <summary>Gets the Tifinagh Unicode block (U+2D30-U+2D7F).</summary> |
| | | <returns>The Tifinagh Unicode block (U+2D30-U+2D7F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabics"> |
| | | <summary>Gets the Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).</summary> |
| | | <returns>The Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.UnifiedCanadianAboriginalSyllabicsExtended"> |
| | | <summary>Gets the Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).</summary> |
| | | <returns>The Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.Vai"> |
| | | <summary>Gets the Vai Unicode block (U+A500-U+A63F).</summary> |
| | | <returns>The Vai Unicode block (U+A500-U+A63F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VariationSelectors"> |
| | | <summary>Gets the Variation Selectors Unicode block (U+FE00-U+FE0F).</summary> |
| | | <returns>The Variation Selectors Unicode block (U+FE00-U+FE0F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VedicExtensions"> |
| | | <summary>Gets the Vedic Extensions Unicode block (U+1CD0-U+1CFF).</summary> |
| | | <returns>The Vedic Extensions Unicode block (U+1CD0-U+1CFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.VerticalForms"> |
| | | <summary>Gets the Vertical Forms Unicode block (U+FE10-U+FE1F).</summary> |
| | | <returns>The Vertical Forms Unicode block (U+FE10-U+FE1F).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YijingHexagramSymbols"> |
| | | <summary>Gets the Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).</summary> |
| | | <returns>The Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YiRadicals"> |
| | | <summary>Gets the Yi Radicals Unicode block (U+A490-U+A4CF).</summary> |
| | | <returns>The Yi Radicals Unicode block (U+A490-U+A4CF).</returns> |
| | | </member> |
| | | <member name="P:System.Text.Unicode.UnicodeRanges.YiSyllables"> |
| | | <summary>Gets the Yi Syllables Unicode block (U+A000-U+A48F).</summary> |
| | | <returns>The Yi Syllables Unicode block (U+A000-U+A48F).</returns> |
| | | </member> |
| | | </members> |
| | | </doc> |
| packages/System.Text.Encodings.Web.4.5.0/useSharedDesignerContext.txt
packages/System.Text.Encodings.Web.4.5.0/version.txt |