diff --git a/API_NetFramework/API_NetFramework.csproj b/API_NetFramework/API_NetFramework.csproj index 71081920..44b243bd 100644 --- a/API_NetFramework/API_NetFramework.csproj +++ b/API_NetFramework/API_NetFramework.csproj @@ -11,8 +11,8 @@ {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} Library Properties - EDOKAAPI_NetFramework - EDOKAAPI_NetFramework + OnDocAPI_NetFramework + OnDoc_NetFramework v4.8.1 false true @@ -51,6 +51,9 @@ ..\packages\Newtonsoft.Json.Bson.1.0.2\lib\net45\Newtonsoft.Json.Bson.dll + + ..\packages\Owin.1.0\lib\net40\Owin.dll + ..\packages\Swashbuckle.Core.5.6.0\lib\net40\Swashbuckle.Core.dll @@ -73,9 +76,13 @@ ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll + ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll + + ..\packages\Microsoft.AspNet.Cors.5.0.0\lib\net45\System.Web.Cors.dll + @@ -172,9 +179,10 @@ + - + @@ -182,6 +190,7 @@ Global.asax + diff --git a/API_NetFramework/API_NetFramework.vsdoc b/API_NetFramework/API_NetFramework.vsdoc new file mode 100644 index 00000000..a84f8cf0 --- /dev/null +++ b/API_NetFramework/API_NetFramework.vsdoc @@ -0,0 +1,101 @@ + + + + default + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VSdocman]]> + + + + + + + + + + + + + + + + + + + + + + + + normal + yes + API_NetFramework Reference + api_netframework_reference + vsdocman_escaped_]_]_> + + + + placeholder + no + + da8de385de454790a4d662a82d107fe5 + + + + + + +]]> + + + + + + + + + + \ No newline at end of file diff --git a/API_NetFramework/AuthorizeAttribute.cs b/API_NetFramework/AuthorizeAttribute.cs new file mode 100644 index 00000000..34bd30b2 --- /dev/null +++ b/API_NetFramework/AuthorizeAttribute.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; + +namespace webApiTokenAuthentication +{ + public class AuthorizeAttribute : System.Web.Http.AuthorizeAttribute + { + protected override void HandleUnauthorizedRequest(System.Web.Http.Controllers.HttpActionContext actionContext) + { + if (!HttpContext.Current.User.Identity.IsAuthenticated) + { + base.HandleUnauthorizedRequest(actionContext); + } + else + { + actionContext.Response = new System.Net.Http.HttpResponseMessage(System.Net.HttpStatusCode.Forbidden); + } + } + } +} \ No newline at end of file diff --git a/API_NetFramework/Controllers/AntwortAdressController.cs b/API_NetFramework/Controllers/AntwortAdressController.cs index 07720872..49f82921 100644 --- a/API_NetFramework/Controllers/AntwortAdressController.cs +++ b/API_NetFramework/Controllers/AntwortAdressController.cs @@ -1,4 +1,5 @@ -using DOCGEN; +using Database; +using DOCGEN; using Model; using System; using System.Collections.Generic; @@ -9,25 +10,40 @@ using System.Net.Http; using System.Runtime.Serialization.Formatters; using System.Web.Http; -namespace EDOKAAPI_NetFramework.Controllers +namespace API_NetFramework.Controllers { public class AntwortAdresseController : ApiController { string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString; + /// + /// GetGetAll liefert alle GAS-Adressen + /// + /// Optional. The default value is "JSON".Optionaler Parameter: "XML" + /// + /// [HttpGet] [Route("API/Antwortadresse/GetAll")] + public IHttpActionResult GetGetAll(string OutFormat = "JSON") { Database.DB db = new Database.DB(connectionstring); - string SQL = "Select * from Antwortadresse order by bezeichnung"; + string SQL = "Select * from Antwortadresse order by bezeichnung"; if (OutFormat == "JSON") { SQL = SQL + " for json path"; } - if (OutFormat=="XML") { SQL = SQL + " for xml path"; } + if (OutFormat == "XML") { SQL = SQL + " for xml path"; } db.Get_Tabledata(SQL, false, true); return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); } [HttpGet] - [Route("API/Antwortadresse/GetByID")] + [Route("API/Antwortadresse/GetByID")] + /// + /// GetByID liefert die GAS-Adresse mit der gewünschten ID + /// + /// ID der GAS-Adresse + /// Optional. The default value is "JSON".Optionaler Parameter: "XML" + /// + /// + public IHttpActionResult GetByID(string ID,string OutFormat = "JSON") { Database.DB db = new Database.DB(connectionstring); @@ -38,12 +54,22 @@ namespace EDOKAAPI_NetFramework.Controllers if (db.dsdaten.Tables[0].Rows.Count == 0) { return Ok(); } else { return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); }; } + /// + /// GetAllMitarbeiterByTGNummer liefert die persönlichen Adressen eines Mitarbeiters + /// + /// Required. + /// Optional. The default value is "JSON".Optionalier Parameter: "XML" + /// + /// [HttpGet] [Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer")] + public IHttpActionResult GetAllMitarbeiterByTGNummer(string tgnummer, string OutFormat = "JSON") { + + Database.DB db = new Database.DB(connectionstring); - string SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and tgnummer='"+tgnummer+"' order by bezeichnung "; + string SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and tgnummer='" + tgnummer + "' order by bezeichnung "; if (OutFormat == "JSON") { SQL = SQL + " for json path"; } if (OutFormat == "XML") { SQL = SQL + " for xml path"; } db.Get_Tabledata(SQL, false, true); @@ -51,6 +77,14 @@ namespace EDOKAAPI_NetFramework.Controllers } [HttpGet] [Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")] + /// + /// GetAllMitarbeiterByMitarbeiternr liefert die persönlichen Adressen eines Mitarbeiters + /// + /// Required. + /// Optional. The default value is "JSON".Optionalier Parameter: "XML" + /// + /// + public IHttpActionResult GetAllMitarbeiterByMitarbeiterNr(string Mitarbeiternr, string OutFormat = "JSON") { Database.DB db = new Database.DB(connectionstring); @@ -61,18 +95,48 @@ namespace EDOKAAPI_NetFramework.Controllers if (db.dsdaten.Tables[0].Rows.Count == 0) {return Ok();} else {return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString());}; } + [HttpGet] [Route("API/API/AntwortAdresse/GetMitarbeiterByID")] + /// + /// GetMitarbeiterByID liefert eine Mitarbeiter-Adrsse mit der ID + /// + /// Required. + /// Optional. The default value is "JSON".Optionalier Parameter: "XML" + /// + /// + public IHttpActionResult GetMitarbeiterByID(string ID, string OutFormat = "JSON") { Database.DB db = new Database.DB(connectionstring); - string SQL = "Select * from AntwortAdresse_Mitarbeiter where id="+ID; + string SQL = "Select * from AntwortAdresse_Mitarbeiter where id=" + ID; if (OutFormat == "JSON") { SQL = SQL + " for json path"; } if (OutFormat == "XML") { SQL = SQL + " for xml path"; } db.Get_Tabledata(SQL, false, true); if (db.dsdaten.Tables[0].Rows.Count == 0) { return Ok(); } else { return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); }; } - - + [HttpGet] + [Route("API/API/AntwortAdresse/GetMitarbeiterUndStandard")] + /// + /// GetMitarbeiterByID liefert eine Mitarbeiter-Adrsse mit der ID + /// + /// Required. + /// Optional. The default value is "JSON".Optionalier Parameter: "XML" + /// + /// + /// public IHttpActionResult GetMitarbeiterByID(string ID, string OutFormat = "JSON") + public IHttpActionResult GetGASAdressen_Einzeilig(string TGNummer, string OutFormat = "JSON") + { + Database.DB db = new Database.DB(connectionstring); + db.clear_parameter(); + db.add_parameter("@tgnummer", TGNummer); + db.add_parameter("@format",OutFormat); + db.Get_Tabledata("sp_get_gas_einzeilig", true, false); + if (db.dsdaten.Tables[0].Rows.Count == 0) { + return Content(HttpStatusCode.NotFound, ""); + } + else { + return Content(HttpStatusCode.OK,db.dsdaten.Tables[0].Rows[0][0].ToString()); }; + } } } \ No newline at end of file diff --git a/API_NetFramework/Controllers/ArchivController.cs b/API_NetFramework/Controllers/ArchivController.cs new file mode 100644 index 00000000..61a2fd0a --- /dev/null +++ b/API_NetFramework/Controllers/ArchivController.cs @@ -0,0 +1,94 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Web.Http; +using DOCGEN; +using Model; +using Database; +using Newtonsoft.Json; + +namespace API_NetFramework.Controllers +{ + /// + /// + /// + /// + public class ArchivController : ApiController + { + // GET: OnBase + + string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString; + /// + /// Archiviert das Dokument aus OnDoc in OnBase + /// + /// + /// + /// Returncode: 200 (OK) + /// Dokumenthandle aus OnBase + /// + /// + [HttpGet] + [Route("API/ArchiveDocFromDatabase")] + + public IHttpActionResult ArchivDoc_From_Database(string DokumentID) + { + return Ok(); + } + + [HttpGet] + [Route("API/ArchiveDocBase64")] + /// + /// Archiviert das als Base64String übergebene Dokument in OnBase + /// + /// + /// + /// + /// Returncode: 200 (OK) + /// Dokumenthandle aus OnBase + /// + /// + public IHttpActionResult ArchivDocBase64(string Dokument, string Dokumenttyp) + { + return Ok(); + } + /// + /// CheckDocID prüft auf eine vorhandene DokumentID in OnDoc (DokumentID OFFEDK... / Barcode-Klenber-Nr) + /// + /// + /// + /// 200: OK + /// + /// + [HttpGet] + [Route("API/CheckDocID")] + + public IHttpActionResult CheckDocID(string DokumentID) + { + Database.DB db = new Database.DB(connectionstring); + db.Get_Tabledata("Select * from dokument where dokumentid = '" + DokumentID + "'", false, true); + if (db.dsdaten.Tables[0].Rows.Count > 0) + { + return Ok(DokumentID); + } + db.Get_Tabledata("Select barcodenr from barcodeetikette where dokumentid='" + DokumentID + "'", false, true); + if (db.dsdaten.Tables[0].Rows.Count > 0) + { + return Ok(DokumentID); + } + return Content(HttpStatusCode.NotFound, DokumentID); + } + + [HttpPost] + [Route("API/ArchivDocFromIRIS")] + public IHttpActionResult ArchivDocFromIRIS(string dokumentid) + { + return Ok(); + } + + + + } +} \ No newline at end of file diff --git a/API_NetFramework/Controllers/OnBaseController.cs b/API_NetFramework/Controllers/OnBaseController.cs deleted file mode 100644 index 4ffe49c7..00000000 --- a/API_NetFramework/Controllers/OnBaseController.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Web.Http; -using DOCGEN; -using Model; -using Database; -using Newtonsoft.Json; - -namespace API_NetFramework.Controllers -{ - public class OnBaseController : ApiController - { - // GET: OnBase - string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString; - [HttpGet] - [Route("API/ArchiveDocFromDatabase")] - public IHttpActionResult ArchivDoc_From_Database(string dokid) - { - return Ok(); - } - - [HttpGet] - [Route("API/ArchiveDocBase64")] - public IHttpActionResult ArchivDocBase64(string dokid) - { - return Ok(); - } - - [HttpPost] - [Route("API/ArchivDocFromIRIS")] - public IHttpActionResult ArchivDocFromIRIS(string dokumentid) - { - return Ok(); - } - - } -} \ No newline at end of file diff --git a/API_NetFramework/Controllers/UnterschriftController.cs b/API_NetFramework/Controllers/UnterschriftController.cs index 59580070..97df8d99 100644 --- a/API_NetFramework/Controllers/UnterschriftController.cs +++ b/API_NetFramework/Controllers/UnterschriftController.cs @@ -9,10 +9,27 @@ using DOCGEN; using Model; using Database; using Newtonsoft.Json; +using System.IO; +using System.Net.Http.Headers; +using System.Drawing; +using System.Threading.Tasks; +using System.Threading; + + namespace API_NetFramework.Controllers { + public interface IFileService + { + Stream GetImageAsStream(); + byte[] GetImageAsByteArray(); + } + + public static class Image + { + public const string Base64Image = "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"; + } public class UnterschriftController : ApiController { @@ -21,10 +38,120 @@ namespace API_NetFramework.Controllers [HttpGet] [Route("API/GetUnterschriftAsBase64")] public IHttpActionResult GetUnterschriftAsBase64(string TGNummer) + { + string path = System.Configuration.ConfigurationManager.AppSettings["UnterschriftPath"]; + string filename = path + TGNummer + ".jpg"; + if (!File.Exists(filename)) + { + return Content(HttpStatusCode.NotFound, "Image " + filename + " not found"); + } + try + { + byte[] b = System.IO.File.ReadAllBytes(filename); + return Ok(Convert.ToBase64String(b)); + } catch (Exception e) { + return Content(HttpStatusCode.InternalServerError, e.Message); + } + + } + + + [HttpGet] + [Route("API/GetUnterschrift")] + public IHttpActionResult GetUnterschrift(string TGNummer) { + string path = System.Configuration.ConfigurationManager.AppSettings["UnterschriftPath"]; + string filename = path + TGNummer + ".jpg"; + if (!File.Exists(filename)) + { + return Content(HttpStatusCode.NotFound, "Image " + filename + " not found"); + } + try + { + var dataBytes = File.ReadAllBytes(@"x:\docdemo\unterschriften\kube.jpg"); + var dataStream = new MemoryStream(dataBytes); + string imageName = TGNummer + ".jpg"; + return new unterschriftResult(dataStream, Request, imageName); + } + catch (Exception e) + { + return Content(HttpStatusCode.InternalServerError, e.Message); + } - return Ok(); + } + } -} + public class FileResult : IHttpActionResult + { + private readonly string filePath; + private readonly string contentType; + + public FileResult(string filePath, string contentType = null) + { + this.filePath = filePath; + this.contentType = contentType; + } + + public Task ExecuteAsync(CancellationToken cancellationToken) + { + return Task.Run(() => + { + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StreamContent(File.OpenRead(filePath)) + }; + + + var contentType = "image/png"; + //this.contentType ?? MimeMapping.GetMimeMapping(Path.GetExtension(filePath)); + response.Content.Headers.ContentType = new MediaTypeHeaderValue(contentType); + + return response; + }, cancellationToken); + } + } + + public class FileService : IFileService + { + public Stream GetImageAsStream() + { + var stream = new MemoryStream(Convert.FromBase64String(Image.Base64Image)); + + return stream; + } + + public byte[] GetImageAsByteArray() + { + var bytes = Convert.FromBase64String(Image.Base64Image); + + return bytes; + } + } + public class unterschriftResult : IHttpActionResult + { + MemoryStream Unterschrift; + string Signfilename; + HttpRequestMessage httpRequestMessage; + HttpResponseMessage httpResponseMessage; + + public unterschriftResult(MemoryStream data, HttpRequestMessage request, string filename) + { + Unterschrift = data; + httpRequestMessage = request; + Signfilename = filename; + } + public System.Threading.Tasks.Task ExecuteAsync(System.Threading.CancellationToken cancellationToken) + { + httpResponseMessage = httpRequestMessage.CreateResponse(HttpStatusCode.OK); + httpResponseMessage.Content = new StreamContent(Unterschrift); + httpResponseMessage.Content.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("attachment"); + httpResponseMessage.Content.Headers.ContentDisposition.FileName = Signfilename; + httpResponseMessage.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream"); + + return System.Threading.Tasks.Task.FromResult(httpResponseMessage); + } + } + } + diff --git a/API_NetFramework/Controllers/ValuesController.cs b/API_NetFramework/Controllers/ValuesController.cs index 5e7ccfef..3c68d021 100644 --- a/API_NetFramework/Controllers/ValuesController.cs +++ b/API_NetFramework/Controllers/ValuesController.cs @@ -1,39 +1,39 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Web.Http; +//using System; +//using System.Collections.Generic; +//using System.Linq; +//using System.Net; +//using System.Net.Http; +//using System.Web.Http; -namespace API_NetFramework.Controllers -{ - public class ValuesController : ApiController - { - // GET api/values - public IEnumerable Get() - { - return new string[] { "value1", "value2" }; - } +//namespace API_NetFramework.Controllers +//{ +// public class ValuesController : ApiController +// { +// // GET api/values +// public IEnumerable Get() +// { +// return new string[] { "value1", "value2" }; +// } - // GET api/values/5 - public string Get(int id) - { - return "value"; - } +// // GET api/values/5 +// public string Get(int id) +// { +// return "value"; +// } - // POST api/values - public void Post([FromBody] string value) - { - } +// // POST api/values +// public void Post([FromBody] string value) +// { +// } - // PUT api/values/5 - public void Put(int id, [FromBody] string value) - { - } +// // PUT api/values/5 +// public void Put(int id, [FromBody] string value) +// { +// } - // DELETE api/values/5 - public void Delete(int id) - { - } - } -} +// // DELETE api/values/5 +// public void Delete(int id) +// { +// } +// } +//} diff --git a/API_NetFramework/Startup.cs b/API_NetFramework/Startup.cs new file mode 100644 index 00000000..914e7cca --- /dev/null +++ b/API_NetFramework/Startup.cs @@ -0,0 +1,32 @@ +using Owin; +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Linq; +using System.Text; +using System.Web; +using System.Web.Configuration; + +namespace OnDocAPI_NetFramework +{ + public class Startup + { + public void Configuration(IAppBuilder app) + { + app.UseJwtBearerAuthentication( + new JwtBearerAuthenticationOptions + { + AuthenticationMode = AuthenticationMode.Active, + TokenValidationParameters = new TokenValidationParameters() + { + ValidateIssuer = true, + ValidateAudience = true, + ValidateIssuerSigningKey = true, + ValidIssuer = ConfigurationManager.AppSettings["JwtIssuer"], //some string, normally web url, + ValidAudience = ConfigurationManager.AppSettings["JwtIssuer"], + IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(ConfigurationManager.AppSettings["JwtKey"])) + } + }); + } + } +} \ No newline at end of file diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/LGPLv3.txt b/API_NetFramework/VSdoc/SyntaxHighlighter/LGPLv3.txt new file mode 100644 index 00000000..3f9959fc --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/LGPLv3.txt @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. \ No newline at end of file diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/clipboard.swf b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/clipboard.swf new file mode 100644 index 00000000..1b4d90a0 Binary files /dev/null and b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/clipboard.swf differ diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushAS3.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushAS3.js new file mode 100644 index 00000000..b40d1aab --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushAS3.js @@ -0,0 +1,61 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.AS3 = function() +{ + // Created by Peter Atoria @ http://iAtoria.com + + var inits = 'class interface function package'; + + var keywords = '-Infinity ...rest Array as AS3 Boolean break case catch const continue Date decodeURI ' + + 'decodeURIComponent default delete do dynamic each else encodeURI encodeURIComponent escape ' + + 'extends false final finally flash_proxy for get if implements import in include Infinity ' + + 'instanceof int internal is isFinite isNaN isXMLName label namespace NaN native new null ' + + 'Null Number Object object_proxy override parseFloat parseInt private protected public ' + + 'return set static String super switch this throw true try typeof uint undefined unescape ' + + 'use void while with' + ; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers + { regex: new RegExp(this.getKeywords(inits), 'gm'), css: 'color3' }, // initializations + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp('var', 'gm'), css: 'variable' }, // variable + { regex: new RegExp('trace', 'gm'), css: 'color1' } // trace + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.scriptScriptTags); +}; + +SyntaxHighlighter.brushes.AS3.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.AS3.aliases = ['actionscript3', 'as3']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushBash.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushBash.js new file mode 100644 index 00000000..0d7a7e75 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushBash.js @@ -0,0 +1,66 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Bash = function() +{ + var keywords = 'if fi then elif else for do done until while break continue case function return in eq ne gt lt ge le'; + var commands = 'alias apropos awk basename bash bc bg builtin bzip2 cal cat cd cfdisk chgrp chmod chown chroot' + + 'cksum clear cmp comm command cp cron crontab csplit cut date dc dd ddrescue declare df ' + + 'diff diff3 dig dir dircolors dirname dirs du echo egrep eject enable env ethtool eval ' + + 'exec exit expand export expr false fdformat fdisk fg fgrep file find fmt fold format ' + + 'free fsck ftp gawk getopts grep groups gzip hash head history hostname id ifconfig ' + + 'import install join kill less let ln local locate logname logout look lpc lpr lprint ' + + 'lprintd lprintq lprm ls lsof make man mkdir mkfifo mkisofs mknod more mount mtools ' + + 'mv netstat nice nl nohup nslookup open op passwd paste pathchk ping popd pr printcap ' + + 'printenv printf ps pushd pwd quota quotacheck quotactl ram rcp read readonly renice ' + + 'remsync rm rmdir rsync screen scp sdiff sed select seq set sftp shift shopt shutdown ' + + 'sleep sort source split ssh strace su sudo sum symlink sync tail tar tee test time ' + + 'times touch top traceroute trap tr true tsort tty type ulimit umask umount unalias ' + + 'uname unexpand uniq units unset unshar useradd usermod users uuencode uudecode v vdir ' + + 'vi watch wc whereis which who whoami Wget xargs yes' + ; + + this.findMatches = function(regexList, code) + { + code = code.replace(/>/g, '>').replace(/</g, '<'); + this.code = code; + return SyntaxHighlighter.Highlighter.prototype.findMatches.apply(this, [regexList, code]); + }; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(this.getKeywords(commands), 'gm'), css: 'functions' } // commands + ]; +} + +SyntaxHighlighter.brushes.Bash.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Bash.aliases = ['bash', 'shell']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCSharp.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCSharp.js new file mode 100644 index 00000000..69603125 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCSharp.js @@ -0,0 +1,71 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ + + /* modified by Helixoft */ + +SyntaxHighlighter.brushes.CSharp = function() +{ + var keywords = 'abstract as base bool break byte case catch char checked class const ' + + 'continue decimal default delegate do double else enum event explicit ' + + 'extern false finally fixed float for foreach get goto if implicit in int ' + + 'interface internal is lock long namespace new null object operator out ' + + 'override params private protected public readonly ref return sbyte sealed set ' + + 'short sizeof stackalloc static string struct switch this throw true try ' + + 'typeof uint ulong unchecked unsafe ushort using virtual void while'; + + function fixComments(match, regexInfo) + { + var css = (match[0].indexOf("///") == 0) + ? 'color1' + : 'comments' + ; + + return [new SyntaxHighlighter.Match(match[0], match.index, css)]; + } + + this.regexList = [ + { regex: /\<.*?\>/gm, css: 'skipTag' }, // HTML tag, don't decorate, Helixoft + { regex: SyntaxHighlighter.regexLib.singleLineCComments, func : fixComments }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword + { regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keyword: 'partial' + { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield' + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.CSharp.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.CSharp.aliases = ['c#', 'c-sharp', 'csharp']; + diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushColdFusion.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushColdFusion.js new file mode 100644 index 00000000..b520544d --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushColdFusion.js @@ -0,0 +1,102 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.ColdFusion = function() +{ + // Contributed by Jen + // http://www.jensbits.com/2009/05/14/coldfusion-brush-for-syntaxhighlighter-plus + + var funcs = 'Abs ACos AddSOAPRequestHeader AddSOAPResponseHeader AjaxLink AjaxOnLoad ArrayAppend ArrayAvg ArrayClear ArrayDeleteAt ' + + 'ArrayInsertAt ArrayIsDefined ArrayIsEmpty ArrayLen ArrayMax ArrayMin ArraySet ArraySort ArraySum ArraySwap ArrayToList ' + + 'Asc ASin Atn BinaryDecode BinaryEncode BitAnd BitMaskClear BitMaskRead BitMaskSet BitNot BitOr BitSHLN BitSHRN BitXor ' + + 'Ceiling CharsetDecode CharsetEncode Chr CJustify Compare CompareNoCase Cos CreateDate CreateDateTime CreateObject ' + + 'CreateODBCDate CreateODBCDateTime CreateODBCTime CreateTime CreateTimeSpan CreateUUID DateAdd DateCompare DateConvert ' + + 'DateDiff DateFormat DatePart Day DayOfWeek DayOfWeekAsString DayOfYear DaysInMonth DaysInYear DE DecimalFormat DecrementValue ' + + 'Decrypt DecryptBinary DeleteClientVariable DeserializeJSON DirectoryExists DollarFormat DotNetToCFType Duplicate Encrypt ' + + 'EncryptBinary Evaluate Exp ExpandPath FileClose FileCopy FileDelete FileExists FileIsEOF FileMove FileOpen FileRead ' + + 'FileReadBinary FileReadLine FileSetAccessMode FileSetAttribute FileSetLastModified FileWrite Find FindNoCase FindOneOf ' + + 'FirstDayOfMonth Fix FormatBaseN GenerateSecretKey GetAuthUser GetBaseTagData GetBaseTagList GetBaseTemplatePath ' + + 'GetClientVariablesList GetComponentMetaData GetContextRoot GetCurrentTemplatePath GetDirectoryFromPath GetEncoding ' + + 'GetException GetFileFromPath GetFileInfo GetFunctionList GetGatewayHelper GetHttpRequestData GetHttpTimeString ' + + 'GetK2ServerDocCount GetK2ServerDocCountLimit GetLocale GetLocaleDisplayName GetLocalHostIP GetMetaData GetMetricData ' + + 'GetPageContext GetPrinterInfo GetProfileSections GetProfileString GetReadableImageFormats GetSOAPRequest GetSOAPRequestHeader ' + + 'GetSOAPResponse GetSOAPResponseHeader GetTempDirectory GetTempFile GetTemplatePath GetTickCount GetTimeZoneInfo GetToken ' + + 'GetUserRoles GetWriteableImageFormats Hash Hour HTMLCodeFormat HTMLEditFormat IIf ImageAddBorder ImageBlur ImageClearRect ' + + 'ImageCopy ImageCrop ImageDrawArc ImageDrawBeveledRect ImageDrawCubicCurve ImageDrawLine ImageDrawLines ImageDrawOval ' + + 'ImageDrawPoint ImageDrawQuadraticCurve ImageDrawRect ImageDrawRoundRect ImageDrawText ImageFlip ImageGetBlob ImageGetBufferedImage ' + + 'ImageGetEXIFTag ImageGetHeight ImageGetIPTCTag ImageGetWidth ImageGrayscale ImageInfo ImageNegative ImageNew ImageOverlay ImagePaste ' + + 'ImageRead ImageReadBase64 ImageResize ImageRotate ImageRotateDrawingAxis ImageScaleToFit ImageSetAntialiasing ImageSetBackgroundColor ' + + 'ImageSetDrawingColor ImageSetDrawingStroke ImageSetDrawingTransparency ImageSharpen ImageShear ImageShearDrawingAxis ImageTranslate ' + + 'ImageTranslateDrawingAxis ImageWrite ImageWriteBase64 ImageXORDrawingMode IncrementValue InputBaseN Insert Int IsArray IsBinary ' + + 'IsBoolean IsCustomFunction IsDate IsDDX IsDebugMode IsDefined IsImage IsImageFile IsInstanceOf IsJSON IsLeapYear IsLocalHost ' + + 'IsNumeric IsNumericDate IsObject IsPDFFile IsPDFObject IsQuery IsSimpleValue IsSOAPRequest IsStruct IsUserInAnyRole IsUserInRole ' + + 'IsUserLoggedIn IsValid IsWDDX IsXML IsXmlAttribute IsXmlDoc IsXmlElem IsXmlNode IsXmlRoot JavaCast JSStringFormat LCase Left Len ' + + 'ListAppend ListChangeDelims ListContains ListContainsNoCase ListDeleteAt ListFind ListFindNoCase ListFirst ListGetAt ListInsertAt ' + + 'ListLast ListLen ListPrepend ListQualify ListRest ListSetAt ListSort ListToArray ListValueCount ListValueCountNoCase LJustify Log ' + + 'Log10 LSCurrencyFormat LSDateFormat LSEuroCurrencyFormat LSIsCurrency LSIsDate LSIsNumeric LSNumberFormat LSParseCurrency LSParseDateTime ' + + 'LSParseEuroCurrency LSParseNumber LSTimeFormat LTrim Max Mid Min Minute Month MonthAsString Now NumberFormat ParagraphFormat ParseDateTime ' + + 'Pi PrecisionEvaluate PreserveSingleQuotes Quarter QueryAddColumn QueryAddRow QueryConvertForGrid QueryNew QuerySetCell QuotedValueList Rand ' + + 'Randomize RandRange REFind REFindNoCase ReleaseComObject REMatch REMatchNoCase RemoveChars RepeatString Replace ReplaceList ReplaceNoCase ' + + 'REReplace REReplaceNoCase Reverse Right RJustify Round RTrim Second SendGatewayMessage SerializeJSON SetEncoding SetLocale SetProfileString ' + + 'SetVariable Sgn Sin Sleep SpanExcluding SpanIncluding Sqr StripCR StructAppend StructClear StructCopy StructCount StructDelete StructFind ' + + 'StructFindKey StructFindValue StructGet StructInsert StructIsEmpty StructKeyArray StructKeyExists StructKeyList StructKeyList StructNew ' + + 'StructSort StructUpdate Tan TimeFormat ToBase64 ToBinary ToScript ToString Trim UCase URLDecode URLEncodedFormat URLSessionFormat Val ' + + 'ValueList VerifyClient Week Wrap Wrap WriteOutput XmlChildPos XmlElemNew XmlFormat XmlGetNodeType XmlNew XmlParse XmlSearch XmlTransform ' + + 'XmlValidate Year YesNoFormat'; + + var keywords = 'cfabort cfajaximport cfajaxproxy cfapplet cfapplication cfargument cfassociate cfbreak cfcache cfcalendar ' + + 'cfcase cfcatch cfchart cfchartdata cfchartseries cfcol cfcollection cfcomponent cfcontent cfcookie cfdbinfo ' + + 'cfdefaultcase cfdirectory cfdiv cfdocument cfdocumentitem cfdocumentsection cfdump cfelse cfelseif cferror ' + + 'cfexchangecalendar cfexchangeconnection cfexchangecontact cfexchangefilter cfexchangemail cfexchangetask ' + + 'cfexecute cfexit cffeed cffile cfflush cfform cfformgroup cfformitem cfftp cffunction cfgrid cfgridcolumn ' + + 'cfgridrow cfgridupdate cfheader cfhtmlhead cfhttp cfhttpparam cfif cfimage cfimport cfinclude cfindex ' + + 'cfinput cfinsert cfinterface cfinvoke cfinvokeargument cflayout cflayoutarea cfldap cflocation cflock cflog ' + + 'cflogin cfloginuser cflogout cfloop cfmail cfmailparam cfmailpart cfmenu cfmenuitem cfmodule cfNTauthenticate ' + + 'cfobject cfobjectcache cfoutput cfparam cfpdf cfpdfform cfpdfformparam cfpdfparam cfpdfsubform cfpod cfpop ' + + 'cfpresentation cfpresentationslide cfpresenter cfprint cfprocessingdirective cfprocparam cfprocresult ' + + 'cfproperty cfquery cfqueryparam cfregistry cfreport cfreportparam cfrethrow cfreturn cfsavecontent cfschedule ' + + 'cfscript cfsearch cfselect cfset cfsetting cfsilent cfslider cfsprydataset cfstoredproc cfswitch cftable ' + + 'cftextarea cfthread cfthrow cftimer cftooltip cftrace cftransaction cftree cftreeitem cftry cfupdate cfwddx ' + + 'cfwindow cfxml cfzip cfzipparam'; + + var operators = 'all and any between cross in join like not null or outer some'; + + this.regexList = [ + { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments + { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions + { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword + ]; +} + +SyntaxHighlighter.brushes.ColdFusion.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.ColdFusion.aliases = ['coldfusion','cf']; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCpp.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCpp.js new file mode 100644 index 00000000..b258dee0 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCpp.js @@ -0,0 +1,102 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Cpp = function() +{ + // Copyright 2006 Shin, YoungJin + + /* modified by Helixoft (added .NET managed C++ keywords) */ + + var datatypes = 'ATOM BOOL BOOLEAN BYTE CHAR COLORREF DWORD DWORDLONG DWORD_PTR ' + + 'DWORD32 DWORD64 FLOAT HACCEL HALF_PTR HANDLE HBITMAP HBRUSH ' + + 'HCOLORSPACE HCONV HCONVLIST HCURSOR HDC HDDEDATA HDESK HDROP HDWP ' + + 'HENHMETAFILE HFILE HFONT HGDIOBJ HGLOBAL HHOOK HICON HINSTANCE HKEY ' + + 'HKL HLOCAL HMENU HMETAFILE HMODULE HMONITOR HPALETTE HPEN HRESULT ' + + 'HRGN HRSRC HSZ HWINSTA HWND INT INT_PTR INT32 INT64 LANGID LCID LCTYPE ' + + 'LGRPID LONG LONGLONG LONG_PTR LONG32 LONG64 LPARAM LPBOOL LPBYTE LPCOLORREF ' + + 'LPCSTR LPCTSTR LPCVOID LPCWSTR LPDWORD LPHANDLE LPINT LPLONG LPSTR LPTSTR ' + + 'LPVOID LPWORD LPWSTR LRESULT PBOOL PBOOLEAN PBYTE PCHAR PCSTR PCTSTR PCWSTR ' + + 'PDWORDLONG PDWORD_PTR PDWORD32 PDWORD64 PFLOAT PHALF_PTR PHANDLE PHKEY PINT ' + + 'PINT_PTR PINT32 PINT64 PLCID PLONG PLONGLONG PLONG_PTR PLONG32 PLONG64 POINTER_32 ' + + 'POINTER_64 PSHORT PSIZE_T PSSIZE_T PSTR PTBYTE PTCHAR PTSTR PUCHAR PUHALF_PTR ' + + 'PUINT PUINT_PTR PUINT32 PUINT64 PULONG PULONGLONG PULONG_PTR PULONG32 PULONG64 ' + + 'PUSHORT PVOID PWCHAR PWORD PWSTR SC_HANDLE SC_LOCK SERVICE_STATUS_HANDLE SHORT ' + + 'SIZE_T SSIZE_T TBYTE TCHAR UCHAR UHALF_PTR UINT UINT_PTR UINT32 UINT64 ULONG ' + + 'ULONGLONG ULONG_PTR ULONG32 ULONG64 USHORT USN VOID WCHAR WORD WPARAM WPARAM WPARAM ' + + 'char bool short int __int32 __int64 __int8 __int16 long float double __wchar_t ' + + 'clock_t _complex _dev_t _diskfree_t div_t ldiv_t _exception _EXCEPTION_POINTERS ' + + 'FILE _finddata_t _finddatai64_t _wfinddata_t _wfinddatai64_t __finddata64_t ' + + '__wfinddata64_t _FPIEEE_RECORD fpos_t _HEAPINFO _HFILE lconv intptr_t ' + + 'jmp_buf mbstate_t _off_t _onexit_t _PNH ptrdiff_t _purecall_handler ' + + 'sig_atomic_t size_t _stat __stat64 _stati64 terminate_function ' + + 'time_t __time64_t _timeb __timeb64 tm uintptr_t _utimbuf ' + + 'va_list wchar_t wctrans_t wctype_t wint_t signed'; + + var keywords = 'break case catch class const __finally __exception __try ' + + 'const_cast continue private public protected __declspec ' + + 'default delete deprecated dllexport dllimport do dynamic_cast ' + + 'else enum explicit extern if for friend goto inline ' + + 'mutable naked namespace new noinline noreturn nothrow ' + + 'register reinterpret_cast return selectany ' + + 'sizeof static static_cast struct switch template this ' + + 'thread throw true false try typedef typeid typename union ' + + 'using uuid virtual void volatile whcar_t while abstract sealed property interface'; + + var functions = 'assert isalnum isalpha iscntrl isdigit isgraph islower isprint' + + 'ispunct isspace isupper isxdigit tolower toupper errno localeconv ' + + 'setlocale acos asin atan atan2 ceil cos cosh exp fabs floor fmod ' + + 'frexp ldexp log log10 modf pow sin sinh sqrt tan tanh jmp_buf ' + + 'longjmp setjmp raise signal sig_atomic_t va_arg va_end va_start ' + + 'clearerr fclose feof ferror fflush fgetc fgetpos fgets fopen ' + + 'fprintf fputc fputs fread freopen fscanf fseek fsetpos ftell ' + + 'fwrite getc getchar gets perror printf putc putchar puts remove ' + + 'rename rewind scanf setbuf setvbuf sprintf sscanf tmpfile tmpnam ' + + 'ungetc vfprintf vprintf vsprintf abort abs atexit atof atoi atol ' + + 'bsearch calloc div exit free getenv labs ldiv malloc mblen mbstowcs ' + + 'mbtowc qsort rand realloc srand strtod strtol strtoul system ' + + 'wcstombs wctomb memchr memcmp memcpy memmove memset strcat strchr ' + + 'strcmp strcoll strcpy strcspn strerror strlen strncat strncmp ' + + 'strncpy strpbrk strrchr strspn strstr strtok strxfrm asctime ' + + 'clock ctime difftime gmtime localtime mktime strftime time'; + + this.regexList = [ + { regex: /\<.*?\>/gm, css: 'skipTag' }, // HTML tag, don't decorate, Helixoft + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /^ *#.*/gm, css: 'preprocessor' }, + { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'color1' }, + { regex: new RegExp(this.getKeywords(functions), 'gm'), css: 'functions' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; +}; + +SyntaxHighlighter.brushes.Cpp.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Cpp.aliases = ['cpp', 'c']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCss.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCss.js new file mode 100644 index 00000000..f69ad771 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushCss.js @@ -0,0 +1,93 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.CSS = function() +{ + function getKeywordsCSS(str) + { + return '\\b([a-z_]|)' + str.replace(/ /g, '(?=:)\\b|\\b([a-z_\\*]|\\*|)') + '(?=:)\\b'; + }; + + function getValuesCSS(str) + { + return '\\b' + str.replace(/ /g, '(?!-)(?!:)\\b|\\b()') + '\:\\b'; + }; + + var keywords = 'ascent azimuth background-attachment background-color background-image background-position ' + + 'background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top ' + + 'border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color ' + + 'border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width ' + + 'border-bottom-width border-left-width border-width border bottom cap-height caption-side centerline clear clip color ' + + 'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display ' + + 'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font ' + + 'height left letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top ' + + 'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width orphans ' + + 'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page ' + + 'page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position ' + + 'quotes right richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress ' + + 'table-layout text-align top text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em ' + + 'vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index'; + + var values = 'above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder '+ + 'both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed '+ + 'continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero default digits disc dotted double '+ + 'embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia '+ + 'gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic '+ + 'justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha '+ + 'lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower '+ + 'navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset '+ + 'outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side '+ + 'rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow '+ + 'small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize '+ + 'table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal '+ + 'text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin '+ + 'upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow'; + + var fonts = '[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif [cC]ourier mono sans serif'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors + { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes + { regex: /!important/g, css: 'color3' }, // !important + { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values + { regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts + ]; + + this.forHtmlScript({ + left: /(<|<)\s*style.*?(>|>)/gi, + right: /(<|<)\/\s*style\s*(>|>)/gi + }); +}; + +SyntaxHighlighter.brushes.CSS.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.CSS.aliases = ['css']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushDelphi.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushDelphi.js new file mode 100644 index 00000000..fd194c4a --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushDelphi.js @@ -0,0 +1,57 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Delphi = function() +{ + var keywords = 'abs addr and ansichar ansistring array as asm begin boolean byte cardinal ' + + 'case char class comp const constructor currency destructor div do double ' + + 'downto else end except exports extended false file finalization finally ' + + 'for function goto if implementation in inherited int64 initialization ' + + 'integer interface is label library longint longword mod nil not object ' + + 'of on or packed pansichar pansistring pchar pcurrency pdatetime pextended ' + + 'pint64 pointer private procedure program property pshortstring pstring ' + + 'pvariant pwidechar pwidestring protected public published raise real real48 ' + + 'record repeat set shl shortint shortstring shr single smallint string then ' + + 'threadvar to true try type unit until uses val var varirnt while widechar ' + + 'widestring with word write writeln xor'; + + this.regexList = [ + { regex: /\(\*[\s\S]*?\*\)/gm, css: 'comments' }, // multiline comments (* *) + { regex: /{(?!\$)[\s\S]*?}/gm, css: 'comments' }, // multiline comments { } + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /\{\$[a-zA-Z]+ .+\}/g, css: 'color1' }, // compiler Directives and Region tags + { regex: /\b[\d\.]+\b/g, css: 'value' }, // numbers 12345 + { regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // numbers $F5D3 + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword + ]; +}; + +SyntaxHighlighter.brushes.Delphi.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Delphi.aliases = ['delphi', 'pascal', 'pas']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushDiff.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushDiff.js new file mode 100644 index 00000000..6109f4c1 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushDiff.js @@ -0,0 +1,43 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Diff = function() +{ + this.regexList = [ + { regex: /^\+\+\+.*$/gm, css: 'color2' }, + { regex: /^\-\-\-.*$/gm, css: 'color2' }, + { regex: /^\s.*$/gm, css: 'color1' }, + { regex: /^@@.*@@$/gm, css: 'variable' }, + { regex: /^\+[^\+]{1}.*$/gm, css: 'string' }, + { regex: /^\-[^\-]{1}.*$/gm, css: 'comments' } + ]; +}; + +SyntaxHighlighter.brushes.Diff.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Diff.aliases = ['diff', 'patch']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushErlang.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushErlang.js new file mode 100644 index 00000000..7b68bad8 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushErlang.js @@ -0,0 +1,54 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Erlang = function() +{ + // Contributed by Jean-Lou Dupont + // http://jldupont.blogspot.com/2009/06/erlang-syntax-highlighter.html + + // According to: http://erlang.org/doc/reference_manual/introduction.html#1.5 + var keywords = 'after and andalso band begin bnot bor bsl bsr bxor '+ + 'case catch cond div end fun if let not of or orelse '+ + 'query receive rem try when xor'+ + // additional + ' module export import define'; + + this.regexList = [ + { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' }, + { regex: new RegExp("\\%.+", 'gm'), css: 'comments' }, + { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' }, + { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' }, + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; +}; + +SyntaxHighlighter.brushes.Erlang.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Erlang.aliases = ['erl', 'erlang']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushFSharp.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushFSharp.js new file mode 100644 index 00000000..324f469b --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushFSharp.js @@ -0,0 +1,114 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.0.320 (May 03 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ + +/* modified by Helixoft */ + +SyntaxHighlighter.brushes.FSharp = function () { + /* main F# keywords */ + var keywords1 = + /* section 3.4 */ + 'abstract and as assert base begin class default delegate do done ' + + 'downcast downto elif else end exception extern false finally for ' + + 'fun function if in inherit inline interface internal lazy let ' + + 'match member module mutable namespace new null of open or ' + + 'override private public rec return sig static struct then to ' + + 'true try type upcast use val void when while with yield ' + + 'asr land lor lsl lsr lxor mod ' + + /* identifiers are reserved for future use by F# */ + 'atomic break checked component const constraint constructor ' + + 'continue eager fixed fori functor global include method mixin ' + + 'object parallel params process protected pure sealed tailcall ' + + 'trait virtual volatile '; + /* do, return, let, yield keywords with ! at the end are added later */ + + /* define names of main libraries in F# Core so we can link to it + http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/namespaces.html + */ + var modules = + 'Array Array2D Array3D Array4D ComparisonIdentity HashIdentity List ' + + 'Map Seq SequenceExpressionHelpers Set CommonExtensions Event ' + + 'ExtraTopLevelOperators LanguagePrimitives NumericLiterals Operators ' + + 'OptimizedClosures Option String NativePtr Printf'; + + /* 17.2 & 17.3 */ + var functions = + 'abs acos asin atan atan2 ceil cos cosh exp ' + + 'floor log log10 pown round sign sin sinh sqrt tan tanh ' + + 'fst snd KeyValue not min max ' + + 'ignore stdin stdout stderr '; + + /* 17.2 Object Transformation Operators */ + var objectTransformations = + 'box hash sizeof typeof typedefof unbox' + + /* 17.2 Exceptions */ + var exceptions = + 'failwith invalidArg raise rethrow'; + + /* 3.11 Pre-processor Declarations / Identifier Replacements*/ + var constants = + '__SOURCE_DIRECTORY__ __SOURCE_FILE__ __LINE__'; + + /* Pervasives Types & Overloaded Conversion Functions */ + var datatypes = + 'bool byref byte char decimal double exn float float32 ' + + 'FuncConvert ilsigptr int int16 int32 int64 int8 ' + + 'nativeint nativeptr obj option ref sbyte single string uint16 ' + + 'uint32 uint64 uint8 unativeint unit enum async seq dict '; + + function fixComments(match, regexInfo) { + var css = (match[0].indexOf("///") === 0) ? 'color1' : 'comments'; + return [new SyntaxHighlighter.Match(match[0], match.index, css)]; + } + + this.regexList = [ + { regex: /\<.*?\>/gm, css: 'skipTag' }, // HTML tag, don't decorate, Helixoft + /* 3.3 Conditional compilation & 13.3 Compiler Directives + light /light off*/ + { regex: /\s*#\b(light|if|else|endif|indent|nowarn|r(eference)?|I|include|load|time|help|q(uit)?)/gm, css: 'preprocessor' }, + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, + { regex: /\s*\(\*[\s\S]*?\*\)/gm, css: 'comments' }, + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: /'[^']?'/gm, css: 'string' }, + { regex: new RegExp(this.getKeywords(keywords1), 'gm'), css: 'keyword' }, + { regex: /\s*(do|let|yield|return)*\!/gm, css: 'keyword' }, + { regex: new RegExp(this.getKeywords(modules), 'gm'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(functions), 'gm'), css: 'functions' }, + { regex: new RegExp(this.getKeywords(objectTransformations), 'gm'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(exceptions), 'gm'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, + { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'keyword' } + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.FSharp.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.FSharp.aliases = ['f#', 'f-sharp', 'fsharp']; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushGroovy.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushGroovy.js new file mode 100644 index 00000000..db0b8e68 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushGroovy.js @@ -0,0 +1,69 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Groovy = function() +{ + // Contributed by Andres Almiray + // http://jroller.com/aalmiray/entry/nice_source_code_syntax_highlighter + + var keywords = 'as assert break case catch class continue def default do else extends finally ' + + 'if in implements import instanceof interface new package property return switch ' + + 'throw throws try while public protected private static'; + var types = 'void boolean byte char short int long float double'; + var constants = 'null'; + var methods = 'allProperties count get size '+ + 'collect each eachProperty eachPropertyName eachWithIndex find findAll ' + + 'findIndexOf grep inject max min reverseEach sort ' + + 'asImmutable asSynchronized flatten intersect join pop reverse subMap toList ' + + 'padRight padLeft contains eachMatch toCharacter toLong toUrl tokenize ' + + 'eachFile eachFileRecurse eachB yte eachLine readBytes readLine getText ' + + 'splitEachLine withReader append encodeBase64 decodeBase64 filterLine ' + + 'transformChar transformLine withOutputStream withPrintWriter withStream ' + + 'withStreams withWriter withWriterAppend write writeLine '+ + 'dump inspect invokeMethod print println step times upto use waitForOrKill '+ + 'getText'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /""".*"""/g, css: 'string' }, // GStrings + { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'value' }, // numbers + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // goovy keyword + { regex: new RegExp(this.getKeywords(types), 'gm'), css: 'color1' }, // goovy/java type + { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, // constants + { regex: new RegExp(this.getKeywords(methods), 'gm'), css: 'functions' } // methods + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +} + +SyntaxHighlighter.brushes.Groovy.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Groovy.aliases = ['groovy']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJScript.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJScript.js new file mode 100644 index 00000000..6a4855f6 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJScript.js @@ -0,0 +1,59 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ + + /* modified by Helixoft */ + +SyntaxHighlighter.brushes.JScript = function() +{ + var keywords = 'break case catch continue ' + + 'default delete do else false ' + + 'for function if in instanceof ' + + 'new null return super switch ' + + 'this throw true try typeof var while with ' + + 'int float object short long DateTime decimal byte char double boolean ' + + 'private protected public internal static final abstract const readonly ' + + 'class implements interface' + ; + + this.regexList = [ + { regex: /\<.*?\>/gm, css: 'skipTag' }, // HTML tag, don't decorate, Helixoft + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.scriptScriptTags); +}; + +SyntaxHighlighter.brushes.JScript.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.JScript.aliases = ['js', 'jscript', 'javascript']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJava.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJava.js new file mode 100644 index 00000000..4ae588d7 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJava.js @@ -0,0 +1,59 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Java = function() +{ + var keywords = 'abstract assert boolean break byte case catch char class const ' + + 'continue default do double else enum extends ' + + 'false final finally float for goto if implements import ' + + 'instanceof int interface long native new null ' + + 'package private protected public return ' + + 'short static strictfp super switch synchronized this throw throws true ' + + 'transient try void volatile while'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: /\/\*([^\*][\s\S]*)?\*\//gm, css: 'comments' }, // multiline comments + { regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm, css: 'preprocessor' }, // documentation comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers + { regex: /(?!\@interface\b)\@[\$\w]+\b/g, css: 'color1' }, // annotation @anno + { regex: /\@interface\b/g, css: 'color2' }, // @interface keyword + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // java keyword + ]; + + this.forHtmlScript({ + left : /(<|<)%[@!=]?/g, + right : /%(>|>)/g + }); +}; + +SyntaxHighlighter.brushes.Java.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Java.aliases = ['java']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJavaFX.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJavaFX.js new file mode 100644 index 00000000..eeb8f65a --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushJavaFX.js @@ -0,0 +1,60 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.JavaFX = function() +{ + // Contributed by Patrick Webster + // http://patrickwebster.blogspot.com/2009/04/javafx-brush-for-syntaxhighlighter.html + var datatypes = 'Boolean Byte Character Double Duration ' + + 'Float Integer Long Number Short String Void' + ; + + var keywords = 'abstract after and as assert at before bind bound break catch class ' + + 'continue def delete else exclusive extends false finally first for from ' + + 'function if import in indexof init insert instanceof into inverse last ' + + 'lazy mixin mod nativearray new not null on or override package postinit ' + + 'protected public public-init public-read replace return reverse sizeof ' + + 'step super then this throw true try tween typeof var where while with ' + + 'attribute let private readonly static trigger' + ; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // numbers + { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.JavaFX.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.JavaFX.aliases = ['jfx', 'javafx']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPerl.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPerl.js new file mode 100644 index 00000000..d9f8e130 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPerl.js @@ -0,0 +1,74 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Perl = function() +{ + // Contributed by David Simmons-Duffin and Marty Kube + + var funcs = + 'abs accept alarm atan2 bind binmode chdir chmod chomp chop chown chr ' + + 'chroot close closedir connect cos crypt defined delete each endgrent ' + + 'endhostent endnetent endprotoent endpwent endservent eof exec exists ' + + 'exp fcntl fileno flock fork format formline getc getgrent getgrgid ' + + 'getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr ' + + 'getnetbyname getnetent getpeername getpgrp getppid getpriority ' + + 'getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid ' + + 'getservbyname getservbyport getservent getsockname getsockopt glob ' + + 'gmtime grep hex index int ioctl join keys kill lc lcfirst length link ' + + 'listen localtime lock log lstat map mkdir msgctl msgget msgrcv msgsnd ' + + 'oct open opendir ord pack pipe pop pos print printf prototype push ' + + 'quotemeta rand read readdir readline readlink readpipe recv rename ' + + 'reset reverse rewinddir rindex rmdir scalar seek seekdir select semctl ' + + 'semget semop send setgrent sethostent setnetent setpgrp setpriority ' + + 'setprotoent setpwent setservent setsockopt shift shmctl shmget shmread ' + + 'shmwrite shutdown sin sleep socket socketpair sort splice split sprintf ' + + 'sqrt srand stat study substr symlink syscall sysopen sysread sysseek ' + + 'system syswrite tell telldir time times tr truncate uc ucfirst umask ' + + 'undef unlink unpack unshift utime values vec wait waitpid warn write'; + + var keywords = + 'bless caller continue dbmclose dbmopen die do dump else elsif eval exit ' + + 'for foreach goto if import last local my next no our package redo ref ' + + 'require return sub tie tied unless untie until use wantarray while'; + + this.regexList = [ + { regex: new RegExp('#[^!].*$', 'gm'), css: 'comments' }, + { regex: new RegExp('^\\s*#!.*$', 'gm'), css: 'preprocessor' }, // shebang + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, + { regex: new RegExp('(\\$|@|%)\\w+', 'g'), css: 'variable' }, + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.phpScriptTags); +} + +SyntaxHighlighter.brushes.Perl.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Perl.aliases = ['perl', 'Perl', 'pl']; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPhp.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPhp.js new file mode 100644 index 00000000..4e92a19b --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPhp.js @@ -0,0 +1,91 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Php = function() +{ + var funcs = 'abs acos acosh addcslashes addslashes ' + + 'array_change_key_case array_chunk array_combine array_count_values array_diff '+ + 'array_diff_assoc array_diff_key array_diff_uassoc array_diff_ukey array_fill '+ + 'array_filter array_flip array_intersect array_intersect_assoc array_intersect_key '+ + 'array_intersect_uassoc array_intersect_ukey array_key_exists array_keys array_map '+ + 'array_merge array_merge_recursive array_multisort array_pad array_pop array_product '+ + 'array_push array_rand array_reduce array_reverse array_search array_shift '+ + 'array_slice array_splice array_sum array_udiff array_udiff_assoc '+ + 'array_udiff_uassoc array_uintersect array_uintersect_assoc '+ + 'array_uintersect_uassoc array_unique array_unshift array_values array_walk '+ + 'array_walk_recursive atan atan2 atanh base64_decode base64_encode base_convert '+ + 'basename bcadd bccomp bcdiv bcmod bcmul bindec bindtextdomain bzclose bzcompress '+ + 'bzdecompress bzerrno bzerror bzerrstr bzflush bzopen bzread bzwrite ceil chdir '+ + 'checkdate checkdnsrr chgrp chmod chop chown chr chroot chunk_split class_exists '+ + 'closedir closelog copy cos cosh count count_chars date decbin dechex decoct '+ + 'deg2rad delete ebcdic2ascii echo empty end ereg ereg_replace eregi eregi_replace error_log '+ + 'error_reporting escapeshellarg escapeshellcmd eval exec exit exp explode extension_loaded '+ + 'feof fflush fgetc fgetcsv fgets fgetss file_exists file_get_contents file_put_contents '+ + 'fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype '+ + 'floatval flock floor flush fmod fnmatch fopen fpassthru fprintf fputcsv fputs fread fscanf '+ + 'fseek fsockopen fstat ftell ftok getallheaders getcwd getdate getenv gethostbyaddr gethostbyname '+ + 'gethostbynamel getimagesize getlastmod getmxrr getmygid getmyinode getmypid getmyuid getopt '+ + 'getprotobyname getprotobynumber getrandmax getrusage getservbyname getservbyport gettext '+ + 'gettimeofday gettype glob gmdate gmmktime ini_alter ini_get ini_get_all ini_restore ini_set '+ + 'interface_exists intval ip2long is_a is_array is_bool is_callable is_dir is_double '+ + 'is_executable is_file is_finite is_float is_infinite is_int is_integer is_link is_long '+ + 'is_nan is_null is_numeric is_object is_readable is_real is_resource is_scalar is_soap_fault '+ + 'is_string is_subclass_of is_uploaded_file is_writable is_writeable mkdir mktime nl2br '+ + 'parse_ini_file parse_str parse_url passthru pathinfo readlink realpath rewind rewinddir rmdir '+ + 'round str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split '+ + 'str_word_count strcasecmp strchr strcmp strcoll strcspn strftime strip_tags stripcslashes '+ + 'stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk '+ + 'strpos strptime strrchr strrev strripos strrpos strspn strstr strtok strtolower strtotime '+ + 'strtoupper strtr strval substr substr_compare'; + + var keywords = 'and or xor array as break case ' + + 'cfunction class const continue declare default die do else ' + + 'elseif enddeclare endfor endforeach endif endswitch endwhile ' + + 'extends for foreach function include include_once global if ' + + 'new old_function return static switch use require require_once ' + + 'var while abstract interface public implements extends private protected throw'; + + var constants = '__FILE__ __LINE__ __METHOD__ __FUNCTION__ __CLASS__'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\$\w+/g, css: 'variable' }, // variables + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // common functions + { regex: new RegExp(this.getKeywords(constants), 'gmi'), css: 'constants' }, // constants + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keyword + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.phpScriptTags); +}; + +SyntaxHighlighter.brushes.Php.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Php.aliases = ['php']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPlain.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPlain.js new file mode 100644 index 00000000..939f3b36 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPlain.js @@ -0,0 +1,35 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Plain = function() +{ +}; + +SyntaxHighlighter.brushes.Plain.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Plain.aliases = ['text', 'plain']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPowerShell.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPowerShell.js new file mode 100644 index 00000000..7c140dd7 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPowerShell.js @@ -0,0 +1,76 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.PowerShell = function() +{ + // Contributes by B.v.Zanten, Getronics + // http://confluence.atlassian.com/display/CONFEXT/New+Code+Macro + + var keywords = 'Add-Content Add-History Add-Member Add-PSSnapin Clear(-Content)? Clear-Item ' + + 'Clear-ItemProperty Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ' + + 'ConvertTo-Html ConvertTo-SecureString Copy(-Item)? Copy-ItemProperty Export-Alias ' + + 'Export-Clixml Export-Console Export-Csv ForEach(-Object)? Format-Custom Format-List ' + + 'Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command ' + + 'Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy ' + + 'Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member ' + + 'Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service ' + + 'Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object ' + + 'Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item ' + + 'Join-Path Measure-Command Measure-Object Move(-Item)? Move-ItemProperty New-Alias ' + + 'New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan ' + + 'New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location ' + + 'Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin ' + + 'Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service ' + + 'Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content ' + + 'Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug ' + + 'Set-Service Set-TraceSource Set(-Variable)? Sort-Object Split-Path Start-Service ' + + 'Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service ' + + 'Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where(-Object)? ' + + 'Write-Debug Write-Error Write(-Host)? Write-Output Write-Progress Write-Verbose Write-Warning'; + var alias = 'ac asnp clc cli clp clv cpi cpp cvpa diff epal epcsv fc fl ' + + 'ft fw gal gc gci gcm gdr ghy gi gl gm gp gps group gsv ' + + 'gsnp gu gv gwmi iex ihy ii ipal ipcsv mi mp nal ndr ni nv oh rdr ' + + 'ri rni rnp rp rsnp rv rvpa sal sasv sc select si sl sleep sort sp ' + + 'spps spsv sv tee cat cd cp h history kill lp ls ' + + 'mount mv popd ps pushd pwd r rm rmdir echo cls chdir del dir ' + + 'erase rd ren type % \\?'; + + this.regexList = [ + { regex: /#.*$/gm, css: 'comments' }, // one line comments + { regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // variables $Computer1 + { regex: /\-[a-zA-Z]+\b/g, css: 'keyword' }, // Operators -not -and -eq + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(alias), 'gmi'), css: 'keyword' } + ]; +}; + +SyntaxHighlighter.brushes.PowerShell.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.PowerShell.aliases = ['powershell', 'ps']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPython.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPython.js new file mode 100644 index 00000000..4965653e --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushPython.js @@ -0,0 +1,66 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Python = function() +{ + // Contributed by Gheorghe Milas and Ahmad Sherif + + var keywords = 'and assert break class continue def del elif else ' + + 'except exec finally for from global if import in is ' + + 'lambda not or pass print raise return try yield while'; + + var funcs = '__import__ abs all any apply basestring bin bool buffer callable ' + + 'chr classmethod cmp coerce compile complex delattr dict dir ' + + 'divmod enumerate eval execfile file filter float format frozenset ' + + 'getattr globals hasattr hash help hex id input int intern ' + + 'isinstance issubclass iter len list locals long map max min next ' + + 'object oct open ord pow print property range raw_input reduce ' + + 'reload repr reversed round set setattr slice sorted staticmethod ' + + 'str sum super tuple type type unichr unicode vars xrange zip'; + + var special = 'None True False self cls class_'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, + { regex: /^\s*@\w+/gm, css: 'decorator' }, + { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' }, + { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' }, + { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' }, + { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' }, + { regex: /\b\d+\.?\w*/g, css: 'value' }, + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' } + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.Python.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Python.aliases = ['py', 'python']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushRuby.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushRuby.js new file mode 100644 index 00000000..57ecfa48 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushRuby.js @@ -0,0 +1,57 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Ruby = function() +{ + // Contributed by Erik Peterson. + + var keywords = 'alias and BEGIN begin break case class def define_method defined do each else elsif ' + + 'END end ensure false for if in module new next nil not or raise redo rescue retry return ' + + 'self super then throw true undef unless until when while yield'; + + var builtins = 'Array Bignum Binding Class Continuation Dir Exception FalseClass File::Stat File Fixnum Fload ' + + 'Hash Integer IO MatchData Method Module NilClass Numeric Object Proc Range Regexp String Struct::TMS Symbol ' + + 'ThreadGroup Thread Time TrueClass'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\b[A-Z0-9_]+\b/g, css: 'constants' }, // constants + { regex: /:[a-z][A-Za-z0-9_]*/g, css: 'color2' }, // symbols + { regex: /(\$|@@|@)\w+/g, css: 'variable bold' }, // $global, @instance, and @@class variables + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(this.getKeywords(builtins), 'gm'), css: 'color1' } // builtins + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.Ruby.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Ruby.aliases = ['ruby', 'rails', 'ror', 'rb']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushScala.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushScala.js new file mode 100644 index 00000000..55d7f8a9 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushScala.js @@ -0,0 +1,53 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Scala = function() +{ + // Contributed by Yegor Jbanov and David Bernard. + + var keywords = 'val sealed case def true trait implicit forSome import match object null finally super ' + + 'override try lazy for var catch throw type extends class while with new final yield abstract ' + + 'else do if return protected private this package false'; + + var keyops = '[_:=><%#@]+'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // multi-line strings + { regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double-quoted string + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /0x[a-f0-9]+|\d+(\.\d+)?/gi, css: 'value' }, // numbers + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(keyops, 'gm'), css: 'keyword' } // scala keyword + ]; +} + +SyntaxHighlighter.brushes.Scala.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Scala.aliases = ['scala']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushSql.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushSql.js new file mode 100644 index 00000000..974df01f --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushSql.js @@ -0,0 +1,68 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Sql = function() +{ + var funcs = 'abs avg case cast coalesce convert count current_timestamp ' + + 'current_user day isnull left lower month nullif replace right ' + + 'session_user space substring sum system_user upper user year'; + + var keywords = 'absolute action add after alter as asc at authorization begin bigint ' + + 'binary bit by cascade char character check checkpoint close collate ' + + 'column commit committed connect connection constraint contains continue ' + + 'create cube current current_date current_time cursor database date ' + + 'deallocate dec decimal declare default delete desc distinct double drop ' + + 'dynamic else end end-exec escape except exec execute false fetch first ' + + 'float for force foreign forward free from full function global goto grant ' + + 'group grouping having hour ignore index inner insensitive insert instead ' + + 'int integer intersect into is isolation key last level load local max min ' + + 'minute modify move name national nchar next no numeric of off on only ' + + 'open option order out output partial password precision prepare primary ' + + 'prior privileges procedure public read real references relative repeatable ' + + 'restrict return returns revoke rollback rollup rows rule schema scroll ' + + 'second section select sequence serializable set size smallint static ' + + 'statistics table temp temporary then time timestamp to top transaction ' + + 'translation trigger true truncate uncommitted union unique update values ' + + 'varchar varying view when where with work'; + + var operators = 'all and any between cross in join like not null or outer some'; + + this.regexList = [ + { regex: /--(.*)$/gm, css: 'comments' }, // one line and multiline comments + { regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single quoted strings + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functions + { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword + ]; +}; + +SyntaxHighlighter.brushes.Sql.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Sql.aliases = ['sql']; + diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushVb.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushVb.js new file mode 100644 index 00000000..0b61f20a --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushVb.js @@ -0,0 +1,62 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ + +/* modified by Helixoft */ + +SyntaxHighlighter.brushes.Vb = function() +{ + var keywords = 'AddHandler AddressOf AndAlso Alias And Ansi As Assembly Auto ' + + 'Boolean ByRef Byte ByVal Call Case Catch CBool CByte CChar CDate ' + + 'CDec CDbl Char CInt Class CLng CObj Const CShort CSng CStr CType ' + + 'Date Decimal Declare Default Delegate Dim DirectCast Do Double Each ' + + 'Else ElseIf End Enum Erase Error Event Exit False Finally For Friend ' + + 'Function Get GetType GoSub GoTo Handles If Implements Imports In ' + + 'Inherits Integer Interface Is Let Lib Like Long Loop Me Mod Module ' + + 'MustInherit MustOverride MyBase MyClass Namespace New Next Not Nothing ' + + 'NotInheritable NotOverridable Object On Option Optional Or OrElse Out ' + + 'Overloads Overridable Overrides ParamArray Preserve Private Property ' + + 'Protected Public RaiseEvent ReadOnly ReDim REM RemoveHandler Resume ' + + 'Return Select Set Shadows Shared Short Single Static Step Stop String ' + + 'Structure Sub SyncLock Then Throw To True Try TypeOf Unicode Until ' + + 'Variant When While With WithEvents WriteOnly Xor'; + + this.regexList = [ + { regex: /\<.*?\>/gm, css: 'skipTag' }, // HTML tag, don't decorate, Helixoft + { regex: /'.*$/gm, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: /^\s*#.*$/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // vb keyword + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.Vb.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Vb.aliases = ['vb', 'vbnet']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushXml.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushXml.js new file mode 100644 index 00000000..199fa3b4 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shBrushXml.js @@ -0,0 +1,71 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.Xml = function() +{ + function process(match, regexInfo) + { + var constructor = SyntaxHighlighter.Match, + code = match[0], + tag = new XRegExp('(<|<)[\\s\\/\\?]*(?[:\\w-\\.]+)', 'xg').exec(code), + result = [] + ; + + if (match.attributes != null) + { + var attributes, + regex = new XRegExp('(? [\\w:\\-\\.]+)' + + '\\s*=\\s*' + + '(? ".*?"|\'.*?\'|\\w+)', + 'xg'); + + while ((attributes = regex.exec(code)) != null) + { + result.push(new constructor(attributes.name, match.index + attributes.index, 'color1')); + result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string')); + } + } + + if (tag != null) + result.push( + new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword') + ); + + return result; + } + + this.regexList = [ + { regex: new XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' }, // + { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // + { regex: new XRegExp('(<|<)[\\s\\/\\?]*(\\w+)(?.*?)[\\s\\/\\?]*(>|>)', 'sg'), func: process } + ]; +}; + +SyntaxHighlighter.brushes.Xml.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Xml.aliases = ['xml', 'xhtml', 'xslt', 'html']; diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shCore.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shCore.js new file mode 100644 index 00000000..5fed4860 --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shCore.js @@ -0,0 +1,30 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('c(!1q.2X){h 2X=l(){h p={6b:{"1s-R":"","84-2y":1,"83-2y-7W":I,"1I":v,"8d-89":I,"1H-2Q":4,"3g":I,"1w":I,"66":N,"8k-8l":I,"88":N,"5h-1p":I,"1L-1l":N},M:{4T:I,69:v,5l:16,5k:16,8B:N,8f:N,8s:"54",1f:{5q:"53 1g",5d:"9N 1g",5i:"9O 6q 6p",78:"9M C 9L 1V 9I 6p 9J",3t:"3t",6C:"?",1A:"2X\\n\\n",6T:"9K\'t 9P 2O D: ",7x:"9Q 9W\'t 9X D 1L-1l 9V: ",77:"<1L 9t=\\"2s://5x.6x.6B/9s/9x\\"><6z><9y 2s-9E=\\"9F-9D\\" 63=\\"1X/1L; 9C=9z-8\\" /><3i>9A 2X<33 1m=\\"39-9Y:9Z,an,ao,am-al;ai-3f:#aj;3f:#ak;39-2Q:ap;1X-6G:6u;\\">2X6O 2.1.ag (a5 15 6h)2s://6I.3ka3 a0 a1 f 1l, a2 8R 6q 8Q 8O 8W!8V C 8U 8X.8K 8N-6h 8M 8S."},8u:N},1r:{4Z:v,9o:v,3m:v,6f:{}},2d:{},8h:{9g:/\\/\\*[\\s\\S]*?\\*\\//3b,9d:/\\/\\/.*$/3b,9e:/#.*$/3b,9j:/"([^\\\\"\\n]|\\\\.)*"/g,9n:/\'([^\\\\\'\\n]|\\\\.)*\'/g,9m:/"([^\\\\"]|\\\\.)*"/g,8Y:/\'([^\\\\\']|\\\\.)*\'/g,9k:/(&X;|<)!--[\\s\\S]*?--(&Z;|>)/3b,43:/&X;\\w+:\\/\\/[\\w-.\\/?%&=@:;]*&Z;|\\w+:\\/\\/[\\w-.\\/?%&=@:;]*/g,9c:{G:/(&X;|<)\\?=?/g,1d:/\\?(&Z;|>)/g},93:{G:/(&X;|<)%=?/g,1d:/%(&Z;|>)/g},92:{G:/(&X;|<)\\s*1l.*?(&Z;|>)/4e,1d:/(&X;|<)\\/\\s*1l\\s*(&Z;|>)/4e}},1w:{1c:l(3O){h 3T=Q.22("3Y"),5s=p.1w.7d;3T.L="1w";D(h 30 1V 5s){h 6i=5s[30],5t=W 6i(3O),1Y=5t.1c();3O.6g[30]=5t;c(1Y==v){1J}c(7X(1Y)=="91"){1Y=p.1w.6m(1Y,3O.1k,30)}1Y.L+="5v "+30;3T.2p(1Y)}q 3T},6m:l(5L,7j,5K){h a=Q.22("a"),5N=a.1m,5D=p.M,5M=5D.5l,5J=5D.5k;a.27="#"+5K;a.3i=5L;a.5j=7j;a.76=5K;a.1Q=5L;c(40(5M)==N){5N.26=5M+"75"}c(40(5J)==N){5N.2e=5J+"75"}a.9l=l(e){97{p.1w.6M(f,e||1q.6Y,f.5j,f.76)}98(e){p.B.1A(e.6n)}q N};q a},6M:l(7i,7g,7b,7h,7f){h 5G=p.1r.6f[7b],5H;c(5G==v||(5H=5G.6g[7h])==v){q v}q 5H.2z(7i,7g,7f)},7d:{5q:l(5b){f.1c=l(){c(5b.V("66")!=I){q}q p.M.1f.5q};f.2z=l(5c,8T,8P){h A=5b.A;5c.7y.4p(5c);A.L=A.L.E("5O","")}},5d:l(6R){f.1c=l(){q p.M.1f.5d};f.2z=l(b1,bU,bV){h 3J=p.B.3d(6R.5g).E(/"+3J+"");2A.Q.4o()}},5i:l(64){h 3C,c2,6a=64.1k;f.1c=l(){h 2V=p.M;c(2V.69==v){q v}l 1E(56){h 5m="";D(h 5f 1V 56){5m+=""}q 5m};l 2i(5n){h 5p="";D(h 5o 1V 5n){5p+=" "+5o+"=\'"+5n[5o]+"\'"}q 5p};h 67={26:2V.5l,2e:2V.5k,1k:6a+"bY",4r:"bZ/x-71-6V",3i:p.M.1f.5i},5V={bE:"ay",bD:"bC",bA:"5j="+6a,c4:"N"},5U=2V.69,3x;c(/bG/i.1R(6K.7k)){3x="<4h"+2i({bH:"bM:bN-bL-bK-bI-bJ",c3:"2s://ck.cj.3k/cm/71/c9/6V/c8.c7#6O=9,0,0,0"})+2i(67)+">"+1E(5V)+1E({c6:5U})+""}F{3x=""}3C=Q.22("A");3C.1Q=3x;q 3C};f.2z=l(cf,ce,62){h 7c=62.cd;6U(7c){2K"7q":h 61=p.B.2T(p.B.3d(64.5g).E(/&X;/g,"<").E(/&Z;/g,">").E(/&aT;/g,"&"));c(1q.74){1q.74.aU("1X",61)}F{q p.B.2T(61)}2K"aR":p.B.1A(p.M.1f.78);2h;2K"aP":p.B.1A(62.6n);2h}}},aV:l(65){f.1c=l(){q p.M.1f.3t};f.2z=l(aW,bz,b0){h 1Z=Q.22("aZ"),1N=v;c(p.1r.3m!=v){Q.33.4p(p.1r.3m)}p.1r.3m=1Z;1Z.1m.aX="aY:aO;26:6r;2e:6r;G:-6j;4w:-6j;";Q.33.2p(1Z);1N=1Z.5Q.Q;6J(1N,1q.Q);1N.3D(""+65.A.1Q+"");1N.4o();1Z.5Q.4F();1Z.5Q.3t();l 6J(6N,6E){h 2I=6E.4O("4n");D(h i=0;i<2I.u;i++){c(2I[i].6y.6P()=="6A"&&/aE\\.1a$/.1R(2I[i].27)){6N.3D("<4n 4r=\\"1X/1a\\" 6y=\\"6A\\" 27=\\""+2I[i].27+"\\">")}}}}},az:l(aA){f.1c=l(){q p.M.1f.6C};f.2z=l(aF,aG){h 2A=p.B.4z("","4k",aM,aK,"7a=0"),1N=2A.Q;1N.3D(p.M.1f.77);1N.4o();2A.4F()}}}},B:{Y:l(49,73,3y){3y=3e.aH(3y||0,0);D(h i=3y;i<49.u;i++){c(49[i]==73){q i}}q-1},6d:l(72){q 72+3e.aI(3e.b2()*b3).2u()},6c:l(51,4L){h 3h={},1W;D(1W 1V 51){3h[1W]=51[1W]}D(1W 1V 4L){3h[1W]=4L[1W]}q 3h},80:l(4J){6U(4J){2K"I":q I;2K"N":q N}q 4J},4z:l(43,6W,4B,4H,2N){h x=(6X.26-4B)/2,y=(6X.2e-4H)/2;2N+=", G="+x+", 4w="+y+", 26="+4B+", 2e="+4H;2N=2N.E(/^,/,"");h 4E=1q.bk(43,6W,2N);4E.4F();q 4E},7C:l(1G,1T,1U){c(1G.6Z){1G["e"+1T+1U]=1U;1G[1T+1U]=l(){1G["e"+1T+1U](1q.6Y)};1G.6Z("bw"+1T,1G[1T+1U])}F{1G.bv(1T,1U,N)}},1A:l(z){1A(p.M.1f.1A+z)},4u:l(4N,6Q){h 2r=p.1r.4Z,3V=v;c(2r==v){2r={};D(h 2L 1V p.2d){h 42=p.2d[2L].bu;c(42==v){1J}p.2d[2L].R=2L.6P();D(h i=0;i<42.u;i++){2r[42[i]]=2L}}p.1r.4Z=2r}3V=p.2d[2r[4N]];c(3V==v&&6Q!=N){p.B.1A(p.M.1f.6T+4N)}q 3V},46:l(z,6S){h 2E=z.1P("\\n");D(h i=0;i<2E.u;i++){2E[i]=6S(2E[i])}q 2E.5A("\\n")},8C:l(z){q z.E(/^[ ]*[\\n]+|[\\n]*[ ]*$/g,"")},8H:l(z){h 3X,45={},4P=W U("^\\\\[(?<4c>(.*?))\\\\]$"),7e=W U("(?[\\\\w-]+)"+"\\\\s*:\\\\s*"+"(?<24>"+"[\\\\w-%#]+|"+"\\\\[.*?\\\\]|"+"\\".*?\\"|"+"\'.*?\'"+")\\\\s*;?","g");2j((3X=7e.T(z))!=v){h 2f=3X.24.E(/^[\'"]|[\'"]$/g,"");c(2f!=v&&4P.1R(2f)){h m=4P.T(2f);2f=m.4c.u>0?m.4c.1P(/\\s*,\\s*/):[]}45[3X.R]=2f}q 45},7K:l(z,1a){c(z==v||z.u==0||z=="\\n"){q z}z=z.E(/"+2l+""})}q z},7V:l(6l,6o){h 32=6l.2u();2j(32.u<6o){32="0"+32}q 32},6k:l(){h 3w=Q.22("A"),3B,3o=0,44=Q.33,1k=p.B.6d("6k"),36="",4U="";3w.1Q=36+"6e\\">"+36+"1p\\">"+36+"2y\\">"+36+"63"+"\\"><4G 1s=\\"b5\\"><4G 1k=\\""+1k+"\\">&2B;"+4U+4U+2Y+2Y+2Y+2Y;44.2p(3w);3B=Q.bb(1k);c(/bg/i.1R(6K.7k)){h 6v=1q.be(3B,v);3o=85(6v.bc("26"))}F{3o=3B.bd}44.4p(3w);q 3o},8b:l(79,6s){h 1H="";D(h i=0;i<6s;i++){1H+=" "}q 79.E(/\\t/g,1H)},8a:l(2Z,4f){h bF=2Z.1P("\\n"),1H="\\t",4d="";D(h i=0;i<50;i++){4d+=" "}l 8x(3s,18,8A){q 3s.29(0,18)+4d.29(0,8A)+3s.29(18+1,3s.u)};2Z=p.B.46(2Z,l(20){c(20.Y(1H)==-1){q 20}h 18=0;2j((18=20.Y(1H))!=-1){h 8w=4f-18%4f;20=8x(20,18,8w)}q 20});q 2Z},3d:l(z){h br=/|&X;br\\s*\\/?&Z;/4e;c(p.M.8B==I){z=z.E(br,"\\n")}c(p.M.8f==I){z=z.E(br,"")}q z},2G:l(z){q z.E(/^\\s+|\\s+$/g,"")},2T:l(z){h 21=p.B.3d(z).1P("\\n"),bf=W bh(),8D=/^\\s*/,2a=ba;D(h i=0;i<21.u&&2a>0;i++){h 4x=21[i];c(p.B.2G(4x).u==0){1J}h 4I=8D.T(4x);c(4I==v){q z}2a=3e.2a(4I[0].u,2a)}c(2a>0){D(h i=0;i<21.u;i++){21[i]=21[i].29(2a)}}q 21.5A("\\n")},82:l(35,31){c(35.H<31.H){q-1}F{c(35.H>31.H){q 1}F{c(35.u<31.u){q-1}F{c(35.u>31.u){q 1}}}}q 0},2D:l(8q,34){l 8n(4D,8r){q[W p.4v(4D[0],4D.H,8r.1a)]};h b4=0,4s=v,3L=[],8p=34.4X?34.4X:8n;2j((4s=34.3K.T(8q))!=v){3L=3L.2t(8p(4s,34))}q 3L},8m:l(8o){h X="&X;",Z="&Z;";q 8o.E(p.8h.43,l(m){h 4j="",47="";c(m.Y(X)==0){47=X;m=m.3U(X.u)}c(m.Y(Z)==m.u-Z.u){m=m.3U(0,m.u-Z.u);4j=Z}q 47+""+m+""+4j})},8v:l(){h 3N=Q.4O("1l"),4i=[];D(h i=0;i<3N.u;i++){c(3N[i].4r=="6e"){4i.K(3N[i])}}q 4i},8I:l(4b){h 4q="",1v=p.B.2G(4b),3R=N;c(1v.Y(4q)==0){1v=1v.3U(4q.u);3R=I}c(1v.Y(3S)==1v.u-3S.u){1v=1v.3U(0,1v.u-3S.u);3R=I}q 3R?1v:4b}},1I:l(8E,4R){l 8e(4g){h 4Q=[];D(h i=0;i<4g.u;i++){4Q.K(4g[i])}q 4Q};h 2q=4R?[4R]:8e(Q.4O(p.M.8s)),8J="1Q",2k=v,4S=p.M;c(4S.4T){2q=2q.2t(p.B.8v())}c(2q.u===0){q}D(h i=0;i<2q.u;i++){h 2M=2q[i],28=p.B.8H(2M.L),1D,2W,25;28=p.B.6c(8E,28);1D=28["2O"];c(1D==v){1J}c(28["1L-1l"]=="I"||p.6b["1L-1l"]==I){2k=W p.4a(1D);1D="b9"}F{h 3P=p.B.4u(1D);c(3P){1D=3P.R;2k=W 3P()}F{1J}}2W=2M[8J];c(4S.4T){2W=p.B.8I(2W)}28["2O-R"]=1D;2k.1I(2W,28);25=2k.A;c(p.M.8u){25=Q.22("bj");25.24=2k.A.1Q;25.1m.26="bt";25.1m.2e="bx"}2M.7y.bs(25,2M)}},bq:l(7H){p.B.7C(1q,"bl",l(){p.1I(7H)})}};p.4v=l(4A,7G,1a){f.24=4A;f.H=7G;f.u=4A.u;f.1a=1a;f.5Y=v};p.4v.14.2u=l(){q f.24};p.4a=l(4K){h 3z=p.B.4u(4K),2g,4W=W p.2d.bm(),bn=v;c(3z==v){q}2g=W 3z();f.4m=4W;c(2g.3I==v){p.B.1A(p.M.1f.7x+4K);q}4W.59.K({3K:2g.3I.C,4X:7p});l 3A(4Y,7w){D(h j=0;j<4Y.u;j++){4Y[j].H+=7w}};l 7p(19,bp){h 7n=19.C,1o=[],4M=2g.59,7l=19.H+19.G.u,2U=2g.3I,1n;D(h i=0;i<4M.u;i++){1n=p.B.2D(7n,4M[i]);3A(1n,7l);1o=1o.2t(1n)}c(2U.G!=v&&19.G!=v){1n=p.B.2D(19.G,2U.G);3A(1n,19.H);1o=1o.2t(1n)}c(2U.1d!=v&&19.1d!=v){1n=p.B.2D(19.1d,2U.1d);3A(1n,19.H+19[0].bo(19.1d));1o=1o.2t(1n)}D(h j=0;j<1o.u;j++){1o[j].5Y=3z.R}q 1o}};p.4a.14.1I=l(7t,7s){f.4m.1I(7t,7s);f.A=f.4m.A};p.7I=l(){};p.7I.14={V:l(7J,7Z){h 4l=f.1E[7J];q p.B.80(4l==v?7Z:4l)},1c:l(7Y){q Q.22(7Y)},8i:l(2F,81){h 3u=[];c(2F!=v){D(h i=0;i<2F.u;i++){c(7X(2F[i])=="4h"){3u=3u.2t(p.B.2D(81,2F[i]))}}}q 3u.aB(p.B.82)},86:l(){h 23=f.2C;D(h i=0;i<23.u;i++){c(23[i]===v){1J}h 2x=23[i],4V=2x.H+2x.u;D(h j=i+1;j<23.u&&23[i]!==v;j++){h 1S=23[j];c(1S===v){1J}F{c(1S.H>4V){2h}F{c(1S.H==2x.H&&1S.u>2x.u){f.2C[i]=v}F{c(1S.H>=2x.H&&1S.H<4V){f.2C[j]=v}}}}}}},8t:l(2H){h 3r=2H.1P(/\\n/g),3n=85(f.V("84-2y")),2v=f.V("83-2y-7W"),7N=f.V("1I",[]),7U=f.V("3g");2H="";c(2v==I){2v=(3n+3r.u-1).2u().u}F{c(40(2v)==I){2v=0}}D(h i=0;i<3r.u;i++){h 1x=3r[i],60=/^(&2B;|\\s)+/.T(1x),52="aN"+(i%2==0?1:2),7F=p.B.7V(3n+i,2v),7P=p.B.Y(7N,(3n+i).2u())!=-1,2S=v;c(60!=v){2S=60[0].2u();1x=1x.29(2S.u)}1x=p.B.2G(1x);c(1x.u==0){1x="&2B;"}c(7P){52+=" aQ"}2H+=""+"<7L>"+"<7T>"+(7U?"<3F 1s=\\"aS\\">"+7F+"":"")+"<3F 1s=\\"63\\">"+(2S!=v?""+2S.E(" ","&2B;")+"":"")+1x+""+""+""+""}q 2H},8y:l(5X,5T){h 18=0,3c="",3a=p.B.7K,5S=f.V("2O-R","");l 5W(5Z){h 5R=5Z?(5Z.5Y||5S):5S;q 5R?5R+" ":""};D(h i=0;i<5T.u;i++){h 1y=5T[i],3G;c(1y===v||1y.u===0){1J}3G=5W(1y);3c+=3a(5X.29(18,1y.H-18),3G+"7O")+3a(1y.24,3G+1y.1a);18=1y.H+1y.u}3c+=3a(5X.29(18),5W()+"7O");q 3c},1I:l(C,7E){h cb=p.M,1r=p.1r,A,ci,3Z,ch="cn";f.1E={};f.A=v;f.1p=v;f.C=v;f.1i=v;f.6g={};f.1k=p.B.6d("cl");1r.6f[f.1k]=f;c(C===v){C=""}f.1E=p.B.6c(p.6b,7E||{});c(f.V("88")==I){f.1E.1w=f.1E.3g=N}f.A=A=f.1c("3Y");f.1p=f.1c("3Y");f.1p.L="1p";L="6e";A.1k=f.1k;c(f.V("66")){L+=" 5O"}c(f.V("3g")==N){L+=" bB"}c(f.V("5h-1p")==N){f.1p.L+=" bO-5h"}L+=" "+f.V("1s-R");L+=" "+f.V("2O-R");A.L=L;f.5g=C;f.C=p.B.8C(C).E(/\\r/g," ");3Z=f.V("1H-2Q");f.C=f.V("8d-89")==I?p.B.8a(f.C,3Z):p.B.8b(f.C,3Z);f.C=p.B.2T(f.C);c(f.V("1w")){f.1i=f.1c("3Y");f.1i.L="1i";f.1i.2p(p.1w.1c(f));A.2p(f.1i);h 1i=f.1i;l 58(){1i.L=1i.L.E("53","")};A.c0=l(){58();1i.L+=" 53"};A.bX=l(){58()}}A.2p(f.1p);f.2C=f.8i(f.59,f.C);f.86();C=f.8y(f.C,f.2C);C=f.8t(p.B.2G(C));c(f.V("8k-8l")){C=p.B.8m(C)}f.1p.1Q=C},9f:l(z){z=z.E(/^\\s+|\\s+$/g,"").E(/\\s+/g,"|");q"\\\\b(?:"+z+")\\\\b"},9i:l(2J){f.3I={G:{3K:2J.G,1a:"1l"},1d:{3K:2J.1d,1a:"1l"},C:W U("(?"+2J.G.1g+")"+"(?.*?)"+"(?<1d>"+2J.1d.1g+")","96")}}};q p}()}c(!1q.U){(l(){h 2w={T:10.14.T,87:5I.14.87,E:5I.14.E,1P:5I.14.1P},1F={13:/(?:[^\\\\([#\\s.]+|\\\\(?!k<[\\w$]+>|[7z]{[^}]+})[\\S\\s]?|\\((?=\\?(?!#|<[\\w$]+>)))+|(\\()(?:\\?(?:(#)[^)]*\\)|<([$\\w]+)>))?|\\\\(?:k<([\\w$]+)>|[7z]{([^}]+)})|(\\[\\^?)|([\\S\\s])/g,99:/(?:[^$]+|\\$(?![1-9$&`\']|{[$\\w]+}))+|\\$(?:([1-9]\\d*|[$&`\'])|{([$\\w]+)})/g,37:/^(?:\\s+|#.*)+/,5B:/^(?:[?*+]|{\\d+(?:,\\d*)?})/,7Q:/&&\\[\\^?/g,7S:/]/g},7o=l(5C,5v,5u){D(h i=5u||0;i<5C.u;i++){c(5C[i]===5v){q i}}q-1},8G=/()??/.T("")[1]!==3j,3q={};U=l(1e,1O){c(1e 68 10){c(1O!==3j){3H 7r("4y\'t 4C 9a 8z 95 7u 10 5u 94")}q 1e.3E()}h 1O=1O||"",7R=1O.Y("s")>-1,7M=1O.Y("x")>-1,5z=N,3v=[],1b=[],13=1F.13,J,cc,38,3M,3p;13.O=0;2j(J=2w.T.2n(13,1e)){c(J[2]){c(!1F.5B.1R(1e.17(13.O))){1b.K("(?:)")}}F{c(J[1]){3v.K(J[3]||v);c(J[3]){5z=I}1b.K("(")}F{c(J[4]){3M=7o(3v,J[4]);1b.K(3M>-1?"\\\\"+(3M+1)+(40(1e.5w(13.O))?"":"(?:)"):J[0])}F{c(J[5]){1b.K(3q.7m?3q.7m.7q(J[5],J[0].5w(1)==="P"):J[0])}F{c(J[6]){c(1e.5w(13.O)==="]"){1b.K(J[6]==="["?"(?!)":"[\\\\S\\\\s]");13.O++}F{cc=U.8g("&&"+1e.17(J.H),1F.7Q,1F.7S,"",{7D:"\\\\"})[0];1b.K(J[6]+cc+"]");13.O+=cc.u+1}}F{c(J[7]){c(7R&&J[7]==="."){1b.K("[\\\\S\\\\s]")}F{c(7M&&1F.37.1R(J[7])){38=2w.T.2n(1F.37,1e.17(13.O-1))[0].u;c(!1F.5B.1R(1e.17(13.O-1+38))){1b.K("(?:)")}13.O+=38-1}F{1b.K(J[7])}}}F{1b.K(J[0])}}}}}}}3p=10(1b.5A(""),2w.E.2n(1O,/[9B]+/g,""));3p.1C={1g:1e,2m:5z?3v:v};q 3p};U.9q=l(R,o){3q[R]=o};10.14.T=l(z){h 1h=2w.T.2n(f,z),R,i,5y;c(1h){c(8G&&1h.u>1){5y=W 10("^"+f.1g+"$(?!\\\\s)",f.5E());2w.E.2n(1h[0],5y,l(){D(i=1;i<8j.u-2;i++){c(8j[i]===3j){1h[i]=3j}}})}c(f.1C&&f.1C.2m){D(i=1;i<1h.u;i++){R=f.1C.2m[i-1];c(R){1h[R]=1h[i]}}}c(f.3l&&f.O>(1h.H+1h[0].u)){f.O--}}q 1h}})()}10.14.5E=l(){q(f.3l?"g":"")+(f.av?"i":"")+(f.8F?"m":"")+(f.37?"x":"")+(f.a4?"y":"")};10.14.3E=l(7A){h 5F=W U(f.1g,(7A||"")+f.5E());c(f.1C){5F.1C={1g:f.1C.1g,2m:f.1C.2m?f.1C.2m.17(0):v}}q 5F};10.14.2n=l(90,z){q f.T(z)};10.14.9b=l(9h,8c){q f.T(8c[0])};U.5P=l(57,5e){h 55="/"+57+"/"+(5e||"");q U.5P[55]||(U.5P[55]=W U(57,5e))};U.41=l(z){q z.E(/[-[\\]{}()*+?.\\\\^$|,#\\s]/g,"\\\\$&")};U.8g=l(z,G,11,1j,2R){h 2R=2R||{},2P=2R.7D,12=2R.c5,1j=1j||"",5r=1j.Y("g")>-1,70=1j.Y("i")>-1,7v=1j.Y("m")>-1,5a=1j.Y("y")>-1,1j=1j.E(/y/g,""),G=G 68 10?(G.3l?G:G.3E("g")):W U(G,"g"+1j),11=11 68 10?(11.3l?11:11.3E("g")):W U(11,"g"+1j),1M=[],2o=0,1u=0,1t=0,1z=0,2b,2c,1B,1K,3Q,48;c(2P){c(2P.u>1){3H aC("4y\'t 4C aL aJ 7u 41 7B")}c(7v){3H 7r("4y\'t 4C 41 7B 8z bi b8 8F b7")}3Q=U.41(2P);48=W 10("^(?:"+3Q+"[\\\\S\\\\s]|(?:(?!"+G.1g+"|"+11.1g+")[^"+3Q+"])+)+",70?"i":"")}2j(I){G.O=11.O=1t+(2P?(48.T(z.17(1t))||[""])[0].u:0);1B=G.T(z);1K=11.T(z);c(1B&&1K){c(1B.H<=1K.H){1K=v}F{1B=v}}c(1B||1K){1u=(1B||1K).H;1t=(1B?G:11).O}F{c(!2o){2h}}c(5a&&!2o&&1u>1z){2h}c(1B){c(!2o++){2b=1u;2c=1t}}F{c(1K&&2o){c(!--2o){c(12){c(12[0]&&2b>1z){1M.K([12[0],z.17(1z,2b),1z,2b])}c(12[1]){1M.K([12[1],z.17(2b,2c),2b,2c])}c(12[2]){1M.K([12[2],z.17(2c,1u),2c,1u])}c(12[3]){1M.K([12[3],z.17(1u,1t),1u,1t])}}F{1M.K(z.17(2c,1u))}1z=1t;c(!5r){2h}}}F{G.O=11.O=0;3H bP("8L aq 9r ar 8Z")}}c(1u===1t){1t++}}c(5r&&!5a&&12&&12[0]&&z.u>1z){1M.K([12[0],z.17(1z),1z,z.u])}G.O=11.O=0;q 1M};',62,768,'||||||||||||if|||this||var||||function||||sh|return||||length|null||||str|div|utils|code|for|replace|else|left|index|true|_121|push|className|config|false|lastIndex||document|name||exec|XRegExp|getParam|new|lt|indexOf|gt|RegExp|_139|vN|part|prototype|||slice|pos|_d3|css|_11f|create|right|_119|strings|source|_129|bar|_13a|id|script|style|_da|_d6|lines|window|vars|class|_145|_144|_b5|toolbar|_f4|_103|_146|alert|_149|_x|_c3|params|lib|obj|tab|highlight|continue|_14a|html|_142|doc|_11a|split|innerHTML|test|_ec|_5a|_5b|in|_4f|text|_8|_3c|_91|_98|createElement|_e7|value|_c5|width|href|_c2|substr|min|_147|_148|brushes|height|_6e|_cd|break|attributes|while|_be|_75|captureNames|call|_143|appendChild|_bc|_5f|http|concat|toString|_f0|real|_e9|line|execute|wnd|nbsp|matches|getMatches|_66|_e3|trim|_ed|_40|_10f|case|_61|_c1|_55|brush|_13c|size|_13b|_f9|unindent|_d9|_28|_c4|SyntaxHighlighter|_81|_88|_5|m2|_7a|body|_a2|m1|_80|extended|len|font|_fe|gm|_fd|fixInputString|Math|color|gutter|_4e|title|undefined|com|global|printFrame|_ef|_7d|_125|_118|_ee|_8e|print|_e5|_11e|_7b|_32|_49|_cc|offsetMatches|_7c|_25|write|addFlags|td|_104|throw|htmlScript|_22|regex|_a7|_124|_af|_2|_c6|_14b|_b6|_b4|_3|substring|_60|_76|_6a|DIV|_10b|isNaN|escape|_62|url|_7e|_6b|eachLine|_ae|esc|_47|HtmlScript|_b2|values|_8c|gi|_89|_b9|object|_b0|_ad|_blank|_e1|xmlBrush|link|close|removeChild|_b3|type|_a6|_73|findBrush|Match|top|_9d|can|popup|_c8|_53|supply|_a3|win|focus|span|_54|_9e|_50|_cb|_4d|_d7|_5d|getElementsByTagName|_6c|_ba|_b8|_bf|useScriptTags|_82|_ea|_ce|func|_d0|discoveredBrushes||_4c|_f6|show|pre|key|_29|_133|hide|regexList|_141|_19|_1a|viewSource|_134|_2b|originalCode|wrap|copyToClipboard|highlighterId|toolbarItemHeight|toolbarItemWidth|_2a|_2c|_2e|_2d|expandSource|_13e|_4|_7|from|item|charAt|www|r2|_11d|join|quantifier|_113|_e|getNativeFlags|_12e|_17|_18|String|_10|_b|_9|_f|_d|collapsed|cache|contentWindow|_101|_ff|_fb|swf|_30|getBrushNameCss|_fa|brushName|_100|_f5|_37|_35|content|_24|_38|collapse|_2f|instanceof|clipboardSwf|_27|defaults|merge|guid|syntaxhighlighter|highlighters|toolbarCommands|2009|_6|500px|measureSpace|_78|createButton|message|_79|clipboard|to|0px|_85|decoration|center|_83|margin|w3|rel|head|stylesheet|org|help|xhtml1|_3f|0099FF|align|DTD|alexgorbatchev|copyStyles|navigator|none|executeCommand|_3e|version|toLowerCase|_5e|_1e|_65|noBrush|switch|flash|_52|screen|event|attachEvent|_13f|shockwave|_4b|_48|clipboardData|px|commandName|aboutDialog|copyToClipboardConfirmation|_84|scrollbars|_14|_36|items|_6d|_16|_13|_15|_12|_a|userAgent|_d8|unicode|_d5|_112|process|get|TypeError|_de|_dd|one|_140|_d1|brushNotHtmlScript|parentNode|pP|_12d|character|addEvent|escapeChar|_106|_f7|_c9|_c7|Highlighter|_df|decorate|table|_11c|_f1|plain|_f8|classLeft|_11b|classRight|tr|_f2|padNumber|numbers|typeof|_e2|_e0|toBoolean|_e4|matchesSortCallback|pad|first|parseInt|removeNestedMatches|match|light|tabs|processSmartTabs|processTabs|args|smart|toArray|stripBrs|matchRecursive|regexLib|findMatches|arguments|auto|links|processUrls|defaultAdd|_a9|_a8|_a1|_a4|tagName|createDisplayLines|debug|getSyntaxHighlighterScriptTags|_93|insertSpaces|processMatches|when|_90|bloggerMode|trimFirstAndLastLines|_9a|_b7|multiline|_117|parseParams|stripCData|_bd|Copyright|subject|Alex|2004|development|_1c|keep|donate|Gorbatchev|_1b|syntax|JavaScript|active|highlighter|multiLineSingleQuotedString|delimiters|_12f|string|scriptScriptTags|aspScriptTags|another|constructing|sgi|try|catch|replaceVar|flags|apply|phpScriptTags|singleLineCComments|singleLinePerlComments|getKeywords|multiLineCComments|_131|forHtmlScript|doubleQuotedString|xmlComments|onclick|multiLineDoubleQuotedString|singleQuotedString|spaceWidth|bottom|addPlugin|contains|1999|xmlns|dtd|TR|transitional|xhtml|meta|utf|About|sx|charset|Type|equiv|Content|EN|Transitional|your|now|Can|is|The|view|copy|find|Brush|PUBLIC|W3C|XHTML|DOCTYPE|option|wasn|configured|family|Geneva|you|like|please|If|sticky|October|target|https|paypal|_s|xclick|hosted_button_id|cmd|webscr|cgi|bin|364|4em|background|fff|000|serif|sans|Arial|Helvetica|1em|data|unbalanced|75em|large|xx|ignoreCase|3em|2930402|always|about|_42|sort|SyntaxError|printing|shCore|_43|_44|max|round|than|250|more|500|alt|absolute|error|highlighted|ok|number|amp|setData|printSource|_39|cssText|position|IFRAME|_3b|_1f|random|1000000|_a5|block|CDATA|flag|the|htmlscript|1000|getElementById|getPropertyValue|offsetWidth|getComputedStyle|_99|opera|Array|using|textarea|open|load|Xml|_cf|lastIndexOf|_d4|all||replaceChild|70em|aliases|addEventListener|on|30em|spaces|_3a|flashVars|nogutter|transparent|wmode|allowScriptAccess|_8a|msie|classid|96b8|444553540000|11cf|ae6d|clsid|d27cdb6e|no|Error|location|resizable|400|750|_20|_21|menubar|onmouseout|_clipboard|application|onmouseover|param|_26|codebase|menu|valueNames|movie|cab|swflash|cabs|embed|conf||command|_34|_33|src|_10c|_10a|macromedia|download|highlighter_|pub|important'.split('|'),0,{})) diff --git a/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shCore_helixoft.js b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shCore_helixoft.js new file mode 100644 index 00000000..5893060a --- /dev/null +++ b/API_NetFramework/VSdoc/SyntaxHighlighter/scripts/shCore_helixoft.js @@ -0,0 +1,2085 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.364 (October 15 2009) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ + + /* modified by Helixoft */ + +// +// Begin anonymous function. This is used to contain local scope variables without polutting global scope. +// +if (!window.SyntaxHighlighter) var SyntaxHighlighter = function() { + +// Shortcut object which will be assigned to the SyntaxHighlighter variable. +// This is a shorthand for local reference in order to avoid long namespace +// references to SyntaxHighlighter.whatever... +var sh = { + defaults : { + /** Additional CSS class names to be added to highlighter elements. */ + 'class-name' : '', + + /** First line number. */ + 'first-line' : 1, + + /** + * Pads line numbers. Possible values are: + * + * false - don't pad line numbers. + * true - automaticaly pad numbers with minimum required number of leading zeroes. + * [int] - length up to which pad line numbers. + */ + 'pad-line-numbers' : true, + + /** Lines to highlight. */ + 'highlight' : null, + + /** Enables or disables smart tabs. */ + 'smart-tabs' : false, // helixoft change + + /** Gets or sets tab size. */ + 'tab-size' : 4, + + /** Enables or disables gutter. */ + 'gutter' : false, // helixoft change + + /** Enables or disables toolbar. */ + 'toolbar' : false, // helixoft change + + /** Forces code view to be collapsed. */ + 'collapse' : false, + + /** Enables or disables automatic links. */ + 'auto-links' : false, // helixoft change + + /** Gets or sets light mode. Equavalent to turning off gutter and toolbar. */ + 'light' : false, + + /** Enables or disables automatic line wrapping. */ + 'wrap-lines' : false, // helixoft change + + 'html-script' : false + }, + + config : { + /** Enables use of tags. */ + scriptScriptTags : { left: /(<|<)\s*script.*?(>|>)/gi, right: /(<|<)\/\s*script\s*(>|>)/gi } + }, + + toolbar : { + /** + * Creates new toolbar for a highlighter. + * @param {Highlighter} highlighter Target highlighter. + */ + create : function(highlighter) + { + var div = document.createElement('DIV'), + items = sh.toolbar.items + ; + + div.className = 'toolbar'; + + for (var name in items) + { + var constructor = items[name], + command = new constructor(highlighter), + element = command.create() + ; + + highlighter.toolbarCommands[name] = command; + + if (element == null) + continue; + + if (typeof(element) == 'string') + element = sh.toolbar.createButton(element, highlighter.id, name); + + element.className += 'item ' + name; + div.appendChild(element); + } + + return div; + }, + + /** + * Create a standard anchor button for the toolbar. + * @param {String} label Label text to display. + * @param {String} highlighterId Highlighter ID that this button would belong to. + * @param {String} commandName Command name that would be executed. + * @return {Element} Returns an 'A' element. + */ + createButton : function(label, highlighterId, commandName) + { + var a = document.createElement('a'), + style = a.style, + config = sh.config, + width = config.toolbarItemWidth, + height = config.toolbarItemHeight + ; + + a.href = '#' + commandName; + a.title = label; + a.highlighterId = highlighterId; + a.commandName = commandName; + a.innerHTML = label; + + if (isNaN(width) == false) + style.width = width + 'px'; + + if (isNaN(height) == false) + style.height = height + 'px'; + + a.onclick = function(e) + { + try + { + sh.toolbar.executeCommand( + this, + e || window.event, + this.highlighterId, + this.commandName + ); + } + catch(e) + { + sh.utils.alert(e.message); + } + + return false; + }; + + return a; + }, + + /** + * Executes a toolbar command. + * @param {Element} sender Sender element. + * @param {MouseEvent} event Original mouse event object. + * @param {String} highlighterId Highlighter DIV element ID. + * @param {String} commandName Name of the command to execute. + * @return {Object} Passes out return value from command execution. + */ + executeCommand : function(sender, event, highlighterId, commandName, args) + { + var highlighter = sh.vars.highlighters[highlighterId], + command + ; + + if (highlighter == null || (command = highlighter.toolbarCommands[commandName]) == null) + return null; + + return command.execute(sender, event, args); + }, + + /** Collection of toolbar items. */ + items : { + expandSource : function(highlighter) + { + this.create = function() + { + if (highlighter.getParam('collapse') != true) + return; + + return sh.config.strings.expandSource; + }; + + this.execute = function(sender, event, args) + { + var div = highlighter.div; + + sender.parentNode.removeChild(sender); + div.className = div.className.replace('collapsed', ''); + }; + }, + + /** + * Command to open a new window and display the original unformatted source code inside. + */ + viewSource : function(highlighter) + { + this.create = function() + { + return sh.config.strings.viewSource; + }; + + this.execute = function(sender, event, args) + { + var code = sh.utils.fixInputString(highlighter.originalCode).replace(/' + code + ''); + wnd.document.close(); + }; + }, + + /** + * Command to copy the original source code in to the clipboard. + * Uses Flash method if clipboardSwf is configured. + */ + copyToClipboard : function(highlighter) + { + var flashDiv, flashSwf, + highlighterId = highlighter.id + ; + + this.create = function() + { + var config = sh.config; + + // disable functionality if running locally + if (config.clipboardSwf == null) + return null; + + function params(list) + { + var result = ''; + + for (var name in list) + result += ""; + + return result; + }; + + function attributes(list) + { + var result = ''; + + for (var name in list) + result += " " + name + "='" + list[name] + "'"; + + return result; + }; + + var args1 = { + width : config.toolbarItemWidth, + height : config.toolbarItemHeight, + id : highlighterId + '_clipboard', + type : 'application/x-shockwave-flash', + title : sh.config.strings.copyToClipboard + }, + + // these arguments are used in IE's collection + args2 = { + allowScriptAccess : 'always', + wmode : 'transparent', + flashVars : 'highlighterId=' + highlighterId, + menu : 'false' + }, + swf = config.clipboardSwf, + html + ; + + if (/msie/i.test(navigator.userAgent)) + { + html = '' + + params(args2) + + params({ movie : swf }) + + '' + ; + } + else + { + html = '' + ; + } + + flashDiv = document.createElement('div'); + flashDiv.innerHTML = html; + + return flashDiv; + }; + + this.execute = function(sender, event, args) + { + var command = args.command; + + switch (command) + { + case 'get': + var code = sh.utils.unindent( + sh.utils.fixInputString(highlighter.originalCode) + .replace(/</g, '<') + .replace(/>/g, '>') + .replace(/&/g, '&') + ); + + if(window.clipboardData) + // will fall through to the confirmation because there isn't a break + window.clipboardData.setData('text', code); + else + return sh.utils.unindent(code); + + case 'ok': + sh.utils.alert(sh.config.strings.copyToClipboardConfirmation); + break; + + case 'error': + sh.utils.alert(args.message); + break; + } + }; + }, + + /** Command to print the colored source code. */ + printSource : function(highlighter) + { + this.create = function() + { + return sh.config.strings.print; + }; + + this.execute = function(sender, event, args) + { + var iframe = document.createElement('IFRAME'), + doc = null + ; + + // make sure there is never more than one hidden iframe created by SH + if (sh.vars.printFrame != null) + document.body.removeChild(sh.vars.printFrame); + + sh.vars.printFrame = iframe; + + // this hides the iframe + iframe.style.cssText = 'position:absolute;width:0px;height:0px;left:-500px;top:-500px;'; + + document.body.appendChild(iframe); + doc = iframe.contentWindow.document; + + copyStyles(doc, window.document); + doc.write('
' + highlighter.div.innerHTML + '
'); + doc.close(); + + iframe.contentWindow.focus(); + iframe.contentWindow.print(); + + function copyStyles(destDoc, sourceDoc) + { + var links = sourceDoc.getElementsByTagName('link'); + + for(var i = 0; i < links.length; i++) + if(links[i].rel.toLowerCase() == 'stylesheet' && /shCore\.css$/.test(links[i].href)) + destDoc.write(''); + }; + }; + }, + + /** Command to display the about dialog window. */ + about : function(highlighter) + { + this.create = function() + { + return sh.config.strings.help; + }; + + this.execute = function(sender, event) + { + var wnd = sh.utils.popup('', '_blank', 500, 250, 'scrollbars=0'), + doc = wnd.document + ; + + doc.write(sh.config.strings.aboutDialog); + doc.close(); + wnd.focus(); + }; + } + } + }, + + utils : { + /** + * Finds an index of element in the array. + * @ignore + * @param {Object} searchElement + * @param {Number} fromIndex + * @return {Number} Returns index of element if found; -1 otherwise. + */ + indexOf : function(array, searchElement, fromIndex) + { + fromIndex = Math.max(fromIndex || 0, 0); + + for (var i = fromIndex; i < array.length; i++) + if(array[i] == searchElement) + return i; + + return -1; + }, + + /** + * Generates a unique element ID. + */ + guid : function(prefix) + { + return prefix + Math.round(Math.random() * 1000000).toString(); + }, + + /** + * Merges two objects. Values from obj2 override values in obj1. + * Function is NOT recursive and works only for one dimensional objects. + * @param {Object} obj1 First object. + * @param {Object} obj2 Second object. + * @return {Object} Returns combination of both objects. + */ + merge: function(obj1, obj2) + { + var result = {}, name; + + for (name in obj1) + result[name] = obj1[name]; + + for (name in obj2) + result[name] = obj2[name]; + + return result; + }, + + /** + * Attempts to convert string to boolean. + * @param {String} value Input string. + * @return {Boolean} Returns true if input was "true", false if input was "false" and value otherwise. + */ + toBoolean: function(value) + { + switch (value) + { + case "true": + return true; + + case "false": + return false; + } + + return value; + }, + + /** + * Opens up a centered popup window. + * @param {String} url URL to open in the window. + * @param {String} name Popup name. + * @param {int} width Popup width. + * @param {int} height Popup height. + * @param {String} options window.open() options. + * @return {Window} Returns window instance. + */ + popup: function(url, name, width, height, options) + { + var x = (screen.width - width) / 2, + y = (screen.height - height) / 2 + ; + + options += ', left=' + x + + ', top=' + y + + ', width=' + width + + ', height=' + height + ; + options = options.replace(/^,/, ''); + + var win = window.open(url, name, options); + win.focus(); + return win; + }, + + /** + * Adds event handler to the target object. + * @param {Object} obj Target object. + * @param {String} type Name of the event. + * @param {Function} func Handling function. + */ + addEvent: function(obj, type, func) + { + if (obj.attachEvent) + { + obj['e' + type + func] = func; + obj[type + func] = function() + { + obj['e' + type + func](window.event); + } + obj.attachEvent('on' + type, obj[type + func]); + } + else + { + obj.addEventListener(type, func, false); + } + }, + + /** + * Displays an alert. + * @param {String} str String to display. + */ + alert: function(str) + { + alert(sh.config.strings.alert + str) + }, + + /** + * Finds a brush by its alias. + * + * @param {String} alias Brush alias. + * @param {Boolean} alert Suppresses the alert if false. + * @return {Brush} Returns bursh constructor if found, null otherwise. + */ + findBrush: function(alias, alert) + { + var brushes = sh.vars.discoveredBrushes, + result = null + ; + + if (brushes == null) + { + brushes = {}; + + // Find all brushes + for (var brush in sh.brushes) + { + var aliases = sh.brushes[brush].aliases; + + if (aliases == null) + continue; + + // keep the brush name + sh.brushes[brush].name = brush.toLowerCase(); + + for (var i = 0; i < aliases.length; i++) + brushes[aliases[i]] = brush; + } + + sh.vars.discoveredBrushes = brushes; + } + + result = sh.brushes[brushes[alias]]; + + if (result == null && alert != false) + sh.utils.alert(sh.config.strings.noBrush + alias); + + return result; + }, + + /** + * Executes a callback on each line and replaces each line with result from the callback. + * @param {Object} str Input string. + * @param {Object} callback Callback function taking one string argument and returning a string. + */ + eachLine: function(str, callback) + { + var lines = str.split('\n'); + + for (var i = 0; i < lines.length; i++) + lines[i] = callback(lines[i]); + + return lines.join('\n'); + }, + + /** + * This is a special trim which only removes first and last empty lines + * and doesn't affect valid leading space on the first line. + * + * @param {String} str Input string + * @return {String} Returns string without empty first and last lines. + */ + trimFirstAndLastLines: function(str) + { + return str.replace(/^[ ]*[\n]+|[\n]*[ ]*$/g, ''); + }, + + /** + * Parses key/value pairs into hash object. + * + * Understands the following formats: + * - name: word; + * - name: [word, word]; + * - name: "string"; + * - name: 'string'; + * + * For example: + * name1: value; name2: [value, value]; name3: 'value' + * + * @param {String} str Input string. + * @return {Object} Returns deserialized object. + */ + parseParams: function(str) + { + var match, + result = {}, + arrayRegex = new XRegExp("^\\[(?(.*?))\\]$"), + regex = new XRegExp( + "(?[\\w-]+)" + + "\\s*:\\s*" + + "(?" + + "[\\w-%#]+|" + // word + "\\[.*?\\]|" + // [] array + '".*?"|' + // "" string + "'.*?'" + // '' string + ")\\s*;?", + "g" + ) + ; + + while ((match = regex.exec(str)) != null) + { + var value = match.value + .replace(/^['"]|['"]$/g, '') // strip quotes from end of strings + ; + + // try to parse array value + if (value != null && arrayRegex.test(value)) + { + var m = arrayRegex.exec(value); + value = m.values.length > 0 ? m.values.split(/\s*,\s*/) : []; + } + + result[match.name] = value; + } + + return result; + }, + + /** + * Wraps each line of the string into tag with given style applied to it. + * + * @param {String} str Input string. + * @param {String} css Style name to apply to the string. + * @return {String} Returns input string with each line surrounded by tag. + */ + decorate: function(str, css) + { + if (str == null || str.length == 0 || str == '\n') + return str; + + // helixoft + // str = str.replace(/... to them so that + // leading spaces aren't included. + if (css != null && css.match("skipTag$")!="skipTag") // skipTag test added by Helixoft + str = sh.utils.eachLine(str, function(line) + { + if (line.length == 0) + return ''; + + var spaces = ''; + + line = line.replace(/^( | )+/, function(s) + { + spaces = s; + return ''; + }); + + if (line.length == 0) + return spaces; + + return spaces + '' + line + ''; + }); + + return str; + }, + + /** + * Pads number with zeros until it's length is the same as given length. + * + * @param {Number} number Number to pad. + * @param {Number} length Max string length with. + * @return {String} Returns a string padded with proper amount of '0'. + */ + padNumber : function(number, length) + { + var result = number.toString(); + + while (result.length < length) + result = '0' + result; + + return result; + }, + + /** + * Measures width of a single space character. + * @return {Number} Returns width of a single space character. + */ + measureSpace : function() + { + var container = document.createElement('div'), + span, + result = 0, + body = document.body, + id = sh.utils.guid('measureSpace'), + + // variable names will be compressed, so it's better than a plain string + divOpen = '
' + + divOpen + 'lines">' + + divOpen + 'line">' + + divOpen + 'content' + + '"> ' + closeSpan + closeSpan + + closeDiv + + closeDiv + + closeDiv + + closeDiv + ; + + body.appendChild(container); + span = document.getElementById(id); + + if (/opera/i.test(navigator.userAgent)) + { + var style = window.getComputedStyle(span, null); + result = parseInt(style.getPropertyValue("width")); + } + else + { + result = span.offsetWidth; + } + + body.removeChild(container); + + return result; + }, + + /** + * Replaces tabs with spaces. + * + * @param {String} code Source code. + * @param {Number} tabSize Size of the tab. + * @return {String} Returns code with all tabs replaces by spaces. + */ + processTabs : function(code, tabSize) + { + var tab = ''; + + for (var i = 0; i < tabSize; i++) + tab += ' '; + + return code.replace(/\t/g, tab); + }, + + /** + * Replaces tabs with smart spaces. + * + * @param {String} code Code to fix the tabs in. + * @param {Number} tabSize Number of spaces in a column. + * @return {String} Returns code with all tabs replaces with roper amount of spaces. + */ + processSmartTabs : function(code, tabSize) + { + var lines = code.split('\n'), + tab = '\t', + spaces = '' + ; + + // Create a string with 1000 spaces to copy spaces from... + // It's assumed that there would be no indentation longer than that. + for (var i = 0; i < 50; i++) + spaces += ' '; // 20 spaces * 50 + + // This function inserts specified amount of spaces in the string + // where a tab is while removing that given tab. + function insertSpaces(line, pos, count) + { + return line.substr(0, pos) + + spaces.substr(0, count) + + line.substr(pos + 1, line.length) // pos + 1 will get rid of the tab + ; + }; + + // Go through all the lines and do the 'smart tabs' magic. + code = sh.utils.eachLine(code, function(line) + { + if (line.indexOf(tab) == -1) + return line; + + var pos = 0; + + while ((pos = line.indexOf(tab)) != -1) + { + // This is pretty much all there is to the 'smart tabs' logic. + // Based on the position within the line and size of a tab, + // calculate the amount of spaces we need to insert. + var spaces = tabSize - pos % tabSize; + line = insertSpaces(line, pos, spaces); + } + + return line; + }); + + return code; + }, + + /** + * Performs various string fixes based on configuration. + */ + fixInputString : function(str) + { + var br = /|<br\s*\/?>/gi; + + if (sh.config.bloggerMode == true) + str = str.replace(br, '\n'); + + if (sh.config.stripBrs == true) + str = str.replace(br, ''); + + return str; + }, + + /** + * Removes all white space at the begining and end of a string. + * + * @param {String} str String to trim. + * @return {String} Returns string without leading and following white space characters. + */ + trim: function(str) + { + return str.replace(/^\s+|\s+$/g, ''); + }, + + /** + * Unindents a block of text by the lowest common indent amount. + * @param {String} str Text to unindent. + * @return {String} Returns unindented text block. + */ + unindent: function(str) + { + var lines = sh.utils.fixInputString(str).split('\n'), + indents = new Array(), + regex = /^\s*/, + min = 1000 + ; + + // go through every line and check for common number of indents + for (var i = 0; i < lines.length && min > 0; i++) + { + var line = lines[i]; + + if (sh.utils.trim(line).length == 0) + continue; + + var matches = regex.exec(line); + + // In the event that just one line doesn't have leading white space + // we can't unindent anything, so bail completely. + if (matches == null) + return str; + + min = Math.min(matches[0].length, min); + } + + // trim minimum common number of white space from the begining of every line + if (min > 0) + for (var i = 0; i < lines.length; i++) + lines[i] = lines[i].substr(min); + + return lines.join('\n'); + }, + + /** + * Callback method for Array.sort() which sorts matches by + * index position and then by length. + * + * @param {Match} m1 Left object. + * @param {Match} m2 Right object. + * @return {Number} Returns -1, 0 or -1 as a comparison result. + */ + matchesSortCallback: function(m1, m2) + { + // sort matches by index first + if(m1.index < m2.index) + return -1; + else if(m1.index > m2.index) + return 1; + else + { + // if index is the same, sort by length + if(m1.length < m2.length) + return -1; + else if(m1.length > m2.length) + return 1; + } + + return 0; + }, + + /** + * Executes given regular expression on provided code and returns all + * matches that are found. + * + * @param {String} code Code to execute regular expression on. + * @param {Object} regex Regular expression item info from regexList collection. + * @return {Array} Returns a list of Match objects. + */ + getMatches: function(code, regexInfo) + { + function defaultAdd(match, regexInfo) + { + return [new sh.Match(match[0], match.index, regexInfo.css)]; + }; + + var index = 0, + match = null, + result = [], + func = regexInfo.func ? regexInfo.func : defaultAdd + ; + + while((match = regexInfo.regex.exec(code)) != null) + result = result.concat(func(match, regexInfo)); + + return result; + }, + + processUrls: function(code) + { + var lt = '<', + gt = '>' + ; + + return code.replace(sh.regexLib.url, function(m) + { + var suffix = '', prefix = ''; + + // We include < and > in the URL for the common cases like + // The problem is that they get transformed into <http://google.com> + // Where as > easily looks like part of the URL string. + + if (m.indexOf(lt) == 0) + { + prefix = lt; + m = m.substring(lt.length); + } + + if (m.indexOf(gt) == m.length - gt.length) + { + m = m.substring(0, m.length - gt.length); + suffix = gt; + } + + return prefix + '' + m + '' + suffix; + }); + }, + + /** + * Finds all tags. */ + scriptScriptTags : { left: /(<|<)\s*script.*?(>|>)/gi, right: /(<|<)\/\s*script\s*(>|>)/gi } + }, + + toolbar : { + /** + * Creates new toolbar for a highlighter. + * @param {Highlighter} highlighter Target highlighter. + */ + create : function(highlighter) + { + var div = document.createElement('DIV'), + items = sh.toolbar.items + ; + + div.className = 'toolbar'; + + for (var name in items) + { + var constructor = items[name], + command = new constructor(highlighter), + element = command.create() + ; + + highlighter.toolbarCommands[name] = command; + + if (element == null) + continue; + + if (typeof(element) == 'string') + element = sh.toolbar.createButton(element, highlighter.id, name); + + element.className += 'item ' + name; + div.appendChild(element); + } + + return div; + }, + + /** + * Create a standard anchor button for the toolbar. + * @param {String} label Label text to display. + * @param {String} highlighterId Highlighter ID that this button would belong to. + * @param {String} commandName Command name that would be executed. + * @return {Element} Returns an 'A' element. + */ + createButton : function(label, highlighterId, commandName) + { + var a = document.createElement('a'), + style = a.style, + config = sh.config, + width = config.toolbarItemWidth, + height = config.toolbarItemHeight + ; + + a.href = '#' + commandName; + a.title = label; + a.highlighterId = highlighterId; + a.commandName = commandName; + a.innerHTML = label; + + if (isNaN(width) == false) + style.width = width + 'px'; + + if (isNaN(height) == false) + style.height = height + 'px'; + + a.onclick = function(e) + { + try + { + sh.toolbar.executeCommand( + this, + e || window.event, + this.highlighterId, + this.commandName + ); + } + catch(e) + { + sh.utils.alert(e.message); + } + + return false; + }; + + return a; + }, + + /** + * Executes a toolbar command. + * @param {Element} sender Sender element. + * @param {MouseEvent} event Original mouse event object. + * @param {String} highlighterId Highlighter DIV element ID. + * @param {String} commandName Name of the command to execute. + * @return {Object} Passes out return value from command execution. + */ + executeCommand : function(sender, event, highlighterId, commandName, args) + { + var highlighter = sh.vars.highlighters[highlighterId], + command + ; + + if (highlighter == null || (command = highlighter.toolbarCommands[commandName]) == null) + return null; + + return command.execute(sender, event, args); + }, + + /** Collection of toolbar items. */ + items : { + expandSource : function(highlighter) + { + this.create = function() + { + if (highlighter.getParam('collapse') != true) + return; + + return sh.config.strings.expandSource; + }; + + this.execute = function(sender, event, args) + { + var div = highlighter.div; + + sender.parentNode.removeChild(sender); + div.className = div.className.replace('collapsed', ''); + }; + }, + + /** + * Command to open a new window and display the original unformatted source code inside. + */ + viewSource : function(highlighter) + { + this.create = function() + { + return sh.config.strings.viewSource; + }; + + this.execute = function(sender, event, args) + { + var code = sh.utils.fixInputString(highlighter.originalCode).replace(/' + code + ''); + wnd.document.close(); + }; + }, + + /** + * Command to copy the original source code in to the clipboard. + * Uses Flash method if clipboardSwf is configured. + */ + copyToClipboard : function(highlighter) + { + var flashDiv, flashSwf, + highlighterId = highlighter.id + ; + + this.create = function() + { + var config = sh.config; + + // disable functionality if running locally + if (config.clipboardSwf == null) + return null; + + function params(list) + { + var result = ''; + + for (var name in list) + result += ""; + + return result; + }; + + function attributes(list) + { + var result = ''; + + for (var name in list) + result += " " + name + "='" + list[name] + "'"; + + return result; + }; + + var args1 = { + width : config.toolbarItemWidth, + height : config.toolbarItemHeight, + id : highlighterId + '_clipboard', + type : 'application/x-shockwave-flash', + title : sh.config.strings.copyToClipboard + }, + + // these arguments are used in IE's collection + args2 = { + allowScriptAccess : 'always', + wmode : 'transparent', + flashVars : 'highlighterId=' + highlighterId, + menu : 'false' + }, + swf = config.clipboardSwf, + html + ; + + if (/msie/i.test(navigator.userAgent)) + { + html = '' + + params(args2) + + params({ movie : swf }) + + '' + ; + } + else + { + html = '' + ; + } + + flashDiv = document.createElement('div'); + flashDiv.innerHTML = html; + + return flashDiv; + }; + + this.execute = function(sender, event, args) + { + var command = args.command; + + switch (command) + { + case 'get': + var code = sh.utils.unindent( + sh.utils.fixInputString(highlighter.originalCode) + .replace(/</g, '<') + .replace(/>/g, '>') + .replace(/&/g, '&') + ); + + if(window.clipboardData) + // will fall through to the confirmation because there isn't a break + window.clipboardData.setData('text', code); + else + return sh.utils.unindent(code); + + case 'ok': + sh.utils.alert(sh.config.strings.copyToClipboardConfirmation); + break; + + case 'error': + sh.utils.alert(args.message); + break; + } + }; + }, + + /** Command to print the colored source code. */ + printSource : function(highlighter) + { + this.create = function() + { + return sh.config.strings.print; + }; + + this.execute = function(sender, event, args) + { + var iframe = document.createElement('IFRAME'), + doc = null + ; + + // make sure there is never more than one hidden iframe created by SH + if (sh.vars.printFrame != null) + document.body.removeChild(sh.vars.printFrame); + + sh.vars.printFrame = iframe; + + // this hides the iframe + iframe.style.cssText = 'position:absolute;width:0px;height:0px;left:-500px;top:-500px;'; + + document.body.appendChild(iframe); + doc = iframe.contentWindow.document; + + copyStyles(doc, window.document); + doc.write('
' + highlighter.div.innerHTML + '
'); + doc.close(); + + iframe.contentWindow.focus(); + iframe.contentWindow.print(); + + function copyStyles(destDoc, sourceDoc) + { + var links = sourceDoc.getElementsByTagName('link'); + + for(var i = 0; i < links.length; i++) + if(links[i].rel.toLowerCase() == 'stylesheet' && /shCore\.css$/.test(links[i].href)) + destDoc.write(''); + }; + }; + }, + + /** Command to display the about dialog window. */ + about : function(highlighter) + { + this.create = function() + { + return sh.config.strings.help; + }; + + this.execute = function(sender, event) + { + var wnd = sh.utils.popup('', '_blank', 500, 250, 'scrollbars=0'), + doc = wnd.document + ; + + doc.write(sh.config.strings.aboutDialog); + doc.close(); + wnd.focus(); + }; + } + } + }, + + utils : { + /** + * Finds an index of element in the array. + * @ignore + * @param {Object} searchElement + * @param {Number} fromIndex + * @return {Number} Returns index of element if found; -1 otherwise. + */ + indexOf : function(array, searchElement, fromIndex) + { + fromIndex = Math.max(fromIndex || 0, 0); + + for (var i = fromIndex; i < array.length; i++) + if(array[i] == searchElement) + return i; + + return -1; + }, + + /** + * Generates a unique element ID. + */ + guid : function(prefix) + { + return prefix + Math.round(Math.random() * 1000000).toString(); + }, + + /** + * Merges two objects. Values from obj2 override values in obj1. + * Function is NOT recursive and works only for one dimensional objects. + * @param {Object} obj1 First object. + * @param {Object} obj2 Second object. + * @return {Object} Returns combination of both objects. + */ + merge: function(obj1, obj2) + { + var result = {}, name; + + for (name in obj1) + result[name] = obj1[name]; + + for (name in obj2) + result[name] = obj2[name]; + + return result; + }, + + /** + * Attempts to convert string to boolean. + * @param {String} value Input string. + * @return {Boolean} Returns true if input was "true", false if input was "false" and value otherwise. + */ + toBoolean: function(value) + { + switch (value) + { + case "true": + return true; + + case "false": + return false; + } + + return value; + }, + + /** + * Opens up a centered popup window. + * @param {String} url URL to open in the window. + * @param {String} name Popup name. + * @param {int} width Popup width. + * @param {int} height Popup height. + * @param {String} options window.open() options. + * @return {Window} Returns window instance. + */ + popup: function(url, name, width, height, options) + { + var x = (screen.width - width) / 2, + y = (screen.height - height) / 2 + ; + + options += ', left=' + x + + ', top=' + y + + ', width=' + width + + ', height=' + height + ; + options = options.replace(/^,/, ''); + + var win = window.open(url, name, options); + win.focus(); + return win; + }, + + /** + * Adds event handler to the target object. + * @param {Object} obj Target object. + * @param {String} type Name of the event. + * @param {Function} func Handling function. + */ + addEvent: function(obj, type, func) + { + if (obj.attachEvent) + { + obj['e' + type + func] = func; + obj[type + func] = function() + { + obj['e' + type + func](window.event); + } + obj.attachEvent('on' + type, obj[type + func]); + } + else + { + obj.addEventListener(type, func, false); + } + }, + + /** + * Displays an alert. + * @param {String} str String to display. + */ + alert: function(str) + { + alert(sh.config.strings.alert + str) + }, + + /** + * Finds a brush by its alias. + * + * @param {String} alias Brush alias. + * @param {Boolean} alert Suppresses the alert if false. + * @return {Brush} Returns bursh constructor if found, null otherwise. + */ + findBrush: function(alias, alert) + { + var brushes = sh.vars.discoveredBrushes, + result = null + ; + + if (brushes == null) + { + brushes = {}; + + // Find all brushes + for (var brush in sh.brushes) + { + var aliases = sh.brushes[brush].aliases; + + if (aliases == null) + continue; + + // keep the brush name + sh.brushes[brush].name = brush.toLowerCase(); + + for (var i = 0; i < aliases.length; i++) + brushes[aliases[i]] = brush; + } + + sh.vars.discoveredBrushes = brushes; + } + + result = sh.brushes[brushes[alias]]; + + if (result == null && alert != false) + sh.utils.alert(sh.config.strings.noBrush + alias); + + return result; + }, + + /** + * Executes a callback on each line and replaces each line with result from the callback. + * @param {Object} str Input string. + * @param {Object} callback Callback function taking one string argument and returning a string. + */ + eachLine: function(str, callback) + { + var lines = str.split('\n'); + + for (var i = 0; i < lines.length; i++) + lines[i] = callback(lines[i]); + + return lines.join('\n'); + }, + + /** + * This is a special trim which only removes first and last empty lines + * and doesn't affect valid leading space on the first line. + * + * @param {String} str Input string + * @return {String} Returns string without empty first and last lines. + */ + trimFirstAndLastLines: function(str) + { + return str.replace(/^[ ]*[\n]+|[\n]*[ ]*$/g, ''); + }, + + /** + * Parses key/value pairs into hash object. + * + * Understands the following formats: + * - name: word; + * - name: [word, word]; + * - name: "string"; + * - name: 'string'; + * + * For example: + * name1: value; name2: [value, value]; name3: 'value' + * + * @param {String} str Input string. + * @return {Object} Returns deserialized object. + */ + parseParams: function(str) + { + var match, + result = {}, + arrayRegex = new XRegExp("^\\[(?(.*?))\\]$"), + regex = new XRegExp( + "(?[\\w-]+)" + + "\\s*:\\s*" + + "(?" + + "[\\w-%#]+|" + // word + "\\[.*?\\]|" + // [] array + '".*?"|' + // "" string + "'.*?'" + // '' string + ")\\s*;?", + "g" + ) + ; + + while ((match = regex.exec(str)) != null) + { + var value = match.value + .replace(/^['"]|['"]$/g, '') // strip quotes from end of strings + ; + + // try to parse array value + if (value != null && arrayRegex.test(value)) + { + var m = arrayRegex.exec(value); + value = m.values.length > 0 ? m.values.split(/\s*,\s*/) : []; + } + + result[match.name] = value; + } + + return result; + }, + + /** + * Wraps each line of the string into tag with given style applied to it. + * + * @param {String} str Input string. + * @param {String} css Style name to apply to the string. + * @return {String} Returns input string with each line surrounded by tag. + */ + decorate: function(str, css) + { + if (str == null || str.length == 0 || str == '\n') + return str; + + str = str.replace(/... to them so that + // leading spaces aren't included. + if (css != null) + str = sh.utils.eachLine(str, function(line) + { + if (line.length == 0) + return ''; + + var spaces = ''; + + line = line.replace(/^( | )+/, function(s) + { + spaces = s; + return ''; + }); + + if (line.length == 0) + return spaces; + + return spaces + '' + line + ''; + }); + + return str; + }, + + /** + * Pads number with zeros until it's length is the same as given length. + * + * @param {Number} number Number to pad. + * @param {Number} length Max string length with. + * @return {String} Returns a string padded with proper amount of '0'. + */ + padNumber : function(number, length) + { + var result = number.toString(); + + while (result.length < length) + result = '0' + result; + + return result; + }, + + /** + * Measures width of a single space character. + * @return {Number} Returns width of a single space character. + */ + measureSpace : function() + { + var container = document.createElement('div'), + span, + result = 0, + body = document.body, + id = sh.utils.guid('measureSpace'), + + // variable names will be compressed, so it's better than a plain string + divOpen = '
' + + divOpen + 'lines">' + + divOpen + 'line">' + + divOpen + 'content' + + '"> ' + closeSpan + closeSpan + + closeDiv + + closeDiv + + closeDiv + + closeDiv + ; + + body.appendChild(container); + span = document.getElementById(id); + + if (/opera/i.test(navigator.userAgent)) + { + var style = window.getComputedStyle(span, null); + result = parseInt(style.getPropertyValue("width")); + } + else + { + result = span.offsetWidth; + } + + body.removeChild(container); + + return result; + }, + + /** + * Replaces tabs with spaces. + * + * @param {String} code Source code. + * @param {Number} tabSize Size of the tab. + * @return {String} Returns code with all tabs replaces by spaces. + */ + processTabs : function(code, tabSize) + { + var tab = ''; + + for (var i = 0; i < tabSize; i++) + tab += ' '; + + return code.replace(/\t/g, tab); + }, + + /** + * Replaces tabs with smart spaces. + * + * @param {String} code Code to fix the tabs in. + * @param {Number} tabSize Number of spaces in a column. + * @return {String} Returns code with all tabs replaces with roper amount of spaces. + */ + processSmartTabs : function(code, tabSize) + { + var lines = code.split('\n'), + tab = '\t', + spaces = '' + ; + + // Create a string with 1000 spaces to copy spaces from... + // It's assumed that there would be no indentation longer than that. + for (var i = 0; i < 50; i++) + spaces += ' '; // 20 spaces * 50 + + // This function inserts specified amount of spaces in the string + // where a tab is while removing that given tab. + function insertSpaces(line, pos, count) + { + return line.substr(0, pos) + + spaces.substr(0, count) + + line.substr(pos + 1, line.length) // pos + 1 will get rid of the tab + ; + }; + + // Go through all the lines and do the 'smart tabs' magic. + code = sh.utils.eachLine(code, function(line) + { + if (line.indexOf(tab) == -1) + return line; + + var pos = 0; + + while ((pos = line.indexOf(tab)) != -1) + { + // This is pretty much all there is to the 'smart tabs' logic. + // Based on the position within the line and size of a tab, + // calculate the amount of spaces we need to insert. + var spaces = tabSize - pos % tabSize; + line = insertSpaces(line, pos, spaces); + } + + return line; + }); + + return code; + }, + + /** + * Performs various string fixes based on configuration. + */ + fixInputString : function(str) + { + var br = /|<br\s*\/?>/gi; + + if (sh.config.bloggerMode == true) + str = str.replace(br, '\n'); + + if (sh.config.stripBrs == true) + str = str.replace(br, ''); + + return str; + }, + + /** + * Removes all white space at the begining and end of a string. + * + * @param {String} str String to trim. + * @return {String} Returns string without leading and following white space characters. + */ + trim: function(str) + { + return str.replace(/^\s+|\s+$/g, ''); + }, + + /** + * Unindents a block of text by the lowest common indent amount. + * @param {String} str Text to unindent. + * @return {String} Returns unindented text block. + */ + unindent: function(str) + { + var lines = sh.utils.fixInputString(str).split('\n'), + indents = new Array(), + regex = /^\s*/, + min = 1000 + ; + + // go through every line and check for common number of indents + for (var i = 0; i < lines.length && min > 0; i++) + { + var line = lines[i]; + + if (sh.utils.trim(line).length == 0) + continue; + + var matches = regex.exec(line); + + // In the event that just one line doesn't have leading white space + // we can't unindent anything, so bail completely. + if (matches == null) + return str; + + min = Math.min(matches[0].length, min); + } + + // trim minimum common number of white space from the begining of every line + if (min > 0) + for (var i = 0; i < lines.length; i++) + lines[i] = lines[i].substr(min); + + return lines.join('\n'); + }, + + /** + * Callback method for Array.sort() which sorts matches by + * index position and then by length. + * + * @param {Match} m1 Left object. + * @param {Match} m2 Right object. + * @return {Number} Returns -1, 0 or -1 as a comparison result. + */ + matchesSortCallback: function(m1, m2) + { + // sort matches by index first + if(m1.index < m2.index) + return -1; + else if(m1.index > m2.index) + return 1; + else + { + // if index is the same, sort by length + if(m1.length < m2.length) + return -1; + else if(m1.length > m2.length) + return 1; + } + + return 0; + }, + + /** + * Executes given regular expression on provided code and returns all + * matches that are found. + * + * @param {String} code Code to execute regular expression on. + * @param {Object} regex Regular expression item info from regexList collection. + * @return {Array} Returns a list of Match objects. + */ + getMatches: function(code, regexInfo) + { + function defaultAdd(match, regexInfo) + { + return [new sh.Match(match[0], match.index, regexInfo.css)]; + }; + + var index = 0, + match = null, + result = [], + func = regexInfo.func ? regexInfo.func : defaultAdd + ; + + while((match = regexInfo.regex.exec(code)) != null) + result = result.concat(func(match, regexInfo)); + + return result; + }, + + processUrls: function(code) + { + var lt = '<', + gt = '>' + ; + + return code.replace(sh.regexLib.url, function(m) + { + var suffix = '', prefix = ''; + + // We include < and > in the URL for the common cases like + // The problem is that they get transformed into <http://google.com> + // Where as > easily looks like part of the URL string. + + if (m.indexOf(lt) == 0) + { + prefix = lt; + m = m.substring(lt.length); + } + + if (m.indexOf(gt) == m.length - gt.length) + { + m = m.substring(0, m.length - gt.length); + suffix = gt; + } + + return prefix + '' + m + '' + suffix; + }); + }, + + /** + * Finds all tags. */ + scriptScriptTags : { left: /(<|<)\s*script.*?(>|>)/gi, right: /(<|<)\/\s*script\s*(>|>)/gi } + }, + + toolbar : { + /** + * Creates new toolbar for a highlighter. + * @param {Highlighter} highlighter Target highlighter. + */ + create : function(highlighter) + { + var div = document.createElement('DIV'), + items = sh.toolbar.items + ; + + div.className = 'toolbar'; + + for (var name in items) + { + var constructor = items[name], + command = new constructor(highlighter), + element = command.create() + ; + + highlighter.toolbarCommands[name] = command; + + if (element == null) + continue; + + if (typeof(element) == 'string') + element = sh.toolbar.createButton(element, highlighter.id, name); + + element.className += 'item ' + name; + div.appendChild(element); + } + + return div; + }, + + /** + * Create a standard anchor button for the toolbar. + * @param {String} label Label text to display. + * @param {String} highlighterId Highlighter ID that this button would belong to. + * @param {String} commandName Command name that would be executed. + * @return {Element} Returns an 'A' element. + */ + createButton : function(label, highlighterId, commandName) + { + var a = document.createElement('a'), + style = a.style, + config = sh.config, + width = config.toolbarItemWidth, + height = config.toolbarItemHeight + ; + + a.href = '#' + commandName; + a.title = label; + a.highlighterId = highlighterId; + a.commandName = commandName; + a.innerHTML = label; + + if (isNaN(width) == false) + style.width = width + 'px'; + + if (isNaN(height) == false) + style.height = height + 'px'; + + a.onclick = function(e) + { + try + { + sh.toolbar.executeCommand( + this, + e || window.event, + this.highlighterId, + this.commandName + ); + } + catch(e) + { + sh.utils.alert(e.message); + } + + return false; + }; + + return a; + }, + + /** + * Executes a toolbar command. + * @param {Element} sender Sender element. + * @param {MouseEvent} event Original mouse event object. + * @param {String} highlighterId Highlighter DIV element ID. + * @param {String} commandName Name of the command to execute. + * @return {Object} Passes out return value from command execution. + */ + executeCommand : function(sender, event, highlighterId, commandName, args) + { + var highlighter = sh.vars.highlighters[highlighterId], + command + ; + + if (highlighter == null || (command = highlighter.toolbarCommands[commandName]) == null) + return null; + + return command.execute(sender, event, args); + }, + + /** Collection of toolbar items. */ + items : { + expandSource : function(highlighter) + { + this.create = function() + { + if (highlighter.getParam('collapse') != true) + return; + + return sh.config.strings.expandSource; + }; + + this.execute = function(sender, event, args) + { + var div = highlighter.div; + + sender.parentNode.removeChild(sender); + div.className = div.className.replace('collapsed', ''); + }; + }, + + /** + * Command to open a new window and display the original unformatted source code inside. + */ + viewSource : function(highlighter) + { + this.create = function() + { + return sh.config.strings.viewSource; + }; + + this.execute = function(sender, event, args) + { + var code = sh.utils.fixInputString(highlighter.originalCode).replace(/' + code + ''); + wnd.document.close(); + }; + }, + + /** + * Command to copy the original source code in to the clipboard. + * Uses Flash method if clipboardSwf is configured. + */ + copyToClipboard : function(highlighter) + { + var flashDiv, flashSwf, + highlighterId = highlighter.id + ; + + this.create = function() + { + var config = sh.config; + + // disable functionality if running locally + if (config.clipboardSwf == null) + return null; + + function params(list) + { + var result = ''; + + for (var name in list) + result += ""; + + return result; + }; + + function attributes(list) + { + var result = ''; + + for (var name in list) + result += " " + name + "='" + list[name] + "'"; + + return result; + }; + + var args1 = { + width : config.toolbarItemWidth, + height : config.toolbarItemHeight, + id : highlighterId + '_clipboard', + type : 'application/x-shockwave-flash', + title : sh.config.strings.copyToClipboard + }, + + // these arguments are used in IE's collection + args2 = { + allowScriptAccess : 'always', + wmode : 'transparent', + flashVars : 'highlighterId=' + highlighterId, + menu : 'false' + }, + swf = config.clipboardSwf, + html + ; + + if (/msie/i.test(navigator.userAgent)) + { + html = '' + + params(args2) + + params({ movie : swf }) + + '' + ; + } + else + { + html = '' + ; + } + + flashDiv = document.createElement('div'); + flashDiv.innerHTML = html; + + return flashDiv; + }; + + this.execute = function(sender, event, args) + { + var command = args.command; + + switch (command) + { + case 'get': + var code = sh.utils.unindent( + sh.utils.fixInputString(highlighter.originalCode) + .replace(/</g, '<') + .replace(/>/g, '>') + .replace(/&/g, '&') + ); + + if(window.clipboardData) + // will fall through to the confirmation because there isn't a break + window.clipboardData.setData('text', code); + else + return sh.utils.unindent(code); + + case 'ok': + sh.utils.alert(sh.config.strings.copyToClipboardConfirmation); + break; + + case 'error': + sh.utils.alert(args.message); + break; + } + }; + }, + + /** Command to print the colored source code. */ + printSource : function(highlighter) + { + this.create = function() + { + return sh.config.strings.print; + }; + + this.execute = function(sender, event, args) + { + var iframe = document.createElement('IFRAME'), + doc = null + ; + + // make sure there is never more than one hidden iframe created by SH + if (sh.vars.printFrame != null) + document.body.removeChild(sh.vars.printFrame); + + sh.vars.printFrame = iframe; + + // this hides the iframe + iframe.style.cssText = 'position:absolute;width:0px;height:0px;left:-500px;top:-500px;'; + + document.body.appendChild(iframe); + doc = iframe.contentWindow.document; + + copyStyles(doc, window.document); + doc.write('
' + highlighter.div.innerHTML + '
'); + doc.close(); + + iframe.contentWindow.focus(); + iframe.contentWindow.print(); + + function copyStyles(destDoc, sourceDoc) + { + var links = sourceDoc.getElementsByTagName('link'); + + for(var i = 0; i < links.length; i++) + if(links[i].rel.toLowerCase() == 'stylesheet' && /shCore\.css$/.test(links[i].href)) + destDoc.write(''); + }; + }; + }, + + /** Command to display the about dialog window. */ + about : function(highlighter) + { + this.create = function() + { + return sh.config.strings.help; + }; + + this.execute = function(sender, event) + { + var wnd = sh.utils.popup('', '_blank', 500, 250, 'scrollbars=0'), + doc = wnd.document + ; + + doc.write(sh.config.strings.aboutDialog); + doc.close(); + wnd.focus(); + }; + } + } + }, + + utils : { + /** + * Finds an index of element in the array. + * @ignore + * @param {Object} searchElement + * @param {Number} fromIndex + * @return {Number} Returns index of element if found; -1 otherwise. + */ + indexOf : function(array, searchElement, fromIndex) + { + fromIndex = Math.max(fromIndex || 0, 0); + + for (var i = fromIndex; i < array.length; i++) + if(array[i] == searchElement) + return i; + + return -1; + }, + + /** + * Generates a unique element ID. + */ + guid : function(prefix) + { + return prefix + Math.round(Math.random() * 1000000).toString(); + }, + + /** + * Merges two objects. Values from obj2 override values in obj1. + * Function is NOT recursive and works only for one dimensional objects. + * @param {Object} obj1 First object. + * @param {Object} obj2 Second object. + * @return {Object} Returns combination of both objects. + */ + merge: function(obj1, obj2) + { + var result = {}, name; + + for (name in obj1) + result[name] = obj1[name]; + + for (name in obj2) + result[name] = obj2[name]; + + return result; + }, + + /** + * Attempts to convert string to boolean. + * @param {String} value Input string. + * @return {Boolean} Returns true if input was "true", false if input was "false" and value otherwise. + */ + toBoolean: function(value) + { + switch (value) + { + case "true": + return true; + + case "false": + return false; + } + + return value; + }, + + /** + * Opens up a centered popup window. + * @param {String} url URL to open in the window. + * @param {String} name Popup name. + * @param {int} width Popup width. + * @param {int} height Popup height. + * @param {String} options window.open() options. + * @return {Window} Returns window instance. + */ + popup: function(url, name, width, height, options) + { + var x = (screen.width - width) / 2, + y = (screen.height - height) / 2 + ; + + options += ', left=' + x + + ', top=' + y + + ', width=' + width + + ', height=' + height + ; + options = options.replace(/^,/, ''); + + var win = window.open(url, name, options); + win.focus(); + return win; + }, + + /** + * Adds event handler to the target object. + * @param {Object} obj Target object. + * @param {String} type Name of the event. + * @param {Function} func Handling function. + */ + addEvent: function(obj, type, func) + { + if (obj.attachEvent) + { + obj['e' + type + func] = func; + obj[type + func] = function() + { + obj['e' + type + func](window.event); + } + obj.attachEvent('on' + type, obj[type + func]); + } + else + { + obj.addEventListener(type, func, false); + } + }, + + /** + * Displays an alert. + * @param {String} str String to display. + */ + alert: function(str) + { + alert(sh.config.strings.alert + str) + }, + + /** + * Finds a brush by its alias. + * + * @param {String} alias Brush alias. + * @param {Boolean} alert Suppresses the alert if false. + * @return {Brush} Returns bursh constructor if found, null otherwise. + */ + findBrush: function(alias, alert) + { + var brushes = sh.vars.discoveredBrushes, + result = null + ; + + if (brushes == null) + { + brushes = {}; + + // Find all brushes + for (var brush in sh.brushes) + { + var aliases = sh.brushes[brush].aliases; + + if (aliases == null) + continue; + + // keep the brush name + sh.brushes[brush].name = brush.toLowerCase(); + + for (var i = 0; i < aliases.length; i++) + brushes[aliases[i]] = brush; + } + + sh.vars.discoveredBrushes = brushes; + } + + result = sh.brushes[brushes[alias]]; + + if (result == null && alert != false) + sh.utils.alert(sh.config.strings.noBrush + alias); + + return result; + }, + + /** + * Executes a callback on each line and replaces each line with result from the callback. + * @param {Object} str Input string. + * @param {Object} callback Callback function taking one string argument and returning a string. + */ + eachLine: function(str, callback) + { + var lines = str.split('\n'); + + for (var i = 0; i < lines.length; i++) + lines[i] = callback(lines[i]); + + return lines.join('\n'); + }, + + /** + * This is a special trim which only removes first and last empty lines + * and doesn't affect valid leading space on the first line. + * + * @param {String} str Input string + * @return {String} Returns string without empty first and last lines. + */ + trimFirstAndLastLines: function(str) + { + return str.replace(/^[ ]*[\n]+|[\n]*[ ]*$/g, ''); + }, + + /** + * Parses key/value pairs into hash object. + * + * Understands the following formats: + * - name: word; + * - name: [word, word]; + * - name: "string"; + * - name: 'string'; + * + * For example: + * name1: value; name2: [value, value]; name3: 'value' + * + * @param {String} str Input string. + * @return {Object} Returns deserialized object. + */ + parseParams: function(str) + { + var match, + result = {}, + arrayRegex = new XRegExp("^\\[(?(.*?))\\]$"), + regex = new XRegExp( + "(?[\\w-]+)" + + "\\s*:\\s*" + + "(?" + + "[\\w-%#]+|" + // word + "\\[.*?\\]|" + // [] array + '".*?"|' + // "" string + "'.*?'" + // '' string + ")\\s*;?", + "g" + ) + ; + + while ((match = regex.exec(str)) != null) + { + var value = match.value + .replace(/^['"]|['"]$/g, '') // strip quotes from end of strings + ; + + // try to parse array value + if (value != null && arrayRegex.test(value)) + { + var m = arrayRegex.exec(value); + value = m.values.length > 0 ? m.values.split(/\s*,\s*/) : []; + } + + result[match.name] = value; + } + + return result; + }, + + /** + * Wraps each line of the string into tag with given style applied to it. + * + * @param {String} str Input string. + * @param {String} css Style name to apply to the string. + * @return {String} Returns input string with each line surrounded by tag. + */ + decorate: function(str, css) + { + if (str == null || str.length == 0 || str == '\n') + return str; + + // helixoft + // str = str.replace(/... to them so that + // leading spaces aren't included. + if (css != null && css.match("skipTag$")!="skipTag") // skipTag test added by Helixoft + str = sh.utils.eachLine(str, function(line) + { + if (line.length == 0) + return ''; + + var spaces = ''; + + line = line.replace(/^( | )+/, function(s) + { + spaces = s; + return ''; + }); + + if (line.length == 0) + return spaces; + + return spaces + '' + line + ''; + }); + + return str; + }, + + /** + * Pads number with zeros until it's length is the same as given length. + * + * @param {Number} number Number to pad. + * @param {Number} length Max string length with. + * @return {String} Returns a string padded with proper amount of '0'. + */ + padNumber : function(number, length) + { + var result = number.toString(); + + while (result.length < length) + result = '0' + result; + + return result; + }, + + /** + * Measures width of a single space character. + * @return {Number} Returns width of a single space character. + */ + measureSpace : function() + { + var container = document.createElement('div'), + span, + result = 0, + body = document.body, + id = sh.utils.guid('measureSpace'), + + // variable names will be compressed, so it's better than a plain string + divOpen = '
' + + divOpen + 'lines">' + + divOpen + 'line">' + + divOpen + 'content' + + '"> ' + closeSpan + closeSpan + + closeDiv + + closeDiv + + closeDiv + + closeDiv + ; + + body.appendChild(container); + span = document.getElementById(id); + + if (/opera/i.test(navigator.userAgent)) + { + var style = window.getComputedStyle(span, null); + result = parseInt(style.getPropertyValue("width")); + } + else + { + result = span.offsetWidth; + } + + body.removeChild(container); + + return result; + }, + + /** + * Replaces tabs with spaces. + * + * @param {String} code Source code. + * @param {Number} tabSize Size of the tab. + * @return {String} Returns code with all tabs replaces by spaces. + */ + processTabs : function(code, tabSize) + { + var tab = ''; + + for (var i = 0; i < tabSize; i++) + tab += ' '; + + return code.replace(/\t/g, tab); + }, + + /** + * Replaces tabs with smart spaces. + * + * @param {String} code Code to fix the tabs in. + * @param {Number} tabSize Number of spaces in a column. + * @return {String} Returns code with all tabs replaces with roper amount of spaces. + */ + processSmartTabs : function(code, tabSize) + { + var lines = code.split('\n'), + tab = '\t', + spaces = '' + ; + + // Create a string with 1000 spaces to copy spaces from... + // It's assumed that there would be no indentation longer than that. + for (var i = 0; i < 50; i++) + spaces += ' '; // 20 spaces * 50 + + // This function inserts specified amount of spaces in the string + // where a tab is while removing that given tab. + function insertSpaces(line, pos, count) + { + return line.substr(0, pos) + + spaces.substr(0, count) + + line.substr(pos + 1, line.length) // pos + 1 will get rid of the tab + ; + }; + + // Go through all the lines and do the 'smart tabs' magic. + code = sh.utils.eachLine(code, function(line) + { + if (line.indexOf(tab) == -1) + return line; + + var pos = 0; + + while ((pos = line.indexOf(tab)) != -1) + { + // This is pretty much all there is to the 'smart tabs' logic. + // Based on the position within the line and size of a tab, + // calculate the amount of spaces we need to insert. + var spaces = tabSize - pos % tabSize; + line = insertSpaces(line, pos, spaces); + } + + return line; + }); + + return code; + }, + + /** + * Performs various string fixes based on configuration. + */ + fixInputString : function(str) + { + var br = /|<br\s*\/?>/gi; + + if (sh.config.bloggerMode == true) + str = str.replace(br, '\n'); + + if (sh.config.stripBrs == true) + str = str.replace(br, ''); + + return str; + }, + + /** + * Removes all white space at the begining and end of a string. + * + * @param {String} str String to trim. + * @return {String} Returns string without leading and following white space characters. + */ + trim: function(str) + { + return str.replace(/^\s+|\s+$/g, ''); + }, + + /** + * Unindents a block of text by the lowest common indent amount. + * @param {String} str Text to unindent. + * @return {String} Returns unindented text block. + */ + unindent: function(str) + { + var lines = sh.utils.fixInputString(str).split('\n'), + indents = new Array(), + regex = /^\s*/, + min = 1000 + ; + + // go through every line and check for common number of indents + for (var i = 0; i < lines.length && min > 0; i++) + { + var line = lines[i]; + + if (sh.utils.trim(line).length == 0) + continue; + + var matches = regex.exec(line); + + // In the event that just one line doesn't have leading white space + // we can't unindent anything, so bail completely. + if (matches == null) + return str; + + min = Math.min(matches[0].length, min); + } + + // trim minimum common number of white space from the begining of every line + if (min > 0) + for (var i = 0; i < lines.length; i++) + lines[i] = lines[i].substr(min); + + return lines.join('\n'); + }, + + /** + * Callback method for Array.sort() which sorts matches by + * index position and then by length. + * + * @param {Match} m1 Left object. + * @param {Match} m2 Right object. + * @return {Number} Returns -1, 0 or -1 as a comparison result. + */ + matchesSortCallback: function(m1, m2) + { + // sort matches by index first + if(m1.index < m2.index) + return -1; + else if(m1.index > m2.index) + return 1; + else + { + // if index is the same, sort by length + if(m1.length < m2.length) + return -1; + else if(m1.length > m2.length) + return 1; + } + + return 0; + }, + + /** + * Executes given regular expression on provided code and returns all + * matches that are found. + * + * @param {String} code Code to execute regular expression on. + * @param {Object} regex Regular expression item info from regexList collection. + * @return {Array} Returns a list of Match objects. + */ + getMatches: function(code, regexInfo) + { + function defaultAdd(match, regexInfo) + { + return [new sh.Match(match[0], match.index, regexInfo.css)]; + }; + + var index = 0, + match = null, + result = [], + func = regexInfo.func ? regexInfo.func : defaultAdd + ; + + while((match = regexInfo.regex.exec(code)) != null) + result = result.concat(func(match, regexInfo)); + + return result; + }, + + processUrls: function(code) + { + var lt = '<', + gt = '>' + ; + + return code.replace(sh.regexLib.url, function(m) + { + var suffix = '', prefix = ''; + + // We include < and > in the URL for the common cases like + // The problem is that they get transformed into <http://google.com> + // Where as > easily looks like part of the URL string. + + if (m.indexOf(lt) == 0) + { + prefix = lt; + m = m.substring(lt.length); + } + + if (m.indexOf(gt) == m.length - gt.length) + { + m = m.substring(0, m.length - gt.length); + suffix = gt; + } + + return prefix + '' + m + '' + suffix; + }); + }, + + /** + * Finds all + + + + + + + + + +
+ + + +
+
+ +
+

+ Search results for +

+ +
+
+ +
+
+ + +
+ + + + + diff --git a/API_NetFramework/VSdoc/search--.html_rename b/API_NetFramework/VSdoc/search--.html_rename new file mode 100644 index 00000000..704ce5ac --- /dev/null +++ b/API_NetFramework/VSdoc/search--.html_rename @@ -0,0 +1,91 @@ + + + + + + + Search + + + + + + + + + + + + +
+ + + +
+
+ +
+

+ Search results for +

+ +
+
+ +
+
+ + +
+ + + + + diff --git a/API_NetFramework/VSdoc/search--/s_0.js b/API_NetFramework/VSdoc/search--/s_0.js new file mode 100644 index 00000000..b1d97d1f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_0.js @@ -0,0 +1 @@ +search_result['0']=["index.html","Default page",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_1.js b/API_NetFramework/VSdoc/search--/s_1.js new file mode 100644 index 00000000..b3ebedf0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_1.js @@ -0,0 +1 @@ +search_result['1']=["search--.html","Search",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_10.js b/API_NetFramework/VSdoc/search--/s_10.js new file mode 100644 index 00000000..80de7863 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_10.js @@ -0,0 +1 @@ +search_result['10']=["topic_0000000000000003.html","FilterConfig Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_100.js b/API_NetFramework/VSdoc/search--/s_100.js new file mode 100644 index 00000000..79761917 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_100.js @@ -0,0 +1 @@ +search_result['100']=["topic_0000000000000027.html","HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String, String()) Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_101.js b/API_NetFramework/VSdoc/search--/s_101.js new file mode 100644 index 00000000..2a9eed8f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_101.js @@ -0,0 +1 @@ +search_result['101']=["topic_0000000000000027_overloads--.html","HelpPageConfigurationExtensions.SetActualResponseType Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_102.js b/API_NetFramework/VSdoc/search--/s_102.js new file mode 100644 index 00000000..2699783b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_102.js @@ -0,0 +1 @@ +search_result['102']=["topic_0000000000000028.html","HelpPageConfigurationExtensions.GetHelpPageSampleGenerator Method","Gets the help page sample generator."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_103.js b/API_NetFramework/VSdoc/search--/s_103.js new file mode 100644 index 00000000..fcf59e72 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_103.js @@ -0,0 +1 @@ +search_result['103']=["topic_0000000000000029.html","HelpPageConfigurationExtensions.SetHelpPageSampleGenerator Method","Sets the help page sample generator."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_104.js b/API_NetFramework/VSdoc/search--/s_104.js new file mode 100644 index 00000000..24b07d42 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_104.js @@ -0,0 +1 @@ +search_result['104']=["topic_000000000000002A.html","HelpPageConfigurationExtensions.GetModelDescriptionGenerator Method","Gets the model description generator."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_105.js b/API_NetFramework/VSdoc/search--/s_105.js new file mode 100644 index 00000000..90631d37 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_105.js @@ -0,0 +1 @@ +search_result['105']=["topic_000000000000002B.html","HelpPageConfigurationExtensions.GetHelpPageApiModel Method","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."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_106.js b/API_NetFramework/VSdoc/search--/s_106.js new file mode 100644 index 00000000..efbb748d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_106.js @@ -0,0 +1 @@ +search_result['106']=["topic_000000000000002C.html","API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_107.js b/API_NetFramework/VSdoc/search--/s_107.js new file mode 100644 index 00000000..b8b3bda6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_107.js @@ -0,0 +1 @@ +search_result['107']=["topic_000000000000002D.html","CollectionModelDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_108.js b/API_NetFramework/VSdoc/search--/s_108.js new file mode 100644 index 00000000..4d0d2382 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_108.js @@ -0,0 +1 @@ +search_result['108']=["topic_000000000000002D_attached_props--.html","CollectionModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_109.js b/API_NetFramework/VSdoc/search--/s_109.js new file mode 100644 index 00000000..40f4694e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_109.js @@ -0,0 +1 @@ +search_result['109']=["topic_000000000000002D_events--.html","CollectionModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_11.js b/API_NetFramework/VSdoc/search--/s_11.js new file mode 100644 index 00000000..431a3220 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_11.js @@ -0,0 +1 @@ +search_result['11']=["topic_0000000000000003_attached_props--.html","FilterConfig Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_110.js b/API_NetFramework/VSdoc/search--/s_110.js new file mode 100644 index 00000000..d80a7a0c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_110.js @@ -0,0 +1 @@ +search_result['110']=["topic_000000000000002D_methods--.html","CollectionModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_111.js b/API_NetFramework/VSdoc/search--/s_111.js new file mode 100644 index 00000000..a1fd9a1c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_111.js @@ -0,0 +1 @@ +search_result['111']=["topic_000000000000002D_props--.html","CollectionModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_112.js b/API_NetFramework/VSdoc/search--/s_112.js new file mode 100644 index 00000000..ef4dd607 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_112.js @@ -0,0 +1 @@ +search_result['112']=["topic_000000000000002D_vars--.html","CollectionModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_113.js b/API_NetFramework/VSdoc/search--/s_113.js new file mode 100644 index 00000000..37393ef1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_113.js @@ -0,0 +1 @@ +search_result['113']=["topic_000000000000002E.html","CollectionModelDescription.ElementDescription Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_114.js b/API_NetFramework/VSdoc/search--/s_114.js new file mode 100644 index 00000000..9464b47c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_114.js @@ -0,0 +1 @@ +search_result['114']=["topic_000000000000002F.html","ComplexTypeModelDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_115.js b/API_NetFramework/VSdoc/search--/s_115.js new file mode 100644 index 00000000..efe9a271 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_115.js @@ -0,0 +1 @@ +search_result['115']=["topic_000000000000002F_attached_props--.html","ComplexTypeModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_116.js b/API_NetFramework/VSdoc/search--/s_116.js new file mode 100644 index 00000000..fd28c465 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_116.js @@ -0,0 +1 @@ +search_result['116']=["topic_000000000000002F_events--.html","ComplexTypeModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_117.js b/API_NetFramework/VSdoc/search--/s_117.js new file mode 100644 index 00000000..2b7fd803 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_117.js @@ -0,0 +1 @@ +search_result['117']=["topic_000000000000002F_methods--.html","ComplexTypeModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_118.js b/API_NetFramework/VSdoc/search--/s_118.js new file mode 100644 index 00000000..6800b341 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_118.js @@ -0,0 +1 @@ +search_result['118']=["topic_000000000000002F_props--.html","ComplexTypeModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_119.js b/API_NetFramework/VSdoc/search--/s_119.js new file mode 100644 index 00000000..e6976951 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_119.js @@ -0,0 +1 @@ +search_result['119']=["topic_000000000000002F_vars--.html","ComplexTypeModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_12.js b/API_NetFramework/VSdoc/search--/s_12.js new file mode 100644 index 00000000..d410138b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_12.js @@ -0,0 +1 @@ +search_result['12']=["topic_0000000000000003_events--.html","FilterConfig Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_120.js b/API_NetFramework/VSdoc/search--/s_120.js new file mode 100644 index 00000000..5763ec19 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_120.js @@ -0,0 +1 @@ +search_result['120']=["topic_0000000000000030.html","ComplexTypeModelDescription Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_121.js b/API_NetFramework/VSdoc/search--/s_121.js new file mode 100644 index 00000000..766e8452 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_121.js @@ -0,0 +1 @@ +search_result['121']=["topic_0000000000000031.html","ComplexTypeModelDescription.Properties Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_122.js b/API_NetFramework/VSdoc/search--/s_122.js new file mode 100644 index 00000000..9bac5ce2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_122.js @@ -0,0 +1 @@ +search_result['122']=["topic_0000000000000032.html","DictionaryModelDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_123.js b/API_NetFramework/VSdoc/search--/s_123.js new file mode 100644 index 00000000..d49bce26 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_123.js @@ -0,0 +1 @@ +search_result['123']=["topic_0000000000000032_attached_props--.html","DictionaryModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_124.js b/API_NetFramework/VSdoc/search--/s_124.js new file mode 100644 index 00000000..192820dc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_124.js @@ -0,0 +1 @@ +search_result['124']=["topic_0000000000000032_events--.html","DictionaryModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_125.js b/API_NetFramework/VSdoc/search--/s_125.js new file mode 100644 index 00000000..4cfedb5f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_125.js @@ -0,0 +1 @@ +search_result['125']=["topic_0000000000000032_methods--.html","DictionaryModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_126.js b/API_NetFramework/VSdoc/search--/s_126.js new file mode 100644 index 00000000..9c5d5fcf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_126.js @@ -0,0 +1 @@ +search_result['126']=["topic_0000000000000032_props--.html","DictionaryModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_127.js b/API_NetFramework/VSdoc/search--/s_127.js new file mode 100644 index 00000000..5584d338 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_127.js @@ -0,0 +1 @@ +search_result['127']=["topic_0000000000000032_vars--.html","DictionaryModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_128.js b/API_NetFramework/VSdoc/search--/s_128.js new file mode 100644 index 00000000..31a5d441 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_128.js @@ -0,0 +1 @@ +search_result['128']=["topic_0000000000000033.html","EnumTypeModelDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_129.js b/API_NetFramework/VSdoc/search--/s_129.js new file mode 100644 index 00000000..0786cead --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_129.js @@ -0,0 +1 @@ +search_result['129']=["topic_0000000000000033_attached_props--.html","EnumTypeModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_13.js b/API_NetFramework/VSdoc/search--/s_13.js new file mode 100644 index 00000000..82537769 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_13.js @@ -0,0 +1 @@ +search_result['13']=["topic_0000000000000003_methods--.html","FilterConfig Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_130.js b/API_NetFramework/VSdoc/search--/s_130.js new file mode 100644 index 00000000..e0d2e26b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_130.js @@ -0,0 +1 @@ +search_result['130']=["topic_0000000000000033_events--.html","EnumTypeModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_131.js b/API_NetFramework/VSdoc/search--/s_131.js new file mode 100644 index 00000000..b69f3448 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_131.js @@ -0,0 +1 @@ +search_result['131']=["topic_0000000000000033_methods--.html","EnumTypeModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_132.js b/API_NetFramework/VSdoc/search--/s_132.js new file mode 100644 index 00000000..0661f2de --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_132.js @@ -0,0 +1 @@ +search_result['132']=["topic_0000000000000033_props--.html","EnumTypeModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_133.js b/API_NetFramework/VSdoc/search--/s_133.js new file mode 100644 index 00000000..e1fcd816 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_133.js @@ -0,0 +1 @@ +search_result['133']=["topic_0000000000000033_vars--.html","EnumTypeModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_134.js b/API_NetFramework/VSdoc/search--/s_134.js new file mode 100644 index 00000000..dbfa7f49 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_134.js @@ -0,0 +1 @@ +search_result['134']=["topic_0000000000000034.html","EnumTypeModelDescription Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_135.js b/API_NetFramework/VSdoc/search--/s_135.js new file mode 100644 index 00000000..fa248015 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_135.js @@ -0,0 +1 @@ +search_result['135']=["topic_0000000000000035.html","EnumTypeModelDescription.Values Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_136.js b/API_NetFramework/VSdoc/search--/s_136.js new file mode 100644 index 00000000..b36413e7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_136.js @@ -0,0 +1 @@ +search_result['136']=["topic_0000000000000036.html","EnumValueDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_137.js b/API_NetFramework/VSdoc/search--/s_137.js new file mode 100644 index 00000000..85560e43 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_137.js @@ -0,0 +1 @@ +search_result['137']=["topic_0000000000000036_attached_props--.html","EnumValueDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_138.js b/API_NetFramework/VSdoc/search--/s_138.js new file mode 100644 index 00000000..7edc9c70 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_138.js @@ -0,0 +1 @@ +search_result['138']=["topic_0000000000000036_events--.html","EnumValueDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_139.js b/API_NetFramework/VSdoc/search--/s_139.js new file mode 100644 index 00000000..410b2d2b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_139.js @@ -0,0 +1 @@ +search_result['139']=["topic_0000000000000036_methods--.html","EnumValueDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_14.js b/API_NetFramework/VSdoc/search--/s_14.js new file mode 100644 index 00000000..73e27897 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_14.js @@ -0,0 +1 @@ +search_result['14']=["topic_0000000000000003_props--.html","FilterConfig Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_140.js b/API_NetFramework/VSdoc/search--/s_140.js new file mode 100644 index 00000000..5961506e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_140.js @@ -0,0 +1 @@ +search_result['140']=["topic_0000000000000036_props--.html","EnumValueDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_141.js b/API_NetFramework/VSdoc/search--/s_141.js new file mode 100644 index 00000000..61fa5b1a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_141.js @@ -0,0 +1 @@ +search_result['141']=["topic_0000000000000036_vars--.html","EnumValueDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_142.js b/API_NetFramework/VSdoc/search--/s_142.js new file mode 100644 index 00000000..0122bf04 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_142.js @@ -0,0 +1 @@ +search_result['142']=["topic_0000000000000037.html","EnumValueDescription.Documentation Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_143.js b/API_NetFramework/VSdoc/search--/s_143.js new file mode 100644 index 00000000..b05cab31 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_143.js @@ -0,0 +1 @@ +search_result['143']=["topic_0000000000000038.html","EnumValueDescription.Name Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_144.js b/API_NetFramework/VSdoc/search--/s_144.js new file mode 100644 index 00000000..445723cc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_144.js @@ -0,0 +1 @@ +search_result['144']=["topic_0000000000000039.html","EnumValueDescription.Value Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_145.js b/API_NetFramework/VSdoc/search--/s_145.js new file mode 100644 index 00000000..e77ef9cc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_145.js @@ -0,0 +1 @@ +search_result['145']=["topic_000000000000003A.html","IModelDocumentationProvider Interface",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_146.js b/API_NetFramework/VSdoc/search--/s_146.js new file mode 100644 index 00000000..c6b08a1b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_146.js @@ -0,0 +1 @@ +search_result['146']=["topic_000000000000003A_attached_props--.html","IModelDocumentationProvider Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_147.js b/API_NetFramework/VSdoc/search--/s_147.js new file mode 100644 index 00000000..2e62fd3a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_147.js @@ -0,0 +1 @@ +search_result['147']=["topic_000000000000003A_events--.html","IModelDocumentationProvider Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_148.js b/API_NetFramework/VSdoc/search--/s_148.js new file mode 100644 index 00000000..b14b7e40 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_148.js @@ -0,0 +1 @@ +search_result['148']=["topic_000000000000003A_methods--.html","IModelDocumentationProvider Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_149.js b/API_NetFramework/VSdoc/search--/s_149.js new file mode 100644 index 00000000..69d6f220 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_149.js @@ -0,0 +1 @@ +search_result['149']=["topic_000000000000003A_props--.html","IModelDocumentationProvider Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_15.js b/API_NetFramework/VSdoc/search--/s_15.js new file mode 100644 index 00000000..97c3a87a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_15.js @@ -0,0 +1 @@ +search_result['15']=["topic_0000000000000003_vars--.html","FilterConfig Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_150.js b/API_NetFramework/VSdoc/search--/s_150.js new file mode 100644 index 00000000..2a51e4c8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_150.js @@ -0,0 +1 @@ +search_result['150']=["topic_000000000000003A_vars--.html","IModelDocumentationProvider Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_151.js b/API_NetFramework/VSdoc/search--/s_151.js new file mode 100644 index 00000000..71f624ab --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_151.js @@ -0,0 +1 @@ +search_result['151']=["topic_000000000000003B.html","IModelDocumentationProvider.GetDocumentation (MemberInfo) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_152.js b/API_NetFramework/VSdoc/search--/s_152.js new file mode 100644 index 00000000..43398ea0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_152.js @@ -0,0 +1 @@ +search_result['152']=["topic_000000000000003B_overloads--.html","IModelDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_153.js b/API_NetFramework/VSdoc/search--/s_153.js new file mode 100644 index 00000000..5ce14ac4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_153.js @@ -0,0 +1 @@ +search_result['153']=["topic_000000000000003C.html","IModelDocumentationProvider.GetDocumentation (Type) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_154.js b/API_NetFramework/VSdoc/search--/s_154.js new file mode 100644 index 00000000..2006b879 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_154.js @@ -0,0 +1 @@ +search_result['154']=["topic_000000000000003C_overloads--.html","IModelDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_155.js b/API_NetFramework/VSdoc/search--/s_155.js new file mode 100644 index 00000000..e67bcac1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_155.js @@ -0,0 +1 @@ +search_result['155']=["topic_000000000000003D.html","KeyValuePairModelDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_156.js b/API_NetFramework/VSdoc/search--/s_156.js new file mode 100644 index 00000000..37e71567 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_156.js @@ -0,0 +1 @@ +search_result['156']=["topic_000000000000003D_attached_props--.html","KeyValuePairModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_157.js b/API_NetFramework/VSdoc/search--/s_157.js new file mode 100644 index 00000000..28054b5e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_157.js @@ -0,0 +1 @@ +search_result['157']=["topic_000000000000003D_events--.html","KeyValuePairModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_158.js b/API_NetFramework/VSdoc/search--/s_158.js new file mode 100644 index 00000000..8ea635dc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_158.js @@ -0,0 +1 @@ +search_result['158']=["topic_000000000000003D_methods--.html","KeyValuePairModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_159.js b/API_NetFramework/VSdoc/search--/s_159.js new file mode 100644 index 00000000..7729f703 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_159.js @@ -0,0 +1 @@ +search_result['159']=["topic_000000000000003D_props--.html","KeyValuePairModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_16.js b/API_NetFramework/VSdoc/search--/s_16.js new file mode 100644 index 00000000..d149fbc2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_16.js @@ -0,0 +1 @@ +search_result['16']=["topic_0000000000000004.html","FilterConfig.RegisterGlobalFilters Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_160.js b/API_NetFramework/VSdoc/search--/s_160.js new file mode 100644 index 00000000..949f1918 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_160.js @@ -0,0 +1 @@ +search_result['160']=["topic_000000000000003D_vars--.html","KeyValuePairModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_161.js b/API_NetFramework/VSdoc/search--/s_161.js new file mode 100644 index 00000000..1bb6ff47 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_161.js @@ -0,0 +1 @@ +search_result['161']=["topic_000000000000003E.html","KeyValuePairModelDescription.KeyModelDescription Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_162.js b/API_NetFramework/VSdoc/search--/s_162.js new file mode 100644 index 00000000..1ecc4f42 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_162.js @@ -0,0 +1 @@ +search_result['162']=["topic_000000000000003F.html","KeyValuePairModelDescription.ValueModelDescription Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_163.js b/API_NetFramework/VSdoc/search--/s_163.js new file mode 100644 index 00000000..6159cf59 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_163.js @@ -0,0 +1 @@ +search_result['163']=["topic_0000000000000040.html","ModelDescription Class","Describes a type model."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_164.js b/API_NetFramework/VSdoc/search--/s_164.js new file mode 100644 index 00000000..d8ec81cf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_164.js @@ -0,0 +1 @@ +search_result['164']=["topic_0000000000000040_attached_props--.html","ModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_165.js b/API_NetFramework/VSdoc/search--/s_165.js new file mode 100644 index 00000000..5f6a0577 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_165.js @@ -0,0 +1 @@ +search_result['165']=["topic_0000000000000040_events--.html","ModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_166.js b/API_NetFramework/VSdoc/search--/s_166.js new file mode 100644 index 00000000..ed3cf293 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_166.js @@ -0,0 +1 @@ +search_result['166']=["topic_0000000000000040_methods--.html","ModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_167.js b/API_NetFramework/VSdoc/search--/s_167.js new file mode 100644 index 00000000..55e7476b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_167.js @@ -0,0 +1 @@ +search_result['167']=["topic_0000000000000040_props--.html","ModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_168.js b/API_NetFramework/VSdoc/search--/s_168.js new file mode 100644 index 00000000..9fa895e0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_168.js @@ -0,0 +1 @@ +search_result['168']=["topic_0000000000000040_vars--.html","ModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_169.js b/API_NetFramework/VSdoc/search--/s_169.js new file mode 100644 index 00000000..160665c7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_169.js @@ -0,0 +1 @@ +search_result['169']=["topic_0000000000000041.html","ModelDescription.Documentation Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_17.js b/API_NetFramework/VSdoc/search--/s_17.js new file mode 100644 index 00000000..d4ac6898 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_17.js @@ -0,0 +1 @@ +search_result['17']=["topic_0000000000000005.html","RouteConfig Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_170.js b/API_NetFramework/VSdoc/search--/s_170.js new file mode 100644 index 00000000..33483f7e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_170.js @@ -0,0 +1 @@ +search_result['170']=["topic_0000000000000042.html","ModelDescription.ModelType Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_171.js b/API_NetFramework/VSdoc/search--/s_171.js new file mode 100644 index 00000000..26c0b97e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_171.js @@ -0,0 +1 @@ +search_result['171']=["topic_0000000000000043.html","ModelDescription.Name Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_172.js b/API_NetFramework/VSdoc/search--/s_172.js new file mode 100644 index 00000000..11411445 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_172.js @@ -0,0 +1 @@ +search_result['172']=["topic_0000000000000044.html","ModelDescriptionGenerator Class","Generates model descriptions for given types."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_173.js b/API_NetFramework/VSdoc/search--/s_173.js new file mode 100644 index 00000000..be46eafd --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_173.js @@ -0,0 +1 @@ +search_result['173']=["topic_0000000000000044_attached_props--.html","ModelDescriptionGenerator Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_174.js b/API_NetFramework/VSdoc/search--/s_174.js new file mode 100644 index 00000000..da87cd26 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_174.js @@ -0,0 +1 @@ +search_result['174']=["topic_0000000000000044_events--.html","ModelDescriptionGenerator Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_175.js b/API_NetFramework/VSdoc/search--/s_175.js new file mode 100644 index 00000000..64fa1ddf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_175.js @@ -0,0 +1 @@ +search_result['175']=["topic_0000000000000044_methods--.html","ModelDescriptionGenerator Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_176.js b/API_NetFramework/VSdoc/search--/s_176.js new file mode 100644 index 00000000..ed37a51b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_176.js @@ -0,0 +1 @@ +search_result['176']=["topic_0000000000000044_props--.html","ModelDescriptionGenerator Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_177.js b/API_NetFramework/VSdoc/search--/s_177.js new file mode 100644 index 00000000..98ba1398 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_177.js @@ -0,0 +1 @@ +search_result['177']=["topic_0000000000000044_vars--.html","ModelDescriptionGenerator Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_178.js b/API_NetFramework/VSdoc/search--/s_178.js new file mode 100644 index 00000000..9ac3dc12 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_178.js @@ -0,0 +1 @@ +search_result['178']=["topic_0000000000000045.html","ModelDescriptionGenerator Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_179.js b/API_NetFramework/VSdoc/search--/s_179.js new file mode 100644 index 00000000..91c64b71 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_179.js @@ -0,0 +1 @@ +search_result['179']=["topic_0000000000000046.html","ModelDescriptionGenerator.GeneratedModels Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_18.js b/API_NetFramework/VSdoc/search--/s_18.js new file mode 100644 index 00000000..a8a62f34 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_18.js @@ -0,0 +1 @@ +search_result['18']=["topic_0000000000000005_attached_props--.html","RouteConfig Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_180.js b/API_NetFramework/VSdoc/search--/s_180.js new file mode 100644 index 00000000..70dfbb73 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_180.js @@ -0,0 +1 @@ +search_result['180']=["topic_0000000000000047.html","ModelDescriptionGenerator.GetOrCreateModelDescription Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_181.js b/API_NetFramework/VSdoc/search--/s_181.js new file mode 100644 index 00000000..e0e0c9db --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_181.js @@ -0,0 +1 @@ +search_result['181']=["topic_0000000000000048.html","ModelNameAttribute Class","Use this attribute to change the name of the ModelDescription generated for a type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_182.js b/API_NetFramework/VSdoc/search--/s_182.js new file mode 100644 index 00000000..9b0aa8d1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_182.js @@ -0,0 +1 @@ +search_result['182']=["topic_0000000000000048_attached_props--.html","ModelNameAttribute Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_183.js b/API_NetFramework/VSdoc/search--/s_183.js new file mode 100644 index 00000000..22add316 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_183.js @@ -0,0 +1 @@ +search_result['183']=["topic_0000000000000048_events--.html","ModelNameAttribute Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_184.js b/API_NetFramework/VSdoc/search--/s_184.js new file mode 100644 index 00000000..74a8c4c0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_184.js @@ -0,0 +1 @@ +search_result['184']=["topic_0000000000000048_methods--.html","ModelNameAttribute Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_185.js b/API_NetFramework/VSdoc/search--/s_185.js new file mode 100644 index 00000000..d49b7008 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_185.js @@ -0,0 +1 @@ +search_result['185']=["topic_0000000000000048_props--.html","ModelNameAttribute Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_186.js b/API_NetFramework/VSdoc/search--/s_186.js new file mode 100644 index 00000000..fe32dbce --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_186.js @@ -0,0 +1 @@ +search_result['186']=["topic_0000000000000048_vars--.html","ModelNameAttribute Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_187.js b/API_NetFramework/VSdoc/search--/s_187.js new file mode 100644 index 00000000..2b3631d3 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_187.js @@ -0,0 +1 @@ +search_result['187']=["topic_0000000000000049.html","ModelNameAttribute Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_188.js b/API_NetFramework/VSdoc/search--/s_188.js new file mode 100644 index 00000000..6524f6aa --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_188.js @@ -0,0 +1 @@ +search_result['188']=["topic_000000000000004A.html","ModelNameAttribute.Name Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_189.js b/API_NetFramework/VSdoc/search--/s_189.js new file mode 100644 index 00000000..dad7f9a8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_189.js @@ -0,0 +1 @@ +search_result['189']=["topic_000000000000004B.html","ParameterAnnotation Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_19.js b/API_NetFramework/VSdoc/search--/s_19.js new file mode 100644 index 00000000..caa6dc06 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_19.js @@ -0,0 +1 @@ +search_result['19']=["topic_0000000000000005_events--.html","RouteConfig Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_190.js b/API_NetFramework/VSdoc/search--/s_190.js new file mode 100644 index 00000000..d700df0b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_190.js @@ -0,0 +1 @@ +search_result['190']=["topic_000000000000004B_attached_props--.html","ParameterAnnotation Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_191.js b/API_NetFramework/VSdoc/search--/s_191.js new file mode 100644 index 00000000..0feab93f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_191.js @@ -0,0 +1 @@ +search_result['191']=["topic_000000000000004B_events--.html","ParameterAnnotation Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_192.js b/API_NetFramework/VSdoc/search--/s_192.js new file mode 100644 index 00000000..c4ea5c44 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_192.js @@ -0,0 +1 @@ +search_result['192']=["topic_000000000000004B_methods--.html","ParameterAnnotation Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_193.js b/API_NetFramework/VSdoc/search--/s_193.js new file mode 100644 index 00000000..2c8493f7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_193.js @@ -0,0 +1 @@ +search_result['193']=["topic_000000000000004B_props--.html","ParameterAnnotation Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_194.js b/API_NetFramework/VSdoc/search--/s_194.js new file mode 100644 index 00000000..73061e74 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_194.js @@ -0,0 +1 @@ +search_result['194']=["topic_000000000000004B_vars--.html","ParameterAnnotation Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_195.js b/API_NetFramework/VSdoc/search--/s_195.js new file mode 100644 index 00000000..2bf4b085 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_195.js @@ -0,0 +1 @@ +search_result['195']=["topic_000000000000004C.html","ParameterAnnotation.AnnotationAttribute Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_196.js b/API_NetFramework/VSdoc/search--/s_196.js new file mode 100644 index 00000000..6491ec44 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_196.js @@ -0,0 +1 @@ +search_result['196']=["topic_000000000000004D.html","ParameterAnnotation.Documentation Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_197.js b/API_NetFramework/VSdoc/search--/s_197.js new file mode 100644 index 00000000..985fba8d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_197.js @@ -0,0 +1 @@ +search_result['197']=["topic_000000000000004E.html","ParameterDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_198.js b/API_NetFramework/VSdoc/search--/s_198.js new file mode 100644 index 00000000..bd89d3ce --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_198.js @@ -0,0 +1 @@ +search_result['198']=["topic_000000000000004E_attached_props--.html","ParameterDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_199.js b/API_NetFramework/VSdoc/search--/s_199.js new file mode 100644 index 00000000..6b6e55d9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_199.js @@ -0,0 +1 @@ +search_result['199']=["topic_000000000000004E_events--.html","ParameterDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_2.js b/API_NetFramework/VSdoc/search--/s_2.js new file mode 100644 index 00000000..30b2b5f2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_2.js @@ -0,0 +1 @@ +search_result['2']=["topic_0000000000000000.html","API_NetFramework Namespace",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_20.js b/API_NetFramework/VSdoc/search--/s_20.js new file mode 100644 index 00000000..a165dc5a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_20.js @@ -0,0 +1 @@ +search_result['20']=["topic_0000000000000005_methods--.html","RouteConfig Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_200.js b/API_NetFramework/VSdoc/search--/s_200.js new file mode 100644 index 00000000..f00f5879 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_200.js @@ -0,0 +1 @@ +search_result['200']=["topic_000000000000004E_methods--.html","ParameterDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_201.js b/API_NetFramework/VSdoc/search--/s_201.js new file mode 100644 index 00000000..faf27485 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_201.js @@ -0,0 +1 @@ +search_result['201']=["topic_000000000000004E_props--.html","ParameterDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_202.js b/API_NetFramework/VSdoc/search--/s_202.js new file mode 100644 index 00000000..39fe6cba --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_202.js @@ -0,0 +1 @@ +search_result['202']=["topic_000000000000004E_vars--.html","ParameterDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_203.js b/API_NetFramework/VSdoc/search--/s_203.js new file mode 100644 index 00000000..aaec1216 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_203.js @@ -0,0 +1 @@ +search_result['203']=["topic_000000000000004F.html","ParameterDescription Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_204.js b/API_NetFramework/VSdoc/search--/s_204.js new file mode 100644 index 00000000..60283c99 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_204.js @@ -0,0 +1 @@ +search_result['204']=["topic_0000000000000050.html","ParameterDescription.Annotations Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_205.js b/API_NetFramework/VSdoc/search--/s_205.js new file mode 100644 index 00000000..2fc49c17 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_205.js @@ -0,0 +1 @@ +search_result['205']=["topic_0000000000000051.html","ParameterDescription.Documentation Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_206.js b/API_NetFramework/VSdoc/search--/s_206.js new file mode 100644 index 00000000..bdcd8eac --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_206.js @@ -0,0 +1 @@ +search_result['206']=["topic_0000000000000052.html","ParameterDescription.Name Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_207.js b/API_NetFramework/VSdoc/search--/s_207.js new file mode 100644 index 00000000..58897b97 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_207.js @@ -0,0 +1 @@ +search_result['207']=["topic_0000000000000053.html","ParameterDescription.TypeDescription Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_208.js b/API_NetFramework/VSdoc/search--/s_208.js new file mode 100644 index 00000000..876b8210 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_208.js @@ -0,0 +1 @@ +search_result['208']=["topic_0000000000000054.html","SimpleTypeModelDescription Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_209.js b/API_NetFramework/VSdoc/search--/s_209.js new file mode 100644 index 00000000..dd32fb01 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_209.js @@ -0,0 +1 @@ +search_result['209']=["topic_0000000000000054_attached_props--.html","SimpleTypeModelDescription Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_21.js b/API_NetFramework/VSdoc/search--/s_21.js new file mode 100644 index 00000000..10f67cd5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_21.js @@ -0,0 +1 @@ +search_result['21']=["topic_0000000000000005_props--.html","RouteConfig Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_210.js b/API_NetFramework/VSdoc/search--/s_210.js new file mode 100644 index 00000000..6b05c8d6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_210.js @@ -0,0 +1 @@ +search_result['210']=["topic_0000000000000054_events--.html","SimpleTypeModelDescription Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_211.js b/API_NetFramework/VSdoc/search--/s_211.js new file mode 100644 index 00000000..4f763e8b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_211.js @@ -0,0 +1 @@ +search_result['211']=["topic_0000000000000054_methods--.html","SimpleTypeModelDescription Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_212.js b/API_NetFramework/VSdoc/search--/s_212.js new file mode 100644 index 00000000..18b9f9e1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_212.js @@ -0,0 +1 @@ +search_result['212']=["topic_0000000000000054_props--.html","SimpleTypeModelDescription Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_213.js b/API_NetFramework/VSdoc/search--/s_213.js new file mode 100644 index 00000000..da3bc636 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_213.js @@ -0,0 +1 @@ +search_result['213']=["topic_0000000000000054_vars--.html","SimpleTypeModelDescription Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_214.js b/API_NetFramework/VSdoc/search--/s_214.js new file mode 100644 index 00000000..46684501 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_214.js @@ -0,0 +1 @@ +search_result['214']=["topic_0000000000000055.html","API_NetFramework.Areas.HelpPage.Models Namespace",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_215.js b/API_NetFramework/VSdoc/search--/s_215.js new file mode 100644 index 00000000..941b70ac --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_215.js @@ -0,0 +1 @@ +search_result['215']=["topic_0000000000000056.html","HelpPageApiModel Class","The model that represents an API displayed on the help page."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_216.js b/API_NetFramework/VSdoc/search--/s_216.js new file mode 100644 index 00000000..4fceadfa --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_216.js @@ -0,0 +1 @@ +search_result['216']=["topic_0000000000000056_attached_props--.html","HelpPageApiModel Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_217.js b/API_NetFramework/VSdoc/search--/s_217.js new file mode 100644 index 00000000..3cba9b93 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_217.js @@ -0,0 +1 @@ +search_result['217']=["topic_0000000000000056_events--.html","HelpPageApiModel Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_218.js b/API_NetFramework/VSdoc/search--/s_218.js new file mode 100644 index 00000000..1e6ab8ec --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_218.js @@ -0,0 +1 @@ +search_result['218']=["topic_0000000000000056_methods--.html","HelpPageApiModel Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_219.js b/API_NetFramework/VSdoc/search--/s_219.js new file mode 100644 index 00000000..cc4b32c3 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_219.js @@ -0,0 +1 @@ +search_result['219']=["topic_0000000000000056_props--.html","HelpPageApiModel Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_22.js b/API_NetFramework/VSdoc/search--/s_22.js new file mode 100644 index 00000000..4bd5d91a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_22.js @@ -0,0 +1 @@ +search_result['22']=["topic_0000000000000005_vars--.html","RouteConfig Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_220.js b/API_NetFramework/VSdoc/search--/s_220.js new file mode 100644 index 00000000..6546302a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_220.js @@ -0,0 +1 @@ +search_result['220']=["topic_0000000000000056_vars--.html","HelpPageApiModel Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_221.js b/API_NetFramework/VSdoc/search--/s_221.js new file mode 100644 index 00000000..78675bca --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_221.js @@ -0,0 +1 @@ +search_result['221']=["topic_0000000000000057.html","HelpPageApiModel Constructor","Initializes a new instance of the HelpPageApiModel class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_222.js b/API_NetFramework/VSdoc/search--/s_222.js new file mode 100644 index 00000000..f4ec2db4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_222.js @@ -0,0 +1 @@ +search_result['222']=["topic_0000000000000058.html","HelpPageApiModel.ApiDescription Property","Gets or sets the ApiDescription that describes the API."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_223.js b/API_NetFramework/VSdoc/search--/s_223.js new file mode 100644 index 00000000..ee7247b2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_223.js @@ -0,0 +1 @@ +search_result['223']=["topic_0000000000000059.html","HelpPageApiModel.UriParameters Property","Gets or sets the ParameterDescription collection that describes the URI parameters for the API."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_224.js b/API_NetFramework/VSdoc/search--/s_224.js new file mode 100644 index 00000000..45ce707a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_224.js @@ -0,0 +1 @@ +search_result['224']=["topic_000000000000005A.html","HelpPageApiModel.RequestDocumentation Property","Gets or sets the documentation for the request."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_225.js b/API_NetFramework/VSdoc/search--/s_225.js new file mode 100644 index 00000000..6342a107 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_225.js @@ -0,0 +1 @@ +search_result['225']=["topic_000000000000005B.html","HelpPageApiModel.RequestModelDescription Property","Gets or sets the ModelDescription that describes the request body."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_226.js b/API_NetFramework/VSdoc/search--/s_226.js new file mode 100644 index 00000000..8066a487 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_226.js @@ -0,0 +1 @@ +search_result['226']=["topic_000000000000005C.html","HelpPageApiModel.RequestBodyParameters Property","Gets the request body parameter descriptions."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_227.js b/API_NetFramework/VSdoc/search--/s_227.js new file mode 100644 index 00000000..6ccd6a85 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_227.js @@ -0,0 +1 @@ +search_result['227']=["topic_000000000000005D.html","HelpPageApiModel.ResourceDescription Property","Gets or sets the ModelDescription that describes the resource."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_228.js b/API_NetFramework/VSdoc/search--/s_228.js new file mode 100644 index 00000000..ef9658db --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_228.js @@ -0,0 +1 @@ +search_result['228']=["topic_000000000000005E.html","HelpPageApiModel.ResourceProperties Property","Gets the resource property descriptions."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_229.js b/API_NetFramework/VSdoc/search--/s_229.js new file mode 100644 index 00000000..d5e41bbf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_229.js @@ -0,0 +1 @@ +search_result['229']=["topic_000000000000005F.html","HelpPageApiModel.SampleRequests Property","Gets the sample requests associated with the API."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_23.js b/API_NetFramework/VSdoc/search--/s_23.js new file mode 100644 index 00000000..2c63019d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_23.js @@ -0,0 +1 @@ +search_result['23']=["topic_0000000000000006.html","RouteConfig.RegisterRoutes Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_230.js b/API_NetFramework/VSdoc/search--/s_230.js new file mode 100644 index 00000000..2a13aae8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_230.js @@ -0,0 +1 @@ +search_result['230']=["topic_0000000000000060.html","HelpPageApiModel.SampleResponses Property","Gets the sample responses associated with the API."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_231.js b/API_NetFramework/VSdoc/search--/s_231.js new file mode 100644 index 00000000..6ed01843 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_231.js @@ -0,0 +1 @@ +search_result['231']=["topic_0000000000000061.html","HelpPageApiModel.ErrorMessages Property","Gets the error messages associated with this model."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_232.js b/API_NetFramework/VSdoc/search--/s_232.js new file mode 100644 index 00000000..64904cfc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_232.js @@ -0,0 +1 @@ +search_result['232']=["topic_0000000000000062.html","HelpPageSampleGenerator Class","This class will generate the samples for the help page."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_233.js b/API_NetFramework/VSdoc/search--/s_233.js new file mode 100644 index 00000000..b7c7810c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_233.js @@ -0,0 +1 @@ +search_result['233']=["topic_0000000000000062_attached_props--.html","HelpPageSampleGenerator Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_234.js b/API_NetFramework/VSdoc/search--/s_234.js new file mode 100644 index 00000000..8a1752c7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_234.js @@ -0,0 +1 @@ +search_result['234']=["topic_0000000000000062_events--.html","HelpPageSampleGenerator Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_235.js b/API_NetFramework/VSdoc/search--/s_235.js new file mode 100644 index 00000000..fa95cc91 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_235.js @@ -0,0 +1 @@ +search_result['235']=["topic_0000000000000062_methods--.html","HelpPageSampleGenerator Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_236.js b/API_NetFramework/VSdoc/search--/s_236.js new file mode 100644 index 00000000..57df63c6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_236.js @@ -0,0 +1 @@ +search_result['236']=["topic_0000000000000062_props--.html","HelpPageSampleGenerator Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_237.js b/API_NetFramework/VSdoc/search--/s_237.js new file mode 100644 index 00000000..c5e57ca0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_237.js @@ -0,0 +1 @@ +search_result['237']=["topic_0000000000000062_vars--.html","HelpPageSampleGenerator Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_238.js b/API_NetFramework/VSdoc/search--/s_238.js new file mode 100644 index 00000000..9951e203 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_238.js @@ -0,0 +1 @@ +search_result['238']=["topic_0000000000000063.html","HelpPageSampleGenerator Constructor","Initializes a new instance of the HelpPageSampleGenerator class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_239.js b/API_NetFramework/VSdoc/search--/s_239.js new file mode 100644 index 00000000..c5200086 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_239.js @@ -0,0 +1 @@ +search_result['239']=["topic_0000000000000064.html","HelpPageSampleGenerator.ActualHttpMessageTypes Property","Gets CLR types that are used as the content of HttpRequestMessage or HttpResponseMessage."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_24.js b/API_NetFramework/VSdoc/search--/s_24.js new file mode 100644 index 00000000..b2d612fe --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_24.js @@ -0,0 +1 @@ +search_result['24']=["topic_0000000000000007.html","SwaggerConfig Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_240.js b/API_NetFramework/VSdoc/search--/s_240.js new file mode 100644 index 00000000..25f30653 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_240.js @@ -0,0 +1 @@ +search_result['240']=["topic_0000000000000065.html","HelpPageSampleGenerator.ActionSamples Property","Gets the objects that are used directly as samples for certain actions."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_241.js b/API_NetFramework/VSdoc/search--/s_241.js new file mode 100644 index 00000000..afded485 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_241.js @@ -0,0 +1 @@ +search_result['241']=["topic_0000000000000066.html","HelpPageSampleGenerator.SampleObjects Property","Gets the objects that are serialized as samples by the supported formatters."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_242.js b/API_NetFramework/VSdoc/search--/s_242.js new file mode 100644 index 00000000..2bb9e4b4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_242.js @@ -0,0 +1 @@ +search_result['242']=["topic_0000000000000067.html","HelpPageSampleGenerator.SampleObjectFactories Property","Gets factories for the objects that the supported formatters will serialize as samples. Processed in order,\r\nstopping when the factory successfully returns a non- object."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_243.js b/API_NetFramework/VSdoc/search--/s_243.js new file mode 100644 index 00000000..69f5a2bc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_243.js @@ -0,0 +1 @@ +search_result['243']=["topic_0000000000000068.html","HelpPageSampleGenerator.GetSampleRequests Method","Gets the request body samples for a given ApiDescription."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_244.js b/API_NetFramework/VSdoc/search--/s_244.js new file mode 100644 index 00000000..4db88cf1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_244.js @@ -0,0 +1 @@ +search_result['244']=["topic_0000000000000069.html","HelpPageSampleGenerator.GetSampleResponses Method","Gets the response body samples for a given ApiDescription."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_245.js b/API_NetFramework/VSdoc/search--/s_245.js new file mode 100644 index 00000000..7d28c476 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_245.js @@ -0,0 +1 @@ +search_result['245']=["topic_000000000000006A.html","HelpPageSampleGenerator.GetSample Method","Gets the request or response body samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_246.js b/API_NetFramework/VSdoc/search--/s_246.js new file mode 100644 index 00000000..a6afcbb4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_246.js @@ -0,0 +1 @@ +search_result['246']=["topic_000000000000006B.html","HelpPageSampleGenerator.GetActionSample Method","Search for samples that are provided directly through ActionSamples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_247.js b/API_NetFramework/VSdoc/search--/s_247.js new file mode 100644 index 00000000..688889d7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_247.js @@ -0,0 +1 @@ +search_result['247']=["topic_000000000000006C.html","HelpPageSampleGenerator.GetSampleObject Method","Gets the sample object that will be serialized by the formatters.\r\nFirst, it will look at the SampleObjects. If no sample object is found, it will try to create\r\none using DefaultSampleObjectFactory (..."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_248.js b/API_NetFramework/VSdoc/search--/s_248.js new file mode 100644 index 00000000..8b10e083 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_248.js @@ -0,0 +1 @@ +search_result['248']=["topic_000000000000006D.html","HelpPageSampleGenerator.ResolveHttpRequestMessageType Method","Resolves the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_249.js b/API_NetFramework/VSdoc/search--/s_249.js new file mode 100644 index 00000000..d5d7eeaf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_249.js @@ -0,0 +1 @@ +search_result['249']=["topic_000000000000006E.html","HelpPageSampleGenerator.ResolveType Method","Resolves the type of the action parameter or return value when HttpRequestMessage or HttpResponseMessage is used."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_25.js b/API_NetFramework/VSdoc/search--/s_25.js new file mode 100644 index 00000000..95bbb3a1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_25.js @@ -0,0 +1 @@ +search_result['25']=["topic_0000000000000007_attached_props--.html","SwaggerConfig Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_250.js b/API_NetFramework/VSdoc/search--/s_250.js new file mode 100644 index 00000000..1e775209 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_250.js @@ -0,0 +1 @@ +search_result['250']=["topic_000000000000006F.html","HelpPageSampleGenerator.WriteSampleObjectUsingFormatter Method","Writes the sample object using formatter."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_251.js b/API_NetFramework/VSdoc/search--/s_251.js new file mode 100644 index 00000000..c500dea8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_251.js @@ -0,0 +1 @@ +search_result['251']=["topic_0000000000000070.html","HelpPageSampleKey Class","This is used to identify the place where the sample should be applied."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_252.js b/API_NetFramework/VSdoc/search--/s_252.js new file mode 100644 index 00000000..870f957f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_252.js @@ -0,0 +1 @@ +search_result['252']=["topic_0000000000000070_attached_props--.html","HelpPageSampleKey Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_253.js b/API_NetFramework/VSdoc/search--/s_253.js new file mode 100644 index 00000000..f2ed5d8b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_253.js @@ -0,0 +1 @@ +search_result['253']=["topic_0000000000000070_events--.html","HelpPageSampleKey Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_254.js b/API_NetFramework/VSdoc/search--/s_254.js new file mode 100644 index 00000000..ff7b8803 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_254.js @@ -0,0 +1 @@ +search_result['254']=["topic_0000000000000070_methods--.html","HelpPageSampleKey Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_255.js b/API_NetFramework/VSdoc/search--/s_255.js new file mode 100644 index 00000000..995f4330 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_255.js @@ -0,0 +1 @@ +search_result['255']=["topic_0000000000000070_props--.html","HelpPageSampleKey Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_256.js b/API_NetFramework/VSdoc/search--/s_256.js new file mode 100644 index 00000000..3d4f4d00 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_256.js @@ -0,0 +1 @@ +search_result['256']=["topic_0000000000000070_vars--.html","HelpPageSampleKey Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_257.js b/API_NetFramework/VSdoc/search--/s_257.js new file mode 100644 index 00000000..e2645d85 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_257.js @@ -0,0 +1 @@ +search_result['257']=["topic_0000000000000071.html","HelpPageSampleKey(MediaTypeHeaderValue) Constructor","Creates a new HelpPageSampleKey based on media type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_258.js b/API_NetFramework/VSdoc/search--/s_258.js new file mode 100644 index 00000000..fe98c127 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_258.js @@ -0,0 +1 @@ +search_result['258']=["topic_0000000000000071_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on media type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_259.js b/API_NetFramework/VSdoc/search--/s_259.js new file mode 100644 index 00000000..82a5bc0e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_259.js @@ -0,0 +1 @@ +search_result['259']=["topic_0000000000000072.html","HelpPageSampleKey(MediaTypeHeaderValue, Type) Constructor","Creates a new HelpPageSampleKey based on media type and CLR type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_26.js b/API_NetFramework/VSdoc/search--/s_26.js new file mode 100644 index 00000000..cc553e2b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_26.js @@ -0,0 +1 @@ +search_result['26']=["topic_0000000000000007_events--.html","SwaggerConfig Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_260.js b/API_NetFramework/VSdoc/search--/s_260.js new file mode 100644 index 00000000..1e4b708f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_260.js @@ -0,0 +1 @@ +search_result['260']=["topic_0000000000000072_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on media type and CLR type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_261.js b/API_NetFramework/VSdoc/search--/s_261.js new file mode 100644 index 00000000..80a6ae7b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_261.js @@ -0,0 +1 @@ +search_result['261']=["topic_0000000000000073.html","HelpPageSampleKey(SampleDirection, String, String, IEnumerable\u0026lt;String\u0026gt;) Constructor","Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_262.js b/API_NetFramework/VSdoc/search--/s_262.js new file mode 100644 index 00000000..7ce7aa96 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_262.js @@ -0,0 +1 @@ +search_result['262']=["topic_0000000000000073_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_263.js b/API_NetFramework/VSdoc/search--/s_263.js new file mode 100644 index 00000000..5e3902b3 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_263.js @@ -0,0 +1 @@ +search_result['263']=["topic_0000000000000074.html","HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, String, String, IEnumerable\u0026lt;String\u0026gt;) Constructor","Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_264.js b/API_NetFramework/VSdoc/search--/s_264.js new file mode 100644 index 00000000..187be78e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_264.js @@ -0,0 +1 @@ +search_result['264']=["topic_0000000000000074_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_265.js b/API_NetFramework/VSdoc/search--/s_265.js new file mode 100644 index 00000000..7e592d69 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_265.js @@ -0,0 +1 @@ +search_result['265']=["topic_0000000000000075.html","HelpPageSampleKey.ControllerName Property","Gets the name of the controller."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_266.js b/API_NetFramework/VSdoc/search--/s_266.js new file mode 100644 index 00000000..58959c52 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_266.js @@ -0,0 +1 @@ +search_result['266']=["topic_0000000000000076.html","HelpPageSampleKey.ActionName Property","Gets the name of the action."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_267.js b/API_NetFramework/VSdoc/search--/s_267.js new file mode 100644 index 00000000..88c7ebf2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_267.js @@ -0,0 +1 @@ +search_result['267']=["topic_0000000000000077.html","HelpPageSampleKey.MediaType Property","Gets the media type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_268.js b/API_NetFramework/VSdoc/search--/s_268.js new file mode 100644 index 00000000..ae5da378 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_268.js @@ -0,0 +1 @@ +search_result['268']=["topic_0000000000000078.html","HelpPageSampleKey.ParameterNames Property","Gets the parameter names."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_269.js b/API_NetFramework/VSdoc/search--/s_269.js new file mode 100644 index 00000000..e698f2e4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_269.js @@ -0,0 +1 @@ +search_result['269']=["topic_0000000000000079.html","HelpPageSampleKey.ParameterType Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_27.js b/API_NetFramework/VSdoc/search--/s_27.js new file mode 100644 index 00000000..3074f495 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_27.js @@ -0,0 +1 @@ +search_result['27']=["topic_0000000000000007_methods--.html","SwaggerConfig Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_270.js b/API_NetFramework/VSdoc/search--/s_270.js new file mode 100644 index 00000000..b14b56d8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_270.js @@ -0,0 +1 @@ +search_result['270']=["topic_000000000000007A.html","HelpPageSampleKey.SampleDirection Property","Gets the SampleDirection."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_271.js b/API_NetFramework/VSdoc/search--/s_271.js new file mode 100644 index 00000000..4a84719d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_271.js @@ -0,0 +1 @@ +search_result['271']=["topic_000000000000007B.html","HelpPageSampleKey.Equals Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_272.js b/API_NetFramework/VSdoc/search--/s_272.js new file mode 100644 index 00000000..f9633d7f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_272.js @@ -0,0 +1 @@ +search_result['272']=["topic_000000000000007C.html","HelpPageSampleKey.GetHashCode Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_273.js b/API_NetFramework/VSdoc/search--/s_273.js new file mode 100644 index 00000000..4b40c4f2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_273.js @@ -0,0 +1 @@ +search_result['273']=["topic_000000000000007D.html","ImageSample Class","This represents an image sample on the help page. There\u0027s a display template named ImageSample associated with this class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_274.js b/API_NetFramework/VSdoc/search--/s_274.js new file mode 100644 index 00000000..842a5e46 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_274.js @@ -0,0 +1 @@ +search_result['274']=["topic_000000000000007D_attached_props--.html","ImageSample Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_275.js b/API_NetFramework/VSdoc/search--/s_275.js new file mode 100644 index 00000000..47bf1b7c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_275.js @@ -0,0 +1 @@ +search_result['275']=["topic_000000000000007D_events--.html","ImageSample Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_276.js b/API_NetFramework/VSdoc/search--/s_276.js new file mode 100644 index 00000000..8607bd32 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_276.js @@ -0,0 +1 @@ +search_result['276']=["topic_000000000000007D_methods--.html","ImageSample Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_277.js b/API_NetFramework/VSdoc/search--/s_277.js new file mode 100644 index 00000000..08ac4a5a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_277.js @@ -0,0 +1 @@ +search_result['277']=["topic_000000000000007D_props--.html","ImageSample Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_278.js b/API_NetFramework/VSdoc/search--/s_278.js new file mode 100644 index 00000000..c4c856e0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_278.js @@ -0,0 +1 @@ +search_result['278']=["topic_000000000000007D_vars--.html","ImageSample Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_279.js b/API_NetFramework/VSdoc/search--/s_279.js new file mode 100644 index 00000000..db92a458 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_279.js @@ -0,0 +1 @@ +search_result['279']=["topic_000000000000007E.html","ImageSample Constructor","Initializes a new instance of the ImageSample class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_28.js b/API_NetFramework/VSdoc/search--/s_28.js new file mode 100644 index 00000000..3db1f8cd --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_28.js @@ -0,0 +1 @@ +search_result['28']=["topic_0000000000000007_props--.html","SwaggerConfig Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_280.js b/API_NetFramework/VSdoc/search--/s_280.js new file mode 100644 index 00000000..c7cc6591 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_280.js @@ -0,0 +1 @@ +search_result['280']=["topic_000000000000007F.html","ImageSample.Src Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_281.js b/API_NetFramework/VSdoc/search--/s_281.js new file mode 100644 index 00000000..4ec96351 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_281.js @@ -0,0 +1 @@ +search_result['281']=["topic_0000000000000080.html","ImageSample.Equals Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_282.js b/API_NetFramework/VSdoc/search--/s_282.js new file mode 100644 index 00000000..3134bd04 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_282.js @@ -0,0 +1 @@ +search_result['282']=["topic_0000000000000081.html","ImageSample.GetHashCode Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_283.js b/API_NetFramework/VSdoc/search--/s_283.js new file mode 100644 index 00000000..1491acb1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_283.js @@ -0,0 +1 @@ +search_result['283']=["topic_0000000000000082.html","ImageSample.ToString Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_284.js b/API_NetFramework/VSdoc/search--/s_284.js new file mode 100644 index 00000000..d25f5180 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_284.js @@ -0,0 +1 @@ +search_result['284']=["topic_0000000000000083.html","InvalidSample Class","This represents an invalid sample on the help page. There\u0027s a display template named InvalidSample associated with this class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_285.js b/API_NetFramework/VSdoc/search--/s_285.js new file mode 100644 index 00000000..3630e281 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_285.js @@ -0,0 +1 @@ +search_result['285']=["topic_0000000000000083_attached_props--.html","InvalidSample Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_286.js b/API_NetFramework/VSdoc/search--/s_286.js new file mode 100644 index 00000000..1d90422e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_286.js @@ -0,0 +1 @@ +search_result['286']=["topic_0000000000000083_events--.html","InvalidSample Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_287.js b/API_NetFramework/VSdoc/search--/s_287.js new file mode 100644 index 00000000..08242e76 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_287.js @@ -0,0 +1 @@ +search_result['287']=["topic_0000000000000083_methods--.html","InvalidSample Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_288.js b/API_NetFramework/VSdoc/search--/s_288.js new file mode 100644 index 00000000..3519b2cb --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_288.js @@ -0,0 +1 @@ +search_result['288']=["topic_0000000000000083_props--.html","InvalidSample Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_289.js b/API_NetFramework/VSdoc/search--/s_289.js new file mode 100644 index 00000000..c815f71d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_289.js @@ -0,0 +1 @@ +search_result['289']=["topic_0000000000000083_vars--.html","InvalidSample Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_29.js b/API_NetFramework/VSdoc/search--/s_29.js new file mode 100644 index 00000000..364a1bcc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_29.js @@ -0,0 +1 @@ +search_result['29']=["topic_0000000000000007_vars--.html","SwaggerConfig Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_290.js b/API_NetFramework/VSdoc/search--/s_290.js new file mode 100644 index 00000000..ac2094e5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_290.js @@ -0,0 +1 @@ +search_result['290']=["topic_0000000000000084.html","InvalidSample Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_291.js b/API_NetFramework/VSdoc/search--/s_291.js new file mode 100644 index 00000000..da55a0a9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_291.js @@ -0,0 +1 @@ +search_result['291']=["topic_0000000000000085.html","InvalidSample.ErrorMessage Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_292.js b/API_NetFramework/VSdoc/search--/s_292.js new file mode 100644 index 00000000..732cd092 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_292.js @@ -0,0 +1 @@ +search_result['292']=["topic_0000000000000086.html","InvalidSample.Equals Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_293.js b/API_NetFramework/VSdoc/search--/s_293.js new file mode 100644 index 00000000..d86b9802 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_293.js @@ -0,0 +1 @@ +search_result['293']=["topic_0000000000000087.html","InvalidSample.GetHashCode Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_294.js b/API_NetFramework/VSdoc/search--/s_294.js new file mode 100644 index 00000000..875b0f3e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_294.js @@ -0,0 +1 @@ +search_result['294']=["topic_0000000000000088.html","InvalidSample.ToString Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_295.js b/API_NetFramework/VSdoc/search--/s_295.js new file mode 100644 index 00000000..75371635 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_295.js @@ -0,0 +1 @@ +search_result['295']=["topic_0000000000000089.html","ObjectGenerator Class","This class will create an object of a given type and populate it with sample data."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_296.js b/API_NetFramework/VSdoc/search--/s_296.js new file mode 100644 index 00000000..dbd83cc1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_296.js @@ -0,0 +1 @@ +search_result['296']=["topic_0000000000000089_attached_props--.html","ObjectGenerator Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_297.js b/API_NetFramework/VSdoc/search--/s_297.js new file mode 100644 index 00000000..34c1a437 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_297.js @@ -0,0 +1 @@ +search_result['297']=["topic_0000000000000089_events--.html","ObjectGenerator Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_298.js b/API_NetFramework/VSdoc/search--/s_298.js new file mode 100644 index 00000000..3326ba85 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_298.js @@ -0,0 +1 @@ +search_result['298']=["topic_0000000000000089_methods--.html","ObjectGenerator Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_299.js b/API_NetFramework/VSdoc/search--/s_299.js new file mode 100644 index 00000000..3b2c283e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_299.js @@ -0,0 +1 @@ +search_result['299']=["topic_0000000000000089_props--.html","ObjectGenerator Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_3.js b/API_NetFramework/VSdoc/search--/s_3.js new file mode 100644 index 00000000..fea70378 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_3.js @@ -0,0 +1 @@ +search_result['3']=["topic_0000000000000001.html","BundleConfig Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_30.js b/API_NetFramework/VSdoc/search--/s_30.js new file mode 100644 index 00000000..1a7da8ae --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_30.js @@ -0,0 +1 @@ +search_result['30']=["topic_0000000000000008.html","SwaggerConfig.Register Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_300.js b/API_NetFramework/VSdoc/search--/s_300.js new file mode 100644 index 00000000..c7dad7e6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_300.js @@ -0,0 +1 @@ +search_result['300']=["topic_0000000000000089_vars--.html","ObjectGenerator Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_301.js b/API_NetFramework/VSdoc/search--/s_301.js new file mode 100644 index 00000000..7ddff94d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_301.js @@ -0,0 +1 @@ +search_result['301']=["topic_000000000000008A.html","ObjectGenerator.GenerateObject Method","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:\r\nSimple types: in..."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_302.js b/API_NetFramework/VSdoc/search--/s_302.js new file mode 100644 index 00000000..b0798a6c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_302.js @@ -0,0 +1 @@ +search_result['302']=["topic_000000000000008B.html","SampleDirection Enumeration","Indicates whether the sample is used for request or response"]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_303.js b/API_NetFramework/VSdoc/search--/s_303.js new file mode 100644 index 00000000..66731818 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_303.js @@ -0,0 +1 @@ +search_result['303']=["topic_000000000000008E.html","TextSample Class","This represents a preformatted text sample on the help page. There\u0027s a display template named TextSample associated with this class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_304.js b/API_NetFramework/VSdoc/search--/s_304.js new file mode 100644 index 00000000..c5901e53 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_304.js @@ -0,0 +1 @@ +search_result['304']=["topic_000000000000008E_attached_props--.html","TextSample Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_305.js b/API_NetFramework/VSdoc/search--/s_305.js new file mode 100644 index 00000000..577a8cf7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_305.js @@ -0,0 +1 @@ +search_result['305']=["topic_000000000000008E_events--.html","TextSample Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_306.js b/API_NetFramework/VSdoc/search--/s_306.js new file mode 100644 index 00000000..a89fe036 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_306.js @@ -0,0 +1 @@ +search_result['306']=["topic_000000000000008E_methods--.html","TextSample Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_307.js b/API_NetFramework/VSdoc/search--/s_307.js new file mode 100644 index 00000000..cfb1421f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_307.js @@ -0,0 +1 @@ +search_result['307']=["topic_000000000000008E_props--.html","TextSample Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_308.js b/API_NetFramework/VSdoc/search--/s_308.js new file mode 100644 index 00000000..c9a1ca46 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_308.js @@ -0,0 +1 @@ +search_result['308']=["topic_000000000000008E_vars--.html","TextSample Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_309.js b/API_NetFramework/VSdoc/search--/s_309.js new file mode 100644 index 00000000..56590586 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_309.js @@ -0,0 +1 @@ +search_result['309']=["topic_000000000000008F.html","TextSample Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_31.js b/API_NetFramework/VSdoc/search--/s_31.js new file mode 100644 index 00000000..4e3f5765 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_31.js @@ -0,0 +1 @@ +search_result['31']=["topic_0000000000000009.html","WebApiConfig Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_310.js b/API_NetFramework/VSdoc/search--/s_310.js new file mode 100644 index 00000000..a58ee60b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_310.js @@ -0,0 +1 @@ +search_result['310']=["topic_0000000000000090.html","TextSample.Text Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_311.js b/API_NetFramework/VSdoc/search--/s_311.js new file mode 100644 index 00000000..afffe92b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_311.js @@ -0,0 +1 @@ +search_result['311']=["topic_0000000000000091.html","TextSample.Equals Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_312.js b/API_NetFramework/VSdoc/search--/s_312.js new file mode 100644 index 00000000..10d605d0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_312.js @@ -0,0 +1 @@ +search_result['312']=["topic_0000000000000092.html","TextSample.GetHashCode Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_313.js b/API_NetFramework/VSdoc/search--/s_313.js new file mode 100644 index 00000000..9e43197b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_313.js @@ -0,0 +1 @@ +search_result['313']=["topic_0000000000000093.html","TextSample.ToString Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_314.js b/API_NetFramework/VSdoc/search--/s_314.js new file mode 100644 index 00000000..e1131719 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_314.js @@ -0,0 +1 @@ +search_result['314']=["topic_0000000000000094.html","XmlDocumentationProvider Class","A custom IDocumentationProvider that reads the API documentation from an XML documentation file."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_315.js b/API_NetFramework/VSdoc/search--/s_315.js new file mode 100644 index 00000000..854a0301 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_315.js @@ -0,0 +1 @@ +search_result['315']=["topic_0000000000000094_attached_props--.html","XmlDocumentationProvider Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_316.js b/API_NetFramework/VSdoc/search--/s_316.js new file mode 100644 index 00000000..e0682531 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_316.js @@ -0,0 +1 @@ +search_result['316']=["topic_0000000000000094_events--.html","XmlDocumentationProvider Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_317.js b/API_NetFramework/VSdoc/search--/s_317.js new file mode 100644 index 00000000..b9577d07 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_317.js @@ -0,0 +1 @@ +search_result['317']=["topic_0000000000000094_methods--.html","XmlDocumentationProvider Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_318.js b/API_NetFramework/VSdoc/search--/s_318.js new file mode 100644 index 00000000..a0ca5539 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_318.js @@ -0,0 +1 @@ +search_result['318']=["topic_0000000000000094_props--.html","XmlDocumentationProvider Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_319.js b/API_NetFramework/VSdoc/search--/s_319.js new file mode 100644 index 00000000..7a85805d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_319.js @@ -0,0 +1 @@ +search_result['319']=["topic_0000000000000094_vars--.html","XmlDocumentationProvider Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_32.js b/API_NetFramework/VSdoc/search--/s_32.js new file mode 100644 index 00000000..c088e78b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_32.js @@ -0,0 +1 @@ +search_result['32']=["topic_0000000000000009_attached_props--.html","WebApiConfig Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_320.js b/API_NetFramework/VSdoc/search--/s_320.js new file mode 100644 index 00000000..0fb02ea6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_320.js @@ -0,0 +1 @@ +search_result['320']=["topic_0000000000000095.html","XmlDocumentationProvider Constructor","Initializes a new instance of the XmlDocumentationProvider class."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_321.js b/API_NetFramework/VSdoc/search--/s_321.js new file mode 100644 index 00000000..ccf81f33 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_321.js @@ -0,0 +1 @@ +search_result['321']=["topic_0000000000000096.html","XmlDocumentationProvider.GetDocumentation (HttpControllerDescriptor) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_322.js b/API_NetFramework/VSdoc/search--/s_322.js new file mode 100644 index 00000000..ba790e99 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_322.js @@ -0,0 +1 @@ +search_result['322']=["topic_0000000000000096_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_323.js b/API_NetFramework/VSdoc/search--/s_323.js new file mode 100644 index 00000000..bc473af9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_323.js @@ -0,0 +1 @@ +search_result['323']=["topic_0000000000000097.html","XmlDocumentationProvider.GetDocumentation (HttpActionDescriptor) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_324.js b/API_NetFramework/VSdoc/search--/s_324.js new file mode 100644 index 00000000..2cecef44 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_324.js @@ -0,0 +1 @@ +search_result['324']=["topic_0000000000000097_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_325.js b/API_NetFramework/VSdoc/search--/s_325.js new file mode 100644 index 00000000..ddcda454 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_325.js @@ -0,0 +1 @@ +search_result['325']=["topic_0000000000000098.html","XmlDocumentationProvider.GetDocumentation (HttpParameterDescriptor) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_326.js b/API_NetFramework/VSdoc/search--/s_326.js new file mode 100644 index 00000000..7f47a3d2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_326.js @@ -0,0 +1 @@ +search_result['326']=["topic_0000000000000098_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_327.js b/API_NetFramework/VSdoc/search--/s_327.js new file mode 100644 index 00000000..2a0a63d5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_327.js @@ -0,0 +1 @@ +search_result['327']=["topic_0000000000000099.html","XmlDocumentationProvider.GetResponseDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_328.js b/API_NetFramework/VSdoc/search--/s_328.js new file mode 100644 index 00000000..d82c3e71 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_328.js @@ -0,0 +1 @@ +search_result['328']=["topic_000000000000009A.html","XmlDocumentationProvider.GetDocumentation (MemberInfo) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_329.js b/API_NetFramework/VSdoc/search--/s_329.js new file mode 100644 index 00000000..4849c31f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_329.js @@ -0,0 +1 @@ +search_result['329']=["topic_000000000000009A_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_33.js b/API_NetFramework/VSdoc/search--/s_33.js new file mode 100644 index 00000000..1a118351 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_33.js @@ -0,0 +1 @@ +search_result['33']=["topic_0000000000000009_events--.html","WebApiConfig Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_330.js b/API_NetFramework/VSdoc/search--/s_330.js new file mode 100644 index 00000000..6e20d311 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_330.js @@ -0,0 +1 @@ +search_result['330']=["topic_000000000000009B.html","XmlDocumentationProvider.GetDocumentation (Type) Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_331.js b/API_NetFramework/VSdoc/search--/s_331.js new file mode 100644 index 00000000..2b6341e8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_331.js @@ -0,0 +1 @@ +search_result['331']=["topic_000000000000009B_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_332.js b/API_NetFramework/VSdoc/search--/s_332.js new file mode 100644 index 00000000..b27af0ab --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_332.js @@ -0,0 +1 @@ +search_result['332']=["topic_000000000000009C.html","API_NetFramework.Controllers Namespace",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_333.js b/API_NetFramework/VSdoc/search--/s_333.js new file mode 100644 index 00000000..c9790936 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_333.js @@ -0,0 +1 @@ +search_result['333']=["topic_000000000000009D.html","AntwortAdresseController Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_334.js b/API_NetFramework/VSdoc/search--/s_334.js new file mode 100644 index 00000000..104cb934 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_334.js @@ -0,0 +1 @@ +search_result['334']=["topic_000000000000009D_attached_props--.html","AntwortAdresseController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_335.js b/API_NetFramework/VSdoc/search--/s_335.js new file mode 100644 index 00000000..6dbe03da --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_335.js @@ -0,0 +1 @@ +search_result['335']=["topic_000000000000009D_events--.html","AntwortAdresseController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_336.js b/API_NetFramework/VSdoc/search--/s_336.js new file mode 100644 index 00000000..ea390b76 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_336.js @@ -0,0 +1 @@ +search_result['336']=["topic_000000000000009D_methods--.html","AntwortAdresseController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_337.js b/API_NetFramework/VSdoc/search--/s_337.js new file mode 100644 index 00000000..9a43f62c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_337.js @@ -0,0 +1 @@ +search_result['337']=["topic_000000000000009D_props--.html","AntwortAdresseController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_338.js b/API_NetFramework/VSdoc/search--/s_338.js new file mode 100644 index 00000000..17a3e49d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_338.js @@ -0,0 +1 @@ +search_result['338']=["topic_000000000000009D_vars--.html","AntwortAdresseController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_339.js b/API_NetFramework/VSdoc/search--/s_339.js new file mode 100644 index 00000000..622f7592 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_339.js @@ -0,0 +1 @@ +search_result['339']=["topic_000000000000009E.html","AntwortAdresseController.GetGetAll Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_34.js b/API_NetFramework/VSdoc/search--/s_34.js new file mode 100644 index 00000000..d5064fa8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_34.js @@ -0,0 +1 @@ +search_result['34']=["topic_0000000000000009_methods--.html","WebApiConfig Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_340.js b/API_NetFramework/VSdoc/search--/s_340.js new file mode 100644 index 00000000..a695a39a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_340.js @@ -0,0 +1 @@ +search_result['340']=["topic_000000000000009F.html","AntwortAdresseController.GetByID Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_341.js b/API_NetFramework/VSdoc/search--/s_341.js new file mode 100644 index 00000000..f08a912d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_341.js @@ -0,0 +1 @@ +search_result['341']=["topic_00000000000000A0.html","AntwortAdresseController.GetAllMitarbeiterByTGNummer Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_342.js b/API_NetFramework/VSdoc/search--/s_342.js new file mode 100644 index 00000000..e3ad45ad --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_342.js @@ -0,0 +1 @@ +search_result['342']=["topic_00000000000000A1.html","AntwortAdresseController.GetAllMitarbeiterByMitarbeiterNr Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_343.js b/API_NetFramework/VSdoc/search--/s_343.js new file mode 100644 index 00000000..9126dd58 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_343.js @@ -0,0 +1 @@ +search_result['343']=["topic_00000000000000A2.html","AntwortAdresseController.GetMitarbeiterByID Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_344.js b/API_NetFramework/VSdoc/search--/s_344.js new file mode 100644 index 00000000..44fae9c9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_344.js @@ -0,0 +1 @@ +search_result['344']=["topic_00000000000000A3.html","ArchivController Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_345.js b/API_NetFramework/VSdoc/search--/s_345.js new file mode 100644 index 00000000..953e3e8e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_345.js @@ -0,0 +1 @@ +search_result['345']=["topic_00000000000000A3_attached_props--.html","ArchivController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_346.js b/API_NetFramework/VSdoc/search--/s_346.js new file mode 100644 index 00000000..b772875e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_346.js @@ -0,0 +1 @@ +search_result['346']=["topic_00000000000000A3_events--.html","ArchivController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_347.js b/API_NetFramework/VSdoc/search--/s_347.js new file mode 100644 index 00000000..1946ecfa --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_347.js @@ -0,0 +1 @@ +search_result['347']=["topic_00000000000000A3_methods--.html","ArchivController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_348.js b/API_NetFramework/VSdoc/search--/s_348.js new file mode 100644 index 00000000..64206e6a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_348.js @@ -0,0 +1 @@ +search_result['348']=["topic_00000000000000A3_props--.html","ArchivController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_349.js b/API_NetFramework/VSdoc/search--/s_349.js new file mode 100644 index 00000000..bf366330 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_349.js @@ -0,0 +1 @@ +search_result['349']=["topic_00000000000000A3_vars--.html","ArchivController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_35.js b/API_NetFramework/VSdoc/search--/s_35.js new file mode 100644 index 00000000..4755636e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_35.js @@ -0,0 +1 @@ +search_result['35']=["topic_0000000000000009_props--.html","WebApiConfig Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_350.js b/API_NetFramework/VSdoc/search--/s_350.js new file mode 100644 index 00000000..c6424178 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_350.js @@ -0,0 +1 @@ +search_result['350']=["topic_00000000000000A4.html","ArchivController.ArchivDoc_From_Database Method","Archiviert das Dokument aus OnDoc in OnBase"]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_351.js b/API_NetFramework/VSdoc/search--/s_351.js new file mode 100644 index 00000000..98f39643 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_351.js @@ -0,0 +1 @@ +search_result['351']=["topic_00000000000000A4_attached_props--.html","TestParam Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_352.js b/API_NetFramework/VSdoc/search--/s_352.js new file mode 100644 index 00000000..62362cde --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_352.js @@ -0,0 +1 @@ +search_result['352']=["topic_00000000000000A4_events--.html","TestParam Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_353.js b/API_NetFramework/VSdoc/search--/s_353.js new file mode 100644 index 00000000..beef9688 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_353.js @@ -0,0 +1 @@ +search_result['353']=["topic_00000000000000A4_methods--.html","TestParam Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_354.js b/API_NetFramework/VSdoc/search--/s_354.js new file mode 100644 index 00000000..1e843a08 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_354.js @@ -0,0 +1 @@ +search_result['354']=["topic_00000000000000A4_props--.html","TestParam Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_355.js b/API_NetFramework/VSdoc/search--/s_355.js new file mode 100644 index 00000000..1efdcea7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_355.js @@ -0,0 +1 @@ +search_result['355']=["topic_00000000000000A4_vars--.html","TestParam Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_356.js b/API_NetFramework/VSdoc/search--/s_356.js new file mode 100644 index 00000000..90ba4af7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_356.js @@ -0,0 +1 @@ +search_result['356']=["topic_00000000000000A5.html","ArchivController.ArchivDocBase64 Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_357.js b/API_NetFramework/VSdoc/search--/s_357.js new file mode 100644 index 00000000..968c57be --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_357.js @@ -0,0 +1 @@ +search_result['357']=["topic_00000000000000A6.html","ArchivController.CheckDocID Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_358.js b/API_NetFramework/VSdoc/search--/s_358.js new file mode 100644 index 00000000..a6bd5566 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_358.js @@ -0,0 +1 @@ +search_result['358']=["topic_00000000000000A6_attached_props--.html","DocumentController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_359.js b/API_NetFramework/VSdoc/search--/s_359.js new file mode 100644 index 00000000..8c84f4f7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_359.js @@ -0,0 +1 @@ +search_result['359']=["topic_00000000000000A6_events--.html","DocumentController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_36.js b/API_NetFramework/VSdoc/search--/s_36.js new file mode 100644 index 00000000..fb196387 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_36.js @@ -0,0 +1 @@ +search_result['36']=["topic_0000000000000009_vars--.html","WebApiConfig Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_360.js b/API_NetFramework/VSdoc/search--/s_360.js new file mode 100644 index 00000000..ec6a8229 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_360.js @@ -0,0 +1 @@ +search_result['360']=["topic_00000000000000A6_methods--.html","DocumentController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_361.js b/API_NetFramework/VSdoc/search--/s_361.js new file mode 100644 index 00000000..f4305e3e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_361.js @@ -0,0 +1 @@ +search_result['361']=["topic_00000000000000A6_props--.html","DocumentController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_362.js b/API_NetFramework/VSdoc/search--/s_362.js new file mode 100644 index 00000000..d3b8ae9e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_362.js @@ -0,0 +1 @@ +search_result['362']=["topic_00000000000000A6_vars--.html","DocumentController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_363.js b/API_NetFramework/VSdoc/search--/s_363.js new file mode 100644 index 00000000..fd48b69d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_363.js @@ -0,0 +1 @@ +search_result['363']=["topic_00000000000000A7.html","ArchivController.ArchivDocFromIRIS Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_364.js b/API_NetFramework/VSdoc/search--/s_364.js new file mode 100644 index 00000000..ac07237d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_364.js @@ -0,0 +1 @@ +search_result['364']=["topic_00000000000000A7_attached_props--.html","DocumentController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_365.js b/API_NetFramework/VSdoc/search--/s_365.js new file mode 100644 index 00000000..f813c31a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_365.js @@ -0,0 +1 @@ +search_result['365']=["topic_00000000000000A7_events--.html","DocumentController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_366.js b/API_NetFramework/VSdoc/search--/s_366.js new file mode 100644 index 00000000..c041639a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_366.js @@ -0,0 +1 @@ +search_result['366']=["topic_00000000000000A7_methods--.html","DocumentController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_367.js b/API_NetFramework/VSdoc/search--/s_367.js new file mode 100644 index 00000000..37fd396a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_367.js @@ -0,0 +1 @@ +search_result['367']=["topic_00000000000000A7_props--.html","DocumentController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_368.js b/API_NetFramework/VSdoc/search--/s_368.js new file mode 100644 index 00000000..59409efe --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_368.js @@ -0,0 +1 @@ +search_result['368']=["topic_00000000000000A7_vars--.html","DocumentController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_369.js b/API_NetFramework/VSdoc/search--/s_369.js new file mode 100644 index 00000000..f64d3496 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_369.js @@ -0,0 +1 @@ +search_result['369']=["topic_00000000000000A8.html","TestParam Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_37.js b/API_NetFramework/VSdoc/search--/s_37.js new file mode 100644 index 00000000..4a26036a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_37.js @@ -0,0 +1 @@ +search_result['37']=["topic_000000000000000A.html","WebApiConfig.Register Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_370.js b/API_NetFramework/VSdoc/search--/s_370.js new file mode 100644 index 00000000..9a68ba74 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_370.js @@ -0,0 +1 @@ +search_result['370']=["topic_00000000000000A8_attached_props--.html","TestParam Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_371.js b/API_NetFramework/VSdoc/search--/s_371.js new file mode 100644 index 00000000..2310c056 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_371.js @@ -0,0 +1 @@ +search_result['371']=["topic_00000000000000A8_events--.html","TestParam Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_372.js b/API_NetFramework/VSdoc/search--/s_372.js new file mode 100644 index 00000000..9d2f52b9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_372.js @@ -0,0 +1 @@ +search_result['372']=["topic_00000000000000A8_methods--.html","TestParam Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_373.js b/API_NetFramework/VSdoc/search--/s_373.js new file mode 100644 index 00000000..40ac576e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_373.js @@ -0,0 +1 @@ +search_result['373']=["topic_00000000000000A8_props--.html","TestParam Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_374.js b/API_NetFramework/VSdoc/search--/s_374.js new file mode 100644 index 00000000..4e907460 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_374.js @@ -0,0 +1 @@ +search_result['374']=["topic_00000000000000A8_vars--.html","TestParam Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_375.js b/API_NetFramework/VSdoc/search--/s_375.js new file mode 100644 index 00000000..eaf5da5b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_375.js @@ -0,0 +1 @@ +search_result['375']=["topic_00000000000000A9.html","TestParam.param1 Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_376.js b/API_NetFramework/VSdoc/search--/s_376.js new file mode 100644 index 00000000..25f8eafb --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_376.js @@ -0,0 +1 @@ +search_result['376']=["topic_00000000000000AA.html","TestParam.param2 Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_377.js b/API_NetFramework/VSdoc/search--/s_377.js new file mode 100644 index 00000000..5c59ee94 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_377.js @@ -0,0 +1 @@ +search_result['377']=["topic_00000000000000AB.html","DocumentController Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_378.js b/API_NetFramework/VSdoc/search--/s_378.js new file mode 100644 index 00000000..134c4356 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_378.js @@ -0,0 +1 @@ +search_result['378']=["topic_00000000000000AB_attached_props--.html","DocumentController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_379.js b/API_NetFramework/VSdoc/search--/s_379.js new file mode 100644 index 00000000..74046a75 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_379.js @@ -0,0 +1 @@ +search_result['379']=["topic_00000000000000AB_events--.html","DocumentController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_38.js b/API_NetFramework/VSdoc/search--/s_38.js new file mode 100644 index 00000000..bbef8874 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_38.js @@ -0,0 +1 @@ +search_result['38']=["topic_000000000000000B.html","API_NetFramework.Areas.HelpPage Namespace",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_380.js b/API_NetFramework/VSdoc/search--/s_380.js new file mode 100644 index 00000000..c384709e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_380.js @@ -0,0 +1 @@ +search_result['380']=["topic_00000000000000AB_methods--.html","DocumentController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_381.js b/API_NetFramework/VSdoc/search--/s_381.js new file mode 100644 index 00000000..b9f5a14c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_381.js @@ -0,0 +1 @@ +search_result['381']=["topic_00000000000000AB_props--.html","DocumentController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_382.js b/API_NetFramework/VSdoc/search--/s_382.js new file mode 100644 index 00000000..c9c25eed --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_382.js @@ -0,0 +1 @@ +search_result['382']=["topic_00000000000000AB_vars--.html","DocumentController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_383.js b/API_NetFramework/VSdoc/search--/s_383.js new file mode 100644 index 00000000..5fd7bdd2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_383.js @@ -0,0 +1 @@ +search_result['383']=["topic_00000000000000AC.html","DocumentController.GetDocument Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_384.js b/API_NetFramework/VSdoc/search--/s_384.js new file mode 100644 index 00000000..0c899251 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_384.js @@ -0,0 +1 @@ +search_result['384']=["topic_00000000000000AD.html","DocumentController.pageCollection Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_385.js b/API_NetFramework/VSdoc/search--/s_385.js new file mode 100644 index 00000000..1715082d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_385.js @@ -0,0 +1 @@ +search_result['385']=["topic_00000000000000AD_attached_props--.html","HomeController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_386.js b/API_NetFramework/VSdoc/search--/s_386.js new file mode 100644 index 00000000..3ffcbae6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_386.js @@ -0,0 +1 @@ +search_result['386']=["topic_00000000000000AD_events--.html","HomeController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_387.js b/API_NetFramework/VSdoc/search--/s_387.js new file mode 100644 index 00000000..cf7dd388 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_387.js @@ -0,0 +1 @@ +search_result['387']=["topic_00000000000000AD_methods--.html","HomeController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_388.js b/API_NetFramework/VSdoc/search--/s_388.js new file mode 100644 index 00000000..cca30980 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_388.js @@ -0,0 +1 @@ +search_result['388']=["topic_00000000000000AD_props--.html","HomeController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_389.js b/API_NetFramework/VSdoc/search--/s_389.js new file mode 100644 index 00000000..c88ae09a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_389.js @@ -0,0 +1 @@ +search_result['389']=["topic_00000000000000AD_vars--.html","HomeController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_39.js b/API_NetFramework/VSdoc/search--/s_39.js new file mode 100644 index 00000000..b59f4b0d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_39.js @@ -0,0 +1 @@ +search_result['39']=["topic_000000000000000C.html","ApiDescriptionExtensions Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_390.js b/API_NetFramework/VSdoc/search--/s_390.js new file mode 100644 index 00000000..e24b499a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_390.js @@ -0,0 +1 @@ +search_result['390']=["topic_00000000000000AE.html","DocumentController.GetDocumentJSONBody Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_391.js b/API_NetFramework/VSdoc/search--/s_391.js new file mode 100644 index 00000000..756c0ac4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_391.js @@ -0,0 +1 @@ +search_result['391']=["topic_00000000000000AE_attached_props--.html","HomeController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_392.js b/API_NetFramework/VSdoc/search--/s_392.js new file mode 100644 index 00000000..ba0f5cda --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_392.js @@ -0,0 +1 @@ +search_result['392']=["topic_00000000000000AE_events--.html","HomeController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_393.js b/API_NetFramework/VSdoc/search--/s_393.js new file mode 100644 index 00000000..d4848551 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_393.js @@ -0,0 +1 @@ +search_result['393']=["topic_00000000000000AE_methods--.html","HomeController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_394.js b/API_NetFramework/VSdoc/search--/s_394.js new file mode 100644 index 00000000..1713be4a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_394.js @@ -0,0 +1 @@ +search_result['394']=["topic_00000000000000AE_props--.html","HomeController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_395.js b/API_NetFramework/VSdoc/search--/s_395.js new file mode 100644 index 00000000..33637425 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_395.js @@ -0,0 +1 @@ +search_result['395']=["topic_00000000000000AE_vars--.html","HomeController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_396.js b/API_NetFramework/VSdoc/search--/s_396.js new file mode 100644 index 00000000..c36a5d56 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_396.js @@ -0,0 +1 @@ +search_result['396']=["topic_00000000000000AF.html","DocumentController.GetDocumentPDF Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_397.js b/API_NetFramework/VSdoc/search--/s_397.js new file mode 100644 index 00000000..e6c6c43b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_397.js @@ -0,0 +1 @@ +search_result['397']=["topic_00000000000000AF_attached_props--.html","OnBaseController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_398.js b/API_NetFramework/VSdoc/search--/s_398.js new file mode 100644 index 00000000..ced56cd0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_398.js @@ -0,0 +1 @@ +search_result['398']=["topic_00000000000000AF_events--.html","OnBaseController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_399.js b/API_NetFramework/VSdoc/search--/s_399.js new file mode 100644 index 00000000..08fe6b30 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_399.js @@ -0,0 +1 @@ +search_result['399']=["topic_00000000000000AF_methods--.html","OnBaseController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_4.js b/API_NetFramework/VSdoc/search--/s_4.js new file mode 100644 index 00000000..87078e4b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_4.js @@ -0,0 +1 @@ +search_result['4']=["topic_0000000000000001_attached_props--.html","BundleConfig Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_40.js b/API_NetFramework/VSdoc/search--/s_40.js new file mode 100644 index 00000000..288561b0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_40.js @@ -0,0 +1 @@ +search_result['40']=["topic_000000000000000C_attached_props--.html","ApiDescriptionExtensions Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_400.js b/API_NetFramework/VSdoc/search--/s_400.js new file mode 100644 index 00000000..08d65dbf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_400.js @@ -0,0 +1 @@ +search_result['400']=["topic_00000000000000AF_props--.html","OnBaseController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_401.js b/API_NetFramework/VSdoc/search--/s_401.js new file mode 100644 index 00000000..8cc46b1a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_401.js @@ -0,0 +1 @@ +search_result['401']=["topic_00000000000000AF_vars--.html","OnBaseController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_402.js b/API_NetFramework/VSdoc/search--/s_402.js new file mode 100644 index 00000000..802ca2ea --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_402.js @@ -0,0 +1 @@ +search_result['402']=["topic_00000000000000B0.html","DocumentController.SendToOnBase Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_403.js b/API_NetFramework/VSdoc/search--/s_403.js new file mode 100644 index 00000000..31a90fb5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_403.js @@ -0,0 +1 @@ +search_result['403']=["topic_00000000000000B0_attached_props--.html","OnBaseController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_404.js b/API_NetFramework/VSdoc/search--/s_404.js new file mode 100644 index 00000000..a699a7fe --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_404.js @@ -0,0 +1 @@ +search_result['404']=["topic_00000000000000B0_events--.html","OnBaseController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_405.js b/API_NetFramework/VSdoc/search--/s_405.js new file mode 100644 index 00000000..bbf7cd60 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_405.js @@ -0,0 +1 @@ +search_result['405']=["topic_00000000000000B0_methods--.html","OnBaseController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_406.js b/API_NetFramework/VSdoc/search--/s_406.js new file mode 100644 index 00000000..9b81ae9b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_406.js @@ -0,0 +1 @@ +search_result['406']=["topic_00000000000000B0_props--.html","OnBaseController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_407.js b/API_NetFramework/VSdoc/search--/s_407.js new file mode 100644 index 00000000..ffbcb976 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_407.js @@ -0,0 +1 @@ +search_result['407']=["topic_00000000000000B0_vars--.html","OnBaseController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_408.js b/API_NetFramework/VSdoc/search--/s_408.js new file mode 100644 index 00000000..462d67ad --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_408.js @@ -0,0 +1 @@ +search_result['408']=["topic_00000000000000B1.html","DocumentController.GenDoc Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_409.js b/API_NetFramework/VSdoc/search--/s_409.js new file mode 100644 index 00000000..bcef8dae --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_409.js @@ -0,0 +1 @@ +search_result['409']=["topic_00000000000000B2.html","HomeController Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_41.js b/API_NetFramework/VSdoc/search--/s_41.js new file mode 100644 index 00000000..507514dc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_41.js @@ -0,0 +1 @@ +search_result['41']=["topic_000000000000000C_events--.html","ApiDescriptionExtensions Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_410.js b/API_NetFramework/VSdoc/search--/s_410.js new file mode 100644 index 00000000..081b89a0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_410.js @@ -0,0 +1 @@ +search_result['410']=["topic_00000000000000B2_attached_props--.html","HomeController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_411.js b/API_NetFramework/VSdoc/search--/s_411.js new file mode 100644 index 00000000..6dcb7c9b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_411.js @@ -0,0 +1 @@ +search_result['411']=["topic_00000000000000B2_events--.html","HomeController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_412.js b/API_NetFramework/VSdoc/search--/s_412.js new file mode 100644 index 00000000..061dfcf4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_412.js @@ -0,0 +1 @@ +search_result['412']=["topic_00000000000000B2_methods--.html","HomeController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_413.js b/API_NetFramework/VSdoc/search--/s_413.js new file mode 100644 index 00000000..994284b5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_413.js @@ -0,0 +1 @@ +search_result['413']=["topic_00000000000000B2_props--.html","HomeController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_414.js b/API_NetFramework/VSdoc/search--/s_414.js new file mode 100644 index 00000000..acae9f2c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_414.js @@ -0,0 +1 @@ +search_result['414']=["topic_00000000000000B2_vars--.html","HomeController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_415.js b/API_NetFramework/VSdoc/search--/s_415.js new file mode 100644 index 00000000..05d5e3e7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_415.js @@ -0,0 +1 @@ +search_result['415']=["topic_00000000000000B3.html","HomeController.Index Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_416.js b/API_NetFramework/VSdoc/search--/s_416.js new file mode 100644 index 00000000..b20fc2bc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_416.js @@ -0,0 +1 @@ +search_result['416']=["topic_00000000000000B3_attached_props--.html","IFileService Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_417.js b/API_NetFramework/VSdoc/search--/s_417.js new file mode 100644 index 00000000..f1798ae5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_417.js @@ -0,0 +1 @@ +search_result['417']=["topic_00000000000000B3_events--.html","IFileService Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_418.js b/API_NetFramework/VSdoc/search--/s_418.js new file mode 100644 index 00000000..8b7f902f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_418.js @@ -0,0 +1 @@ +search_result['418']=["topic_00000000000000B3_methods--.html","IFileService Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_419.js b/API_NetFramework/VSdoc/search--/s_419.js new file mode 100644 index 00000000..a857ba66 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_419.js @@ -0,0 +1 @@ +search_result['419']=["topic_00000000000000B3_props--.html","IFileService Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_42.js b/API_NetFramework/VSdoc/search--/s_42.js new file mode 100644 index 00000000..804e9839 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_42.js @@ -0,0 +1 @@ +search_result['42']=["topic_000000000000000C_methods--.html","ApiDescriptionExtensions Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_420.js b/API_NetFramework/VSdoc/search--/s_420.js new file mode 100644 index 00000000..029a4571 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_420.js @@ -0,0 +1 @@ +search_result['420']=["topic_00000000000000B3_vars--.html","IFileService Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_421.js b/API_NetFramework/VSdoc/search--/s_421.js new file mode 100644 index 00000000..76ead832 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_421.js @@ -0,0 +1 @@ +search_result['421']=["topic_00000000000000B4.html","IFileService Interface",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_422.js b/API_NetFramework/VSdoc/search--/s_422.js new file mode 100644 index 00000000..d20d494e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_422.js @@ -0,0 +1 @@ +search_result['422']=["topic_00000000000000B4_attached_props--.html","IFileService Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_423.js b/API_NetFramework/VSdoc/search--/s_423.js new file mode 100644 index 00000000..0b73fc07 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_423.js @@ -0,0 +1 @@ +search_result['423']=["topic_00000000000000B4_events--.html","IFileService Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_424.js b/API_NetFramework/VSdoc/search--/s_424.js new file mode 100644 index 00000000..21275d18 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_424.js @@ -0,0 +1 @@ +search_result['424']=["topic_00000000000000B4_methods--.html","IFileService Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_425.js b/API_NetFramework/VSdoc/search--/s_425.js new file mode 100644 index 00000000..b20bc346 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_425.js @@ -0,0 +1 @@ +search_result['425']=["topic_00000000000000B4_props--.html","IFileService Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_426.js b/API_NetFramework/VSdoc/search--/s_426.js new file mode 100644 index 00000000..db9cee99 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_426.js @@ -0,0 +1 @@ +search_result['426']=["topic_00000000000000B4_vars--.html","IFileService Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_427.js b/API_NetFramework/VSdoc/search--/s_427.js new file mode 100644 index 00000000..07e01a4e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_427.js @@ -0,0 +1 @@ +search_result['427']=["topic_00000000000000B5.html","IFileService.GetImageAsStream Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_428.js b/API_NetFramework/VSdoc/search--/s_428.js new file mode 100644 index 00000000..56c11312 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_428.js @@ -0,0 +1 @@ +search_result['428']=["topic_00000000000000B6.html","IFileService.GetImageAsByteArray Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_429.js b/API_NetFramework/VSdoc/search--/s_429.js new file mode 100644 index 00000000..79f2eb47 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_429.js @@ -0,0 +1 @@ +search_result['429']=["topic_00000000000000B6_attached_props--.html","Image Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_43.js b/API_NetFramework/VSdoc/search--/s_43.js new file mode 100644 index 00000000..5a6c9735 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_43.js @@ -0,0 +1 @@ +search_result['43']=["topic_000000000000000C_props--.html","ApiDescriptionExtensions Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_430.js b/API_NetFramework/VSdoc/search--/s_430.js new file mode 100644 index 00000000..5b8f3498 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_430.js @@ -0,0 +1 @@ +search_result['430']=["topic_00000000000000B6_events--.html","Image Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_431.js b/API_NetFramework/VSdoc/search--/s_431.js new file mode 100644 index 00000000..65d8bf97 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_431.js @@ -0,0 +1 @@ +search_result['431']=["topic_00000000000000B6_methods--.html","Image Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_432.js b/API_NetFramework/VSdoc/search--/s_432.js new file mode 100644 index 00000000..00be9ab6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_432.js @@ -0,0 +1 @@ +search_result['432']=["topic_00000000000000B6_props--.html","Image Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_433.js b/API_NetFramework/VSdoc/search--/s_433.js new file mode 100644 index 00000000..17b97d54 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_433.js @@ -0,0 +1 @@ +search_result['433']=["topic_00000000000000B6_vars--.html","Image Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_434.js b/API_NetFramework/VSdoc/search--/s_434.js new file mode 100644 index 00000000..2e145515 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_434.js @@ -0,0 +1 @@ +search_result['434']=["topic_00000000000000B7.html","Image Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_435.js b/API_NetFramework/VSdoc/search--/s_435.js new file mode 100644 index 00000000..d895e4da --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_435.js @@ -0,0 +1 @@ +search_result['435']=["topic_00000000000000B7_attached_props--.html","Image Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_436.js b/API_NetFramework/VSdoc/search--/s_436.js new file mode 100644 index 00000000..22593773 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_436.js @@ -0,0 +1 @@ +search_result['436']=["topic_00000000000000B7_events--.html","Image Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_437.js b/API_NetFramework/VSdoc/search--/s_437.js new file mode 100644 index 00000000..fc700f5a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_437.js @@ -0,0 +1 @@ +search_result['437']=["topic_00000000000000B7_methods--.html","Image Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_438.js b/API_NetFramework/VSdoc/search--/s_438.js new file mode 100644 index 00000000..159766bd --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_438.js @@ -0,0 +1 @@ +search_result['438']=["topic_00000000000000B7_props--.html","Image Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_439.js b/API_NetFramework/VSdoc/search--/s_439.js new file mode 100644 index 00000000..00fafa6d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_439.js @@ -0,0 +1 @@ +search_result['439']=["topic_00000000000000B7_vars--.html","Image Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_44.js b/API_NetFramework/VSdoc/search--/s_44.js new file mode 100644 index 00000000..07e634cc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_44.js @@ -0,0 +1 @@ +search_result['44']=["topic_000000000000000C_vars--.html","ApiDescriptionExtensions Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_440.js b/API_NetFramework/VSdoc/search--/s_440.js new file mode 100644 index 00000000..09d6df87 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_440.js @@ -0,0 +1 @@ +search_result['440']=["topic_00000000000000B8.html","Base64Image Field",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_441.js b/API_NetFramework/VSdoc/search--/s_441.js new file mode 100644 index 00000000..ccfe3f71 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_441.js @@ -0,0 +1 @@ +search_result['441']=["topic_00000000000000B8_attached_props--.html","UnterschriftController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_442.js b/API_NetFramework/VSdoc/search--/s_442.js new file mode 100644 index 00000000..32515023 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_442.js @@ -0,0 +1 @@ +search_result['442']=["topic_00000000000000B8_events--.html","UnterschriftController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_443.js b/API_NetFramework/VSdoc/search--/s_443.js new file mode 100644 index 00000000..6892161a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_443.js @@ -0,0 +1 @@ +search_result['443']=["topic_00000000000000B8_methods--.html","UnterschriftController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_444.js b/API_NetFramework/VSdoc/search--/s_444.js new file mode 100644 index 00000000..0cdb63f8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_444.js @@ -0,0 +1 @@ +search_result['444']=["topic_00000000000000B8_props--.html","UnterschriftController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_445.js b/API_NetFramework/VSdoc/search--/s_445.js new file mode 100644 index 00000000..121f431e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_445.js @@ -0,0 +1 @@ +search_result['445']=["topic_00000000000000B8_vars--.html","UnterschriftController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_446.js b/API_NetFramework/VSdoc/search--/s_446.js new file mode 100644 index 00000000..66052b1c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_446.js @@ -0,0 +1 @@ +search_result['446']=["topic_00000000000000B9.html","UnterschriftController Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_447.js b/API_NetFramework/VSdoc/search--/s_447.js new file mode 100644 index 00000000..7c87299c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_447.js @@ -0,0 +1 @@ +search_result['447']=["topic_00000000000000B9_attached_props--.html","UnterschriftController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_448.js b/API_NetFramework/VSdoc/search--/s_448.js new file mode 100644 index 00000000..b60752a4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_448.js @@ -0,0 +1 @@ +search_result['448']=["topic_00000000000000B9_events--.html","UnterschriftController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_449.js b/API_NetFramework/VSdoc/search--/s_449.js new file mode 100644 index 00000000..5b4ad7b0 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_449.js @@ -0,0 +1 @@ +search_result['449']=["topic_00000000000000B9_methods--.html","UnterschriftController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_45.js b/API_NetFramework/VSdoc/search--/s_45.js new file mode 100644 index 00000000..84d40b4e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_45.js @@ -0,0 +1 @@ +search_result['45']=["topic_000000000000000D.html","ApiDescriptionExtensions.GetFriendlyId Method","Generates an URI-friendly ID for the ApiDescription. E.g. \"Get-Values-id_name\" instead of \"GetValues/{id}?name={name}\""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_450.js b/API_NetFramework/VSdoc/search--/s_450.js new file mode 100644 index 00000000..e16cf6f6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_450.js @@ -0,0 +1 @@ +search_result['450']=["topic_00000000000000B9_props--.html","UnterschriftController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_451.js b/API_NetFramework/VSdoc/search--/s_451.js new file mode 100644 index 00000000..5eded70e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_451.js @@ -0,0 +1 @@ +search_result['451']=["topic_00000000000000B9_vars--.html","UnterschriftController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_452.js b/API_NetFramework/VSdoc/search--/s_452.js new file mode 100644 index 00000000..b92673dc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_452.js @@ -0,0 +1 @@ +search_result['452']=["topic_00000000000000BA.html","UnterschriftController.GetUnterschriftAsBase64 Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_453.js b/API_NetFramework/VSdoc/search--/s_453.js new file mode 100644 index 00000000..0f001b7f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_453.js @@ -0,0 +1 @@ +search_result['453']=["topic_00000000000000BB.html","UnterschriftController.GetUnterschrift Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_454.js b/API_NetFramework/VSdoc/search--/s_454.js new file mode 100644 index 00000000..d38d77c9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_454.js @@ -0,0 +1 @@ +search_result['454']=["topic_00000000000000BB_attached_props--.html","FileResult Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_455.js b/API_NetFramework/VSdoc/search--/s_455.js new file mode 100644 index 00000000..904fb671 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_455.js @@ -0,0 +1 @@ +search_result['455']=["topic_00000000000000BB_events--.html","FileResult Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_456.js b/API_NetFramework/VSdoc/search--/s_456.js new file mode 100644 index 00000000..fda45c89 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_456.js @@ -0,0 +1 @@ +search_result['456']=["topic_00000000000000BB_methods--.html","FileResult Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_457.js b/API_NetFramework/VSdoc/search--/s_457.js new file mode 100644 index 00000000..4b836b9a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_457.js @@ -0,0 +1 @@ +search_result['457']=["topic_00000000000000BB_props--.html","FileResult Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_458.js b/API_NetFramework/VSdoc/search--/s_458.js new file mode 100644 index 00000000..3b238e50 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_458.js @@ -0,0 +1 @@ +search_result['458']=["topic_00000000000000BB_vars--.html","FileResult Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_459.js b/API_NetFramework/VSdoc/search--/s_459.js new file mode 100644 index 00000000..105702d3 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_459.js @@ -0,0 +1 @@ +search_result['459']=["topic_00000000000000BC.html","FileResult Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_46.js b/API_NetFramework/VSdoc/search--/s_46.js new file mode 100644 index 00000000..b84a4930 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_46.js @@ -0,0 +1 @@ +search_result['46']=["topic_000000000000000E.html","HelpPageConfig Class","Use this class to customize the Help Page.\r\nFor example you can set a custom IDocumentationProvider to supply the documentation\r\nor you can provide the samples for the requests/responses."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_460.js b/API_NetFramework/VSdoc/search--/s_460.js new file mode 100644 index 00000000..515686b1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_460.js @@ -0,0 +1 @@ +search_result['460']=["topic_00000000000000BC_attached_props--.html","FileResult Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_461.js b/API_NetFramework/VSdoc/search--/s_461.js new file mode 100644 index 00000000..d3e1f197 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_461.js @@ -0,0 +1 @@ +search_result['461']=["topic_00000000000000BC_events--.html","FileResult Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_462.js b/API_NetFramework/VSdoc/search--/s_462.js new file mode 100644 index 00000000..aae74927 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_462.js @@ -0,0 +1 @@ +search_result['462']=["topic_00000000000000BC_methods--.html","FileResult Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_463.js b/API_NetFramework/VSdoc/search--/s_463.js new file mode 100644 index 00000000..a63609f5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_463.js @@ -0,0 +1 @@ +search_result['463']=["topic_00000000000000BC_props--.html","FileResult Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_464.js b/API_NetFramework/VSdoc/search--/s_464.js new file mode 100644 index 00000000..b6555db6 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_464.js @@ -0,0 +1 @@ +search_result['464']=["topic_00000000000000BC_vars--.html","FileResult Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_465.js b/API_NetFramework/VSdoc/search--/s_465.js new file mode 100644 index 00000000..407038a1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_465.js @@ -0,0 +1 @@ +search_result['465']=["topic_00000000000000BD.html","FileResult Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_466.js b/API_NetFramework/VSdoc/search--/s_466.js new file mode 100644 index 00000000..bc1f8e0b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_466.js @@ -0,0 +1 @@ +search_result['466']=["topic_00000000000000BE.html","FileResult.ExecuteAsync Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_467.js b/API_NetFramework/VSdoc/search--/s_467.js new file mode 100644 index 00000000..89942f2f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_467.js @@ -0,0 +1 @@ +search_result['467']=["topic_00000000000000BE_attached_props--.html","FileService Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_468.js b/API_NetFramework/VSdoc/search--/s_468.js new file mode 100644 index 00000000..19a30a90 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_468.js @@ -0,0 +1 @@ +search_result['468']=["topic_00000000000000BE_events--.html","FileService Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_469.js b/API_NetFramework/VSdoc/search--/s_469.js new file mode 100644 index 00000000..396b3eda --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_469.js @@ -0,0 +1 @@ +search_result['469']=["topic_00000000000000BE_methods--.html","FileService Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_47.js b/API_NetFramework/VSdoc/search--/s_47.js new file mode 100644 index 00000000..fb546b02 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_47.js @@ -0,0 +1 @@ +search_result['47']=["topic_000000000000000E_attached_props--.html","HelpPageConfig Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_470.js b/API_NetFramework/VSdoc/search--/s_470.js new file mode 100644 index 00000000..724dd1e1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_470.js @@ -0,0 +1 @@ +search_result['470']=["topic_00000000000000BE_props--.html","FileService Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_471.js b/API_NetFramework/VSdoc/search--/s_471.js new file mode 100644 index 00000000..58d1517e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_471.js @@ -0,0 +1 @@ +search_result['471']=["topic_00000000000000BE_vars--.html","FileService Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_472.js b/API_NetFramework/VSdoc/search--/s_472.js new file mode 100644 index 00000000..40bf9b04 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_472.js @@ -0,0 +1 @@ +search_result['472']=["topic_00000000000000BF.html","FileService Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_473.js b/API_NetFramework/VSdoc/search--/s_473.js new file mode 100644 index 00000000..587398bf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_473.js @@ -0,0 +1 @@ +search_result['473']=["topic_00000000000000BF_attached_props--.html","FileService Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_474.js b/API_NetFramework/VSdoc/search--/s_474.js new file mode 100644 index 00000000..80720329 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_474.js @@ -0,0 +1 @@ +search_result['474']=["topic_00000000000000BF_events--.html","FileService Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_475.js b/API_NetFramework/VSdoc/search--/s_475.js new file mode 100644 index 00000000..a5b95d37 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_475.js @@ -0,0 +1 @@ +search_result['475']=["topic_00000000000000BF_methods--.html","FileService Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_476.js b/API_NetFramework/VSdoc/search--/s_476.js new file mode 100644 index 00000000..980039e1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_476.js @@ -0,0 +1 @@ +search_result['476']=["topic_00000000000000BF_props--.html","FileService Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_477.js b/API_NetFramework/VSdoc/search--/s_477.js new file mode 100644 index 00000000..3e85cb1d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_477.js @@ -0,0 +1 @@ +search_result['477']=["topic_00000000000000BF_vars--.html","FileService Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_478.js b/API_NetFramework/VSdoc/search--/s_478.js new file mode 100644 index 00000000..bc2bd3b8 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_478.js @@ -0,0 +1 @@ +search_result['478']=["topic_00000000000000C0.html","FileService.GetImageAsStream Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_479.js b/API_NetFramework/VSdoc/search--/s_479.js new file mode 100644 index 00000000..ed1a6d72 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_479.js @@ -0,0 +1 @@ +search_result['479']=["topic_00000000000000C1.html","FileService.GetImageAsByteArray Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_48.js b/API_NetFramework/VSdoc/search--/s_48.js new file mode 100644 index 00000000..eaaaac49 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_48.js @@ -0,0 +1 @@ +search_result['48']=["topic_000000000000000E_events--.html","HelpPageConfig Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_480.js b/API_NetFramework/VSdoc/search--/s_480.js new file mode 100644 index 00000000..ea4184ef --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_480.js @@ -0,0 +1 @@ +search_result['480']=["topic_00000000000000C1_attached_props--.html","unterschriftResult Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_481.js b/API_NetFramework/VSdoc/search--/s_481.js new file mode 100644 index 00000000..2efe298a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_481.js @@ -0,0 +1 @@ +search_result['481']=["topic_00000000000000C1_events--.html","unterschriftResult Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_482.js b/API_NetFramework/VSdoc/search--/s_482.js new file mode 100644 index 00000000..f716a096 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_482.js @@ -0,0 +1 @@ +search_result['482']=["topic_00000000000000C1_methods--.html","unterschriftResult Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_483.js b/API_NetFramework/VSdoc/search--/s_483.js new file mode 100644 index 00000000..e287f8c5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_483.js @@ -0,0 +1 @@ +search_result['483']=["topic_00000000000000C1_props--.html","unterschriftResult Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_484.js b/API_NetFramework/VSdoc/search--/s_484.js new file mode 100644 index 00000000..7b30a132 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_484.js @@ -0,0 +1 @@ +search_result['484']=["topic_00000000000000C1_vars--.html","unterschriftResult Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_485.js b/API_NetFramework/VSdoc/search--/s_485.js new file mode 100644 index 00000000..a83e3c2f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_485.js @@ -0,0 +1 @@ +search_result['485']=["topic_00000000000000C2.html","unterschriftResult Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_486.js b/API_NetFramework/VSdoc/search--/s_486.js new file mode 100644 index 00000000..e398fed4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_486.js @@ -0,0 +1 @@ +search_result['486']=["topic_00000000000000C2_attached_props--.html","unterschriftResult Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_487.js b/API_NetFramework/VSdoc/search--/s_487.js new file mode 100644 index 00000000..867bee90 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_487.js @@ -0,0 +1 @@ +search_result['487']=["topic_00000000000000C2_events--.html","unterschriftResult Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_488.js b/API_NetFramework/VSdoc/search--/s_488.js new file mode 100644 index 00000000..80771036 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_488.js @@ -0,0 +1 @@ +search_result['488']=["topic_00000000000000C2_methods--.html","unterschriftResult Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_489.js b/API_NetFramework/VSdoc/search--/s_489.js new file mode 100644 index 00000000..d5a78f46 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_489.js @@ -0,0 +1 @@ +search_result['489']=["topic_00000000000000C2_props--.html","unterschriftResult Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_49.js b/API_NetFramework/VSdoc/search--/s_49.js new file mode 100644 index 00000000..5ee9336e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_49.js @@ -0,0 +1 @@ +search_result['49']=["topic_000000000000000E_methods--.html","HelpPageConfig Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_490.js b/API_NetFramework/VSdoc/search--/s_490.js new file mode 100644 index 00000000..1dc25f74 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_490.js @@ -0,0 +1 @@ +search_result['490']=["topic_00000000000000C2_vars--.html","unterschriftResult Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_491.js b/API_NetFramework/VSdoc/search--/s_491.js new file mode 100644 index 00000000..5bc427aa --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_491.js @@ -0,0 +1 @@ +search_result['491']=["topic_00000000000000C3.html","unterschriftResult Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_492.js b/API_NetFramework/VSdoc/search--/s_492.js new file mode 100644 index 00000000..75fb150d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_492.js @@ -0,0 +1 @@ +search_result['492']=["topic_00000000000000C4.html","unterschriftResult.ExecuteAsync Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_493.js b/API_NetFramework/VSdoc/search--/s_493.js new file mode 100644 index 00000000..23439905 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_493.js @@ -0,0 +1 @@ +search_result['493']=["topic_00000000000000C4_attached_props--.html","WebApiApplication Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_494.js b/API_NetFramework/VSdoc/search--/s_494.js new file mode 100644 index 00000000..8f582977 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_494.js @@ -0,0 +1 @@ +search_result['494']=["topic_00000000000000C4_events--.html","WebApiApplication Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_495.js b/API_NetFramework/VSdoc/search--/s_495.js new file mode 100644 index 00000000..7a1f0b8b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_495.js @@ -0,0 +1 @@ +search_result['495']=["topic_00000000000000C4_methods--.html","WebApiApplication Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_496.js b/API_NetFramework/VSdoc/search--/s_496.js new file mode 100644 index 00000000..8bbaa855 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_496.js @@ -0,0 +1 @@ +search_result['496']=["topic_00000000000000C4_props--.html","WebApiApplication Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_497.js b/API_NetFramework/VSdoc/search--/s_497.js new file mode 100644 index 00000000..9bf45a36 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_497.js @@ -0,0 +1 @@ +search_result['497']=["topic_00000000000000C4_vars--.html","WebApiApplication Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_498.js b/API_NetFramework/VSdoc/search--/s_498.js new file mode 100644 index 00000000..007ffbae --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_498.js @@ -0,0 +1 @@ +search_result['498']=["topic_00000000000000C5.html","WebApiApplication Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_499.js b/API_NetFramework/VSdoc/search--/s_499.js new file mode 100644 index 00000000..e2075cb2 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_499.js @@ -0,0 +1 @@ +search_result['499']=["topic_00000000000000C5_attached_props--.html","WebApiApplication Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_5.js b/API_NetFramework/VSdoc/search--/s_5.js new file mode 100644 index 00000000..65ec31be --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_5.js @@ -0,0 +1 @@ +search_result['5']=["topic_0000000000000001_events--.html","BundleConfig Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_50.js b/API_NetFramework/VSdoc/search--/s_50.js new file mode 100644 index 00000000..4a6bbdfb --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_50.js @@ -0,0 +1 @@ +search_result['50']=["topic_000000000000000E_props--.html","HelpPageConfig Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_500.js b/API_NetFramework/VSdoc/search--/s_500.js new file mode 100644 index 00000000..0746af82 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_500.js @@ -0,0 +1 @@ +search_result['500']=["topic_00000000000000C5_events--.html","WebApiApplication Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_501.js b/API_NetFramework/VSdoc/search--/s_501.js new file mode 100644 index 00000000..3d905566 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_501.js @@ -0,0 +1 @@ +search_result['501']=["topic_00000000000000C5_methods--.html","WebApiApplication Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_502.js b/API_NetFramework/VSdoc/search--/s_502.js new file mode 100644 index 00000000..8bec7f0e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_502.js @@ -0,0 +1 @@ +search_result['502']=["topic_00000000000000C5_props--.html","WebApiApplication Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_503.js b/API_NetFramework/VSdoc/search--/s_503.js new file mode 100644 index 00000000..fc10c6db --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_503.js @@ -0,0 +1 @@ +search_result['503']=["topic_00000000000000C5_vars--.html","WebApiApplication Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_504.js b/API_NetFramework/VSdoc/search--/s_504.js new file mode 100644 index 00000000..6783455c --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_504.js @@ -0,0 +1 @@ +search_result['504']=["topic_00000000000000C6.html","WebApiApplication.Application_Start Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_505.js b/API_NetFramework/VSdoc/search--/s_505.js new file mode 100644 index 00000000..578885d5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_505.js @@ -0,0 +1 @@ +search_result['505']=["topic_00000000000000C7.html","API_NetFramework Reference ",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_51.js b/API_NetFramework/VSdoc/search--/s_51.js new file mode 100644 index 00000000..d6ae2f4d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_51.js @@ -0,0 +1 @@ +search_result['51']=["topic_000000000000000E_vars--.html","HelpPageConfig Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_52.js b/API_NetFramework/VSdoc/search--/s_52.js new file mode 100644 index 00000000..ff4edb6e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_52.js @@ -0,0 +1 @@ +search_result['52']=["topic_000000000000000F.html","HelpPageConfig.Register Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_53.js b/API_NetFramework/VSdoc/search--/s_53.js new file mode 100644 index 00000000..38624750 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_53.js @@ -0,0 +1 @@ +search_result['53']=["topic_0000000000000010.html","API_NetFramework.Areas.HelpPage.Controllers Namespace",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_54.js b/API_NetFramework/VSdoc/search--/s_54.js new file mode 100644 index 00000000..79566705 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_54.js @@ -0,0 +1 @@ +search_result['54']=["topic_0000000000000011.html","HelpController Class","The controller that will handle requests for the help page."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_55.js b/API_NetFramework/VSdoc/search--/s_55.js new file mode 100644 index 00000000..79de41d3 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_55.js @@ -0,0 +1 @@ +search_result['55']=["topic_0000000000000011_attached_props--.html","HelpController Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_56.js b/API_NetFramework/VSdoc/search--/s_56.js new file mode 100644 index 00000000..0e1dc4ea --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_56.js @@ -0,0 +1 @@ +search_result['56']=["topic_0000000000000011_events--.html","HelpController Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_57.js b/API_NetFramework/VSdoc/search--/s_57.js new file mode 100644 index 00000000..dab2d64f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_57.js @@ -0,0 +1 @@ +search_result['57']=["topic_0000000000000011_methods--.html","HelpController Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_58.js b/API_NetFramework/VSdoc/search--/s_58.js new file mode 100644 index 00000000..ab474295 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_58.js @@ -0,0 +1 @@ +search_result['58']=["topic_0000000000000011_props--.html","HelpController Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_59.js b/API_NetFramework/VSdoc/search--/s_59.js new file mode 100644 index 00000000..04317aec --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_59.js @@ -0,0 +1 @@ +search_result['59']=["topic_0000000000000011_vars--.html","HelpController Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_6.js b/API_NetFramework/VSdoc/search--/s_6.js new file mode 100644 index 00000000..4e5ba007 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_6.js @@ -0,0 +1 @@ +search_result['6']=["topic_0000000000000001_methods--.html","BundleConfig Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_60.js b/API_NetFramework/VSdoc/search--/s_60.js new file mode 100644 index 00000000..303187ac --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_60.js @@ -0,0 +1 @@ +search_result['60']=["topic_0000000000000012.html","HelpController Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_61.js b/API_NetFramework/VSdoc/search--/s_61.js new file mode 100644 index 00000000..472c7979 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_61.js @@ -0,0 +1 @@ +search_result['61']=["topic_0000000000000012_overloads--.html","HelpController Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_62.js b/API_NetFramework/VSdoc/search--/s_62.js new file mode 100644 index 00000000..538a142e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_62.js @@ -0,0 +1 @@ +search_result['62']=["topic_0000000000000013.html","HelpController(HttpConfiguration) Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_63.js b/API_NetFramework/VSdoc/search--/s_63.js new file mode 100644 index 00000000..f37346a1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_63.js @@ -0,0 +1 @@ +search_result['63']=["topic_0000000000000013_overloads--.html","HelpController Constructor",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_64.js b/API_NetFramework/VSdoc/search--/s_64.js new file mode 100644 index 00000000..ec68b341 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_64.js @@ -0,0 +1 @@ +search_result['64']=["topic_0000000000000014.html","HelpController.Configuration Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_65.js b/API_NetFramework/VSdoc/search--/s_65.js new file mode 100644 index 00000000..9183deb1 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_65.js @@ -0,0 +1 @@ +search_result['65']=["topic_0000000000000015.html","HelpController.Index Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_66.js b/API_NetFramework/VSdoc/search--/s_66.js new file mode 100644 index 00000000..5def23b4 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_66.js @@ -0,0 +1 @@ +search_result['66']=["topic_0000000000000016.html","HelpController.Api Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_67.js b/API_NetFramework/VSdoc/search--/s_67.js new file mode 100644 index 00000000..b5146b13 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_67.js @@ -0,0 +1 @@ +search_result['67']=["topic_0000000000000017.html","HelpController.ResourceModel Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_68.js b/API_NetFramework/VSdoc/search--/s_68.js new file mode 100644 index 00000000..9e0477e5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_68.js @@ -0,0 +1 @@ +search_result['68']=["topic_0000000000000018.html","HelpPageAreaRegistration Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_69.js b/API_NetFramework/VSdoc/search--/s_69.js new file mode 100644 index 00000000..48d74718 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_69.js @@ -0,0 +1 @@ +search_result['69']=["topic_0000000000000018_attached_props--.html","HelpPageAreaRegistration Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_7.js b/API_NetFramework/VSdoc/search--/s_7.js new file mode 100644 index 00000000..0ec33865 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_7.js @@ -0,0 +1 @@ +search_result['7']=["topic_0000000000000001_props--.html","BundleConfig Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_70.js b/API_NetFramework/VSdoc/search--/s_70.js new file mode 100644 index 00000000..1b16009d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_70.js @@ -0,0 +1 @@ +search_result['70']=["topic_0000000000000018_events--.html","HelpPageAreaRegistration Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_71.js b/API_NetFramework/VSdoc/search--/s_71.js new file mode 100644 index 00000000..2b8d8dd9 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_71.js @@ -0,0 +1 @@ +search_result['71']=["topic_0000000000000018_methods--.html","HelpPageAreaRegistration Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_72.js b/API_NetFramework/VSdoc/search--/s_72.js new file mode 100644 index 00000000..77ff9dd5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_72.js @@ -0,0 +1 @@ +search_result['72']=["topic_0000000000000018_props--.html","HelpPageAreaRegistration Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_73.js b/API_NetFramework/VSdoc/search--/s_73.js new file mode 100644 index 00000000..76ade2b5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_73.js @@ -0,0 +1 @@ +search_result['73']=["topic_0000000000000018_vars--.html","HelpPageAreaRegistration Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_74.js b/API_NetFramework/VSdoc/search--/s_74.js new file mode 100644 index 00000000..eaba20ca --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_74.js @@ -0,0 +1 @@ +search_result['74']=["topic_0000000000000019.html","HelpPageAreaRegistration.AreaName Property",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_75.js b/API_NetFramework/VSdoc/search--/s_75.js new file mode 100644 index 00000000..fed8447e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_75.js @@ -0,0 +1 @@ +search_result['75']=["topic_000000000000001A.html","HelpPageAreaRegistration.RegisterArea Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_76.js b/API_NetFramework/VSdoc/search--/s_76.js new file mode 100644 index 00000000..adb0a612 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_76.js @@ -0,0 +1 @@ +search_result['76']=["topic_000000000000001B.html","HelpPageConfigurationExtensions Class",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_77.js b/API_NetFramework/VSdoc/search--/s_77.js new file mode 100644 index 00000000..2e234e5a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_77.js @@ -0,0 +1 @@ +search_result['77']=["topic_000000000000001B_attached_props--.html","HelpPageConfigurationExtensions Attached Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_78.js b/API_NetFramework/VSdoc/search--/s_78.js new file mode 100644 index 00000000..87b26f61 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_78.js @@ -0,0 +1 @@ +search_result['78']=["topic_000000000000001B_events--.html","HelpPageConfigurationExtensions Events",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_79.js b/API_NetFramework/VSdoc/search--/s_79.js new file mode 100644 index 00000000..67399e89 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_79.js @@ -0,0 +1 @@ +search_result['79']=["topic_000000000000001B_methods--.html","HelpPageConfigurationExtensions Methods",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_8.js b/API_NetFramework/VSdoc/search--/s_8.js new file mode 100644 index 00000000..24e66861 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_8.js @@ -0,0 +1 @@ +search_result['8']=["topic_0000000000000001_vars--.html","BundleConfig Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_80.js b/API_NetFramework/VSdoc/search--/s_80.js new file mode 100644 index 00000000..b56ea1a5 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_80.js @@ -0,0 +1 @@ +search_result['80']=["topic_000000000000001B_props--.html","HelpPageConfigurationExtensions Properties",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_81.js b/API_NetFramework/VSdoc/search--/s_81.js new file mode 100644 index 00000000..68137b70 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_81.js @@ -0,0 +1 @@ +search_result['81']=["topic_000000000000001B_vars--.html","HelpPageConfigurationExtensions Fields",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_82.js b/API_NetFramework/VSdoc/search--/s_82.js new file mode 100644 index 00000000..d5201f83 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_82.js @@ -0,0 +1 @@ +search_result['82']=["topic_000000000000001C.html","HelpPageConfigurationExtensions.SetDocumentationProvider Method","Sets the documentation provider for help page."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_83.js b/API_NetFramework/VSdoc/search--/s_83.js new file mode 100644 index 00000000..bc59efcd --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_83.js @@ -0,0 +1 @@ +search_result['83']=["topic_000000000000001D.html","HelpPageConfigurationExtensions.SetSampleObjects Method","Sets the objects that will be used by the formatters to produce sample requests/responses."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_84.js b/API_NetFramework/VSdoc/search--/s_84.js new file mode 100644 index 00000000..bd654e03 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_84.js @@ -0,0 +1 @@ +search_result['84']=["topic_000000000000001E.html","HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method","Sets the sample request directly for the specified media type and action."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_85.js b/API_NetFramework/VSdoc/search--/s_85.js new file mode 100644 index 00000000..b5b317fc --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_85.js @@ -0,0 +1 @@ +search_result['85']=["topic_000000000000001E_overloads--.html","HelpPageConfigurationExtensions.SetSampleRequest Method","Sets the sample request directly for the specified media type and action."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_86.js b/API_NetFramework/VSdoc/search--/s_86.js new file mode 100644 index 00000000..2d48efef --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_86.js @@ -0,0 +1 @@ +search_result['86']=["topic_000000000000001F.html","HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method","Sets the sample request directly for the specified media type and action with parameters."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_87.js b/API_NetFramework/VSdoc/search--/s_87.js new file mode 100644 index 00000000..f137cd57 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_87.js @@ -0,0 +1 @@ +search_result['87']=["topic_000000000000001F_overloads--.html","HelpPageConfigurationExtensions.SetSampleRequest Method","Sets the sample request directly for the specified media type and action with parameters."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_88.js b/API_NetFramework/VSdoc/search--/s_88.js new file mode 100644 index 00000000..9c73c59a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_88.js @@ -0,0 +1 @@ +search_result['88']=["topic_0000000000000020.html","HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method","Sets the sample request directly for the specified media type of the action."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_89.js b/API_NetFramework/VSdoc/search--/s_89.js new file mode 100644 index 00000000..e8ebfe5d --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_89.js @@ -0,0 +1 @@ +search_result['89']=["topic_0000000000000020_overloads--.html","HelpPageConfigurationExtensions.SetSampleResponse Method","Sets the sample request directly for the specified media type of the action."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_9.js b/API_NetFramework/VSdoc/search--/s_9.js new file mode 100644 index 00000000..2b82f99f --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_9.js @@ -0,0 +1 @@ +search_result['9']=["topic_0000000000000002.html","BundleConfig.RegisterBundles Method",""]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_90.js b/API_NetFramework/VSdoc/search--/s_90.js new file mode 100644 index 00000000..4462e094 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_90.js @@ -0,0 +1 @@ +search_result['90']=["topic_0000000000000021.html","HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method","Sets the sample response directly for the specified media type of the action with specific parameters."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_91.js b/API_NetFramework/VSdoc/search--/s_91.js new file mode 100644 index 00000000..04752e28 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_91.js @@ -0,0 +1 @@ +search_result['91']=["topic_0000000000000021_overloads--.html","HelpPageConfigurationExtensions.SetSampleResponse Method","Sets the sample response directly for the specified media type of the action with specific parameters."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_92.js b/API_NetFramework/VSdoc/search--/s_92.js new file mode 100644 index 00000000..a9bf5a2a --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_92.js @@ -0,0 +1 @@ +search_result['92']=["topic_0000000000000022.html","HelpPageConfigurationExtensions.SetSampleForMediaType Method","Sets the sample directly for all actions with the specified media type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_93.js b/API_NetFramework/VSdoc/search--/s_93.js new file mode 100644 index 00000000..f5f7df18 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_93.js @@ -0,0 +1 @@ +search_result['93']=["topic_0000000000000023.html","HelpPageConfigurationExtensions.SetSampleForType Method","Sets the sample directly for all actions with the specified type and media type."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_94.js b/API_NetFramework/VSdoc/search--/s_94.js new file mode 100644 index 00000000..e0a1d780 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_94.js @@ -0,0 +1 @@ +search_result['94']=["topic_0000000000000024.html","HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String) Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_95.js b/API_NetFramework/VSdoc/search--/s_95.js new file mode 100644 index 00000000..d054347e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_95.js @@ -0,0 +1 @@ +search_result['95']=["topic_0000000000000024_overloads--.html","HelpPageConfigurationExtensions.SetActualRequestType Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_96.js b/API_NetFramework/VSdoc/search--/s_96.js new file mode 100644 index 00000000..7ebe1c33 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_96.js @@ -0,0 +1 @@ +search_result['96']=["topic_0000000000000025.html","HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String, String()) Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_97.js b/API_NetFramework/VSdoc/search--/s_97.js new file mode 100644 index 00000000..484fdfa7 --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_97.js @@ -0,0 +1 @@ +search_result['97']=["topic_0000000000000025_overloads--.html","HelpPageConfigurationExtensions.SetActualRequestType Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_98.js b/API_NetFramework/VSdoc/search--/s_98.js new file mode 100644 index 00000000..76aef39b --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_98.js @@ -0,0 +1 @@ +search_result['98']=["topic_0000000000000026.html","HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String) Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_99.js b/API_NetFramework/VSdoc/search--/s_99.js new file mode 100644 index 00000000..5ec2890e --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_99.js @@ -0,0 +1 @@ +search_result['99']=["topic_0000000000000026_overloads--.html","HelpPageConfigurationExtensions.SetActualResponseType Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/search--/s_all.js b/API_NetFramework/VSdoc/search--/s_all.js new file mode 100644 index 00000000..05120dcf --- /dev/null +++ b/API_NetFramework/VSdoc/search--/s_all.js @@ -0,0 +1,506 @@ +_s['0']=["index.html","Default page",""]; +_s['1']=["search--.html","Search",""]; +_s['2']=["topic_0000000000000000.html","API_NetFramework Namespace",""]; +_s['3']=["topic_0000000000000001.html","BundleConfig Class",""]; +_s['4']=["topic_0000000000000001_attached_props--.html","BundleConfig Attached Properties",""]; +_s['5']=["topic_0000000000000001_events--.html","BundleConfig Events",""]; +_s['6']=["topic_0000000000000001_methods--.html","BundleConfig Methods",""]; +_s['7']=["topic_0000000000000001_props--.html","BundleConfig Properties",""]; +_s['8']=["topic_0000000000000001_vars--.html","BundleConfig Fields",""]; +_s['9']=["topic_0000000000000002.html","BundleConfig.RegisterBundles Method",""]; +_s['10']=["topic_0000000000000003.html","FilterConfig Class",""]; +_s['11']=["topic_0000000000000003_attached_props--.html","FilterConfig Attached Properties",""]; +_s['12']=["topic_0000000000000003_events--.html","FilterConfig Events",""]; +_s['13']=["topic_0000000000000003_methods--.html","FilterConfig Methods",""]; +_s['14']=["topic_0000000000000003_props--.html","FilterConfig Properties",""]; +_s['15']=["topic_0000000000000003_vars--.html","FilterConfig Fields",""]; +_s['16']=["topic_0000000000000004.html","FilterConfig.RegisterGlobalFilters Method",""]; +_s['17']=["topic_0000000000000005.html","RouteConfig Class",""]; +_s['18']=["topic_0000000000000005_attached_props--.html","RouteConfig Attached Properties",""]; +_s['19']=["topic_0000000000000005_events--.html","RouteConfig Events",""]; +_s['20']=["topic_0000000000000005_methods--.html","RouteConfig Methods",""]; +_s['21']=["topic_0000000000000005_props--.html","RouteConfig Properties",""]; +_s['22']=["topic_0000000000000005_vars--.html","RouteConfig Fields",""]; +_s['23']=["topic_0000000000000006.html","RouteConfig.RegisterRoutes Method",""]; +_s['24']=["topic_0000000000000007.html","SwaggerConfig Class",""]; +_s['25']=["topic_0000000000000007_attached_props--.html","SwaggerConfig Attached Properties",""]; +_s['26']=["topic_0000000000000007_events--.html","SwaggerConfig Events",""]; +_s['27']=["topic_0000000000000007_methods--.html","SwaggerConfig Methods",""]; +_s['28']=["topic_0000000000000007_props--.html","SwaggerConfig Properties",""]; +_s['29']=["topic_0000000000000007_vars--.html","SwaggerConfig Fields",""]; +_s['30']=["topic_0000000000000008.html","SwaggerConfig.Register Method",""]; +_s['31']=["topic_0000000000000009.html","WebApiConfig Class",""]; +_s['32']=["topic_0000000000000009_attached_props--.html","WebApiConfig Attached Properties",""]; +_s['33']=["topic_0000000000000009_events--.html","WebApiConfig Events",""]; +_s['34']=["topic_0000000000000009_methods--.html","WebApiConfig Methods",""]; +_s['35']=["topic_0000000000000009_props--.html","WebApiConfig Properties",""]; +_s['36']=["topic_0000000000000009_vars--.html","WebApiConfig Fields",""]; +_s['37']=["topic_000000000000000A.html","WebApiConfig.Register Method",""]; +_s['38']=["topic_000000000000000B.html","API_NetFramework.Areas.HelpPage Namespace",""]; +_s['39']=["topic_000000000000000C.html","ApiDescriptionExtensions Class",""]; +_s['40']=["topic_000000000000000C_attached_props--.html","ApiDescriptionExtensions Attached Properties",""]; +_s['41']=["topic_000000000000000C_events--.html","ApiDescriptionExtensions Events",""]; +_s['42']=["topic_000000000000000C_methods--.html","ApiDescriptionExtensions Methods",""]; +_s['43']=["topic_000000000000000C_props--.html","ApiDescriptionExtensions Properties",""]; +_s['44']=["topic_000000000000000C_vars--.html","ApiDescriptionExtensions Fields",""]; +_s['45']=["topic_000000000000000D.html","ApiDescriptionExtensions.GetFriendlyId Method","Generates an URI-friendly ID for the ApiDescription. E.g. \"Get-Values-id_name\" instead of \"GetValues/{id}?name={name}\""]; +_s['46']=["topic_000000000000000E.html","HelpPageConfig Class","Use this class to customize the Help Page.\r\nFor example you can set a custom IDocumentationProvider to supply the documentation\r\nor you can provide the samples for the requests/responses."]; +_s['47']=["topic_000000000000000E_attached_props--.html","HelpPageConfig Attached Properties",""]; +_s['48']=["topic_000000000000000E_events--.html","HelpPageConfig Events",""]; +_s['49']=["topic_000000000000000E_methods--.html","HelpPageConfig Methods",""]; +_s['50']=["topic_000000000000000E_props--.html","HelpPageConfig Properties",""]; +_s['51']=["topic_000000000000000E_vars--.html","HelpPageConfig Fields",""]; +_s['52']=["topic_000000000000000F.html","HelpPageConfig.Register Method",""]; +_s['53']=["topic_0000000000000010.html","API_NetFramework.Areas.HelpPage.Controllers Namespace",""]; +_s['54']=["topic_0000000000000011.html","HelpController Class","The controller that will handle requests for the help page."]; +_s['55']=["topic_0000000000000011_attached_props--.html","HelpController Attached Properties",""]; +_s['56']=["topic_0000000000000011_events--.html","HelpController Events",""]; +_s['57']=["topic_0000000000000011_methods--.html","HelpController Methods",""]; +_s['58']=["topic_0000000000000011_props--.html","HelpController Properties",""]; +_s['59']=["topic_0000000000000011_vars--.html","HelpController Fields",""]; +_s['60']=["topic_0000000000000012.html","HelpController Constructor",""]; +_s['61']=["topic_0000000000000012_overloads--.html","HelpController Constructor",""]; +_s['62']=["topic_0000000000000013.html","HelpController(HttpConfiguration) Constructor",""]; +_s['63']=["topic_0000000000000013_overloads--.html","HelpController Constructor",""]; +_s['64']=["topic_0000000000000014.html","HelpController.Configuration Property",""]; +_s['65']=["topic_0000000000000015.html","HelpController.Index Method",""]; +_s['66']=["topic_0000000000000016.html","HelpController.Api Method",""]; +_s['67']=["topic_0000000000000017.html","HelpController.ResourceModel Method",""]; +_s['68']=["topic_0000000000000018.html","HelpPageAreaRegistration Class",""]; +_s['69']=["topic_0000000000000018_attached_props--.html","HelpPageAreaRegistration Attached Properties",""]; +_s['70']=["topic_0000000000000018_events--.html","HelpPageAreaRegistration Events",""]; +_s['71']=["topic_0000000000000018_methods--.html","HelpPageAreaRegistration Methods",""]; +_s['72']=["topic_0000000000000018_props--.html","HelpPageAreaRegistration Properties",""]; +_s['73']=["topic_0000000000000018_vars--.html","HelpPageAreaRegistration Fields",""]; +_s['74']=["topic_0000000000000019.html","HelpPageAreaRegistration.AreaName Property",""]; +_s['75']=["topic_000000000000001A.html","HelpPageAreaRegistration.RegisterArea Method",""]; +_s['76']=["topic_000000000000001B.html","HelpPageConfigurationExtensions Class",""]; +_s['77']=["topic_000000000000001B_attached_props--.html","HelpPageConfigurationExtensions Attached Properties",""]; +_s['78']=["topic_000000000000001B_events--.html","HelpPageConfigurationExtensions Events",""]; +_s['79']=["topic_000000000000001B_methods--.html","HelpPageConfigurationExtensions Methods",""]; +_s['80']=["topic_000000000000001B_props--.html","HelpPageConfigurationExtensions Properties",""]; +_s['81']=["topic_000000000000001B_vars--.html","HelpPageConfigurationExtensions Fields",""]; +_s['82']=["topic_000000000000001C.html","HelpPageConfigurationExtensions.SetDocumentationProvider Method","Sets the documentation provider for help page."]; +_s['83']=["topic_000000000000001D.html","HelpPageConfigurationExtensions.SetSampleObjects Method","Sets the objects that will be used by the formatters to produce sample requests/responses."]; +_s['84']=["topic_000000000000001E.html","HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method","Sets the sample request directly for the specified media type and action."]; +_s['85']=["topic_000000000000001E_overloads--.html","HelpPageConfigurationExtensions.SetSampleRequest Method","Sets the sample request directly for the specified media type and action."]; +_s['86']=["topic_000000000000001F.html","HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method","Sets the sample request directly for the specified media type and action with parameters."]; +_s['87']=["topic_000000000000001F_overloads--.html","HelpPageConfigurationExtensions.SetSampleRequest Method","Sets the sample request directly for the specified media type and action with parameters."]; +_s['88']=["topic_0000000000000020.html","HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method","Sets the sample request directly for the specified media type of the action."]; +_s['89']=["topic_0000000000000020_overloads--.html","HelpPageConfigurationExtensions.SetSampleResponse Method","Sets the sample request directly for the specified media type of the action."]; +_s['90']=["topic_0000000000000021.html","HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method","Sets the sample response directly for the specified media type of the action with specific parameters."]; +_s['91']=["topic_0000000000000021_overloads--.html","HelpPageConfigurationExtensions.SetSampleResponse Method","Sets the sample response directly for the specified media type of the action with specific parameters."]; +_s['92']=["topic_0000000000000022.html","HelpPageConfigurationExtensions.SetSampleForMediaType Method","Sets the sample directly for all actions with the specified media type."]; +_s['93']=["topic_0000000000000023.html","HelpPageConfigurationExtensions.SetSampleForType Method","Sets the sample directly for all actions with the specified type and media type."]; +_s['94']=["topic_0000000000000024.html","HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String) Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; +_s['95']=["topic_0000000000000024_overloads--.html","HelpPageConfigurationExtensions.SetActualRequestType Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; +_s['96']=["topic_0000000000000025.html","HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String, String()) Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; +_s['97']=["topic_0000000000000025_overloads--.html","HelpPageConfigurationExtensions.SetActualRequestType Method","Specifies the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate request samples."]; +_s['98']=["topic_0000000000000026.html","HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String) Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; +_s['99']=["topic_0000000000000026_overloads--.html","HelpPageConfigurationExtensions.SetActualResponseType Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; +_s['100']=["topic_0000000000000027.html","HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String, String()) Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; +_s['101']=["topic_0000000000000027_overloads--.html","HelpPageConfigurationExtensions.SetActualResponseType Method","Specifies the actual type of ObjectContent\u003cT\u003e returned as part of the HttpRequestMessage in an action.\r\nThe help page will use this information to produce more accurate response samples."]; +_s['102']=["topic_0000000000000028.html","HelpPageConfigurationExtensions.GetHelpPageSampleGenerator Method","Gets the help page sample generator."]; +_s['103']=["topic_0000000000000029.html","HelpPageConfigurationExtensions.SetHelpPageSampleGenerator Method","Sets the help page sample generator."]; +_s['104']=["topic_000000000000002A.html","HelpPageConfigurationExtensions.GetModelDescriptionGenerator Method","Gets the model description generator."]; +_s['105']=["topic_000000000000002B.html","HelpPageConfigurationExtensions.GetHelpPageApiModel Method","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."]; +_s['106']=["topic_000000000000002C.html","API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace",""]; +_s['107']=["topic_000000000000002D.html","CollectionModelDescription Class",""]; +_s['108']=["topic_000000000000002D_attached_props--.html","CollectionModelDescription Attached Properties",""]; +_s['109']=["topic_000000000000002D_events--.html","CollectionModelDescription Events",""]; +_s['110']=["topic_000000000000002D_methods--.html","CollectionModelDescription Methods",""]; +_s['111']=["topic_000000000000002D_props--.html","CollectionModelDescription Properties",""]; +_s['112']=["topic_000000000000002D_vars--.html","CollectionModelDescription Fields",""]; +_s['113']=["topic_000000000000002E.html","CollectionModelDescription.ElementDescription Property",""]; +_s['114']=["topic_000000000000002F.html","ComplexTypeModelDescription Class",""]; +_s['115']=["topic_000000000000002F_attached_props--.html","ComplexTypeModelDescription Attached Properties",""]; +_s['116']=["topic_000000000000002F_events--.html","ComplexTypeModelDescription Events",""]; +_s['117']=["topic_000000000000002F_methods--.html","ComplexTypeModelDescription Methods",""]; +_s['118']=["topic_000000000000002F_props--.html","ComplexTypeModelDescription Properties",""]; +_s['119']=["topic_000000000000002F_vars--.html","ComplexTypeModelDescription Fields",""]; +_s['120']=["topic_0000000000000030.html","ComplexTypeModelDescription Constructor",""]; +_s['121']=["topic_0000000000000031.html","ComplexTypeModelDescription.Properties Property",""]; +_s['122']=["topic_0000000000000032.html","DictionaryModelDescription Class",""]; +_s['123']=["topic_0000000000000032_attached_props--.html","DictionaryModelDescription Attached Properties",""]; +_s['124']=["topic_0000000000000032_events--.html","DictionaryModelDescription Events",""]; +_s['125']=["topic_0000000000000032_methods--.html","DictionaryModelDescription Methods",""]; +_s['126']=["topic_0000000000000032_props--.html","DictionaryModelDescription Properties",""]; +_s['127']=["topic_0000000000000032_vars--.html","DictionaryModelDescription Fields",""]; +_s['128']=["topic_0000000000000033.html","EnumTypeModelDescription Class",""]; +_s['129']=["topic_0000000000000033_attached_props--.html","EnumTypeModelDescription Attached Properties",""]; +_s['130']=["topic_0000000000000033_events--.html","EnumTypeModelDescription Events",""]; +_s['131']=["topic_0000000000000033_methods--.html","EnumTypeModelDescription Methods",""]; +_s['132']=["topic_0000000000000033_props--.html","EnumTypeModelDescription Properties",""]; +_s['133']=["topic_0000000000000033_vars--.html","EnumTypeModelDescription Fields",""]; +_s['134']=["topic_0000000000000034.html","EnumTypeModelDescription Constructor",""]; +_s['135']=["topic_0000000000000035.html","EnumTypeModelDescription.Values Property",""]; +_s['136']=["topic_0000000000000036.html","EnumValueDescription Class",""]; +_s['137']=["topic_0000000000000036_attached_props--.html","EnumValueDescription Attached Properties",""]; +_s['138']=["topic_0000000000000036_events--.html","EnumValueDescription Events",""]; +_s['139']=["topic_0000000000000036_methods--.html","EnumValueDescription Methods",""]; +_s['140']=["topic_0000000000000036_props--.html","EnumValueDescription Properties",""]; +_s['141']=["topic_0000000000000036_vars--.html","EnumValueDescription Fields",""]; +_s['142']=["topic_0000000000000037.html","EnumValueDescription.Documentation Property",""]; +_s['143']=["topic_0000000000000038.html","EnumValueDescription.Name Property",""]; +_s['144']=["topic_0000000000000039.html","EnumValueDescription.Value Property",""]; +_s['145']=["topic_000000000000003A.html","IModelDocumentationProvider Interface",""]; +_s['146']=["topic_000000000000003A_attached_props--.html","IModelDocumentationProvider Attached Properties",""]; +_s['147']=["topic_000000000000003A_events--.html","IModelDocumentationProvider Events",""]; +_s['148']=["topic_000000000000003A_methods--.html","IModelDocumentationProvider Methods",""]; +_s['149']=["topic_000000000000003A_props--.html","IModelDocumentationProvider Properties",""]; +_s['150']=["topic_000000000000003A_vars--.html","IModelDocumentationProvider Fields",""]; +_s['151']=["topic_000000000000003B.html","IModelDocumentationProvider.GetDocumentation (MemberInfo) Method",""]; +_s['152']=["topic_000000000000003B_overloads--.html","IModelDocumentationProvider.GetDocumentation Method",""]; +_s['153']=["topic_000000000000003C.html","IModelDocumentationProvider.GetDocumentation (Type) Method",""]; +_s['154']=["topic_000000000000003C_overloads--.html","IModelDocumentationProvider.GetDocumentation Method",""]; +_s['155']=["topic_000000000000003D.html","KeyValuePairModelDescription Class",""]; +_s['156']=["topic_000000000000003D_attached_props--.html","KeyValuePairModelDescription Attached Properties",""]; +_s['157']=["topic_000000000000003D_events--.html","KeyValuePairModelDescription Events",""]; +_s['158']=["topic_000000000000003D_methods--.html","KeyValuePairModelDescription Methods",""]; +_s['159']=["topic_000000000000003D_props--.html","KeyValuePairModelDescription Properties",""]; +_s['160']=["topic_000000000000003D_vars--.html","KeyValuePairModelDescription Fields",""]; +_s['161']=["topic_000000000000003E.html","KeyValuePairModelDescription.KeyModelDescription Property",""]; +_s['162']=["topic_000000000000003F.html","KeyValuePairModelDescription.ValueModelDescription Property",""]; +_s['163']=["topic_0000000000000040.html","ModelDescription Class","Describes a type model."]; +_s['164']=["topic_0000000000000040_attached_props--.html","ModelDescription Attached Properties",""]; +_s['165']=["topic_0000000000000040_events--.html","ModelDescription Events",""]; +_s['166']=["topic_0000000000000040_methods--.html","ModelDescription Methods",""]; +_s['167']=["topic_0000000000000040_props--.html","ModelDescription Properties",""]; +_s['168']=["topic_0000000000000040_vars--.html","ModelDescription Fields",""]; +_s['169']=["topic_0000000000000041.html","ModelDescription.Documentation Property",""]; +_s['170']=["topic_0000000000000042.html","ModelDescription.ModelType Property",""]; +_s['171']=["topic_0000000000000043.html","ModelDescription.Name Property",""]; +_s['172']=["topic_0000000000000044.html","ModelDescriptionGenerator Class","Generates model descriptions for given types."]; +_s['173']=["topic_0000000000000044_attached_props--.html","ModelDescriptionGenerator Attached Properties",""]; +_s['174']=["topic_0000000000000044_events--.html","ModelDescriptionGenerator Events",""]; +_s['175']=["topic_0000000000000044_methods--.html","ModelDescriptionGenerator Methods",""]; +_s['176']=["topic_0000000000000044_props--.html","ModelDescriptionGenerator Properties",""]; +_s['177']=["topic_0000000000000044_vars--.html","ModelDescriptionGenerator Fields",""]; +_s['178']=["topic_0000000000000045.html","ModelDescriptionGenerator Constructor",""]; +_s['179']=["topic_0000000000000046.html","ModelDescriptionGenerator.GeneratedModels Property",""]; +_s['180']=["topic_0000000000000047.html","ModelDescriptionGenerator.GetOrCreateModelDescription Method",""]; +_s['181']=["topic_0000000000000048.html","ModelNameAttribute Class","Use this attribute to change the name of the ModelDescription generated for a type."]; +_s['182']=["topic_0000000000000048_attached_props--.html","ModelNameAttribute Attached Properties",""]; +_s['183']=["topic_0000000000000048_events--.html","ModelNameAttribute Events",""]; +_s['184']=["topic_0000000000000048_methods--.html","ModelNameAttribute Methods",""]; +_s['185']=["topic_0000000000000048_props--.html","ModelNameAttribute Properties",""]; +_s['186']=["topic_0000000000000048_vars--.html","ModelNameAttribute Fields",""]; +_s['187']=["topic_0000000000000049.html","ModelNameAttribute Constructor",""]; +_s['188']=["topic_000000000000004A.html","ModelNameAttribute.Name Property",""]; +_s['189']=["topic_000000000000004B.html","ParameterAnnotation Class",""]; +_s['190']=["topic_000000000000004B_attached_props--.html","ParameterAnnotation Attached Properties",""]; +_s['191']=["topic_000000000000004B_events--.html","ParameterAnnotation Events",""]; +_s['192']=["topic_000000000000004B_methods--.html","ParameterAnnotation Methods",""]; +_s['193']=["topic_000000000000004B_props--.html","ParameterAnnotation Properties",""]; +_s['194']=["topic_000000000000004B_vars--.html","ParameterAnnotation Fields",""]; +_s['195']=["topic_000000000000004C.html","ParameterAnnotation.AnnotationAttribute Property",""]; +_s['196']=["topic_000000000000004D.html","ParameterAnnotation.Documentation Property",""]; +_s['197']=["topic_000000000000004E.html","ParameterDescription Class",""]; +_s['198']=["topic_000000000000004E_attached_props--.html","ParameterDescription Attached Properties",""]; +_s['199']=["topic_000000000000004E_events--.html","ParameterDescription Events",""]; +_s['200']=["topic_000000000000004E_methods--.html","ParameterDescription Methods",""]; +_s['201']=["topic_000000000000004E_props--.html","ParameterDescription Properties",""]; +_s['202']=["topic_000000000000004E_vars--.html","ParameterDescription Fields",""]; +_s['203']=["topic_000000000000004F.html","ParameterDescription Constructor",""]; +_s['204']=["topic_0000000000000050.html","ParameterDescription.Annotations Property",""]; +_s['205']=["topic_0000000000000051.html","ParameterDescription.Documentation Property",""]; +_s['206']=["topic_0000000000000052.html","ParameterDescription.Name Property",""]; +_s['207']=["topic_0000000000000053.html","ParameterDescription.TypeDescription Property",""]; +_s['208']=["topic_0000000000000054.html","SimpleTypeModelDescription Class",""]; +_s['209']=["topic_0000000000000054_attached_props--.html","SimpleTypeModelDescription Attached Properties",""]; +_s['210']=["topic_0000000000000054_events--.html","SimpleTypeModelDescription Events",""]; +_s['211']=["topic_0000000000000054_methods--.html","SimpleTypeModelDescription Methods",""]; +_s['212']=["topic_0000000000000054_props--.html","SimpleTypeModelDescription Properties",""]; +_s['213']=["topic_0000000000000054_vars--.html","SimpleTypeModelDescription Fields",""]; +_s['214']=["topic_0000000000000055.html","API_NetFramework.Areas.HelpPage.Models Namespace",""]; +_s['215']=["topic_0000000000000056.html","HelpPageApiModel Class","The model that represents an API displayed on the help page."]; +_s['216']=["topic_0000000000000056_attached_props--.html","HelpPageApiModel Attached Properties",""]; +_s['217']=["topic_0000000000000056_events--.html","HelpPageApiModel Events",""]; +_s['218']=["topic_0000000000000056_methods--.html","HelpPageApiModel Methods",""]; +_s['219']=["topic_0000000000000056_props--.html","HelpPageApiModel Properties",""]; +_s['220']=["topic_0000000000000056_vars--.html","HelpPageApiModel Fields",""]; +_s['221']=["topic_0000000000000057.html","HelpPageApiModel Constructor","Initializes a new instance of the HelpPageApiModel class."]; +_s['222']=["topic_0000000000000058.html","HelpPageApiModel.ApiDescription Property","Gets or sets the ApiDescription that describes the API."]; +_s['223']=["topic_0000000000000059.html","HelpPageApiModel.UriParameters Property","Gets or sets the ParameterDescription collection that describes the URI parameters for the API."]; +_s['224']=["topic_000000000000005A.html","HelpPageApiModel.RequestDocumentation Property","Gets or sets the documentation for the request."]; +_s['225']=["topic_000000000000005B.html","HelpPageApiModel.RequestModelDescription Property","Gets or sets the ModelDescription that describes the request body."]; +_s['226']=["topic_000000000000005C.html","HelpPageApiModel.RequestBodyParameters Property","Gets the request body parameter descriptions."]; +_s['227']=["topic_000000000000005D.html","HelpPageApiModel.ResourceDescription Property","Gets or sets the ModelDescription that describes the resource."]; +_s['228']=["topic_000000000000005E.html","HelpPageApiModel.ResourceProperties Property","Gets the resource property descriptions."]; +_s['229']=["topic_000000000000005F.html","HelpPageApiModel.SampleRequests Property","Gets the sample requests associated with the API."]; +_s['230']=["topic_0000000000000060.html","HelpPageApiModel.SampleResponses Property","Gets the sample responses associated with the API."]; +_s['231']=["topic_0000000000000061.html","HelpPageApiModel.ErrorMessages Property","Gets the error messages associated with this model."]; +_s['232']=["topic_0000000000000062.html","HelpPageSampleGenerator Class","This class will generate the samples for the help page."]; +_s['233']=["topic_0000000000000062_attached_props--.html","HelpPageSampleGenerator Attached Properties",""]; +_s['234']=["topic_0000000000000062_events--.html","HelpPageSampleGenerator Events",""]; +_s['235']=["topic_0000000000000062_methods--.html","HelpPageSampleGenerator Methods",""]; +_s['236']=["topic_0000000000000062_props--.html","HelpPageSampleGenerator Properties",""]; +_s['237']=["topic_0000000000000062_vars--.html","HelpPageSampleGenerator Fields",""]; +_s['238']=["topic_0000000000000063.html","HelpPageSampleGenerator Constructor","Initializes a new instance of the HelpPageSampleGenerator class."]; +_s['239']=["topic_0000000000000064.html","HelpPageSampleGenerator.ActualHttpMessageTypes Property","Gets CLR types that are used as the content of HttpRequestMessage or HttpResponseMessage."]; +_s['240']=["topic_0000000000000065.html","HelpPageSampleGenerator.ActionSamples Property","Gets the objects that are used directly as samples for certain actions."]; +_s['241']=["topic_0000000000000066.html","HelpPageSampleGenerator.SampleObjects Property","Gets the objects that are serialized as samples by the supported formatters."]; +_s['242']=["topic_0000000000000067.html","HelpPageSampleGenerator.SampleObjectFactories Property","Gets factories for the objects that the supported formatters will serialize as samples. Processed in order,\r\nstopping when the factory successfully returns a non- object."]; +_s['243']=["topic_0000000000000068.html","HelpPageSampleGenerator.GetSampleRequests Method","Gets the request body samples for a given ApiDescription."]; +_s['244']=["topic_0000000000000069.html","HelpPageSampleGenerator.GetSampleResponses Method","Gets the response body samples for a given ApiDescription."]; +_s['245']=["topic_000000000000006A.html","HelpPageSampleGenerator.GetSample Method","Gets the request or response body samples."]; +_s['246']=["topic_000000000000006B.html","HelpPageSampleGenerator.GetActionSample Method","Search for samples that are provided directly through ActionSamples."]; +_s['247']=["topic_000000000000006C.html","HelpPageSampleGenerator.GetSampleObject Method","Gets the sample object that will be serialized by the formatters.\r\nFirst, it will look at the SampleObjects. If no sample object is found, it will try to create\r\none using DefaultSampleObjectFactory (..."]; +_s['248']=["topic_000000000000006D.html","HelpPageSampleGenerator.ResolveHttpRequestMessageType Method","Resolves the actual type of ObjectContent\u003cT\u003e passed to the HttpRequestMessage in an action."]; +_s['249']=["topic_000000000000006E.html","HelpPageSampleGenerator.ResolveType Method","Resolves the type of the action parameter or return value when HttpRequestMessage or HttpResponseMessage is used."]; +_s['250']=["topic_000000000000006F.html","HelpPageSampleGenerator.WriteSampleObjectUsingFormatter Method","Writes the sample object using formatter."]; +_s['251']=["topic_0000000000000070.html","HelpPageSampleKey Class","This is used to identify the place where the sample should be applied."]; +_s['252']=["topic_0000000000000070_attached_props--.html","HelpPageSampleKey Attached Properties",""]; +_s['253']=["topic_0000000000000070_events--.html","HelpPageSampleKey Events",""]; +_s['254']=["topic_0000000000000070_methods--.html","HelpPageSampleKey Methods",""]; +_s['255']=["topic_0000000000000070_props--.html","HelpPageSampleKey Properties",""]; +_s['256']=["topic_0000000000000070_vars--.html","HelpPageSampleKey Fields",""]; +_s['257']=["topic_0000000000000071.html","HelpPageSampleKey(MediaTypeHeaderValue) Constructor","Creates a new HelpPageSampleKey based on media type."]; +_s['258']=["topic_0000000000000071_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on media type."]; +_s['259']=["topic_0000000000000072.html","HelpPageSampleKey(MediaTypeHeaderValue, Type) Constructor","Creates a new HelpPageSampleKey based on media type and CLR type."]; +_s['260']=["topic_0000000000000072_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on media type and CLR type."]; +_s['261']=["topic_0000000000000073.html","HelpPageSampleKey(SampleDirection, String, String, IEnumerable\u0026lt;String\u0026gt;) Constructor","Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names."]; +_s['262']=["topic_0000000000000073_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names."]; +_s['263']=["topic_0000000000000074.html","HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, String, String, IEnumerable\u0026lt;String\u0026gt;) Constructor","Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names."]; +_s['264']=["topic_0000000000000074_overloads--.html","HelpPageSampleKey Constructor","Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names."]; +_s['265']=["topic_0000000000000075.html","HelpPageSampleKey.ControllerName Property","Gets the name of the controller."]; +_s['266']=["topic_0000000000000076.html","HelpPageSampleKey.ActionName Property","Gets the name of the action."]; +_s['267']=["topic_0000000000000077.html","HelpPageSampleKey.MediaType Property","Gets the media type."]; +_s['268']=["topic_0000000000000078.html","HelpPageSampleKey.ParameterNames Property","Gets the parameter names."]; +_s['269']=["topic_0000000000000079.html","HelpPageSampleKey.ParameterType Property",""]; +_s['270']=["topic_000000000000007A.html","HelpPageSampleKey.SampleDirection Property","Gets the SampleDirection."]; +_s['271']=["topic_000000000000007B.html","HelpPageSampleKey.Equals Method",""]; +_s['272']=["topic_000000000000007C.html","HelpPageSampleKey.GetHashCode Method",""]; +_s['273']=["topic_000000000000007D.html","ImageSample Class","This represents an image sample on the help page. There\u0027s a display template named ImageSample associated with this class."]; +_s['274']=["topic_000000000000007D_attached_props--.html","ImageSample Attached Properties",""]; +_s['275']=["topic_000000000000007D_events--.html","ImageSample Events",""]; +_s['276']=["topic_000000000000007D_methods--.html","ImageSample Methods",""]; +_s['277']=["topic_000000000000007D_props--.html","ImageSample Properties",""]; +_s['278']=["topic_000000000000007D_vars--.html","ImageSample Fields",""]; +_s['279']=["topic_000000000000007E.html","ImageSample Constructor","Initializes a new instance of the ImageSample class."]; +_s['280']=["topic_000000000000007F.html","ImageSample.Src Property",""]; +_s['281']=["topic_0000000000000080.html","ImageSample.Equals Method",""]; +_s['282']=["topic_0000000000000081.html","ImageSample.GetHashCode Method",""]; +_s['283']=["topic_0000000000000082.html","ImageSample.ToString Method",""]; +_s['284']=["topic_0000000000000083.html","InvalidSample Class","This represents an invalid sample on the help page. There\u0027s a display template named InvalidSample associated with this class."]; +_s['285']=["topic_0000000000000083_attached_props--.html","InvalidSample Attached Properties",""]; +_s['286']=["topic_0000000000000083_events--.html","InvalidSample Events",""]; +_s['287']=["topic_0000000000000083_methods--.html","InvalidSample Methods",""]; +_s['288']=["topic_0000000000000083_props--.html","InvalidSample Properties",""]; +_s['289']=["topic_0000000000000083_vars--.html","InvalidSample Fields",""]; +_s['290']=["topic_0000000000000084.html","InvalidSample Constructor",""]; +_s['291']=["topic_0000000000000085.html","InvalidSample.ErrorMessage Property",""]; +_s['292']=["topic_0000000000000086.html","InvalidSample.Equals Method",""]; +_s['293']=["topic_0000000000000087.html","InvalidSample.GetHashCode Method",""]; +_s['294']=["topic_0000000000000088.html","InvalidSample.ToString Method",""]; +_s['295']=["topic_0000000000000089.html","ObjectGenerator Class","This class will create an object of a given type and populate it with sample data."]; +_s['296']=["topic_0000000000000089_attached_props--.html","ObjectGenerator Attached Properties",""]; +_s['297']=["topic_0000000000000089_events--.html","ObjectGenerator Events",""]; +_s['298']=["topic_0000000000000089_methods--.html","ObjectGenerator Methods",""]; +_s['299']=["topic_0000000000000089_props--.html","ObjectGenerator Properties",""]; +_s['300']=["topic_0000000000000089_vars--.html","ObjectGenerator Fields",""]; +_s['301']=["topic_000000000000008A.html","ObjectGenerator.GenerateObject Method","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:\r\nSimple types: in..."]; +_s['302']=["topic_000000000000008B.html","SampleDirection Enumeration","Indicates whether the sample is used for request or response"]; +_s['303']=["topic_000000000000008E.html","TextSample Class","This represents a preformatted text sample on the help page. There\u0027s a display template named TextSample associated with this class."]; +_s['304']=["topic_000000000000008E_attached_props--.html","TextSample Attached Properties",""]; +_s['305']=["topic_000000000000008E_events--.html","TextSample Events",""]; +_s['306']=["topic_000000000000008E_methods--.html","TextSample Methods",""]; +_s['307']=["topic_000000000000008E_props--.html","TextSample Properties",""]; +_s['308']=["topic_000000000000008E_vars--.html","TextSample Fields",""]; +_s['309']=["topic_000000000000008F.html","TextSample Constructor",""]; +_s['310']=["topic_0000000000000090.html","TextSample.Text Property",""]; +_s['311']=["topic_0000000000000091.html","TextSample.Equals Method",""]; +_s['312']=["topic_0000000000000092.html","TextSample.GetHashCode Method",""]; +_s['313']=["topic_0000000000000093.html","TextSample.ToString Method",""]; +_s['314']=["topic_0000000000000094.html","XmlDocumentationProvider Class","A custom IDocumentationProvider that reads the API documentation from an XML documentation file."]; +_s['315']=["topic_0000000000000094_attached_props--.html","XmlDocumentationProvider Attached Properties",""]; +_s['316']=["topic_0000000000000094_events--.html","XmlDocumentationProvider Events",""]; +_s['317']=["topic_0000000000000094_methods--.html","XmlDocumentationProvider Methods",""]; +_s['318']=["topic_0000000000000094_props--.html","XmlDocumentationProvider Properties",""]; +_s['319']=["topic_0000000000000094_vars--.html","XmlDocumentationProvider Fields",""]; +_s['320']=["topic_0000000000000095.html","XmlDocumentationProvider Constructor","Initializes a new instance of the XmlDocumentationProvider class."]; +_s['321']=["topic_0000000000000096.html","XmlDocumentationProvider.GetDocumentation (HttpControllerDescriptor) Method",""]; +_s['322']=["topic_0000000000000096_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; +_s['323']=["topic_0000000000000097.html","XmlDocumentationProvider.GetDocumentation (HttpActionDescriptor) Method",""]; +_s['324']=["topic_0000000000000097_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; +_s['325']=["topic_0000000000000098.html","XmlDocumentationProvider.GetDocumentation (HttpParameterDescriptor) Method",""]; +_s['326']=["topic_0000000000000098_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; +_s['327']=["topic_0000000000000099.html","XmlDocumentationProvider.GetResponseDocumentation Method",""]; +_s['328']=["topic_000000000000009A.html","XmlDocumentationProvider.GetDocumentation (MemberInfo) Method",""]; +_s['329']=["topic_000000000000009A_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; +_s['330']=["topic_000000000000009B.html","XmlDocumentationProvider.GetDocumentation (Type) Method",""]; +_s['331']=["topic_000000000000009B_overloads--.html","XmlDocumentationProvider.GetDocumentation Method",""]; +_s['332']=["topic_000000000000009C.html","API_NetFramework.Controllers Namespace",""]; +_s['333']=["topic_000000000000009D.html","AntwortAdresseController Class",""]; +_s['334']=["topic_000000000000009D_attached_props--.html","AntwortAdresseController Attached Properties",""]; +_s['335']=["topic_000000000000009D_events--.html","AntwortAdresseController Events",""]; +_s['336']=["topic_000000000000009D_methods--.html","AntwortAdresseController Methods",""]; +_s['337']=["topic_000000000000009D_props--.html","AntwortAdresseController Properties",""]; +_s['338']=["topic_000000000000009D_vars--.html","AntwortAdresseController Fields",""]; +_s['339']=["topic_000000000000009E.html","AntwortAdresseController.GetGetAll Method",""]; +_s['340']=["topic_000000000000009F.html","AntwortAdresseController.GetByID Method",""]; +_s['341']=["topic_00000000000000A0.html","AntwortAdresseController.GetAllMitarbeiterByTGNummer Method",""]; +_s['342']=["topic_00000000000000A1.html","AntwortAdresseController.GetAllMitarbeiterByMitarbeiterNr Method",""]; +_s['343']=["topic_00000000000000A2.html","AntwortAdresseController.GetMitarbeiterByID Method",""]; +_s['344']=["topic_00000000000000A3.html","ArchivController Class",""]; +_s['345']=["topic_00000000000000A3_attached_props--.html","ArchivController Attached Properties",""]; +_s['346']=["topic_00000000000000A3_events--.html","ArchivController Events",""]; +_s['347']=["topic_00000000000000A3_methods--.html","ArchivController Methods",""]; +_s['348']=["topic_00000000000000A3_props--.html","ArchivController Properties",""]; +_s['349']=["topic_00000000000000A3_vars--.html","ArchivController Fields",""]; +_s['350']=["topic_00000000000000A4.html","ArchivController.ArchivDoc_From_Database Method","Archiviert das Dokument aus OnDoc in OnBase"]; +_s['351']=["topic_00000000000000A4_attached_props--.html","TestParam Attached Properties",""]; +_s['352']=["topic_00000000000000A4_events--.html","TestParam Events",""]; +_s['353']=["topic_00000000000000A4_methods--.html","TestParam Methods",""]; +_s['354']=["topic_00000000000000A4_props--.html","TestParam Properties",""]; +_s['355']=["topic_00000000000000A4_vars--.html","TestParam Fields",""]; +_s['356']=["topic_00000000000000A5.html","ArchivController.ArchivDocBase64 Method",""]; +_s['357']=["topic_00000000000000A6.html","ArchivController.CheckDocID Method",""]; +_s['358']=["topic_00000000000000A6_attached_props--.html","DocumentController Attached Properties",""]; +_s['359']=["topic_00000000000000A6_events--.html","DocumentController Events",""]; +_s['360']=["topic_00000000000000A6_methods--.html","DocumentController Methods",""]; +_s['361']=["topic_00000000000000A6_props--.html","DocumentController Properties",""]; +_s['362']=["topic_00000000000000A6_vars--.html","DocumentController Fields",""]; +_s['363']=["topic_00000000000000A7.html","ArchivController.ArchivDocFromIRIS Method",""]; +_s['364']=["topic_00000000000000A7_attached_props--.html","DocumentController Attached Properties",""]; +_s['365']=["topic_00000000000000A7_events--.html","DocumentController Events",""]; +_s['366']=["topic_00000000000000A7_methods--.html","DocumentController Methods",""]; +_s['367']=["topic_00000000000000A7_props--.html","DocumentController Properties",""]; +_s['368']=["topic_00000000000000A7_vars--.html","DocumentController Fields",""]; +_s['369']=["topic_00000000000000A8.html","TestParam Class",""]; +_s['370']=["topic_00000000000000A8_attached_props--.html","TestParam Attached Properties",""]; +_s['371']=["topic_00000000000000A8_events--.html","TestParam Events",""]; +_s['372']=["topic_00000000000000A8_methods--.html","TestParam Methods",""]; +_s['373']=["topic_00000000000000A8_props--.html","TestParam Properties",""]; +_s['374']=["topic_00000000000000A8_vars--.html","TestParam Fields",""]; +_s['375']=["topic_00000000000000A9.html","TestParam.param1 Property",""]; +_s['376']=["topic_00000000000000AA.html","TestParam.param2 Property",""]; +_s['377']=["topic_00000000000000AB.html","DocumentController Class",""]; +_s['378']=["topic_00000000000000AB_attached_props--.html","DocumentController Attached Properties",""]; +_s['379']=["topic_00000000000000AB_events--.html","DocumentController Events",""]; +_s['380']=["topic_00000000000000AB_methods--.html","DocumentController Methods",""]; +_s['381']=["topic_00000000000000AB_props--.html","DocumentController Properties",""]; +_s['382']=["topic_00000000000000AB_vars--.html","DocumentController Fields",""]; +_s['383']=["topic_00000000000000AC.html","DocumentController.GetDocument Method",""]; +_s['384']=["topic_00000000000000AD.html","DocumentController.pageCollection Property",""]; +_s['385']=["topic_00000000000000AD_attached_props--.html","HomeController Attached Properties",""]; +_s['386']=["topic_00000000000000AD_events--.html","HomeController Events",""]; +_s['387']=["topic_00000000000000AD_methods--.html","HomeController Methods",""]; +_s['388']=["topic_00000000000000AD_props--.html","HomeController Properties",""]; +_s['389']=["topic_00000000000000AD_vars--.html","HomeController Fields",""]; +_s['390']=["topic_00000000000000AE.html","DocumentController.GetDocumentJSONBody Method",""]; +_s['391']=["topic_00000000000000AE_attached_props--.html","HomeController Attached Properties",""]; +_s['392']=["topic_00000000000000AE_events--.html","HomeController Events",""]; +_s['393']=["topic_00000000000000AE_methods--.html","HomeController Methods",""]; +_s['394']=["topic_00000000000000AE_props--.html","HomeController Properties",""]; +_s['395']=["topic_00000000000000AE_vars--.html","HomeController Fields",""]; +_s['396']=["topic_00000000000000AF.html","DocumentController.GetDocumentPDF Method",""]; +_s['397']=["topic_00000000000000AF_attached_props--.html","OnBaseController Attached Properties",""]; +_s['398']=["topic_00000000000000AF_events--.html","OnBaseController Events",""]; +_s['399']=["topic_00000000000000AF_methods--.html","OnBaseController Methods",""]; +_s['400']=["topic_00000000000000AF_props--.html","OnBaseController Properties",""]; +_s['401']=["topic_00000000000000AF_vars--.html","OnBaseController Fields",""]; +_s['402']=["topic_00000000000000B0.html","DocumentController.SendToOnBase Method",""]; +_s['403']=["topic_00000000000000B0_attached_props--.html","OnBaseController Attached Properties",""]; +_s['404']=["topic_00000000000000B0_events--.html","OnBaseController Events",""]; +_s['405']=["topic_00000000000000B0_methods--.html","OnBaseController Methods",""]; +_s['406']=["topic_00000000000000B0_props--.html","OnBaseController Properties",""]; +_s['407']=["topic_00000000000000B0_vars--.html","OnBaseController Fields",""]; +_s['408']=["topic_00000000000000B1.html","DocumentController.GenDoc Method",""]; +_s['409']=["topic_00000000000000B2.html","HomeController Class",""]; +_s['410']=["topic_00000000000000B2_attached_props--.html","HomeController Attached Properties",""]; +_s['411']=["topic_00000000000000B2_events--.html","HomeController Events",""]; +_s['412']=["topic_00000000000000B2_methods--.html","HomeController Methods",""]; +_s['413']=["topic_00000000000000B2_props--.html","HomeController Properties",""]; +_s['414']=["topic_00000000000000B2_vars--.html","HomeController Fields",""]; +_s['415']=["topic_00000000000000B3.html","HomeController.Index Method",""]; +_s['416']=["topic_00000000000000B3_attached_props--.html","IFileService Attached Properties",""]; +_s['417']=["topic_00000000000000B3_events--.html","IFileService Events",""]; +_s['418']=["topic_00000000000000B3_methods--.html","IFileService Methods",""]; +_s['419']=["topic_00000000000000B3_props--.html","IFileService Properties",""]; +_s['420']=["topic_00000000000000B3_vars--.html","IFileService Fields",""]; +_s['421']=["topic_00000000000000B4.html","IFileService Interface",""]; +_s['422']=["topic_00000000000000B4_attached_props--.html","IFileService Attached Properties",""]; +_s['423']=["topic_00000000000000B4_events--.html","IFileService Events",""]; +_s['424']=["topic_00000000000000B4_methods--.html","IFileService Methods",""]; +_s['425']=["topic_00000000000000B4_props--.html","IFileService Properties",""]; +_s['426']=["topic_00000000000000B4_vars--.html","IFileService Fields",""]; +_s['427']=["topic_00000000000000B5.html","IFileService.GetImageAsStream Method",""]; +_s['428']=["topic_00000000000000B6.html","IFileService.GetImageAsByteArray Method",""]; +_s['429']=["topic_00000000000000B6_attached_props--.html","Image Attached Properties",""]; +_s['430']=["topic_00000000000000B6_events--.html","Image Events",""]; +_s['431']=["topic_00000000000000B6_methods--.html","Image Methods",""]; +_s['432']=["topic_00000000000000B6_props--.html","Image Properties",""]; +_s['433']=["topic_00000000000000B6_vars--.html","Image Fields",""]; +_s['434']=["topic_00000000000000B7.html","Image Class",""]; +_s['435']=["topic_00000000000000B7_attached_props--.html","Image Attached Properties",""]; +_s['436']=["topic_00000000000000B7_events--.html","Image Events",""]; +_s['437']=["topic_00000000000000B7_methods--.html","Image Methods",""]; +_s['438']=["topic_00000000000000B7_props--.html","Image Properties",""]; +_s['439']=["topic_00000000000000B7_vars--.html","Image Fields",""]; +_s['440']=["topic_00000000000000B8.html","Base64Image Field",""]; +_s['441']=["topic_00000000000000B8_attached_props--.html","UnterschriftController Attached Properties",""]; +_s['442']=["topic_00000000000000B8_events--.html","UnterschriftController Events",""]; +_s['443']=["topic_00000000000000B8_methods--.html","UnterschriftController Methods",""]; +_s['444']=["topic_00000000000000B8_props--.html","UnterschriftController Properties",""]; +_s['445']=["topic_00000000000000B8_vars--.html","UnterschriftController Fields",""]; +_s['446']=["topic_00000000000000B9.html","UnterschriftController Class",""]; +_s['447']=["topic_00000000000000B9_attached_props--.html","UnterschriftController Attached Properties",""]; +_s['448']=["topic_00000000000000B9_events--.html","UnterschriftController Events",""]; +_s['449']=["topic_00000000000000B9_methods--.html","UnterschriftController Methods",""]; +_s['450']=["topic_00000000000000B9_props--.html","UnterschriftController Properties",""]; +_s['451']=["topic_00000000000000B9_vars--.html","UnterschriftController Fields",""]; +_s['452']=["topic_00000000000000BA.html","UnterschriftController.GetUnterschriftAsBase64 Method",""]; +_s['453']=["topic_00000000000000BB.html","UnterschriftController.GetUnterschrift Method",""]; +_s['454']=["topic_00000000000000BB_attached_props--.html","FileResult Attached Properties",""]; +_s['455']=["topic_00000000000000BB_events--.html","FileResult Events",""]; +_s['456']=["topic_00000000000000BB_methods--.html","FileResult Methods",""]; +_s['457']=["topic_00000000000000BB_props--.html","FileResult Properties",""]; +_s['458']=["topic_00000000000000BB_vars--.html","FileResult Fields",""]; +_s['459']=["topic_00000000000000BC.html","FileResult Class",""]; +_s['460']=["topic_00000000000000BC_attached_props--.html","FileResult Attached Properties",""]; +_s['461']=["topic_00000000000000BC_events--.html","FileResult Events",""]; +_s['462']=["topic_00000000000000BC_methods--.html","FileResult Methods",""]; +_s['463']=["topic_00000000000000BC_props--.html","FileResult Properties",""]; +_s['464']=["topic_00000000000000BC_vars--.html","FileResult Fields",""]; +_s['465']=["topic_00000000000000BD.html","FileResult Constructor",""]; +_s['466']=["topic_00000000000000BE.html","FileResult.ExecuteAsync Method",""]; +_s['467']=["topic_00000000000000BE_attached_props--.html","FileService Attached Properties",""]; +_s['468']=["topic_00000000000000BE_events--.html","FileService Events",""]; +_s['469']=["topic_00000000000000BE_methods--.html","FileService Methods",""]; +_s['470']=["topic_00000000000000BE_props--.html","FileService Properties",""]; +_s['471']=["topic_00000000000000BE_vars--.html","FileService Fields",""]; +_s['472']=["topic_00000000000000BF.html","FileService Class",""]; +_s['473']=["topic_00000000000000BF_attached_props--.html","FileService Attached Properties",""]; +_s['474']=["topic_00000000000000BF_events--.html","FileService Events",""]; +_s['475']=["topic_00000000000000BF_methods--.html","FileService Methods",""]; +_s['476']=["topic_00000000000000BF_props--.html","FileService Properties",""]; +_s['477']=["topic_00000000000000BF_vars--.html","FileService Fields",""]; +_s['478']=["topic_00000000000000C0.html","FileService.GetImageAsStream Method",""]; +_s['479']=["topic_00000000000000C1.html","FileService.GetImageAsByteArray Method",""]; +_s['480']=["topic_00000000000000C1_attached_props--.html","unterschriftResult Attached Properties",""]; +_s['481']=["topic_00000000000000C1_events--.html","unterschriftResult Events",""]; +_s['482']=["topic_00000000000000C1_methods--.html","unterschriftResult Methods",""]; +_s['483']=["topic_00000000000000C1_props--.html","unterschriftResult Properties",""]; +_s['484']=["topic_00000000000000C1_vars--.html","unterschriftResult Fields",""]; +_s['485']=["topic_00000000000000C2.html","unterschriftResult Class",""]; +_s['486']=["topic_00000000000000C2_attached_props--.html","unterschriftResult Attached Properties",""]; +_s['487']=["topic_00000000000000C2_events--.html","unterschriftResult Events",""]; +_s['488']=["topic_00000000000000C2_methods--.html","unterschriftResult Methods",""]; +_s['489']=["topic_00000000000000C2_props--.html","unterschriftResult Properties",""]; +_s['490']=["topic_00000000000000C2_vars--.html","unterschriftResult Fields",""]; +_s['491']=["topic_00000000000000C3.html","unterschriftResult Constructor",""]; +_s['492']=["topic_00000000000000C4.html","unterschriftResult.ExecuteAsync Method",""]; +_s['493']=["topic_00000000000000C4_attached_props--.html","WebApiApplication Attached Properties",""]; +_s['494']=["topic_00000000000000C4_events--.html","WebApiApplication Events",""]; +_s['495']=["topic_00000000000000C4_methods--.html","WebApiApplication Methods",""]; +_s['496']=["topic_00000000000000C4_props--.html","WebApiApplication Properties",""]; +_s['497']=["topic_00000000000000C4_vars--.html","WebApiApplication Fields",""]; +_s['498']=["topic_00000000000000C5.html","WebApiApplication Class",""]; +_s['499']=["topic_00000000000000C5_attached_props--.html","WebApiApplication Attached Properties",""]; +_s['500']=["topic_00000000000000C5_events--.html","WebApiApplication Events",""]; +_s['501']=["topic_00000000000000C5_methods--.html","WebApiApplication Methods",""]; +_s['502']=["topic_00000000000000C5_props--.html","WebApiApplication Properties",""]; +_s['503']=["topic_00000000000000C5_vars--.html","WebApiApplication Fields",""]; +_s['504']=["topic_00000000000000C6.html","WebApiApplication.Application_Start Method",""]; +_s['505']=["topic_00000000000000C7.html","API_NetFramework Reference ",""]; diff --git a/API_NetFramework/VSdoc/search--/search_index.js b/API_NetFramework/VSdoc/search--/search_index.js new file mode 100644 index 00000000..9f32b8ef --- /dev/null +++ b/API_NetFramework/VSdoc/search--/search_index.js @@ -0,0 +1,4 @@ + + var qterms = []; + var nurls = 506; + var index = {"default":"[[0,1002],[295,1],[298,1],[301,1]]","page":"[[0,1002],[76,8],[79,8],[38,5],[95,3],[97,3],[99,3],[101,3],[103,2],[102,2],[273,1],[232,1],[215,1],[214,1],[105,1],[98,1],[284,1],[96,1],[94,1],[82,1],[54,1],[53,1],[46,1],[100,1],[303,1]]","go":"[[0,1]]","to":"[[76,8],[79,7],[95,6],[97,6],[52,5],[38,4],[101,3],[232,3],[99,3],[96,3],[94,3],[46,3],[242,3],[100,2],[98,2],[295,2],[301,2],[181,2],[83,2],[106,2],[320,2],[251,2],[248,2],[247,2],[235,2],[291,1],[292,1],[293,1],[294,1],[246,1],[245,1],[298,1],[244,1],[303,1],[309,1],[310,1],[311,1],[312,1],[313,1],[249,1],[268,1],[250,1],[257,1],[269,1],[270,1],[271,1],[272,1],[273,1],[279,1],[266,1],[265,1],[314,1],[263,1],[281,1],[282,1],[283,1],[284,1],[290,1],[261,1],[259,1],[267,1],[280,1],[333,1],[323,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[402,1],[452,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[453,1],[396,1],[390,1],[384,1],[325,1],[327,1],[328,1],[330,1],[332,1],[243,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[383,1],[321,1],[0,1],[229,1],[240,1],[75,1],[82,1],[84,1],[86,1],[88,1],[90,1],[92,1],[93,1],[102,1],[103,1],[104,1],[105,1],[107,1],[113,1],[114,1],[120,1],[121,1],[122,1],[128,1],[74,1],[134,1],[68,1],[66,1],[2,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[39,1],[45,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[67,1],[135,1],[136,1],[142,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[498,1],[230,1],[231,1],[238,1],[239,1],[204,1],[203,1],[197,1],[196,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[241,1],[169,1],[171,1],[172,1],[178,1],[179,1],[180,1],[187,1],[188,1],[189,1],[195,1],[170,1],[504,1]]","search":"[[1,1004],[246,2],[232,2],[235,2],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[346,1],[347,1],[349,1],[318,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[348,1],[317,1],[315,1],[377,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[284,1],[316,1],[285,1],[287,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[286,1],[256,1],[378,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[379,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[255,1],[253,1],[504,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[254,1],[125,1],[127,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[218,1],[219,1],[220,1],[221,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[190,1],[238,1],[236,1],[234,1],[233,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[237,1],[126,1],[189,1],[187,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[155,1],[156,1],[157,1],[158,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[188,1],[173,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[172,1],[505,1]]","logo":"[[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","document":"[[320,2],[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","write":"[[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","getcsscustomproperty":"[[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","headertopcustomlinehtml":"[[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","api_netframework":"[[505,1009],[106,1003],[214,1003],[53,1003],[38,1003],[2,1003],[332,1003],[52,7],[155,6],[122,6],[128,5],[107,5],[208,5],[114,5],[203,3],[204,3],[205,3],[384,3],[206,3],[207,3],[377,3],[232,3],[383,3],[230,3],[231,3],[376,3],[197,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[215,3],[375,3],[189,3],[195,3],[142,3],[143,3],[144,3],[145,3],[415,3],[151,3],[153,3],[409,3],[408,3],[161,3],[162,3],[163,3],[328,3],[402,3],[169,3],[170,3],[171,3],[172,3],[178,3],[179,3],[180,3],[181,3],[396,3],[187,3],[188,3],[369,3],[390,3],[196,3],[238,3],[241,3],[240,3],[284,3],[350,3],[290,3],[291,3],[292,3],[293,3],[294,3],[295,3],[344,3],[301,3],[302,3],[303,3],[343,3],[342,3],[341,3],[340,3],[339,3],[309,3],[310,3],[311,3],[312,3],[313,3],[314,3],[320,3],[321,3],[333,3],[323,3],[325,3],[327,3],[283,3],[239,3],[282,3],[280,3],[421,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[504,3],[363,3],[257,3],[259,3],[261,3],[263,3],[265,3],[266,3],[267,3],[268,3],[269,3],[270,3],[271,3],[272,3],[273,3],[357,3],[356,3],[279,3],[281,3],[136,3],[330,3],[466,3],[76,3],[440,3],[472,3],[485,3],[105,3],[453,3],[30,3],[452,3],[31,3],[104,3],[103,3],[102,3],[82,3],[83,3],[84,3],[465,3],[100,3],[478,3],[39,3],[90,3],[86,3],[92,3],[93,3],[75,3],[94,3],[96,3],[446,3],[479,3],[45,3],[98,3],[46,3],[37,3],[24,3],[74,3],[23,3],[3,3],[134,3],[60,3],[62,3],[427,3],[64,3],[9,3],[65,3],[428,3],[66,3],[67,3],[68,3],[113,3],[498,3],[459,3],[10,3],[88,3],[16,3],[121,3],[120,3],[434,3],[17,3],[135,3],[492,3],[54,3],[491,3],[470,2],[475,2],[365,2],[364,2],[360,2],[471,2],[474,2],[359,2],[469,2],[468,2],[473,2],[362,2],[467,2],[361,2],[482,2],[477,2],[493,2],[494,2],[495,2],[496,2],[497,2],[338,2],[337,2],[490,2],[336,2],[334,2],[499,2],[500,2],[501,2],[502,2],[503,2],[331,2],[335,2],[476,2],[489,2],[346,2],[358,2],[355,2],[354,2],[480,2],[481,2],[483,2],[353,2],[345,2],[352,2],[349,2],[484,2],[486,2],[487,2],[488,2],[348,2],[347,2],[351,2],[423,2],[371,2],[464,2],[407,2],[406,2],[435,2],[404,2],[403,2],[436,2],[437,2],[438,2],[439,2],[401,2],[400,2],[399,2],[398,2],[397,2],[441,2],[433,2],[442,2],[432,2],[411,2],[422,2],[420,2],[419,2],[424,2],[425,2],[426,2],[418,2],[417,2],[416,2],[414,2],[429,2],[413,2],[430,2],[412,2],[431,2],[410,2],[443,2],[395,2],[394,2],[374,2],[373,2],[372,2],[454,2],[455,2],[456,2],[457,2],[370,2],[458,2],[368,2],[367,2],[460,2],[461,2],[462,2],[463,2],[451,2],[450,2],[449,2],[378,2],[393,2],[392,2],[391,2],[444,2],[389,2],[388,2],[387,2],[366,2],[445,2],[385,2],[382,2],[447,2],[448,2],[381,2],[380,2],[379,2],[386,2],[405,2],[253,2],[326,2],[109,2],[108,2],[101,2],[99,2],[97,2],[95,2],[91,2],[89,2],[110,2],[87,2],[81,2],[80,2],[79,2],[78,2],[77,2],[73,2],[72,2],[71,2],[85,2],[70,2],[111,2],[115,2],[140,2],[139,2],[138,2],[137,2],[133,2],[132,2],[131,2],[130,2],[112,2],[129,2],[126,2],[125,2],[124,2],[123,2],[119,2],[118,2],[117,2],[116,2],[127,2],[141,2],[69,2],[61,2],[27,2],[26,2],[25,2],[22,2],[21,2],[20,2],[19,2],[18,2],[28,2],[15,2],[13,2],[12,2],[11,2],[8,2],[7,2],[6,2],[5,2],[4,2],[14,2],[63,2],[29,2],[33,2],[59,2],[58,2],[57,2],[56,2],[55,2],[51,2],[50,2],[49,2],[32,2],[48,2],[44,2],[43,2],[42,2],[41,2],[40,2],[36,2],[35,2],[34,2],[47,2],[329,2],[146,2],[148,2],[278,2],[277,2],[276,2],[275,2],[274,2],[264,2],[262,2],[260,2],[285,2],[258,2],[255,2],[254,2],[252,2],[237,2],[236,2],[235,2],[234,2],[233,2],[256,2],[220,2],[286,2],[288,2],[324,2],[322,2],[319,2],[318,2],[317,2],[316,2],[315,2],[308,2],[287,2],[307,2],[305,2],[304,2],[300,2],[299,2],[298,2],[297,2],[296,2],[289,2],[306,2],[147,2],[219,2],[217,2],[176,2],[175,2],[174,2],[173,2],[168,2],[167,2],[166,2],[165,2],[177,2],[164,2],[159,2],[158,2],[157,2],[156,2],[154,2],[152,2],[150,2],[149,2],[160,2],[218,2],[182,2],[184,2],[216,2],[213,2],[212,2],[211,2],[210,2],[209,2],[202,2],[201,2],[183,2],[200,2],[198,2],[194,2],[193,2],[192,2],[191,2],[190,2],[186,2],[185,2],[199,2],[1,1]]","reference":"[[505,1003],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[1,1]]","cancel":"[[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","results":"[[1,1]]","for":"[[76,8],[79,8],[232,6],[38,4],[85,3],[235,3],[91,3],[246,3],[89,3],[87,3],[106,2],[236,2],[215,2],[245,2],[46,2],[219,2],[242,1],[243,1],[240,1],[244,1],[249,1],[295,1],[224,1],[298,1],[223,1],[1,1],[105,1],[172,1],[301,1],[93,1],[92,1],[90,1],[88,1],[86,1],[84,1],[82,1],[54,1],[53,1],[45,1],[42,1],[39,1],[181,1],[302,1]]","generated":"[[181,2],[106,2],[1,1],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[346,1],[347,1],[348,1],[349,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[319,1],[318,1],[317,1],[316,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[284,1],[270,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[269,1],[377,1],[285,1],[287,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[286,1],[302,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[301,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[255,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[254,1],[253,1],[252,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[64,1],[111,1],[109,1],[108,1],[107,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[110,1],[125,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[504,1],[126,1],[128,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[220,1],[221,1],[222,1],[223,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[192,1],[238,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[237,1],[127,1],[191,1],[189,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[156,1],[157,1],[158,1],[159,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[190,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","with":"[[38,5],[76,5],[79,5],[52,5],[219,4],[215,4],[91,3],[87,3],[229,2],[230,2],[231,2],[303,2],[284,2],[93,2],[90,2],[92,2],[295,2],[86,2],[85,2],[273,2],[89,2],[346,1],[331,1],[345,1],[344,1],[343,1],[332,1],[333,1],[336,1],[335,1],[342,1],[341,1],[340,1],[339,1],[337,1],[347,1],[334,1],[338,1],[1,1],[349,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[348,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[330,1],[363,1],[329,1],[323,1],[327,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[285,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[293,1],[294,1],[296,1],[297,1],[326,1],[325,1],[324,1],[379,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[314,1],[328,1],[313,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[302,1],[301,1],[300,1],[299,1],[298,1],[312,1],[380,1],[387,1],[382,1],[472,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[473,1],[445,1],[474,1],[476,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[490,1],[489,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[475,1],[444,1],[443,1],[442,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[263,1],[386,1],[385,1],[384,1],[383,1],[410,1],[411,1],[412,1],[413,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[381,1],[428,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[427,1],[262,1],[253,1],[260,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[88,1],[84,1],[83,1],[82,1],[81,1],[101,1],[80,1],[77,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[78,1],[102,1],[103,1],[104,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[64,1],[132,1],[63,1],[61,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[28,1],[15,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[14,1],[29,1],[30,1],[31,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[62,1],[133,1],[134,1],[135,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[218,1],[217,1],[216,1],[214,1],[213,1],[212,1],[226,1],[211,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[210,1],[227,1],[228,1],[232,1],[259,1],[258,1],[257,1],[256,1],[255,1],[254,1],[504,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[197,1],[196,1],[195,1],[194,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[163,1],[261,1],[164,1],[166,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[165,1],[505,1]]","vsdocman":"[[1,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[345,1],[346,1],[347,1],[348,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[317,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[362,1],[377,1],[316,1],[314,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[282,1],[283,1],[284,1],[285,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[315,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[299,1],[378,1],[379,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[409,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[394,1],[254,1],[410,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[411,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[504,1],[253,1],[251,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[92,1],[93,1],[94,1],[95,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[64,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[109,1],[124,1],[63,1],[61,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[29,1],[30,1],[31,1],[32,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[62,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[46,1],[125,1],[126,1],[127,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[219,1],[220,1],[221,1],[222,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[191,1],[237,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[236,1],[190,1],[189,1],[188,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[156,1],[142,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[141,1],[252,1],[157,1],[159,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[158,1],[174,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[173,1],[505,1]]","namespace":"[[2,1002],[332,1002],[214,1002],[53,1002],[106,1002],[38,1002],[267,2],[229,2],[230,2],[231,2],[232,2],[238,2],[272,2],[239,2],[271,2],[240,2],[241,2],[242,2],[243,2],[244,2],[245,2],[270,2],[246,2],[269,2],[248,2],[249,2],[250,2],[251,2],[257,2],[259,2],[261,2],[263,2],[265,2],[266,2],[268,2],[247,2],[228,2],[227,2],[187,2],[181,2],[180,2],[179,2],[178,2],[172,2],[188,2],[171,2],[169,2],[163,2],[162,2],[161,2],[155,2],[153,2],[170,2],[273,2],[189,2],[196,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[195,2],[215,2],[207,2],[206,2],[205,2],[204,2],[203,2],[197,2],[208,2],[279,2],[281,2],[151,2],[363,2],[369,2],[375,2],[376,2],[377,2],[383,2],[384,2],[390,2],[396,2],[402,2],[408,2],[409,2],[415,2],[421,2],[427,2],[428,2],[434,2],[498,2],[492,2],[491,2],[485,2],[479,2],[478,2],[357,2],[472,2],[465,2],[459,2],[453,2],[452,2],[446,2],[440,2],[466,2],[280,2],[356,2],[344,2],[282,2],[283,2],[284,2],[290,2],[291,2],[292,2],[293,2],[294,2],[295,2],[301,2],[302,2],[303,2],[309,2],[310,2],[311,2],[312,2],[313,2],[343,2],[342,2],[341,2],[340,2],[339,2],[333,2],[350,2],[330,2],[327,2],[325,2],[323,2],[321,2],[320,2],[314,2],[328,2],[145,2],[504,2],[143,2],[86,2],[88,2],[90,2],[92,2],[93,2],[37,2],[96,2],[98,2],[100,2],[102,2],[103,2],[104,2],[105,2],[107,2],[17,2],[113,2],[114,2],[16,2],[120,2],[84,2],[121,2],[83,2],[23,2],[39,2],[45,2],[46,2],[144,2],[52,2],[54,2],[31,2],[30,2],[60,2],[62,2],[64,2],[65,2],[66,2],[67,2],[68,2],[74,2],[24,2],[75,2],[76,2],[82,2],[122,2],[94,2],[9,2],[135,2],[10,2],[3,2],[128,2],[142,2],[136,2],[134,2],[27,1],[386,1],[387,1],[489,1],[388,1],[493,1],[4,1],[28,1],[494,1],[382,1],[5,1],[490,1],[495,1],[385,1],[389,1],[26,1],[486,1],[403,1],[487,1],[401,1],[400,1],[399,1],[488,1],[398,1],[397,1],[25,1],[395,1],[394,1],[393,1],[392,1],[391,1],[381,1],[380,1],[462,1],[378,1],[359,1],[500,1],[358,1],[501,1],[34,1],[35,1],[355,1],[354,1],[353,1],[352,1],[351,1],[36,1],[349,1],[348,1],[502,1],[360,1],[361,1],[362,1],[33,1],[6,1],[29,1],[496,1],[497,1],[374,1],[373,1],[372,1],[379,1],[371,1],[32,1],[368,1],[367,1],[366,1],[365,1],[364,1],[499,1],[370,1],[404,1],[407,1],[406,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[445,1],[437,1],[467,1],[468,1],[435,1],[469,1],[433,1],[432,1],[436,1],[15,1],[447,1],[448,1],[461,1],[460,1],[12,1],[458,1],[457,1],[456,1],[455,1],[454,1],[13,1],[14,1],[451,1],[464,1],[11,1],[450,1],[449,1],[431,1],[470,1],[471,1],[473,1],[418,1],[417,1],[416,1],[21,1],[414,1],[413,1],[412,1],[411,1],[410,1],[481,1],[22,1],[482,1],[483,1],[484,1],[463,1],[419,1],[405,1],[420,1],[480,1],[474,1],[430,1],[429,1],[18,1],[19,1],[426,1],[425,1],[475,1],[424,1],[476,1],[423,1],[477,1],[422,1],[8,1],[7,1],[20,1],[347,1],[324,1],[345,1],[117,1],[118,1],[119,1],[202,1],[201,1],[200,1],[199,1],[198,1],[123,1],[124,1],[125,1],[194,1],[193,1],[192,1],[191,1],[209,1],[210,1],[211,1],[212,1],[235,1],[234,1],[233,1],[108,1],[109,1],[110,1],[111,1],[190,1],[112,1],[219,1],[218,1],[217,1],[216,1],[115,1],[116,1],[213,1],[220,1],[126,1],[127,1],[186,1],[138,1],[139,1],[160,1],[159,1],[158,1],[157,1],[156,1],[137,1],[140,1],[141,1],[152,1],[150,1],[149,1],[148,1],[147,1],[146,1],[154,1],[236,1],[164,1],[166,1],[185,1],[184,1],[183,1],[182,1],[129,1],[130,1],[131,1],[165,1],[132,1],[176,1],[175,1],[174,1],[173,1],[133,1],[168,1],[167,1],[177,1],[237,1],[101,1],[99,1],[318,1],[317,1],[316,1],[315,1],[55,1],[56,1],[57,1],[319,1],[58,1],[308,1],[307,1],[306,1],[305,1],[304,1],[61,1],[300,1],[59,1],[299,1],[51,1],[50,1],[40,1],[41,1],[42,1],[43,1],[338,1],[337,1],[336,1],[322,1],[335,1],[44,1],[331,1],[329,1],[47,1],[48,1],[326,1],[49,1],[334,1],[346,1],[298,1],[296,1],[81,1],[264,1],[262,1],[85,1],[260,1],[258,1],[87,1],[80,1],[256,1],[254,1],[503,1],[252,1],[89,1],[91,1],[95,1],[97,1],[255,1],[297,1],[79,1],[77,1],[63,1],[289,1],[288,1],[287,1],[286,1],[285,1],[69,1],[78,1],[70,1],[72,1],[73,1],[278,1],[277,1],[276,1],[275,1],[274,1],[71,1],[253,1]]","syntaxhighlighter":"[[2,1],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[346,1],[347,1],[348,1],[349,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[318,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[363,1],[378,1],[317,1],[315,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[283,1],[284,1],[285,1],[286,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[316,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[300,1],[255,1],[379,1],[381,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[380,1],[443,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[409,1],[410,1],[411,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[442,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[254,1],[253,1],[252,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[93,1],[94,1],[95,1],[96,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[65,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[110,1],[125,1],[64,1],[62,1],[29,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[30,1],[31,1],[32,1],[33,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[63,1],[48,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[47,1],[126,1],[127,1],[128,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[220,1],[221,1],[222,1],[223,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[192,1],[238,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[237,1],[191,1],[190,1],[189,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[157,1],[143,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[142,1],[504,1],[158,1],[160,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[159,1],[175,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[174,1],[505,1]]","all":"[[247,5],[79,3],[76,3],[93,2],[92,2],[2,1],[337,1],[338,1],[339,1],[341,1],[336,1],[342,1],[343,1],[344,1],[345,1],[340,1],[335,1],[333,1],[346,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[334,1],[347,1],[348,1],[349,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[321,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[363,1],[320,1],[319,1],[318,1],[285,1],[284,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[286,1],[272,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[271,1],[378,1],[287,1],[289,1],[317,1],[316,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[288,1],[304,1],[302,1],[301,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[303,1],[379,1],[382,1],[381,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[380,1],[443,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[257,1],[409,1],[410,1],[411,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[442,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[256,1],[253,1],[254,1],[96,1],[95,1],[94,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[78,1],[77,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[97,1],[65,1],[98,1],[100,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[99,1],[64,1],[63,1],[62,1],[29,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[30,1],[31,1],[32,1],[33,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[128,1],[48,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[47,1],[255,1],[129,1],[131,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[222,1],[194,1],[223,1],[225,1],[504,1],[252,1],[251,1],[250,1],[249,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[224,1],[193,1],[192,1],[191,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[159,1],[160,1],[161,1],[162,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[130,1],[177,1],[175,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[176,1],[505,1]]","assembly":"[[2,1],[273,1],[279,1],[280,1],[281,1],[282,1],[283,1],[284,1],[290,1],[291,1],[272,1],[292,1],[294,1],[295,1],[301,1],[302,1],[303,1],[309,1],[310,1],[311,1],[312,1],[293,1],[271,1],[270,1],[269,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[257,1],[259,1],[261,1],[263,1],[265,1],[266,1],[267,1],[268,1],[313,1],[314,1],[320,1],[321,1],[402,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[452,1],[453,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[396,1],[238,1],[390,1],[383,1],[323,1],[325,1],[327,1],[328,1],[330,1],[332,1],[333,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[384,1],[498,1],[232,1],[230,1],[75,1],[76,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[74,1],[93,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[94,1],[68,1],[67,1],[66,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[38,1],[39,1],[45,1],[46,1],[52,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[113,1],[114,1],[120,1],[121,1],[189,1],[195,1],[196,1],[197,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[188,1],[231,1],[187,1],[180,1],[122,1],[128,1],[134,1],[135,1],[136,1],[142,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[169,1],[170,1],[171,1],[172,1],[178,1],[179,1],[181,1],[504,1]]","edokaapi_netframework":"[[2,2],[273,2],[279,2],[280,2],[281,2],[282,2],[283,2],[284,2],[290,2],[291,2],[272,2],[292,2],[294,2],[295,2],[301,2],[302,2],[303,2],[309,2],[310,2],[311,2],[312,2],[293,2],[271,2],[270,2],[269,2],[239,2],[240,2],[241,2],[242,2],[243,2],[244,2],[245,2],[246,2],[247,2],[248,2],[249,2],[250,2],[251,2],[257,2],[259,2],[261,2],[263,2],[265,2],[266,2],[267,2],[268,2],[313,2],[314,2],[320,2],[321,2],[402,2],[408,2],[409,2],[415,2],[421,2],[427,2],[428,2],[434,2],[440,2],[446,2],[452,2],[453,2],[459,2],[465,2],[466,2],[472,2],[478,2],[479,2],[485,2],[491,2],[492,2],[396,2],[238,2],[390,2],[383,2],[323,2],[325,2],[327,2],[328,2],[330,2],[332,2],[333,2],[339,2],[340,2],[341,2],[342,2],[343,2],[344,2],[350,2],[356,2],[357,2],[363,2],[369,2],[375,2],[376,2],[377,2],[384,2],[498,2],[232,2],[230,2],[75,2],[76,2],[82,2],[83,2],[84,2],[86,2],[88,2],[90,2],[92,2],[74,2],[93,2],[96,2],[98,2],[100,2],[102,2],[103,2],[104,2],[105,2],[106,2],[107,2],[94,2],[68,2],[67,2],[66,2],[3,2],[9,2],[10,2],[16,2],[17,2],[23,2],[24,2],[30,2],[31,2],[37,2],[38,2],[39,2],[45,2],[46,2],[52,2],[53,2],[54,2],[60,2],[62,2],[64,2],[65,2],[113,2],[114,2],[120,2],[121,2],[189,2],[195,2],[196,2],[197,2],[203,2],[204,2],[205,2],[206,2],[207,2],[208,2],[214,2],[215,2],[221,2],[222,2],[223,2],[224,2],[225,2],[226,2],[227,2],[228,2],[229,2],[188,2],[231,2],[187,2],[180,2],[122,2],[128,2],[134,2],[135,2],[136,2],[142,2],[143,2],[144,2],[145,2],[151,2],[153,2],[155,2],[161,2],[162,2],[163,2],[169,2],[170,2],[171,2],[172,2],[178,2],[179,2],[181,2],[504,2]]","in":"[[247,8],[76,7],[232,6],[249,6],[79,5],[350,4],[248,4],[344,4],[94,4],[95,4],[96,4],[97,4],[98,4],[99,4],[100,4],[242,4],[101,4],[281,3],[122,3],[266,3],[151,3],[121,3],[265,3],[120,3],[153,3],[155,3],[263,3],[415,3],[261,3],[161,3],[162,3],[282,3],[163,3],[259,3],[369,3],[409,3],[280,3],[135,3],[267,3],[268,3],[134,3],[273,3],[363,3],[128,3],[434,3],[136,3],[428,3],[427,3],[421,3],[272,3],[270,3],[142,3],[408,3],[279,3],[143,3],[144,3],[145,3],[269,3],[271,3],[333,3],[171,3],[170,3],[207,3],[208,3],[240,3],[239,3],[384,3],[383,3],[238,3],[214,3],[215,3],[235,3],[375,3],[377,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[230,3],[231,3],[206,3],[205,3],[204,3],[203,3],[440,3],[172,3],[257,3],[402,3],[178,3],[179,3],[180,3],[181,3],[504,3],[251,3],[250,3],[169,3],[187,3],[189,3],[396,3],[246,3],[245,3],[195,3],[196,3],[197,3],[244,3],[390,3],[243,3],[241,3],[188,3],[2,3],[283,3],[376,3],[472,3],[492,3],[323,3],[17,3],[52,3],[53,3],[54,3],[303,3],[491,3],[284,3],[465,3],[60,3],[301,3],[62,3],[16,3],[64,3],[65,3],[23,3],[466,3],[46,3],[45,3],[309,3],[24,3],[320,3],[341,3],[342,3],[485,3],[343,3],[30,3],[31,3],[340,3],[314,3],[313,3],[479,3],[37,3],[38,3],[39,3],[478,3],[312,3],[311,3],[310,3],[67,3],[68,3],[66,3],[325,3],[90,3],[290,3],[92,3],[93,3],[102,3],[103,3],[104,3],[328,3],[105,3],[330,3],[106,3],[107,3],[356,3],[357,3],[446,3],[332,3],[3,3],[113,3],[114,3],[291,3],[339,3],[88,3],[295,3],[327,3],[459,3],[498,3],[10,3],[9,3],[74,3],[75,3],[292,3],[321,3],[293,3],[453,3],[82,3],[83,3],[84,3],[452,3],[86,3],[294,3],[236,2],[302,2],[347,2],[337,1],[374,1],[336,1],[338,1],[371,1],[346,1],[359,1],[358,1],[361,1],[362,1],[364,1],[365,1],[366,1],[355,1],[354,1],[367,1],[353,1],[368,1],[352,1],[351,1],[370,1],[372,1],[349,1],[348,1],[373,1],[345,1],[360,1],[407,1],[379,1],[471,1],[470,1],[469,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[460,1],[458,1],[457,1],[456,1],[455,1],[454,1],[451,1],[450,1],[449,1],[448,1],[447,1],[445,1],[473,1],[444,1],[474,1],[476,1],[503,1],[502,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[494,1],[493,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[483,1],[482,1],[481,1],[480,1],[477,1],[475,1],[443,1],[442,1],[441,1],[405,1],[404,1],[403,1],[401,1],[400,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[392,1],[391,1],[389,1],[388,1],[387,1],[386,1],[385,1],[382,1],[381,1],[380,1],[406,1],[410,1],[411,1],[412,1],[439,1],[438,1],[437,1],[436,1],[435,1],[433,1],[432,1],[431,1],[430,1],[429,1],[378,1],[426,1],[424,1],[423,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[414,1],[413,1],[425,1],[335,1],[253,1],[331,1],[112,1],[111,1],[110,1],[109,1],[108,1],[91,1],[89,1],[87,1],[85,1],[81,1],[80,1],[78,1],[77,1],[73,1],[72,1],[71,1],[70,1],[115,1],[69,1],[116,1],[118,1],[146,1],[141,1],[140,1],[139,1],[138,1],[137,1],[133,1],[132,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[124,1],[123,1],[119,1],[117,1],[63,1],[61,1],[59,1],[26,1],[25,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[14,1],[13,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[4,1],[27,1],[28,1],[29,1],[32,1],[58,1],[57,1],[56,1],[55,1],[51,1],[50,1],[49,1],[48,1],[147,1],[47,1],[43,1],[42,1],[41,1],[40,1],[36,1],[35,1],[34,1],[33,1],[44,1],[148,1],[149,1],[150,1],[286,1],[285,1],[278,1],[277,1],[276,1],[275,1],[274,1],[264,1],[262,1],[260,1],[258,1],[256,1],[255,1],[254,1],[252,1],[237,1],[234,1],[287,1],[288,1],[289,1],[296,1],[329,1],[326,1],[324,1],[322,1],[319,1],[318,1],[317,1],[316,1],[233,1],[315,1],[307,1],[306,1],[305,1],[304,1],[300,1],[299,1],[298,1],[297,1],[308,1],[334,1],[220,1],[218,1],[177,1],[176,1],[175,1],[174,1],[173,1],[168,1],[167,1],[166,1],[165,1],[164,1],[160,1],[159,1],[158,1],[157,1],[156,1],[154,1],[152,1],[182,1],[183,1],[184,1],[185,1],[217,1],[216,1],[213,1],[212,1],[211,1],[210,1],[209,1],[202,1],[219,1],[201,1],[199,1],[198,1],[194,1],[193,1],[192,1],[191,1],[190,1],[186,1],[200,1],[505,1]]","dll":"[[2,1],[273,1],[279,1],[280,1],[281,1],[282,1],[283,1],[284,1],[290,1],[291,1],[272,1],[292,1],[294,1],[295,1],[301,1],[302,1],[303,1],[309,1],[310,1],[311,1],[312,1],[293,1],[271,1],[270,1],[269,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[257,1],[259,1],[261,1],[263,1],[265,1],[266,1],[267,1],[268,1],[313,1],[314,1],[320,1],[321,1],[402,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[452,1],[453,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[396,1],[238,1],[390,1],[383,1],[323,1],[325,1],[327,1],[328,1],[330,1],[332,1],[333,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[384,1],[498,1],[232,1],[230,1],[75,1],[76,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[74,1],[93,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[94,1],[68,1],[67,1],[66,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[38,1],[39,1],[45,1],[46,1],[52,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[113,1],[114,1],[120,1],[121,1],[189,1],[195,1],[196,1],[197,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[188,1],[231,1],[187,1],[180,1],[122,1],[128,1],[134,1],[135,1],[136,1],[142,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[169,1],[170,1],[171,1],[172,1],[178,1],[179,1],[181,1],[504,1]]","classes":"[[2,1],[38,1],[53,1],[106,1],[214,1],[332,1]]","name":"[[206,1007],[143,1007],[171,1007],[188,1006],[251,9],[264,7],[262,7],[260,5],[258,5],[187,5],[261,4],[181,4],[263,4],[197,3],[303,3],[172,3],[128,3],[106,3],[232,3],[114,3],[54,3],[284,3],[39,3],[42,3],[255,3],[273,3],[249,2],[118,2],[122,2],[126,2],[314,2],[132,2],[140,2],[215,2],[155,2],[159,2],[163,2],[167,2],[332,2],[266,2],[265,2],[185,2],[246,2],[208,2],[201,2],[212,2],[136,2],[107,2],[485,2],[459,2],[38,2],[45,2],[111,2],[84,2],[86,2],[88,2],[90,2],[94,2],[68,2],[98,2],[100,2],[96,2],[377,2],[366,1],[449,1],[456,1],[331,1],[380,1],[462,1],[469,1],[472,1],[482,1],[446,1],[488,1],[329,1],[326,1],[495,1],[324,1],[322,1],[317,1],[498,1],[475,1],[443,1],[333,1],[439,1],[369,1],[393,1],[373,1],[399,1],[387,1],[405,1],[361,1],[360,1],[409,1],[307,1],[412,1],[354,1],[347,1],[418,1],[421,1],[424,1],[381,1],[433,1],[344,1],[434,1],[336,1],[367,1],[2,1],[214,1],[302,1],[85,1],[79,1],[76,1],[72,1],[71,1],[63,1],[61,1],[58,1],[57,1],[53,1],[87,1],[49,1],[34,1],[31,1],[27,1],[24,1],[20,1],[17,1],[13,1],[10,1],[6,1],[3,1],[46,1],[306,1],[89,1],[95,1],[298,1],[295,1],[288,1],[287,1],[277,1],[276,1],[254,1],[236,1],[235,1],[219,1],[91,1],[501,1],[189,1],[176,1],[175,1],[154,1],[152,1],[148,1],[145,1],[101,1],[99,1],[97,1],[193,1],[505,1]]","description":"[[45,5],[232,3],[273,3],[251,3],[284,3],[172,3],[54,3],[303,3],[114,2],[106,2],[377,2],[332,2],[79,2],[76,2],[68,2],[314,2],[181,2],[128,2],[485,2],[38,2],[459,2],[215,2],[197,2],[276,1],[347,1],[344,1],[336,1],[277,1],[333,1],[287,1],[331,1],[324,1],[326,1],[322,1],[288,1],[317,1],[295,1],[354,1],[307,1],[306,1],[298,1],[329,1],[302,1],[369,1],[361,1],[498,1],[495,1],[488,1],[482,1],[475,1],[472,1],[469,1],[462,1],[456,1],[449,1],[446,1],[443,1],[439,1],[434,1],[360,1],[433,1],[421,1],[418,1],[412,1],[409,1],[405,1],[399,1],[393,1],[387,1],[381,1],[380,1],[373,1],[264,1],[367,1],[366,1],[424,1],[262,1],[2,1],[258,1],[99,1],[97,1],[95,1],[91,1],[89,1],[87,1],[85,1],[72,1],[71,1],[63,1],[61,1],[58,1],[57,1],[101,1],[53,1],[46,1],[42,1],[39,1],[34,1],[31,1],[27,1],[24,1],[20,1],[17,1],[13,1],[10,1],[6,1],[3,1],[49,1],[104,1],[107,1],[111,1],[255,1],[254,1],[236,1],[235,1],[501,1],[219,1],[214,1],[212,1],[208,1],[201,1],[193,1],[189,1],[185,1],[176,1],[175,1],[167,1],[163,1],[159,1],[155,1],[154,1],[152,1],[148,1],[145,1],[140,1],[136,1],[132,1],[126,1],[122,1],[118,1],[260,1],[505,1]]","bundleconfig":"[[3,1006],[4,1004],[5,1004],[6,1004],[7,1004],[8,1004],[9,1003],[2,1]]","filterconfig":"[[10,1006],[11,1004],[12,1004],[13,1004],[14,1004],[15,1004],[16,1003],[2,1]]","routeconfig":"[[17,1006],[18,1004],[19,1004],[20,1004],[21,1004],[22,1004],[23,1003],[2,1]]","swaggerconfig":"[[24,1006],[25,1004],[26,1004],[27,1004],[28,1004],[29,1004],[30,1003],[2,1]]","webapiapplication":"[[498,1006],[493,1004],[494,1004],[495,1004],[496,1004],[497,1004],[499,1004],[500,1004],[501,1004],[502,1004],[503,1004],[504,1003],[2,1]]","webapiconfig":"[[31,1006],[32,1004],[33,1004],[34,1004],[35,1004],[36,1004],[37,1003],[2,1]]","top":"[[284,3],[273,3],[251,3],[303,3],[232,3],[172,3],[54,3],[215,2],[314,2],[332,2],[197,2],[181,2],[377,2],[114,2],[106,2],[68,2],[128,2],[38,2],[485,2],[459,2],[443,1],[354,1],[347,1],[462,1],[344,1],[336,1],[333,1],[469,1],[472,1],[475,1],[307,1],[482,1],[306,1],[488,1],[298,1],[495,1],[295,1],[288,1],[498,1],[317,1],[360,1],[361,1],[366,1],[434,1],[433,1],[446,1],[424,1],[421,1],[418,1],[412,1],[449,1],[409,1],[439,1],[405,1],[399,1],[393,1],[387,1],[287,1],[381,1],[380,1],[373,1],[369,1],[367,1],[456,1],[2,1],[236,1],[276,1],[107,1],[79,1],[76,1],[72,1],[71,1],[58,1],[57,1],[53,1],[49,1],[46,1],[111,1],[42,1],[34,1],[31,1],[27,1],[24,1],[20,1],[17,1],[13,1],[10,1],[6,1],[3,1],[39,1],[118,1],[122,1],[126,1],[255,1],[254,1],[501,1],[235,1],[219,1],[214,1],[212,1],[208,1],[201,1],[193,1],[189,1],[185,1],[176,1],[175,1],[167,1],[163,1],[159,1],[155,1],[148,1],[145,1],[140,1],[136,1],[132,1],[277,1],[505,1]]","applies":"[[2,1],[273,1],[279,1],[280,1],[281,1],[282,1],[283,1],[284,1],[290,1],[291,1],[272,1],[292,1],[294,1],[295,1],[301,1],[303,1],[309,1],[310,1],[311,1],[312,1],[313,1],[293,1],[271,1],[270,1],[269,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[257,1],[259,1],[261,1],[263,1],[265,1],[266,1],[267,1],[268,1],[314,1],[238,1],[320,1],[323,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[402,1],[452,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[453,1],[396,1],[390,1],[384,1],[325,1],[327,1],[328,1],[330,1],[332,1],[333,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[383,1],[321,1],[232,1],[231,1],[230,1],[75,1],[76,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[74,1],[93,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[94,1],[68,1],[67,1],[66,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[38,1],[39,1],[45,1],[46,1],[52,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[113,1],[114,1],[120,1],[121,1],[189,1],[195,1],[196,1],[197,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[188,1],[498,1],[187,1],[180,1],[122,1],[128,1],[134,1],[135,1],[136,1],[142,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[169,1],[170,1],[171,1],[172,1],[178,1],[179,1],[181,1],[504,1]]","net":"[[2,1],[273,1],[279,1],[280,1],[281,1],[282,1],[283,1],[284,1],[290,1],[291,1],[272,1],[292,1],[294,1],[295,1],[301,1],[303,1],[309,1],[310,1],[311,1],[312,1],[313,1],[293,1],[271,1],[270,1],[269,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[257,1],[259,1],[261,1],[263,1],[265,1],[266,1],[267,1],[268,1],[314,1],[238,1],[320,1],[323,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[402,1],[452,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[453,1],[396,1],[390,1],[384,1],[325,1],[327,1],[328,1],[330,1],[332,1],[333,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[383,1],[321,1],[232,1],[231,1],[230,1],[75,1],[76,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[74,1],[93,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[94,1],[68,1],[67,1],[66,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[38,1],[39,1],[45,1],[46,1],[52,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[113,1],[114,1],[120,1],[121,1],[189,1],[195,1],[196,1],[197,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[188,1],[498,1],[187,1],[180,1],[122,1],[128,1],[134,1],[135,1],[136,1],[142,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[169,1],[170,1],[171,1],[172,1],[178,1],[179,1],[181,1],[504,1]]","frameworksupported":"[[2,1],[273,1],[279,1],[280,1],[281,1],[282,1],[283,1],[284,1],[290,1],[291,1],[272,1],[292,1],[294,1],[295,1],[301,1],[303,1],[309,1],[310,1],[311,1],[312,1],[313,1],[293,1],[271,1],[270,1],[269,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[257,1],[259,1],[261,1],[263,1],[265,1],[266,1],[267,1],[268,1],[314,1],[238,1],[320,1],[323,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[402,1],[452,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[453,1],[396,1],[390,1],[384,1],[325,1],[327,1],[328,1],[330,1],[332,1],[333,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[383,1],[321,1],[232,1],[231,1],[230,1],[75,1],[76,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[74,1],[93,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[94,1],[68,1],[67,1],[66,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[38,1],[39,1],[45,1],[46,1],[52,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[113,1],[114,1],[120,1],[121,1],[189,1],[195,1],[196,1],[197,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[188,1],[498,1],[187,1],[180,1],[122,1],[128,1],[134,1],[135,1],[136,1],[142,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[169,1],[170,1],[171,1],[172,1],[178,1],[179,1],[181,1],[504,1]]","4":"[[2,10],[273,10],[279,10],[280,10],[281,10],[282,10],[283,10],[284,10],[290,10],[291,10],[272,10],[292,10],[294,10],[295,10],[301,10],[303,10],[309,10],[310,10],[311,10],[312,10],[313,10],[293,10],[271,10],[270,10],[269,10],[239,10],[240,10],[241,10],[242,10],[243,10],[244,10],[245,10],[246,10],[247,10],[248,10],[249,10],[250,10],[251,10],[257,10],[259,10],[261,10],[263,10],[265,10],[266,10],[267,10],[268,10],[314,10],[238,10],[320,10],[323,10],[408,10],[409,10],[415,10],[421,10],[427,10],[428,10],[434,10],[440,10],[446,10],[402,10],[452,10],[459,10],[465,10],[466,10],[472,10],[478,10],[479,10],[485,10],[491,10],[492,10],[453,10],[396,10],[390,10],[384,10],[325,10],[327,10],[328,10],[330,10],[332,10],[333,10],[339,10],[340,10],[341,10],[342,10],[343,10],[344,10],[350,10],[356,10],[357,10],[363,10],[369,10],[375,10],[376,10],[377,10],[383,10],[321,10],[232,10],[231,10],[230,10],[75,10],[76,10],[82,10],[83,10],[84,10],[86,10],[88,10],[90,10],[92,10],[74,10],[93,10],[96,10],[98,10],[100,10],[102,10],[103,10],[104,10],[105,10],[106,10],[107,10],[94,10],[68,10],[67,10],[66,10],[3,10],[9,10],[10,10],[16,10],[17,10],[23,10],[24,10],[30,10],[31,10],[37,10],[38,10],[39,10],[45,10],[46,10],[52,10],[53,10],[54,10],[60,10],[62,10],[64,10],[65,10],[113,10],[114,10],[120,10],[121,10],[189,10],[195,10],[196,10],[197,10],[203,10],[204,10],[205,10],[206,10],[207,10],[208,10],[214,10],[215,10],[221,10],[222,10],[223,10],[224,10],[225,10],[226,10],[227,10],[228,10],[229,10],[188,10],[498,10],[187,10],[180,10],[122,10],[128,10],[134,10],[135,10],[136,10],[142,10],[143,10],[144,10],[145,10],[151,10],[153,10],[155,10],[161,10],[162,10],[163,10],[169,10],[170,10],[171,10],[172,10],[178,10],[179,10],[181,10],[504,10]]","5":"[[2,3],[273,3],[279,3],[280,3],[281,3],[282,3],[283,3],[284,3],[290,3],[291,3],[272,3],[292,3],[294,3],[295,3],[301,3],[303,3],[309,3],[310,3],[311,3],[312,3],[313,3],[293,3],[271,3],[270,3],[269,3],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[257,3],[259,3],[261,3],[263,3],[265,3],[266,3],[267,3],[268,3],[314,3],[238,3],[320,3],[323,3],[408,3],[409,3],[415,3],[421,3],[427,3],[428,3],[434,3],[440,3],[446,3],[402,3],[452,3],[459,3],[465,3],[466,3],[472,3],[478,3],[479,3],[485,3],[491,3],[492,3],[453,3],[396,3],[390,3],[384,3],[325,3],[327,3],[328,3],[330,3],[332,3],[333,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[350,3],[356,3],[357,3],[363,3],[369,3],[375,3],[376,3],[377,3],[383,3],[321,3],[232,3],[231,3],[230,3],[75,3],[76,3],[82,3],[83,3],[84,3],[86,3],[88,3],[90,3],[92,3],[74,3],[93,3],[96,3],[98,3],[100,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[94,3],[68,3],[67,3],[66,3],[3,3],[9,3],[10,3],[16,3],[17,3],[23,3],[24,3],[30,3],[31,3],[37,3],[38,3],[39,3],[45,3],[46,3],[52,3],[53,3],[54,3],[60,3],[62,3],[64,3],[65,3],[113,3],[114,3],[120,3],[121,3],[189,3],[195,3],[196,3],[197,3],[203,3],[204,3],[205,3],[206,3],[207,3],[208,3],[214,3],[215,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[188,3],[498,3],[187,3],[180,3],[122,3],[128,3],[134,3],[135,3],[136,3],[142,3],[143,3],[144,3],[145,3],[151,3],[153,3],[155,3],[161,3],[162,3],[163,3],[169,3],[170,3],[171,3],[172,3],[178,3],[179,3],[181,3],[504,3]]","1":"[[2,3],[273,3],[279,3],[280,3],[281,3],[282,3],[283,3],[284,3],[290,3],[291,3],[272,3],[292,3],[294,3],[295,3],[301,3],[303,3],[309,3],[310,3],[311,3],[312,3],[313,3],[293,3],[271,3],[270,3],[269,3],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[257,3],[259,3],[261,3],[263,3],[265,3],[266,3],[267,3],[268,3],[314,3],[238,3],[320,3],[323,3],[408,3],[409,3],[415,3],[421,3],[427,3],[428,3],[434,3],[440,3],[446,3],[402,3],[452,3],[459,3],[465,3],[466,3],[472,3],[478,3],[479,3],[485,3],[491,3],[492,3],[453,3],[396,3],[390,3],[384,3],[325,3],[327,3],[328,3],[330,3],[332,3],[333,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[350,3],[356,3],[357,3],[363,3],[369,3],[375,3],[376,3],[377,3],[383,3],[321,3],[498,3],[232,3],[230,3],[75,3],[76,3],[82,3],[83,3],[84,3],[86,3],[88,3],[90,3],[92,3],[93,3],[94,3],[96,3],[98,3],[100,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[113,3],[74,3],[114,3],[68,3],[66,3],[3,3],[9,3],[10,3],[16,3],[17,3],[23,3],[24,3],[30,3],[31,3],[37,3],[38,3],[39,3],[45,3],[46,3],[52,3],[53,3],[54,3],[60,3],[62,3],[64,3],[65,3],[67,3],[231,3],[120,3],[122,3],[189,3],[195,3],[196,3],[197,3],[203,3],[204,3],[205,3],[206,3],[207,3],[208,3],[214,3],[215,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[188,3],[121,3],[187,3],[180,3],[128,3],[134,3],[135,3],[136,3],[142,3],[143,3],[144,3],[145,3],[151,3],[181,3],[153,3],[161,3],[162,3],[163,3],[169,3],[170,3],[171,3],[172,3],[178,3],[179,3],[155,3],[504,3],[302,1]]","2":"[[2,3],[273,3],[279,3],[280,3],[281,3],[282,3],[283,3],[284,3],[290,3],[291,3],[272,3],[292,3],[294,3],[295,3],[301,3],[303,3],[309,3],[310,3],[311,3],[312,3],[313,3],[293,3],[271,3],[270,3],[269,3],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[257,3],[259,3],[261,3],[263,3],[265,3],[266,3],[267,3],[268,3],[314,3],[238,3],[320,3],[323,3],[408,3],[409,3],[415,3],[421,3],[427,3],[428,3],[434,3],[440,3],[446,3],[402,3],[452,3],[459,3],[465,3],[466,3],[472,3],[478,3],[479,3],[485,3],[491,3],[492,3],[453,3],[396,3],[390,3],[384,3],[325,3],[327,3],[328,3],[330,3],[332,3],[333,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[350,3],[356,3],[357,3],[363,3],[369,3],[375,3],[376,3],[377,3],[383,3],[321,3],[232,3],[231,3],[230,3],[75,3],[76,3],[82,3],[83,3],[84,3],[86,3],[88,3],[90,3],[92,3],[74,3],[93,3],[96,3],[98,3],[100,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[94,3],[68,3],[67,3],[66,3],[3,3],[9,3],[10,3],[16,3],[17,3],[23,3],[24,3],[30,3],[31,3],[37,3],[38,3],[39,3],[45,3],[46,3],[52,3],[53,3],[54,3],[60,3],[62,3],[64,3],[65,3],[113,3],[114,3],[120,3],[121,3],[189,3],[195,3],[196,3],[197,3],[203,3],[204,3],[205,3],[206,3],[207,3],[208,3],[214,3],[215,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[188,3],[498,3],[187,3],[180,3],[122,3],[128,3],[134,3],[135,3],[136,3],[142,3],[143,3],[144,3],[145,3],[151,3],[153,3],[155,3],[161,3],[162,3],[163,3],[169,3],[170,3],[171,3],[172,3],[178,3],[179,3],[181,3],[504,3]]","6":"[[2,3],[273,3],[279,3],[280,3],[281,3],[282,3],[283,3],[284,3],[290,3],[291,3],[272,3],[292,3],[294,3],[295,3],[301,3],[303,3],[309,3],[310,3],[311,3],[312,3],[313,3],[293,3],[271,3],[270,3],[269,3],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[257,3],[259,3],[261,3],[263,3],[265,3],[266,3],[267,3],[268,3],[314,3],[238,3],[320,3],[323,3],[408,3],[409,3],[415,3],[421,3],[427,3],[428,3],[434,3],[440,3],[446,3],[402,3],[452,3],[459,3],[465,3],[466,3],[472,3],[478,3],[479,3],[485,3],[491,3],[492,3],[453,3],[396,3],[390,3],[384,3],[325,3],[327,3],[328,3],[330,3],[332,3],[333,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[350,3],[356,3],[357,3],[363,3],[369,3],[375,3],[376,3],[377,3],[383,3],[321,3],[232,3],[231,3],[230,3],[75,3],[76,3],[82,3],[83,3],[84,3],[86,3],[88,3],[90,3],[92,3],[74,3],[93,3],[96,3],[98,3],[100,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[94,3],[68,3],[67,3],[66,3],[3,3],[9,3],[10,3],[16,3],[17,3],[23,3],[24,3],[30,3],[31,3],[37,3],[38,3],[39,3],[45,3],[46,3],[52,3],[53,3],[54,3],[60,3],[62,3],[64,3],[65,3],[113,3],[114,3],[120,3],[121,3],[189,3],[195,3],[196,3],[197,3],[203,3],[204,3],[205,3],[206,3],[207,3],[208,3],[214,3],[215,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[188,3],[498,3],[187,3],[180,3],[122,3],[128,3],[134,3],[135,3],[136,3],[142,3],[143,3],[144,3],[145,3],[151,3],[153,3],[155,3],[161,3],[162,3],[163,3],[169,3],[170,3],[171,3],[172,3],[178,3],[179,3],[181,3],[504,3]]","7":"[[2,3],[273,3],[279,3],[280,3],[281,3],[282,3],[283,3],[284,3],[290,3],[291,3],[272,3],[292,3],[294,3],[295,3],[301,3],[303,3],[309,3],[310,3],[311,3],[312,3],[313,3],[293,3],[271,3],[270,3],[269,3],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[257,3],[259,3],[261,3],[263,3],[265,3],[266,3],[267,3],[268,3],[314,3],[238,3],[320,3],[323,3],[408,3],[409,3],[415,3],[421,3],[427,3],[428,3],[434,3],[440,3],[446,3],[402,3],[452,3],[459,3],[465,3],[466,3],[472,3],[478,3],[479,3],[485,3],[491,3],[492,3],[453,3],[396,3],[390,3],[384,3],[325,3],[327,3],[328,3],[330,3],[332,3],[333,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[350,3],[356,3],[357,3],[363,3],[369,3],[375,3],[376,3],[377,3],[383,3],[321,3],[232,3],[231,3],[230,3],[75,3],[76,3],[82,3],[83,3],[84,3],[86,3],[88,3],[90,3],[92,3],[74,3],[93,3],[96,3],[98,3],[100,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[94,3],[68,3],[67,3],[66,3],[3,3],[9,3],[10,3],[16,3],[17,3],[23,3],[24,3],[30,3],[31,3],[37,3],[38,3],[39,3],[45,3],[46,3],[52,3],[53,3],[54,3],[60,3],[62,3],[64,3],[65,3],[113,3],[114,3],[120,3],[121,3],[189,3],[195,3],[196,3],[197,3],[203,3],[204,3],[205,3],[206,3],[207,3],[208,3],[214,3],[215,3],[221,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[188,3],[498,3],[187,3],[180,3],[122,3],[128,3],[134,3],[135,3],[136,3],[142,3],[143,3],[144,3],[145,3],[151,3],[153,3],[155,3],[161,3],[162,3],[163,3],[169,3],[170,3],[171,3],[172,3],[178,3],[179,3],[181,3],[504,3]]","8":"[[2,1],[273,1],[279,1],[280,1],[281,1],[282,1],[283,1],[284,1],[290,1],[291,1],[272,1],[292,1],[294,1],[295,1],[301,1],[303,1],[309,1],[310,1],[311,1],[312,1],[313,1],[293,1],[271,1],[270,1],[269,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[257,1],[259,1],[261,1],[263,1],[265,1],[266,1],[267,1],[268,1],[314,1],[238,1],[320,1],[323,1],[408,1],[409,1],[415,1],[421,1],[427,1],[428,1],[434,1],[440,1],[446,1],[402,1],[452,1],[459,1],[465,1],[466,1],[472,1],[478,1],[479,1],[485,1],[491,1],[492,1],[453,1],[396,1],[390,1],[384,1],[325,1],[327,1],[328,1],[330,1],[332,1],[333,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[350,1],[356,1],[357,1],[363,1],[369,1],[375,1],[376,1],[377,1],[383,1],[321,1],[232,1],[231,1],[230,1],[75,1],[76,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[74,1],[93,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[94,1],[68,1],[67,1],[66,1],[3,1],[9,1],[10,1],[16,1],[17,1],[23,1],[24,1],[30,1],[31,1],[37,1],[38,1],[39,1],[45,1],[46,1],[52,1],[53,1],[54,1],[60,1],[62,1],[64,1],[65,1],[113,1],[114,1],[120,1],[121,1],[189,1],[195,1],[196,1],[197,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[214,1],[215,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[188,1],[498,1],[187,1],[180,1],[122,1],[128,1],[134,1],[135,1],[136,1],[142,1],[143,1],[144,1],[145,1],[151,1],[153,1],[155,1],[161,1],[162,1],[163,1],[169,1],[170,1],[171,1],[172,1],[178,1],[179,1],[181,1],[504,1]]","this":"[[76,25],[79,21],[38,11],[52,9],[242,8],[249,8],[284,7],[303,7],[98,7],[100,7],[96,7],[273,7],[94,7],[93,6],[88,6],[92,6],[215,6],[83,6],[39,6],[84,6],[82,6],[45,6],[46,6],[295,6],[86,6],[103,6],[90,6],[181,6],[95,6],[231,6],[232,6],[105,6],[104,6],[251,6],[101,6],[99,6],[97,6],[102,6],[144,5],[143,5],[122,5],[142,5],[145,5],[428,5],[121,5],[427,5],[241,5],[283,5],[281,5],[240,5],[282,5],[239,5],[128,5],[136,5],[280,5],[279,5],[135,5],[363,5],[134,5],[272,5],[434,5],[440,5],[271,5],[155,5],[269,5],[179,5],[180,5],[208,5],[207,5],[206,5],[402,5],[504,5],[187,5],[188,5],[189,5],[178,5],[375,5],[396,5],[195,5],[196,5],[197,5],[248,5],[247,5],[246,5],[245,5],[244,5],[203,5],[250,5],[257,5],[390,5],[408,5],[151,5],[268,5],[153,5],[421,5],[120,5],[267,5],[266,5],[265,5],[263,5],[161,5],[162,5],[163,5],[415,5],[369,5],[261,5],[243,5],[333,5],[169,5],[170,5],[171,5],[172,5],[259,5],[409,5],[270,5],[384,5],[205,5],[383,5],[343,5],[485,5],[344,5],[30,5],[31,5],[229,5],[228,5],[314,5],[313,5],[479,5],[37,5],[478,5],[312,5],[311,5],[310,5],[309,5],[227,5],[342,5],[320,5],[24,5],[23,5],[3,5],[330,5],[230,5],[328,5],[9,5],[10,5],[498,5],[327,5],[472,5],[339,5],[340,5],[16,5],[17,5],[323,5],[492,5],[491,5],[341,5],[321,5],[325,5],[377,5],[226,5],[350,5],[225,5],[75,5],[294,5],[293,5],[453,5],[204,5],[107,5],[452,5],[292,5],[291,5],[290,5],[113,5],[114,5],[238,5],[446,5],[357,5],[356,5],[74,5],[376,5],[224,5],[223,5],[54,5],[60,5],[301,5],[62,5],[459,5],[222,5],[465,5],[466,5],[64,5],[65,5],[66,5],[67,5],[68,5],[221,5],[87,3],[85,3],[89,3],[91,3],[106,2],[42,2],[219,2],[2,1],[361,1],[373,1],[336,1],[337,1],[338,1],[345,1],[346,1],[347,1],[348,1],[349,1],[351,1],[352,1],[353,1],[354,1],[355,1],[358,1],[359,1],[360,1],[362,1],[364,1],[365,1],[366,1],[367,1],[368,1],[370,1],[371,1],[372,1],[374,1],[378,1],[411,1],[380,1],[471,1],[470,1],[469,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[460,1],[458,1],[457,1],[456,1],[455,1],[454,1],[451,1],[450,1],[449,1],[448,1],[447,1],[445,1],[473,1],[444,1],[474,1],[476,1],[503,1],[502,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[494,1],[493,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[483,1],[482,1],[481,1],[480,1],[477,1],[475,1],[379,1],[443,1],[441,1],[406,1],[405,1],[404,1],[403,1],[401,1],[400,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[392,1],[391,1],[389,1],[388,1],[387,1],[386,1],[385,1],[382,1],[381,1],[407,1],[442,1],[410,1],[413,1],[439,1],[438,1],[437,1],[436,1],[435,1],[433,1],[432,1],[431,1],[430,1],[429,1],[426,1],[425,1],[424,1],[423,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[414,1],[412,1],[335,1],[253,1],[332,1],[118,1],[117,1],[116,1],[115,1],[112,1],[111,1],[110,1],[109,1],[108,1],[81,1],[80,1],[78,1],[77,1],[73,1],[72,1],[71,1],[70,1],[119,1],[69,1],[123,1],[125,1],[150,1],[149,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[138,1],[137,1],[133,1],[132,1],[131,1],[130,1],[129,1],[127,1],[126,1],[124,1],[63,1],[61,1],[59,1],[26,1],[25,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[14,1],[13,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[4,1],[27,1],[28,1],[29,1],[32,1],[58,1],[57,1],[56,1],[55,1],[53,1],[51,1],[50,1],[49,1],[152,1],[48,1],[44,1],[43,1],[41,1],[40,1],[36,1],[35,1],[34,1],[33,1],[47,1],[154,1],[156,1],[157,1],[288,1],[287,1],[286,1],[285,1],[278,1],[277,1],[276,1],[275,1],[274,1],[264,1],[262,1],[260,1],[258,1],[256,1],[255,1],[254,1],[252,1],[289,1],[296,1],[297,1],[298,1],[331,1],[329,1],[326,1],[324,1],[322,1],[319,1],[318,1],[317,1],[237,1],[316,1],[308,1],[307,1],[306,1],[305,1],[304,1],[302,1],[300,1],[299,1],[315,1],[334,1],[236,1],[234,1],[185,1],[184,1],[183,1],[182,1],[177,1],[176,1],[175,1],[174,1],[173,1],[168,1],[167,1],[166,1],[165,1],[164,1],[160,1],[159,1],[158,1],[186,1],[190,1],[191,1],[192,1],[233,1],[220,1],[218,1],[217,1],[216,1],[214,1],[213,1],[212,1],[235,1],[211,1],[209,1],[202,1],[201,1],[200,1],[199,1],[198,1],[194,1],[193,1],[210,1],[505,1]]","article":"[[2,1],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[346,1],[347,1],[348,1],[349,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[318,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[363,1],[378,1],[317,1],[315,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[283,1],[284,1],[285,1],[286,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[316,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[300,1],[255,1],[379,1],[381,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[380,1],[443,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[409,1],[410,1],[411,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[442,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[254,1],[253,1],[252,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[93,1],[94,1],[95,1],[96,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[65,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[110,1],[125,1],[64,1],[62,1],[29,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[30,1],[31,1],[32,1],[33,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[63,1],[48,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[47,1],[126,1],[127,1],[128,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[220,1],[221,1],[222,1],[223,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[192,1],[238,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[237,1],[191,1],[190,1],[189,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[157,1],[143,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[142,1],[504,1],[158,1],[160,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[159,1],[175,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[174,1],[505,1]]","definition":"[[2,1],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[346,1],[347,1],[348,1],[349,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[318,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[363,1],[378,1],[317,1],[315,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[283,1],[284,1],[285,1],[286,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[316,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[300,1],[255,1],[379,1],[381,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[473,1],[474,1],[475,1],[503,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[444,1],[490,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[489,1],[380,1],[443,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[409,1],[410,1],[411,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[442,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[254,1],[253,1],[252,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[93,1],[94,1],[95,1],[96,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[65,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[110,1],[125,1],[64,1],[62,1],[29,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[30,1],[31,1],[32,1],[33,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[63,1],[48,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[47,1],[126,1],[127,1],[128,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[220,1],[221,1],[222,1],[223,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[192,1],[238,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[237,1],[191,1],[190,1],[189,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[157,1],[143,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[142,1],[504,1],[158,1],[160,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[159,1],[175,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[174,1],[505,1]]","class":"[[181,1010],[273,1008],[232,1008],[295,1007],[46,1007],[303,1007],[215,1007],[284,1007],[314,1007],[208,1006],[446,1006],[3,1006],[76,1006],[459,1006],[54,1006],[68,1006],[434,1006],[197,1006],[333,1006],[189,1006],[409,1006],[344,1006],[107,1006],[114,1006],[172,1006],[122,1006],[163,1006],[128,1006],[377,1006],[155,1006],[136,1006],[472,1006],[39,1006],[369,1006],[24,1006],[31,1006],[251,1006],[485,1006],[498,1006],[17,1006],[10,1006],[38,6],[279,2],[238,2],[320,2],[221,2],[348,1],[347,1],[346,1],[345,1],[275,1],[349,1],[343,1],[350,1],[277,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[278,1],[336,1],[276,1],[293,1],[351,1],[352,1],[367,1],[366,1],[268,1],[269,1],[365,1],[270,1],[364,1],[363,1],[362,1],[274,1],[361,1],[360,1],[359,1],[358,1],[357,1],[272,1],[356,1],[355,1],[354,1],[353,1],[271,1],[335,1],[329,1],[331,1],[309,1],[308,1],[307,1],[306,1],[286,1],[305,1],[287,1],[304,1],[288,1],[301,1],[300,1],[299,1],[298,1],[297,1],[289,1],[296,1],[290,1],[294,1],[291,1],[310,1],[311,1],[312,1],[285,1],[330,1],[292,1],[328,1],[327,1],[326,1],[280,1],[325,1],[324,1],[323,1],[334,1],[322,1],[281,1],[319,1],[318,1],[282,1],[317,1],[368,1],[315,1],[283,1],[313,1],[321,1],[316,1],[380,1],[371,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[471,1],[458,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[445,1],[457,1],[473,1],[474,1],[475,1],[502,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[444,1],[443,1],[442,1],[441,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[267,1],[379,1],[378,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[370,1],[399,1],[401,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[433,1],[432,1],[431,1],[430,1],[429,1],[421,1],[415,1],[414,1],[413,1],[412,1],[411,1],[410,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[400,1],[266,1],[252,1],[264,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[95,1],[83,1],[81,1],[80,1],[79,1],[78,1],[77,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[82,1],[69,1],[96,1],[98,1],[126,1],[125,1],[124,1],[123,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[97,1],[113,1],[111,1],[110,1],[109,1],[108,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[112,1],[127,1],[67,1],[65,1],[30,1],[29,1],[28,1],[27,1],[26,1],[25,1],[23,1],[22,1],[21,1],[20,1],[19,1],[32,1],[18,1],[15,1],[14,1],[13,1],[12,1],[11,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[16,1],[66,1],[33,1],[35,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[52,1],[34,1],[51,1],[49,1],[48,1],[47,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[37,1],[36,1],[50,1],[129,1],[130,1],[131,1],[233,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[234,1],[220,1],[218,1],[217,1],[216,1],[213,1],[212,1],[211,1],[210,1],[209,1],[207,1],[206,1],[205,1],[219,1],[204,1],[235,1],[237,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[254,1],[253,1],[236,1],[503,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[250,1],[203,1],[202,1],[201,1],[167,1],[166,1],[165,1],[164,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[168,1],[145,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[135,1],[134,1],[133,1],[132,1],[144,1],[169,1],[170,1],[171,1],[200,1],[199,1],[198,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[265,1],[504,1]]","vb":"[[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4]]","c":"[[3,8],[279,8],[280,8],[281,8],[282,8],[283,8],[284,8],[290,8],[291,8],[292,8],[293,8],[294,8],[295,8],[301,8],[303,8],[309,8],[310,8],[311,8],[312,8],[313,8],[273,8],[272,8],[271,8],[270,8],[241,8],[242,8],[243,8],[244,8],[245,8],[246,8],[247,8],[248,8],[249,8],[314,8],[250,8],[257,8],[259,8],[261,8],[263,8],[265,8],[266,8],[267,8],[268,8],[269,8],[251,8],[320,8],[321,8],[323,8],[408,8],[409,8],[415,8],[421,8],[427,8],[428,8],[434,8],[440,8],[446,8],[402,8],[452,8],[459,8],[465,8],[466,8],[472,8],[478,8],[479,8],[485,8],[491,8],[492,8],[453,8],[240,8],[396,8],[384,8],[325,8],[327,8],[328,8],[330,8],[333,8],[339,8],[340,8],[341,8],[342,8],[390,8],[343,8],[350,8],[356,8],[357,8],[363,8],[369,8],[375,8],[376,8],[377,8],[383,8],[344,8],[239,8],[238,8],[232,8],[82,8],[83,8],[84,8],[86,8],[88,8],[90,8],[92,8],[93,8],[94,8],[76,8],[96,8],[100,8],[102,8],[103,8],[104,8],[105,8],[107,8],[113,8],[114,8],[120,8],[98,8],[121,8],[75,8],[68,8],[9,8],[10,8],[16,8],[17,8],[23,8],[24,8],[30,8],[31,8],[37,8],[74,8],[39,8],[46,8],[52,8],[54,8],[60,8],[62,8],[64,8],[65,8],[66,8],[67,8],[45,8],[498,8],[122,8],[134,8],[196,8],[197,8],[203,8],[204,8],[205,8],[206,8],[207,8],[208,8],[215,8],[195,8],[221,8],[223,8],[224,8],[225,8],[226,8],[227,8],[228,8],[229,8],[230,8],[231,8],[222,8],[128,8],[189,8],[187,8],[135,8],[136,8],[142,8],[143,8],[144,8],[145,8],[151,8],[153,8],[155,8],[188,8],[161,8],[163,8],[169,8],[170,8],[171,8],[172,8],[178,8],[179,8],[180,8],[181,8],[162,8],[504,8]]","f":"[[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4]]","jscript":"[[83,5],[179,5],[270,5],[204,5],[268,5],[121,5],[263,5],[261,5],[223,5],[226,5],[228,5],[229,5],[230,5],[135,5],[246,5],[492,5],[245,5],[244,5],[243,5],[231,5],[241,5],[242,5],[240,5],[239,5],[249,5],[466,5],[295,4],[294,4],[301,4],[293,4],[283,4],[292,4],[303,4],[291,4],[290,4],[284,4],[282,4],[3,4],[280,4],[279,4],[273,4],[272,4],[271,4],[269,4],[309,4],[267,4],[266,4],[265,4],[259,4],[257,4],[251,4],[250,4],[281,4],[310,4],[314,4],[312,4],[390,4],[396,4],[402,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[452,4],[453,4],[459,4],[465,4],[472,4],[478,4],[479,4],[485,4],[491,4],[384,4],[311,4],[383,4],[376,4],[313,4],[320,4],[321,4],[323,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[343,4],[344,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[377,4],[248,4],[238,4],[498,4],[75,4],[76,4],[82,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[96,4],[98,4],[100,4],[102,4],[103,4],[104,4],[105,4],[74,4],[68,4],[67,4],[66,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[107,4],[37,4],[45,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[39,4],[247,4],[113,4],[120,4],[188,4],[189,4],[195,4],[196,4],[197,4],[203,4],[205,4],[206,4],[207,4],[208,4],[215,4],[221,4],[222,4],[224,4],[225,4],[227,4],[232,4],[187,4],[181,4],[180,4],[178,4],[122,4],[128,4],[134,4],[136,4],[142,4],[143,4],[144,4],[145,4],[114,4],[151,4],[155,4],[161,4],[162,4],[163,4],[169,4],[170,4],[171,4],[172,4],[153,4],[504,4]]","copy":"[[242,6],[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[241,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[250,4],[251,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[314,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4]]","public":"[[295,7],[301,7],[314,6],[107,5],[225,5],[114,5],[122,5],[128,5],[142,5],[143,5],[144,5],[155,5],[161,5],[162,5],[170,5],[171,5],[195,5],[196,5],[205,5],[206,5],[207,5],[208,5],[222,5],[224,5],[169,5],[498,5],[113,5],[409,5],[485,5],[472,5],[459,5],[446,5],[54,5],[384,5],[377,5],[376,5],[375,5],[344,5],[68,5],[333,5],[227,5],[294,4],[272,4],[271,4],[269,4],[267,4],[266,4],[313,4],[327,4],[265,4],[259,4],[257,4],[465,4],[320,4],[478,4],[479,4],[251,4],[248,4],[321,4],[232,4],[491,4],[273,4],[293,4],[279,4],[440,4],[330,4],[328,4],[292,4],[291,4],[369,4],[303,4],[290,4],[284,4],[283,4],[309,4],[310,4],[311,4],[282,4],[312,4],[325,4],[415,4],[281,4],[421,4],[434,4],[280,4],[323,4],[238,4],[3,4],[188,4],[187,4],[76,4],[181,4],[180,4],[178,4],[172,4],[163,4],[145,4],[136,4],[62,4],[134,4],[64,4],[120,4],[65,4],[66,4],[67,4],[74,4],[75,4],[189,4],[197,4],[60,4],[24,4],[23,4],[16,4],[30,4],[31,4],[37,4],[17,4],[39,4],[46,4],[215,4],[10,4],[9,4],[203,4],[221,4],[340,3],[341,3],[339,3],[342,3],[343,3],[350,3],[356,3],[402,3],[363,3],[466,3],[396,3],[453,3],[452,3],[45,3],[383,3],[52,3],[390,3],[408,3],[357,3],[82,3],[94,3],[84,3],[204,3],[250,3],[247,3],[246,3],[245,3],[244,3],[243,3],[241,3],[240,3],[239,3],[492,3],[223,3],[231,3],[230,3],[229,3],[261,3],[268,3],[263,3],[179,3],[86,3],[88,3],[90,3],[92,3],[93,3],[226,3],[96,3],[98,3],[270,3],[100,3],[298,3],[103,3],[104,3],[105,3],[121,3],[135,3],[102,3],[228,3],[242,2],[249,2],[83,2]]","language":"[[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4]]","is":"[[249,13],[250,12],[242,11],[232,10],[251,9],[105,9],[246,9],[247,9],[76,9],[245,9],[292,8],[284,8],[283,8],[282,8],[290,8],[291,8],[293,8],[309,8],[295,8],[301,8],[303,8],[281,8],[310,8],[311,8],[312,8],[313,8],[294,8],[280,8],[272,8],[273,8],[240,8],[241,8],[243,8],[244,8],[248,8],[257,8],[259,8],[261,8],[263,8],[265,8],[266,8],[267,8],[268,8],[269,8],[270,8],[271,8],[314,8],[279,8],[3,8],[321,8],[323,8],[408,8],[409,8],[415,8],[421,8],[427,8],[428,8],[434,8],[440,8],[446,8],[402,8],[452,8],[459,8],[465,8],[466,8],[472,8],[478,8],[479,8],[485,8],[491,8],[492,8],[453,8],[320,8],[396,8],[384,8],[325,8],[327,8],[328,8],[330,8],[333,8],[339,8],[340,8],[341,8],[342,8],[390,8],[343,8],[350,8],[356,8],[357,8],[363,8],[369,8],[375,8],[376,8],[377,8],[383,8],[344,8],[239,8],[504,8],[498,8],[83,8],[84,8],[86,8],[88,8],[90,8],[92,8],[93,8],[94,8],[96,8],[98,8],[100,8],[102,8],[103,8],[104,8],[107,8],[113,8],[114,8],[120,8],[121,8],[82,8],[75,8],[74,8],[68,8],[9,8],[10,8],[16,8],[17,8],[23,8],[24,8],[30,8],[31,8],[37,8],[122,8],[39,8],[46,8],[52,8],[54,8],[60,8],[62,8],[64,8],[65,8],[66,8],[67,8],[45,8],[238,8],[128,8],[135,8],[196,8],[197,8],[203,8],[204,8],[205,8],[206,8],[207,8],[208,8],[215,8],[195,8],[221,8],[223,8],[224,8],[225,8],[226,8],[227,8],[228,8],[229,8],[230,8],[231,8],[222,8],[134,8],[189,8],[161,8],[145,8],[142,8],[151,8],[153,8],[155,8],[136,8],[188,8],[162,8],[144,8],[163,8],[170,8],[171,8],[172,8],[178,8],[179,8],[180,8],[181,8],[187,8],[169,8],[143,8],[235,2],[38,2],[302,1],[79,1]]","not":"[[52,8],[249,5],[246,5],[135,5],[121,5],[179,5],[204,5],[270,5],[83,5],[263,5],[223,5],[261,5],[226,5],[228,5],[229,5],[268,5],[231,5],[230,5],[243,5],[242,5],[241,5],[244,5],[466,5],[239,5],[245,5],[492,5],[240,5],[301,4],[295,4],[294,4],[284,4],[293,4],[303,4],[292,4],[291,4],[290,4],[309,4],[283,4],[280,4],[281,4],[279,4],[273,4],[272,4],[271,4],[269,4],[310,4],[267,4],[266,4],[265,4],[250,4],[259,4],[251,4],[257,4],[282,4],[311,4],[320,4],[313,4],[396,4],[402,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[390,4],[440,4],[452,4],[453,4],[459,4],[465,4],[472,4],[478,4],[479,4],[485,4],[491,4],[446,4],[384,4],[383,4],[377,4],[314,4],[321,4],[323,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[343,4],[344,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[312,4],[3,4],[238,4],[247,4],[76,4],[82,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[96,4],[98,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[75,4],[74,4],[68,4],[67,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[113,4],[37,4],[45,4],[46,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[39,4],[248,4],[114,4],[122,4],[189,4],[195,4],[196,4],[197,4],[203,4],[205,4],[206,4],[207,4],[208,4],[215,4],[221,4],[222,4],[224,4],[225,4],[227,4],[232,4],[498,4],[188,4],[187,4],[181,4],[180,4],[128,4],[134,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[120,4],[153,4],[161,4],[162,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[155,4],[504,4]]","supported":"[[232,6],[241,5],[242,5],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[294,4],[273,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[293,4],[272,4],[271,4],[270,4],[240,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[250,4],[251,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[314,4],[3,4],[320,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[321,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[122,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[504,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[236,2]]","or":"[[215,9],[295,8],[232,8],[301,8],[249,7],[245,6],[223,5],[219,5],[222,5],[93,5],[224,5],[46,5],[227,5],[246,5],[239,5],[225,5],[284,4],[290,4],[283,4],[282,4],[281,4],[291,4],[3,4],[293,4],[294,4],[298,4],[303,4],[309,4],[310,4],[292,4],[280,4],[268,4],[273,4],[247,4],[248,4],[250,4],[251,4],[257,4],[259,4],[261,4],[279,4],[263,4],[266,4],[267,4],[311,4],[269,4],[270,4],[271,4],[272,4],[265,4],[312,4],[314,4],[244,4],[402,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[452,4],[453,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[396,4],[390,4],[384,4],[383,4],[320,4],[321,4],[323,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[313,4],[341,4],[343,4],[344,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[342,4],[243,4],[504,4],[241,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[94,4],[96,4],[98,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[76,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[39,4],[45,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[74,4],[242,4],[122,4],[134,4],[189,4],[195,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[221,4],[226,4],[228,4],[229,4],[230,4],[231,4],[498,4],[238,4],[240,4],[128,4],[187,4],[188,4],[180,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[181,4],[155,4],[153,4],[162,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[161,4],[235,3],[38,2],[302,1],[236,1]]","no":"[[232,5],[247,5],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[240,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[3,4],[320,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[321,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[122,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[504,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[235,1]]","code":"[[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4]]","example":"[[46,5],[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[273,4],[292,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[293,4],[272,4],[271,4],[270,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[96,4],[98,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[82,4],[76,4],[75,4],[74,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[121,4],[39,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[68,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4],[38,1]]","available":"[[3,4],[279,4],[280,4],[281,4],[282,4],[283,4],[284,4],[290,4],[291,4],[292,4],[293,4],[294,4],[295,4],[301,4],[303,4],[309,4],[310,4],[311,4],[312,4],[313,4],[273,4],[272,4],[271,4],[270,4],[241,4],[242,4],[243,4],[244,4],[245,4],[246,4],[247,4],[248,4],[249,4],[314,4],[250,4],[257,4],[259,4],[261,4],[263,4],[265,4],[266,4],[267,4],[268,4],[269,4],[251,4],[320,4],[321,4],[323,4],[408,4],[409,4],[415,4],[421,4],[427,4],[428,4],[434,4],[440,4],[446,4],[402,4],[452,4],[459,4],[465,4],[466,4],[472,4],[478,4],[479,4],[485,4],[491,4],[492,4],[453,4],[240,4],[396,4],[384,4],[325,4],[327,4],[328,4],[330,4],[333,4],[339,4],[340,4],[341,4],[342,4],[390,4],[343,4],[350,4],[356,4],[357,4],[363,4],[369,4],[375,4],[376,4],[377,4],[383,4],[344,4],[239,4],[238,4],[232,4],[82,4],[83,4],[84,4],[86,4],[88,4],[90,4],[92,4],[93,4],[94,4],[76,4],[96,4],[100,4],[102,4],[103,4],[104,4],[105,4],[107,4],[113,4],[114,4],[120,4],[98,4],[121,4],[75,4],[68,4],[9,4],[10,4],[16,4],[17,4],[23,4],[24,4],[30,4],[31,4],[37,4],[74,4],[39,4],[46,4],[52,4],[54,4],[60,4],[62,4],[64,4],[65,4],[66,4],[67,4],[45,4],[498,4],[122,4],[134,4],[196,4],[197,4],[203,4],[204,4],[205,4],[206,4],[207,4],[208,4],[215,4],[195,4],[221,4],[223,4],[224,4],[225,4],[226,4],[227,4],[228,4],[229,4],[230,4],[231,4],[222,4],[128,4],[189,4],[187,4],[135,4],[136,4],[142,4],[143,4],[144,4],[145,4],[151,4],[153,4],[155,4],[188,4],[161,4],[163,4],[169,4],[170,4],[171,4],[172,4],[178,4],[179,4],[180,4],[181,4],[162,4],[504,4]]","ref":"[[3,1],[215,1],[232,1],[251,1],[273,1],[284,1],[295,1],[303,1],[314,1],[333,1],[344,1],[369,1],[377,1],[409,1],[434,1],[446,1],[459,1],[472,1],[208,1],[485,1],[197,1],[181,1],[10,1],[17,1],[24,1],[31,1],[39,1],[46,1],[54,1],[68,1],[76,1],[107,1],[114,1],[122,1],[128,1],[136,1],[155,1],[163,1],[172,1],[189,1],[498,1]]","methods":"[[501,1003],[148,1003],[175,1003],[424,1003],[418,1003],[412,1003],[405,1003],[235,1003],[399,1003],[393,1003],[449,1003],[387,1003],[366,1003],[360,1003],[347,1003],[254,1003],[336,1003],[317,1003],[276,1003],[306,1003],[287,1003],[380,1003],[456,1003],[443,1003],[298,1003],[57,1003],[49,1003],[475,1003],[42,1003],[482,1003],[34,1003],[469,1003],[79,1003],[27,1003],[488,1003],[462,1003],[20,1003],[13,1003],[495,1003],[6,1003],[71,1003],[372,1002],[353,1002],[125,1002],[192,1002],[166,1002],[184,1002],[139,1002],[158,1002],[200,1002],[110,1002],[211,1002],[117,1002],[218,1002],[131,1002],[431,1002],[437,1002],[314,1],[492,1],[333,1],[466,1],[485,1],[446,1],[421,1],[303,1],[377,1],[472,1],[459,1],[344,1],[409,1],[245,1],[284,1],[223,1],[204,1],[179,1],[172,1],[145,1],[135,1],[121,1],[83,1],[76,1],[68,1],[54,1],[46,1],[39,1],[31,1],[24,1],[17,1],[10,1],[226,1],[295,1],[228,1],[230,1],[273,1],[270,1],[268,1],[263,1],[261,1],[251,1],[249,1],[246,1],[498,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[232,1],[231,1],[229,1],[3,1]]","registerbundles":"[[9,1006],[6,1],[3,1]]","bundlecollection":"[[9,5],[6,1],[3,1]]","see":"[[3,1],[346,1],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[347,1],[318,1],[348,1],[350,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[349,1],[378,1],[317,1],[315,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[284,1],[316,1],[285,1],[287,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[286,1],[379,1],[380,1],[381,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[444,1],[473,1],[475,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[490,1],[489,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[474,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[409,1],[410,1],[411,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[256,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[503,1],[255,1],[253,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[95,1],[67,1],[96,1],[98,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[97,1],[127,1],[66,1],[64,1],[30,1],[29,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[31,1],[65,1],[32,1],[34,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[37,1],[36,1],[35,1],[33,1],[128,1],[129,1],[130,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[222,1],[193,1],[223,1],[225,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[224,1],[192,1],[191,1],[190,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[158,1],[159,1],[160,1],[161,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[254,1],[176,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[175,1],[504,1]]","also":"[[3,1],[346,1],[345,1],[344,1],[343,1],[342,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[347,1],[318,1],[348,1],[350,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[349,1],[378,1],[317,1],[315,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[284,1],[316,1],[285,1],[287,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[286,1],[379,1],[380,1],[381,1],[471,1],[470,1],[469,1],[468,1],[467,1],[466,1],[465,1],[464,1],[463,1],[462,1],[461,1],[460,1],[459,1],[458,1],[457,1],[456,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[472,1],[444,1],[473,1],[475,1],[502,1],[501,1],[500,1],[499,1],[498,1],[497,1],[496,1],[495,1],[494,1],[493,1],[492,1],[491,1],[490,1],[489,1],[488,1],[487,1],[486,1],[485,1],[484,1],[483,1],[482,1],[481,1],[480,1],[479,1],[478,1],[477,1],[476,1],[474,1],[443,1],[442,1],[441,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[409,1],[410,1],[411,1],[412,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[256,1],[427,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[426,1],[503,1],[255,1],[253,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[95,1],[67,1],[96,1],[98,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[97,1],[127,1],[66,1],[64,1],[30,1],[29,1],[28,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[31,1],[65,1],[32,1],[34,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[37,1],[36,1],[35,1],[33,1],[128,1],[129,1],[130,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[222,1],[193,1],[223,1],[225,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[224,1],[192,1],[191,1],[190,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[158,1],[159,1],[160,1],[161,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[254,1],[176,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[175,1],[504,1]]","attached":"[[4,1002],[315,1002],[334,1002],[345,1002],[351,1002],[358,1002],[364,1002],[370,1002],[378,1002],[385,1002],[391,1002],[397,1002],[403,1002],[410,1002],[416,1002],[422,1002],[429,1002],[435,1002],[441,1002],[447,1002],[454,1002],[460,1002],[467,1002],[473,1002],[480,1002],[486,1002],[304,1002],[493,1002],[296,1002],[274,1002],[11,1002],[18,1002],[25,1002],[32,1002],[40,1002],[47,1002],[55,1002],[69,1002],[77,1002],[108,1002],[115,1002],[123,1002],[129,1002],[137,1002],[146,1002],[156,1002],[164,1002],[173,1002],[182,1002],[190,1002],[198,1002],[209,1002],[216,1002],[233,1002],[252,1002],[285,1002],[499,1002]]","properties":"[[121,1005],[118,1004],[255,1003],[126,1003],[132,1003],[159,1003],[167,1003],[381,1003],[176,1003],[373,1003],[185,1003],[367,1003],[361,1003],[201,1003],[354,1003],[212,1003],[219,1003],[236,1003],[307,1003],[277,1003],[193,1003],[111,1003],[140,1003],[288,1003],[72,1003],[58,1003],[370,1002],[467,1002],[470,1002],[364,1002],[473,1002],[476,1002],[358,1002],[480,1002],[483,1002],[351,1002],[348,1002],[486,1002],[345,1002],[337,1002],[489,1002],[334,1002],[318,1002],[315,1002],[493,1002],[304,1002],[496,1002],[299,1002],[463,1002],[460,1002],[378,1002],[457,1002],[438,1002],[429,1002],[425,1002],[441,1002],[422,1002],[419,1002],[444,1002],[416,1002],[413,1002],[447,1002],[435,1002],[410,1002],[296,1002],[403,1002],[400,1002],[397,1002],[394,1002],[391,1002],[388,1002],[450,1002],[385,1002],[454,1002],[406,1002],[432,1002],[4,1002],[285,1002],[149,1002],[137,1002],[129,1002],[123,1002],[115,1002],[108,1002],[80,1002],[77,1002],[69,1002],[55,1002],[50,1002],[47,1002],[43,1002],[40,1002],[35,1002],[32,1002],[28,1002],[25,1002],[21,1002],[18,1002],[14,1002],[11,1002],[7,1002],[156,1002],[164,1002],[146,1002],[502,1002],[216,1002],[198,1002],[233,1002],[190,1002],[252,1002],[182,1002],[499,1002],[173,1002],[274,1002],[209,1002],[114,2],[273,1],[215,1],[303,1],[251,1],[301,1],[284,1],[232,1],[298,1],[208,1],[68,1],[172,1],[197,1],[107,1],[369,1],[122,1],[189,1],[128,1],[136,1],[377,1],[295,1],[181,1],[155,1],[54,1],[163,1]]","the":"[[79,39],[76,36],[215,21],[219,21],[232,21],[235,14],[38,13],[246,10],[236,10],[255,10],[90,9],[91,9],[99,9],[249,9],[95,9],[250,9],[251,9],[101,9],[89,9],[97,9],[88,8],[96,8],[86,8],[100,8],[84,7],[94,7],[98,7],[105,6],[85,6],[93,6],[87,6],[247,5],[298,5],[92,5],[263,5],[245,5],[266,4],[261,4],[301,4],[83,4],[248,4],[265,4],[46,4],[42,4],[451,3],[352,3],[351,3],[349,3],[348,3],[347,3],[353,3],[346,3],[482,3],[338,3],[337,3],[336,3],[483,3],[335,3],[334,3],[345,3],[319,3],[354,3],[358,3],[379,3],[378,3],[374,3],[373,3],[372,3],[371,3],[370,3],[355,3],[368,3],[366,3],[365,3],[364,3],[362,3],[361,3],[360,3],[359,3],[367,3],[318,3],[317,3],[316,3],[490,3],[493,3],[285,3],[494,3],[495,3],[496,3],[497,3],[278,3],[277,3],[276,3],[499,3],[275,3],[274,3],[500,3],[501,3],[286,3],[380,3],[287,3],[289,3],[315,3],[308,3],[307,3],[306,3],[305,3],[304,3],[484,3],[486,3],[300,3],[487,3],[488,3],[299,3],[489,3],[297,3],[296,3],[288,3],[381,3],[385,3],[454,3],[462,3],[463,3],[464,3],[467,3],[468,3],[469,3],[470,3],[471,3],[473,3],[474,3],[475,3],[476,3],[477,3],[435,3],[433,3],[461,3],[432,3],[460,3],[457,3],[450,3],[449,3],[448,3],[447,3],[445,3],[444,3],[443,3],[442,3],[455,3],[441,3],[439,3],[456,3],[438,3],[437,3],[436,3],[458,3],[480,3],[431,3],[430,3],[403,3],[401,3],[400,3],[399,3],[398,3],[397,3],[395,3],[394,3],[393,3],[392,3],[391,3],[389,3],[388,3],[387,3],[386,3],[404,3],[405,3],[406,3],[407,3],[429,3],[426,3],[425,3],[424,3],[423,3],[422,3],[420,3],[382,3],[419,3],[417,3],[416,3],[414,3],[413,3],[412,3],[481,3],[410,3],[418,3],[411,3],[4,3],[146,3],[112,3],[111,3],[110,3],[109,3],[108,3],[104,3],[103,3],[115,3],[102,3],[81,3],[80,3],[78,3],[77,3],[73,3],[72,3],[71,3],[82,3],[70,3],[116,3],[118,3],[141,3],[140,3],[139,3],[138,3],[137,3],[133,3],[132,3],[117,3],[131,3],[129,3],[127,3],[126,3],[125,3],[124,3],[123,3],[119,3],[130,3],[69,3],[59,3],[58,3],[26,3],[25,3],[22,3],[21,3],[20,3],[19,3],[18,3],[27,3],[15,3],[13,3],[12,3],[11,3],[8,3],[7,3],[6,3],[5,3],[14,3],[28,3],[29,3],[32,3],[57,3],[56,3],[55,3],[51,3],[50,3],[49,3],[48,3],[47,3],[45,3],[44,3],[43,3],[41,3],[40,3],[36,3],[35,3],[34,3],[33,3],[147,3],[148,3],[503,3],[150,3],[200,3],[201,3],[202,3],[209,3],[210,3],[211,3],[212,3],[213,3],[216,3],[217,3],[149,3],[199,3],[220,3],[233,3],[234,3],[237,3],[242,3],[243,3],[244,3],[502,3],[252,3],[253,3],[254,3],[256,3],[223,3],[198,3],[218,3],[174,3],[194,3],[166,3],[165,3],[164,3],[160,3],[173,3],[159,3],[158,3],[157,3],[167,3],[175,3],[176,3],[168,3],[156,3],[193,3],[192,3],[191,3],[190,3],[177,3],[185,3],[186,3],[183,3],[182,3],[184,3],[279,2],[241,2],[295,2],[259,2],[273,2],[106,2],[229,2],[224,2],[181,2],[214,2],[320,2],[222,2],[54,2],[53,2],[225,2],[314,2],[267,2],[230,2],[227,2],[226,1],[240,1],[39,1],[239,1],[284,1],[238,1],[228,1],[221,1],[231,1],[257,1],[302,1],[270,1],[268,1],[303,1]]","following":"[[298,2],[387,1],[386,1],[385,1],[382,1],[381,1],[380,1],[388,1],[379,1],[374,1],[373,1],[372,1],[371,1],[370,1],[368,1],[378,1],[367,1],[389,1],[392,1],[410,1],[407,1],[406,1],[405,1],[404,1],[403,1],[391,1],[401,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[400,1],[411,1],[366,1],[364,1],[335,1],[334,1],[319,1],[318,1],[317,1],[316,1],[336,1],[315,1],[307,1],[306,1],[305,1],[304,1],[301,1],[300,1],[308,1],[365,1],[337,1],[345,1],[362,1],[361,1],[360,1],[359,1],[358,1],[355,1],[338,1],[354,1],[352,1],[351,1],[349,1],[348,1],[347,1],[346,1],[353,1],[299,1],[412,1],[414,1],[477,1],[476,1],[475,1],[474,1],[473,1],[471,1],[480,1],[470,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[469,1],[460,1],[481,1],[483,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[482,1],[494,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[493,1],[413,1],[458,1],[456,1],[432,1],[431,1],[430,1],[429,1],[426,1],[425,1],[433,1],[424,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[423,1],[457,1],[435,1],[437,1],[455,1],[454,1],[451,1],[450,1],[449,1],[448,1],[436,1],[447,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[445,1],[502,1],[4,1],[296,1],[108,1],[81,1],[80,1],[79,1],[78,1],[77,1],[109,1],[73,1],[71,1],[70,1],[69,1],[59,1],[58,1],[57,1],[72,1],[56,1],[110,1],[112,1],[132,1],[131,1],[130,1],[129,1],[127,1],[126,1],[111,1],[125,1],[123,1],[119,1],[118,1],[117,1],[116,1],[115,1],[124,1],[133,1],[55,1],[50,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[25,1],[14,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[13,1],[51,1],[26,1],[28,1],[49,1],[48,1],[47,1],[44,1],[43,1],[42,1],[27,1],[41,1],[36,1],[35,1],[34,1],[33,1],[32,1],[29,1],[40,1],[297,1],[137,1],[139,1],[235,1],[234,1],[233,1],[220,1],[219,1],[218,1],[236,1],[217,1],[213,1],[212,1],[211,1],[210,1],[209,1],[202,1],[216,1],[201,1],[237,1],[253,1],[295,1],[289,1],[288,1],[287,1],[286,1],[285,1],[252,1],[278,1],[276,1],[275,1],[274,1],[256,1],[255,1],[254,1],[277,1],[138,1],[200,1],[198,1],[165,1],[164,1],[160,1],[159,1],[158,1],[157,1],[166,1],[156,1],[149,1],[148,1],[147,1],[146,1],[141,1],[140,1],[150,1],[199,1],[167,1],[173,1],[194,1],[193,1],[192,1],[191,1],[190,1],[186,1],[168,1],[185,1],[183,1],[182,1],[177,1],[176,1],[175,1],[174,1],[184,1],[503,1]]","tables":"[[4,1],[370,1],[371,1],[372,1],[373,1],[374,1],[378,1],[379,1],[380,1],[381,1],[382,1],[385,1],[386,1],[387,1],[388,1],[389,1],[391,1],[392,1],[410,1],[407,1],[406,1],[405,1],[404,1],[403,1],[368,1],[401,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[400,1],[367,1],[366,1],[365,1],[336,1],[335,1],[334,1],[319,1],[318,1],[317,1],[337,1],[316,1],[308,1],[307,1],[306,1],[305,1],[304,1],[300,1],[315,1],[411,1],[338,1],[346,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[345,1],[355,1],[353,1],[352,1],[351,1],[349,1],[348,1],[347,1],[354,1],[412,1],[413,1],[414,1],[477,1],[476,1],[475,1],[474,1],[473,1],[471,1],[480,1],[470,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[469,1],[460,1],[481,1],[483,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[482,1],[494,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[493,1],[299,1],[458,1],[456,1],[432,1],[431,1],[430,1],[429,1],[426,1],[425,1],[433,1],[424,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[423,1],[457,1],[435,1],[437,1],[455,1],[454,1],[451,1],[450,1],[449,1],[448,1],[436,1],[447,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[445,1],[502,1],[298,1],[296,1],[57,1],[58,1],[59,1],[69,1],[70,1],[71,1],[72,1],[73,1],[77,1],[78,1],[79,1],[80,1],[81,1],[108,1],[109,1],[110,1],[111,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[56,1],[124,1],[119,1],[118,1],[117,1],[116,1],[115,1],[112,1],[123,1],[55,1],[51,1],[50,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[25,1],[14,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[13,1],[132,1],[26,1],[28,1],[49,1],[48,1],[47,1],[44,1],[43,1],[42,1],[27,1],[41,1],[36,1],[35,1],[34,1],[33,1],[32,1],[29,1],[40,1],[133,1],[137,1],[138,1],[234,1],[233,1],[220,1],[219,1],[218,1],[217,1],[235,1],[216,1],[212,1],[211,1],[210,1],[209,1],[202,1],[201,1],[213,1],[200,1],[236,1],[252,1],[289,1],[288,1],[287,1],[286,1],[285,1],[278,1],[237,1],[277,1],[275,1],[274,1],[256,1],[255,1],[254,1],[253,1],[276,1],[297,1],[199,1],[194,1],[164,1],[160,1],[159,1],[158,1],[157,1],[156,1],[165,1],[150,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[149,1],[198,1],[166,1],[168,1],[193,1],[192,1],[191,1],[190,1],[186,1],[185,1],[167,1],[184,1],[182,1],[177,1],[176,1],[175,1],[174,1],[173,1],[183,1],[503,1]]","list":"[[4,1],[379,1],[378,1],[374,1],[373,1],[372,1],[371,1],[370,1],[368,1],[367,1],[366,1],[365,1],[364,1],[362,1],[361,1],[360,1],[380,1],[359,1],[381,1],[385,1],[403,1],[401,1],[400,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[392,1],[391,1],[389,1],[388,1],[387,1],[386,1],[382,1],[404,1],[358,1],[354,1],[318,1],[317,1],[316,1],[315,1],[308,1],[307,1],[306,1],[305,1],[304,1],[300,1],[299,1],[298,1],[297,1],[296,1],[289,1],[319,1],[355,1],[322,1],[326,1],[353,1],[352,1],[351,1],[349,1],[348,1],[347,1],[346,1],[345,1],[338,1],[337,1],[336,1],[335,1],[334,1],[331,1],[329,1],[324,1],[405,1],[406,1],[407,1],[476,1],[475,1],[474,1],[473,1],[471,1],[470,1],[469,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[460,1],[458,1],[477,1],[457,1],[480,1],[482,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[494,1],[493,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[483,1],[481,1],[456,1],[455,1],[454,1],[426,1],[425,1],[424,1],[423,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[414,1],[413,1],[412,1],[411,1],[410,1],[429,1],[430,1],[431,1],[432,1],[451,1],[450,1],[449,1],[448,1],[447,1],[445,1],[444,1],[288,1],[443,1],[441,1],[439,1],[438,1],[437,1],[436,1],[435,1],[433,1],[442,1],[287,1],[286,1],[285,1],[89,1],[87,1],[85,1],[81,1],[80,1],[79,1],[78,1],[77,1],[73,1],[72,1],[71,1],[70,1],[69,1],[63,1],[61,1],[91,1],[59,1],[95,1],[99,1],[126,1],[125,1],[124,1],[123,1],[119,1],[118,1],[117,1],[116,1],[115,1],[112,1],[111,1],[110,1],[109,1],[108,1],[101,1],[97,1],[58,1],[57,1],[56,1],[25,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[14,1],[13,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[26,1],[27,1],[28,1],[29,1],[55,1],[51,1],[50,1],[49,1],[48,1],[47,1],[44,1],[127,1],[43,1],[41,1],[40,1],[36,1],[35,1],[34,1],[33,1],[32,1],[42,1],[502,1],[129,1],[131,1],[220,1],[219,1],[218,1],[217,1],[216,1],[213,1],[212,1],[211,1],[210,1],[209,1],[202,1],[201,1],[200,1],[199,1],[198,1],[233,1],[194,1],[234,1],[236,1],[278,1],[277,1],[276,1],[275,1],[274,1],[264,1],[262,1],[260,1],[258,1],[256,1],[255,1],[254,1],[253,1],[252,1],[237,1],[235,1],[193,1],[192,1],[191,1],[156,1],[154,1],[152,1],[150,1],[149,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[138,1],[137,1],[133,1],[132,1],[157,1],[158,1],[159,1],[160,1],[190,1],[186,1],[185,1],[184,1],[183,1],[182,1],[177,1],[130,1],[176,1],[174,1],[173,1],[168,1],[167,1],[166,1],[165,1],[164,1],[175,1],[503,1]]","members":"[[4,1],[370,1],[371,1],[372,1],[373,1],[374,1],[378,1],[379,1],[380,1],[381,1],[382,1],[385,1],[386,1],[387,1],[388,1],[389,1],[391,1],[392,1],[410,1],[407,1],[406,1],[405,1],[404,1],[403,1],[368,1],[401,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[400,1],[367,1],[366,1],[365,1],[336,1],[335,1],[334,1],[319,1],[318,1],[317,1],[337,1],[316,1],[308,1],[307,1],[306,1],[305,1],[304,1],[300,1],[315,1],[411,1],[338,1],[346,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[345,1],[355,1],[353,1],[352,1],[351,1],[349,1],[348,1],[347,1],[354,1],[412,1],[413,1],[414,1],[477,1],[476,1],[475,1],[474,1],[473,1],[471,1],[480,1],[470,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[469,1],[460,1],[481,1],[483,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[482,1],[494,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[493,1],[299,1],[458,1],[456,1],[432,1],[431,1],[430,1],[429,1],[426,1],[425,1],[433,1],[424,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[423,1],[457,1],[435,1],[437,1],[455,1],[454,1],[451,1],[450,1],[449,1],[448,1],[436,1],[447,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[445,1],[502,1],[298,1],[296,1],[57,1],[58,1],[59,1],[69,1],[70,1],[71,1],[72,1],[73,1],[77,1],[78,1],[79,1],[80,1],[81,1],[108,1],[109,1],[110,1],[111,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[56,1],[124,1],[119,1],[118,1],[117,1],[116,1],[115,1],[112,1],[123,1],[55,1],[51,1],[50,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[25,1],[14,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[13,1],[132,1],[26,1],[28,1],[49,1],[48,1],[47,1],[44,1],[43,1],[42,1],[27,1],[41,1],[36,1],[35,1],[34,1],[33,1],[32,1],[29,1],[40,1],[133,1],[137,1],[138,1],[234,1],[233,1],[220,1],[219,1],[218,1],[217,1],[235,1],[216,1],[212,1],[211,1],[210,1],[209,1],[202,1],[201,1],[213,1],[200,1],[236,1],[252,1],[289,1],[288,1],[287,1],[286,1],[285,1],[278,1],[237,1],[277,1],[275,1],[274,1],[256,1],[255,1],[254,1],[253,1],[276,1],[297,1],[199,1],[194,1],[164,1],[160,1],[159,1],[158,1],[157,1],[156,1],[165,1],[150,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[149,1],[198,1],[166,1],[168,1],[193,1],[192,1],[191,1],[190,1],[186,1],[185,1],[167,1],[184,1],[182,1],[177,1],[176,1],[175,1],[174,1],[173,1],[183,1],[503,1]]","exposed":"[[4,1],[370,1],[371,1],[372,1],[373,1],[374,1],[378,1],[379,1],[380,1],[381,1],[382,1],[385,1],[386,1],[387,1],[388,1],[389,1],[391,1],[392,1],[410,1],[407,1],[406,1],[405,1],[404,1],[403,1],[368,1],[401,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[400,1],[367,1],[366,1],[365,1],[336,1],[335,1],[334,1],[319,1],[318,1],[317,1],[337,1],[316,1],[308,1],[307,1],[306,1],[305,1],[304,1],[300,1],[315,1],[411,1],[338,1],[346,1],[364,1],[362,1],[361,1],[360,1],[359,1],[358,1],[345,1],[355,1],[353,1],[352,1],[351,1],[349,1],[348,1],[347,1],[354,1],[412,1],[413,1],[414,1],[477,1],[476,1],[475,1],[474,1],[473,1],[471,1],[480,1],[470,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[469,1],[460,1],[481,1],[483,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[482,1],[494,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[493,1],[299,1],[458,1],[456,1],[432,1],[431,1],[430,1],[429,1],[426,1],[425,1],[433,1],[424,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[423,1],[457,1],[435,1],[437,1],[455,1],[454,1],[451,1],[450,1],[449,1],[448,1],[436,1],[447,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[445,1],[502,1],[298,1],[296,1],[57,1],[58,1],[59,1],[69,1],[70,1],[71,1],[72,1],[73,1],[77,1],[78,1],[79,1],[80,1],[81,1],[108,1],[109,1],[110,1],[111,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[56,1],[124,1],[119,1],[118,1],[117,1],[116,1],[115,1],[112,1],[123,1],[55,1],[51,1],[50,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[25,1],[14,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[13,1],[132,1],[26,1],[28,1],[49,1],[48,1],[47,1],[44,1],[43,1],[42,1],[27,1],[41,1],[36,1],[35,1],[34,1],[33,1],[32,1],[29,1],[40,1],[133,1],[137,1],[138,1],[234,1],[233,1],[220,1],[219,1],[218,1],[217,1],[235,1],[216,1],[212,1],[211,1],[210,1],[209,1],[202,1],[201,1],[213,1],[200,1],[236,1],[252,1],[289,1],[288,1],[287,1],[286,1],[285,1],[278,1],[237,1],[277,1],[275,1],[274,1],[256,1],[255,1],[254,1],[253,1],[276,1],[297,1],[199,1],[194,1],[164,1],[160,1],[159,1],[158,1],[157,1],[156,1],[165,1],[150,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[149,1],[198,1],[166,1],[168,1],[193,1],[192,1],[191,1],[190,1],[186,1],[185,1],[167,1],[184,1],[182,1],[177,1],[176,1],[175,1],[174,1],[173,1],[183,1],[503,1]]","by":"[[235,2],[232,2],[79,2],[236,2],[4,1],[382,1],[381,1],[380,1],[379,1],[378,1],[373,1],[372,1],[371,1],[370,1],[368,1],[367,1],[374,1],[385,1],[386,1],[387,1],[406,1],[405,1],[404,1],[403,1],[401,1],[400,1],[399,1],[366,1],[398,1],[395,1],[394,1],[393,1],[392,1],[391,1],[389,1],[388,1],[397,1],[365,1],[362,1],[407,1],[334,1],[319,1],[318,1],[317,1],[316,1],[315,1],[335,1],[308,1],[306,1],[305,1],[304,1],[300,1],[299,1],[298,1],[307,1],[364,1],[336,1],[338,1],[361,1],[360,1],[359,1],[358,1],[355,1],[354,1],[337,1],[353,1],[351,1],[349,1],[348,1],[347,1],[346,1],[345,1],[352,1],[410,1],[411,1],[412,1],[476,1],[475,1],[474,1],[473,1],[471,1],[470,1],[477,1],[469,1],[467,1],[464,1],[463,1],[462,1],[461,1],[460,1],[468,1],[480,1],[481,1],[482,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[494,1],[493,1],[490,1],[489,1],[488,1],[487,1],[486,1],[484,1],[483,1],[458,1],[297,1],[457,1],[455,1],[430,1],[429,1],[426,1],[425,1],[424,1],[423,1],[431,1],[422,1],[419,1],[418,1],[417,1],[416,1],[414,1],[413,1],[420,1],[432,1],[433,1],[435,1],[454,1],[451,1],[450,1],[449,1],[448,1],[447,1],[445,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[437,1],[436,1],[456,1],[296,1],[288,1],[502,1],[83,1],[81,1],[80,1],[78,1],[77,1],[76,1],[108,1],[73,1],[71,1],[70,1],[69,1],[59,1],[58,1],[57,1],[72,1],[56,1],[109,1],[111,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[110,1],[124,1],[119,1],[118,1],[117,1],[116,1],[115,1],[112,1],[123,1],[132,1],[55,1],[50,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[25,1],[14,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[13,1],[51,1],[26,1],[28,1],[49,1],[48,1],[47,1],[44,1],[43,1],[42,1],[27,1],[41,1],[36,1],[35,1],[34,1],[33,1],[32,1],[29,1],[40,1],[133,1],[137,1],[138,1],[237,1],[234,1],[233,1],[220,1],[219,1],[218,1],[241,1],[217,1],[213,1],[212,1],[211,1],[210,1],[209,1],[202,1],[216,1],[201,1],[243,1],[245,1],[287,1],[286,1],[285,1],[278,1],[277,1],[276,1],[244,1],[275,1],[256,1],[255,1],[254,1],[253,1],[252,1],[247,1],[274,1],[200,1],[199,1],[198,1],[164,1],[160,1],[159,1],[158,1],[157,1],[156,1],[165,1],[150,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[149,1],[166,1],[167,1],[168,1],[194,1],[193,1],[192,1],[191,1],[190,1],[186,1],[185,1],[184,1],[183,1],[182,1],[177,1],[176,1],[175,1],[174,1],[173,1],[289,1],[503,1]]","type":"[[259,1016],[94,1014],[100,1014],[98,1014],[96,1014],[153,1012],[330,1012],[79,17],[76,16],[93,15],[301,14],[250,12],[247,11],[246,10],[170,8],[260,7],[248,7],[258,6],[251,6],[269,6],[235,6],[264,6],[180,5],[242,5],[239,5],[249,5],[241,5],[232,5],[262,5],[101,5],[95,5],[97,5],[99,5],[295,4],[83,4],[298,4],[85,3],[91,3],[89,3],[87,3],[84,2],[92,2],[90,2],[106,2],[88,2],[86,2],[263,2],[257,2],[255,2],[175,2],[317,2],[148,2],[267,2],[387,1],[389,1],[385,1],[382,1],[364,1],[362,1],[361,1],[360,1],[388,1],[386,1],[372,1],[371,1],[380,1],[379,1],[365,1],[378,1],[359,1],[374,1],[366,1],[367,1],[373,1],[368,1],[370,1],[381,1],[358,1],[4,1],[354,1],[304,1],[305,1],[306,1],[307,1],[308,1],[314,1],[315,1],[316,1],[318,1],[319,1],[322,1],[324,1],[326,1],[329,1],[331,1],[334,1],[335,1],[336,1],[337,1],[338,1],[345,1],[346,1],[347,1],[348,1],[391,1],[349,1],[351,1],[352,1],[353,1],[355,1],[392,1],[405,1],[394,1],[473,1],[471,1],[470,1],[469,1],[468,1],[467,1],[464,1],[463,1],[462,1],[461,1],[460,1],[458,1],[457,1],[456,1],[455,1],[454,1],[451,1],[474,1],[475,1],[476,1],[477,1],[501,1],[500,1],[499,1],[497,1],[496,1],[495,1],[494,1],[493,1],[450,1],[490,1],[488,1],[487,1],[486,1],[484,1],[483,1],[482,1],[481,1],[480,1],[489,1],[449,1],[448,1],[447,1],[418,1],[417,1],[416,1],[414,1],[413,1],[412,1],[411,1],[410,1],[419,1],[407,1],[404,1],[403,1],[401,1],[400,1],[399,1],[398,1],[397,1],[395,1],[406,1],[393,1],[420,1],[423,1],[445,1],[444,1],[443,1],[442,1],[441,1],[439,1],[438,1],[437,1],[422,1],[436,1],[433,1],[432,1],[431,1],[430,1],[429,1],[426,1],[425,1],[424,1],[435,1],[300,1],[256,1],[297,1],[109,1],[108,1],[81,1],[80,1],[78,1],[77,1],[110,1],[73,1],[71,1],[70,1],[69,1],[59,1],[58,1],[57,1],[72,1],[111,1],[112,1],[115,1],[137,1],[133,1],[132,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[124,1],[123,1],[119,1],[118,1],[117,1],[116,1],[56,1],[138,1],[55,1],[50,1],[22,1],[21,1],[20,1],[19,1],[18,1],[15,1],[25,1],[14,1],[12,1],[11,1],[8,1],[7,1],[6,1],[5,1],[13,1],[26,1],[27,1],[28,1],[49,1],[48,1],[47,1],[44,1],[43,1],[42,1],[41,1],[40,1],[38,1],[36,1],[35,1],[34,1],[33,1],[32,1],[29,1],[51,1],[139,1],[140,1],[141,1],[236,1],[234,1],[233,1],[220,1],[219,1],[218,1],[237,1],[217,1],[213,1],[212,1],[211,1],[210,1],[209,1],[202,1],[216,1],[243,1],[244,1],[245,1],[296,1],[289,1],[288,1],[287,1],[286,1],[285,1],[278,1],[277,1],[276,1],[275,1],[274,1],[502,1],[254,1],[253,1],[252,1],[201,1],[200,1],[199,1],[198,1],[165,1],[164,1],[163,1],[160,1],[159,1],[158,1],[157,1],[156,1],[154,1],[152,1],[150,1],[149,1],[147,1],[146,1],[145,1],[166,1],[299,1],[167,1],[172,1],[194,1],[193,1],[192,1],[191,1],[190,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[177,1],[176,1],[174,1],[173,1],[168,1],[503,1]]","events":"[[5,1002],[316,1002],[335,1002],[346,1002],[352,1002],[359,1002],[365,1002],[371,1002],[379,1002],[386,1002],[392,1002],[398,1002],[404,1002],[411,1002],[417,1002],[423,1002],[430,1002],[436,1002],[442,1002],[448,1002],[455,1002],[461,1002],[468,1002],[474,1002],[481,1002],[487,1002],[305,1002],[494,1002],[297,1002],[275,1002],[12,1002],[19,1002],[26,1002],[33,1002],[41,1002],[48,1002],[56,1002],[70,1002],[78,1002],[109,1002],[116,1002],[124,1002],[130,1002],[138,1002],[147,1002],[157,1002],[165,1002],[174,1002],[183,1002],[191,1002],[199,1002],[210,1002],[217,1002],[234,1002],[253,1002],[286,1002],[500,1002]]","fields":"[[439,1003],[433,1003],[8,1002],[319,1002],[338,1002],[349,1002],[355,1002],[362,1002],[368,1002],[374,1002],[382,1002],[389,1002],[395,1002],[401,1002],[414,1002],[308,1002],[420,1002],[426,1002],[445,1002],[451,1002],[458,1002],[464,1002],[471,1002],[477,1002],[484,1002],[490,1002],[407,1002],[497,1002],[300,1002],[141,1002],[15,1002],[22,1002],[29,1002],[36,1002],[44,1002],[51,1002],[59,1002],[73,1002],[81,1002],[112,1002],[119,1002],[127,1002],[133,1002],[150,1002],[503,1002],[220,1002],[168,1002],[177,1002],[186,1002],[194,1002],[289,1002],[202,1002],[213,1002],[160,1002],[237,1002],[256,1002],[278,1002],[301,1],[295,1],[434,1],[302,1],[298,1]]","method":"[[9,1002],[329,1002],[328,1002],[327,1002],[326,1002],[325,1002],[324,1002],[323,1002],[322,1002],[321,1002],[330,1002],[313,1002],[311,1002],[301,1002],[294,1002],[293,1002],[292,1002],[283,1002],[282,1002],[281,1002],[272,1002],[312,1002],[271,1002],[331,1002],[340,1002],[479,1002],[478,1002],[466,1002],[453,1002],[452,1002],[428,1002],[427,1002],[415,1002],[408,1002],[339,1002],[402,1002],[390,1002],[383,1002],[363,1002],[357,1002],[356,1002],[350,1002],[343,1002],[342,1002],[341,1002],[396,1002],[492,1002],[250,1002],[248,1002],[91,1002],[90,1002],[89,1002],[88,1002],[87,1002],[86,1002],[85,1002],[84,1002],[83,1002],[92,1002],[82,1002],[67,1002],[66,1002],[65,1002],[52,1002],[45,1002],[37,1002],[30,1002],[23,1002],[16,1002],[75,1002],[249,1002],[93,1002],[95,1002],[247,1002],[246,1002],[245,1002],[244,1002],[243,1002],[180,1002],[154,1002],[153,1002],[152,1002],[94,1002],[151,1002],[104,1002],[103,1002],[102,1002],[101,1002],[100,1002],[99,1002],[98,1002],[97,1002],[96,1002],[105,1002],[504,1002]]","shared":"[[9,1],[103,1],[102,1],[100,1],[98,1],[96,1],[94,1],[93,1],[92,1],[90,1],[104,1],[88,1],[84,1],[83,1],[82,1],[52,1],[45,1],[37,1],[30,1],[23,1],[16,1],[86,1],[105,1]]","sub":"[[9,1],[120,1],[134,1],[178,1],[187,1],[203,1],[221,1],[238,1],[103,1],[257,1],[261,1],[263,1],[279,1],[290,1],[309,1],[320,1],[465,1],[259,1],[100,1],[98,1],[96,1],[16,1],[23,1],[30,1],[37,1],[52,1],[60,1],[62,1],[75,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[92,1],[93,1],[94,1],[491,1],[504,1]]","_":"[[408,11],[246,8],[86,7],[90,7],[249,7],[263,6],[96,6],[88,6],[84,6],[100,6],[94,5],[250,5],[93,5],[98,5],[261,5],[340,4],[343,4],[342,4],[491,4],[92,4],[390,4],[341,4],[245,3],[350,3],[339,3],[259,3],[356,3],[363,3],[105,3],[103,3],[383,3],[83,3],[82,3],[396,3],[402,3],[52,3],[452,3],[453,3],[465,3],[357,3],[323,2],[325,2],[321,2],[327,2],[9,2],[330,2],[320,2],[466,2],[328,2],[311,2],[257,2],[178,2],[16,2],[23,2],[37,2],[45,2],[62,2],[66,2],[67,2],[75,2],[102,2],[104,2],[151,2],[153,2],[492,2],[180,2],[187,2],[243,2],[244,2],[247,2],[248,2],[271,2],[279,2],[281,2],[290,2],[292,2],[301,2],[309,2],[314,1]]","byval":"[[408,9],[246,7],[90,6],[86,6],[249,5],[100,5],[96,5],[263,5],[88,5],[84,5],[98,4],[94,4],[93,4],[250,4],[261,4],[92,3],[491,3],[340,2],[341,2],[342,2],[343,2],[105,2],[83,2],[103,2],[465,2],[245,2],[259,2],[82,2],[321,1],[320,1],[328,1],[323,1],[325,1],[330,1],[327,1],[357,1],[350,1],[356,1],[311,1],[363,1],[383,1],[390,1],[396,1],[402,1],[452,1],[453,1],[466,1],[339,1],[309,1],[9,1],[292,1],[16,1],[23,1],[37,1],[45,1],[52,1],[62,1],[66,1],[67,1],[75,1],[102,1],[104,1],[151,1],[153,1],[178,1],[180,1],[187,1],[243,1],[244,1],[247,1],[248,1],[257,1],[271,1],[279,1],[281,1],[290,1],[301,1],[492,1]]","bundles":"[[9,5]]","as":"[[408,10],[250,9],[246,8],[249,7],[247,6],[90,6],[86,6],[100,6],[98,5],[52,5],[263,5],[88,5],[96,5],[84,5],[94,4],[93,4],[232,4],[236,4],[261,4],[342,3],[105,3],[99,3],[245,3],[491,3],[101,3],[340,3],[341,3],[343,3],[45,3],[92,3],[241,2],[466,2],[243,2],[244,2],[465,2],[390,2],[239,2],[248,2],[452,2],[402,2],[259,2],[396,2],[240,2],[453,2],[271,2],[292,2],[350,2],[356,2],[357,2],[363,2],[383,2],[339,2],[281,2],[330,2],[327,2],[325,2],[323,2],[321,2],[311,2],[301,2],[328,2],[242,2],[492,2],[76,2],[153,2],[82,2],[83,2],[180,2],[151,2],[102,2],[103,2],[67,2],[66,2],[79,2],[104,2],[121,1],[135,1],[142,1],[143,1],[144,1],[320,1],[313,1],[312,1],[113,1],[228,1],[75,1],[375,1],[479,1],[478,1],[16,1],[23,1],[37,1],[62,1],[440,1],[428,1],[427,1],[415,1],[64,1],[65,1],[384,1],[74,1],[376,1],[310,1],[309,1],[161,1],[294,1],[187,1],[188,1],[195,1],[196,1],[204,1],[205,1],[206,1],[257,1],[207,1],[223,1],[224,1],[225,1],[226,1],[231,1],[230,1],[229,1],[222,1],[179,1],[178,1],[171,1],[293,1],[162,1],[291,1],[290,1],[283,1],[282,1],[169,1],[280,1],[279,1],[272,1],[170,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[227,1],[9,1]]","static":"[[9,3],[104,3],[103,3],[102,3],[100,3],[98,3],[96,3],[94,3],[93,3],[92,3],[90,3],[88,3],[86,3],[84,3],[82,3],[52,3],[45,3],[37,3],[30,3],[23,3],[16,3],[105,3],[83,2],[76,1],[46,1],[39,1],[31,1],[434,1]]","void":"[[9,2],[103,2],[100,2],[98,2],[96,2],[94,2],[93,2],[92,2],[90,2],[88,2],[504,2],[84,2],[83,2],[82,2],[75,2],[52,2],[37,2],[30,2],[23,2],[16,2],[86,2],[207,1],[222,1],[224,1],[376,1],[227,1],[375,1],[206,1],[225,1],[205,1],[169,1],[195,1],[171,1],[170,1],[162,1],[161,1],[144,1],[143,1],[142,1],[384,1],[196,1],[113,1]]","function":"[[247,2],[222,2],[328,2],[207,2],[206,2],[205,2],[330,2],[196,2],[195,2],[339,2],[340,2],[180,2],[341,2],[171,2],[170,2],[169,2],[224,2],[282,2],[225,2],[327,2],[281,2],[292,2],[272,2],[271,2],[293,2],[294,2],[301,2],[311,2],[250,2],[312,2],[248,2],[313,2],[321,2],[323,2],[325,2],[227,2],[161,2],[162,2],[151,2],[396,2],[153,2],[408,2],[415,2],[427,2],[67,2],[390,2],[66,2],[428,2],[452,2],[453,2],[45,2],[478,2],[479,2],[65,2],[384,2],[402,2],[376,2],[144,2],[143,2],[142,2],[342,2],[383,2],[113,2],[105,2],[343,2],[350,2],[102,2],[356,2],[357,2],[363,2],[375,2],[104,2],[283,2],[320,1],[310,1],[309,1],[465,1],[466,1],[291,1],[491,1],[9,1],[280,1],[96,1],[94,1],[93,1],[92,1],[90,1],[88,1],[86,1],[84,1],[82,1],[75,1],[74,1],[64,1],[62,1],[60,1],[52,1],[37,1],[30,1],[23,1],[16,1],[98,1],[100,1],[103,1],[120,1],[279,1],[269,1],[267,1],[266,1],[265,1],[259,1],[257,1],[249,1],[492,1],[290,1],[246,1],[244,1],[243,1],[238,1],[221,1],[203,1],[188,1],[187,1],[178,1],[134,1],[245,1],[504,1]]","parameters":"[[52,5],[246,2],[91,2],[90,2],[87,2],[86,2],[76,2],[79,2],[327,1],[325,1],[323,1],[321,1],[320,1],[311,1],[301,1],[328,1],[292,1],[290,1],[281,1],[279,1],[271,1],[263,1],[261,1],[259,1],[309,1],[330,1],[342,1],[340,1],[466,1],[465,1],[453,1],[452,1],[408,1],[402,1],[396,1],[339,1],[390,1],[363,1],[357,1],[356,1],[350,1],[343,1],[257,1],[341,1],[383,1],[250,1],[9,1],[248,1],[93,1],[92,1],[89,1],[88,1],[85,1],[84,1],[83,1],[94,1],[82,1],[67,1],[66,1],[62,1],[45,1],[37,1],[23,1],[16,1],[75,1],[96,1],[98,1],[100,1],[247,1],[491,1],[245,1],[244,1],[243,1],[223,1],[219,1],[215,1],[187,1],[180,1],[178,1],[153,1],[151,1],[105,1],[104,1],[103,1],[102,1],[249,1],[492,1]]","registerglobalfilters":"[[16,1006],[13,1],[10,1]]","globalfiltercollection":"[[16,5],[13,1],[10,1]]","filters":"[[16,5]]","registerroutes":"[[23,1006],[20,1],[17,1]]","routecollection":"[[23,5],[20,1],[17,1]]","routes":"[[23,5]]","register":"[[30,1006],[37,1006],[52,1006],[24,1],[27,1],[31,1],[34,1],[46,1],[49,1]]","httpconfiguration":"[[88,1008],[84,1008],[86,1008],[96,1008],[98,1008],[94,1008],[100,1008],[90,1008],[62,1007],[76,16],[79,16],[102,6],[103,6],[64,6],[82,6],[93,6],[105,6],[92,6],[104,5],[178,5],[83,5],[37,5],[52,5],[89,2],[87,2],[91,2],[85,2],[95,2],[97,2],[99,2],[101,2],[34,1],[46,1],[54,1],[172,1],[61,1],[63,1],[49,1],[31,1]]","config":"[[37,5],[104,5],[103,5],[102,5],[100,5],[98,5],[96,5],[94,5],[93,5],[92,5],[90,5],[88,5],[86,5],[84,5],[82,5],[62,5],[52,5],[105,5],[178,5],[83,4]]","areas":"[[38,1002],[214,1002],[106,1002],[53,1002],[52,6],[155,5],[122,5],[208,4],[128,4],[114,4],[107,4],[505,4],[279,2],[266,2],[265,2],[263,2],[161,2],[162,2],[163,2],[261,2],[259,2],[257,2],[169,2],[170,2],[171,2],[172,2],[178,2],[179,2],[267,2],[268,2],[153,2],[269,2],[282,2],[281,2],[280,2],[134,2],[135,2],[136,2],[224,2],[180,2],[142,2],[144,2],[145,2],[273,2],[272,2],[271,2],[270,2],[151,2],[143,2],[283,2],[181,2],[250,2],[205,2],[206,2],[207,2],[232,2],[231,2],[39,2],[215,2],[230,2],[229,2],[228,2],[227,2],[226,2],[221,2],[222,2],[223,2],[204,2],[203,2],[238,2],[239,2],[249,2],[248,2],[247,2],[187,2],[188,2],[189,2],[246,2],[251,2],[245,2],[243,2],[242,2],[195,2],[196,2],[197,2],[241,2],[240,2],[244,2],[284,2],[225,2],[303,2],[100,2],[98,2],[321,2],[64,2],[65,2],[96,2],[66,2],[94,2],[93,2],[92,2],[67,2],[68,2],[75,2],[320,2],[88,2],[309,2],[86,2],[310,2],[84,2],[83,2],[82,2],[311,2],[312,2],[313,2],[314,2],[76,2],[90,2],[102,2],[74,2],[294,2],[293,2],[292,2],[325,2],[120,2],[121,2],[103,2],[295,2],[291,2],[290,2],[323,2],[60,2],[113,2],[328,2],[62,2],[301,2],[302,2],[45,2],[46,2],[105,2],[330,2],[104,2],[327,2],[54,2],[329,1],[316,1],[234,1],[317,1],[318,1],[319,1],[237,1],[324,1],[322,1],[233,1],[236,1],[235,1],[326,1],[285,1],[253,1],[308,1],[287,1],[288,1],[289,1],[278,1],[277,1],[276,1],[275,1],[296,1],[297,1],[274,1],[298,1],[299,1],[315,1],[300,1],[262,1],[304,1],[260,1],[305,1],[258,1],[306,1],[256,1],[255,1],[254,1],[286,1],[252,1],[307,1],[264,1],[50,1],[191,1],[219,1],[101,1],[108,1],[109,1],[110,1],[111,1],[112,1],[44,1],[115,1],[116,1],[117,1],[99,1],[118,1],[43,1],[123,1],[124,1],[125,1],[126,1],[127,1],[42,1],[129,1],[130,1],[131,1],[119,1],[97,1],[95,1],[91,1],[51,1],[48,1],[47,1],[55,1],[56,1],[57,1],[58,1],[59,1],[61,1],[63,1],[69,1],[70,1],[71,1],[72,1],[73,1],[77,1],[78,1],[79,1],[80,1],[81,1],[85,1],[87,1],[89,1],[132,1],[133,1],[137,1],[138,1],[183,1],[184,1],[331,1],[186,1],[190,1],[49,1],[192,1],[193,1],[194,1],[198,1],[199,1],[200,1],[201,1],[202,1],[40,1],[209,1],[210,1],[211,1],[212,1],[213,1],[216,1],[217,1],[218,1],[182,1],[220,1],[177,1],[175,1],[139,1],[140,1],[141,1],[146,1],[147,1],[148,1],[149,1],[150,1],[152,1],[154,1],[41,1],[156,1],[157,1],[158,1],[159,1],[160,1],[164,1],[165,1],[166,1],[167,1],[168,1],[173,1],[174,1],[176,1],[185,1]]","helppage":"[[38,1002],[214,1002],[106,1002],[53,1002],[52,6],[155,5],[122,5],[208,4],[128,4],[114,4],[107,4],[505,4],[279,2],[266,2],[265,2],[263,2],[161,2],[162,2],[163,2],[261,2],[259,2],[257,2],[169,2],[170,2],[171,2],[172,2],[178,2],[179,2],[267,2],[268,2],[153,2],[269,2],[282,2],[281,2],[280,2],[134,2],[135,2],[136,2],[224,2],[180,2],[142,2],[144,2],[145,2],[273,2],[272,2],[271,2],[270,2],[151,2],[143,2],[283,2],[181,2],[250,2],[205,2],[206,2],[207,2],[232,2],[231,2],[39,2],[215,2],[230,2],[229,2],[228,2],[227,2],[226,2],[221,2],[222,2],[223,2],[204,2],[203,2],[238,2],[239,2],[249,2],[248,2],[247,2],[187,2],[188,2],[189,2],[246,2],[251,2],[245,2],[243,2],[242,2],[195,2],[196,2],[197,2],[241,2],[240,2],[244,2],[284,2],[225,2],[303,2],[100,2],[98,2],[321,2],[64,2],[65,2],[96,2],[66,2],[94,2],[93,2],[92,2],[67,2],[68,2],[75,2],[320,2],[88,2],[309,2],[86,2],[310,2],[84,2],[83,2],[82,2],[311,2],[312,2],[313,2],[314,2],[76,2],[90,2],[102,2],[74,2],[294,2],[293,2],[292,2],[325,2],[120,2],[121,2],[103,2],[295,2],[291,2],[290,2],[323,2],[60,2],[113,2],[328,2],[62,2],[301,2],[302,2],[45,2],[46,2],[105,2],[330,2],[104,2],[327,2],[54,2],[329,1],[316,1],[234,1],[317,1],[318,1],[319,1],[237,1],[324,1],[322,1],[233,1],[236,1],[235,1],[326,1],[285,1],[253,1],[308,1],[287,1],[288,1],[289,1],[278,1],[277,1],[276,1],[275,1],[296,1],[297,1],[274,1],[298,1],[299,1],[315,1],[300,1],[262,1],[304,1],[260,1],[305,1],[258,1],[306,1],[256,1],[255,1],[254,1],[286,1],[252,1],[307,1],[264,1],[50,1],[191,1],[219,1],[101,1],[108,1],[109,1],[110,1],[111,1],[112,1],[44,1],[115,1],[116,1],[117,1],[99,1],[118,1],[43,1],[123,1],[124,1],[125,1],[126,1],[127,1],[42,1],[129,1],[130,1],[131,1],[119,1],[97,1],[95,1],[91,1],[51,1],[48,1],[47,1],[55,1],[56,1],[57,1],[58,1],[59,1],[61,1],[63,1],[69,1],[70,1],[71,1],[72,1],[73,1],[77,1],[78,1],[79,1],[80,1],[81,1],[85,1],[87,1],[89,1],[132,1],[133,1],[137,1],[138,1],[183,1],[184,1],[331,1],[186,1],[190,1],[49,1],[192,1],[193,1],[194,1],[198,1],[199,1],[200,1],[201,1],[202,1],[40,1],[209,1],[210,1],[211,1],[212,1],[213,1],[216,1],[217,1],[218,1],[182,1],[220,1],[177,1],[175,1],[139,1],[140,1],[141,1],[146,1],[147,1],[148,1],[149,1],[150,1],[152,1],[154,1],[41,1],[156,1],[157,1],[158,1],[159,1],[160,1],[164,1],[165,1],[166,1],[167,1],[168,1],[173,1],[174,1],[176,1],[185,1]]","apidescriptionextensions":"[[39,1006],[40,1004],[41,1004],[42,1004],[43,1004],[44,1004],[45,1003],[38,1]]","helppagearearegistration":"[[68,1006],[69,1004],[70,1004],[71,1004],[72,1004],[73,1004],[74,1003],[75,1003],[38,1]]","helppageconfig":"[[46,1006],[47,1004],[48,1004],[49,1004],[50,1004],[51,1004],[52,1003],[38,1]]","use":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[38,1],[46,1],[94,1],[96,1],[98,1],[100,1],[106,1],[181,1],[242,1]]","customize":"[[38,1],[46,1]]","help":"[[76,8],[79,8],[38,5],[95,3],[97,3],[99,3],[101,3],[103,2],[102,2],[273,1],[232,1],[215,1],[214,1],[105,1],[98,1],[284,1],[96,1],[94,1],[82,1],[54,1],[53,1],[46,1],[100,1],[303,1]]","you":"[[38,2],[46,2]]","can":"[[38,2],[46,2]]","set":"[[195,3],[375,3],[227,3],[225,3],[224,3],[222,3],[207,3],[206,3],[205,3],[196,3],[376,3],[384,3],[170,3],[169,3],[162,3],[161,3],[144,3],[143,3],[142,3],[113,3],[171,3],[46,1],[38,1]]","a":"[[38,7],[264,5],[262,5],[260,5],[258,5],[52,4],[232,4],[251,4],[295,3],[303,2],[301,2],[298,2],[273,2],[314,2],[246,2],[245,2],[249,2],[242,2],[106,2],[235,2],[243,1],[45,1],[46,1],[163,1],[284,1],[279,1],[181,1],[263,1],[244,1],[221,1],[261,1],[259,1],[236,1],[257,1],[238,1],[215,1],[320,1]]","custom":"[[38,2],[46,1],[314,1]]","idocumentationprovider":"[[82,5],[314,5],[38,2],[46,1],[76,1],[79,1]]","supply":"[[38,1],[46,1]]","documentation":"[[205,1007],[196,1007],[169,1007],[142,1007],[38,3],[314,2],[82,2],[111,1],[219,1],[215,1],[212,1],[208,1],[46,1],[201,1],[197,1],[76,1],[193,1],[189,1],[79,1],[167,1],[163,1],[159,1],[224,1],[140,1],[136,1],[132,1],[128,1],[126,1],[122,1],[118,1],[114,1],[107,1],[155,1]]","provide":"[[242,2],[46,1],[38,1]]","samples":"[[232,8],[76,4],[79,4],[235,4],[95,3],[97,3],[99,3],[101,3],[236,3],[38,2],[244,2],[243,2],[245,2],[242,1],[241,1],[100,1],[98,1],[96,1],[94,1],[46,1],[240,1],[246,1]]","requests":"[[38,1],[46,1],[53,1],[54,1],[76,1],[79,1],[83,1],[215,1],[219,1],[229,1]]","responses":"[[38,1],[46,1],[76,1],[79,1],[83,1],[215,1],[219,1],[230,1]]","helppageconfigurationextensions":"[[76,1006],[77,1004],[78,1004],[79,1004],[80,1004],[81,1004],[90,1003],[95,1003],[96,1003],[97,1003],[98,1003],[102,1003],[100,1003],[101,1003],[94,1003],[103,1003],[99,1003],[93,1003],[105,1003],[91,1003],[104,1003],[89,1003],[88,1003],[87,1003],[86,1003],[85,1003],[84,1003],[83,1003],[82,1003],[92,1003],[38,1]]","helppagesamplegenerator":"[[232,1008],[242,1008],[238,1007],[233,1004],[234,1004],[235,1004],[236,1004],[237,1004],[248,1003],[247,1003],[246,1003],[245,1003],[244,1003],[243,1003],[250,1003],[240,1003],[239,1003],[249,1003],[241,1003],[103,5],[102,5],[79,1],[76,1],[38,1]]","will":"[[247,7],[232,5],[76,5],[79,5],[97,3],[235,3],[101,3],[99,3],[95,3],[38,2],[98,1],[94,1],[100,1],[83,1],[54,1],[53,1],[236,1],[242,1],[96,1],[295,1]]","generate":"[[38,1],[232,1]]","helppagesamplekey":"[[251,1014],[260,1012],[262,1012],[258,1012],[264,1012],[259,1007],[257,1007],[263,1006],[261,1006],[256,1004],[254,1004],[253,1004],[252,1004],[255,1004],[268,1003],[269,1003],[270,1003],[267,1003],[272,1003],[265,1003],[271,1003],[266,1003],[240,5],[239,5],[38,1]]","used":"[[249,4],[232,3],[38,2],[236,2],[76,1],[79,1],[83,1],[235,1],[239,1],[240,1],[251,1],[302,1]]","identify":"[[38,1],[251,1]]","place":"[[38,1],[251,1]]","where":"[[38,1],[251,1]]","sample":"[[76,9],[79,9],[88,7],[247,7],[84,7],[93,7],[86,7],[92,7],[90,7],[38,6],[235,3],[91,3],[87,3],[85,3],[89,3],[232,3],[246,2],[215,2],[103,2],[102,2],[83,2],[219,2],[229,1],[230,1],[302,1],[245,1],[249,1],[250,1],[251,1],[273,1],[284,1],[295,1],[303,1]]","should":"[[52,4],[38,1],[251,1]]","be":"[[247,5],[52,4],[38,1],[76,1],[79,1],[83,1],[232,1],[235,1],[251,1],[295,1],[298,1],[301,1]]","applied":"[[38,1],[251,1]]","imagesample":"[[273,1009],[279,1007],[274,1004],[275,1004],[276,1004],[277,1004],[278,1004],[280,1003],[281,1003],[282,1003],[283,1003],[38,2]]","represents":"[[38,3],[76,1],[79,1],[105,1],[214,1],[215,1],[273,1],[284,1],[303,1]]","an":"[[76,5],[79,5],[38,4],[242,4],[99,3],[97,3],[95,3],[101,3],[232,2],[295,2],[301,2],[105,2],[235,2],[298,1],[284,1],[279,1],[273,1],[248,1],[247,1],[39,1],[93,1],[215,1],[214,1],[100,1],[42,1],[98,1],[45,1],[96,1],[94,1],[314,1]]","image":"[[434,1006],[429,1004],[430,1004],[431,1004],[432,1004],[433,1004],[435,1004],[436,1004],[437,1004],[438,1004],[439,1004],[38,1],[273,1],[279,1],[332,1],[440,1]]","on":"[[258,5],[264,5],[262,5],[260,5],[251,4],[38,3],[105,2],[79,2],[76,2],[214,1],[257,1],[284,1],[259,1],[261,1],[263,1],[273,1],[215,1],[303,1]]","there":"[[38,3],[273,1],[284,1],[303,1]]","s":"[[38,3],[273,1],[284,1],[303,1]]","display":"[[38,3],[273,1],[284,1],[303,1]]","template":"[[38,3],[273,1],[284,1],[303,1]]","named":"[[38,3],[273,1],[284,1],[303,1]]","associated":"[[38,3],[215,3],[219,3],[229,1],[230,1],[231,1],[273,1],[284,1],[303,1]]","invalidsample":"[[284,1008],[290,1006],[285,1004],[286,1004],[287,1004],[288,1004],[289,1004],[291,1003],[292,1003],[293,1003],[294,1003],[250,4],[38,2]]","invalid":"[[38,1],[284,1]]","objectgenerator":"[[295,1006],[296,1004],[297,1004],[298,1004],[299,1004],[300,1004],[301,1003],[38,1],[232,1],[235,1],[247,1]]","create":"[[38,1],[232,1],[235,1],[247,1],[295,1]]","object":"[[84,1007],[90,1007],[86,1007],[88,1007],[250,11],[384,8],[247,8],[301,7],[242,6],[76,6],[79,6],[292,5],[281,5],[311,5],[241,5],[240,5],[271,5],[230,5],[229,5],[93,5],[92,5],[232,5],[235,4],[243,4],[244,4],[245,4],[246,4],[83,4],[295,2],[89,2],[87,2],[91,2],[85,2],[251,1],[273,1],[276,1],[284,1],[287,1],[236,1],[298,1],[303,1],[306,1],[254,1],[38,1]]","of":"[[76,8],[79,8],[101,6],[99,6],[242,5],[249,5],[232,4],[98,4],[100,4],[52,4],[246,3],[263,3],[261,3],[97,3],[95,3],[96,3],[91,3],[90,3],[89,3],[88,3],[94,3],[251,2],[266,2],[255,2],[265,2],[84,2],[86,2],[279,2],[301,2],[239,2],[295,2],[235,2],[245,1],[320,1],[244,1],[268,1],[314,1],[250,1],[270,1],[273,1],[243,1],[298,1],[248,1],[38,1],[229,1],[240,1],[39,1],[42,1],[45,1],[83,1],[93,1],[106,1],[121,1],[135,1],[179,1],[181,1],[204,1],[215,1],[221,1],[223,1],[226,1],[228,1],[466,1],[230,1],[231,1],[236,1],[238,1],[241,1],[492,1]]","given":"[[232,2],[235,2],[295,2],[301,2],[38,1],[106,1],[172,1],[243,1],[244,1],[298,1]]","and":"[[262,4],[76,4],[79,4],[260,4],[264,4],[251,3],[258,3],[85,3],[87,3],[261,2],[263,2],[242,2],[295,2],[243,1],[270,1],[259,1],[298,1],[301,1],[249,1],[247,1],[246,1],[245,1],[244,1],[268,1],[38,1],[240,1],[466,1],[83,1],[84,1],[86,1],[93,1],[105,1],[121,1],[135,1],[179,1],[241,1],[204,1],[226,1],[228,1],[229,1],[230,1],[231,1],[232,1],[235,1],[239,1],[223,1],[492,1]]","populate":"[[38,1],[295,1]]","it":"[[232,2],[235,2],[247,2],[295,2],[38,1],[298,1],[301,1]]","data":"[[491,5],[295,1],[38,1]]","textsample":"[[303,1008],[309,1006],[304,1004],[305,1004],[306,1004],[307,1004],[308,1004],[310,1003],[311,1003],[312,1003],[313,1003],[52,4],[38,2]]","preformatted":"[[38,1],[303,1]]","text":"[[310,1006],[309,5],[303,2],[38,1],[307,1]]","xmldocumentationprovider":"[[314,1008],[320,1007],[315,1004],[316,1004],[317,1004],[318,1004],[319,1004],[322,1003],[329,1003],[328,1003],[327,1003],[326,1003],[331,1003],[324,1003],[323,1003],[330,1003],[321,1003],[325,1003],[38,1]]","that":"[[232,6],[215,5],[219,4],[236,4],[246,2],[76,2],[79,2],[235,2],[38,1],[242,1],[241,1],[240,1],[239,1],[223,1],[225,1],[247,1],[222,1],[214,1],[105,1],[83,1],[54,1],[53,1],[227,1],[314,1]]","reads":"[[38,1],[314,1]]","api":"[[66,1006],[341,8],[342,8],[343,8],[248,5],[215,5],[383,4],[363,4],[339,4],[357,4],[356,4],[350,4],[396,4],[402,4],[408,4],[340,4],[390,4],[249,4],[453,4],[219,4],[245,4],[244,4],[243,4],[452,4],[54,1],[57,1],[76,1],[79,1],[105,1],[314,1],[222,1],[223,1],[229,1],[230,1],[214,1],[38,1]]","from":"[[122,5],[126,5],[132,3],[107,3],[111,3],[114,3],[118,3],[128,3],[155,3],[159,3],[208,3],[212,3],[301,2],[295,2],[298,2],[38,1],[314,1]]","xml":"[[38,1],[314,1],[320,1]]","file":"[[38,1],[314,1]]","enumerations":"[[38,1]]","sampledirection":"[[261,1012],[263,1012],[270,1011],[302,1002],[245,8],[246,8],[249,8],[251,6],[262,5],[264,5],[258,4],[260,4],[232,3],[235,3],[255,2],[38,1]]","indicates":"[[38,1],[302,1]]","whether":"[[38,1],[245,1],[246,1],[249,1],[302,1]]","request":"[[491,5],[76,5],[79,5],[219,3],[215,3],[95,3],[97,3],[85,3],[87,3],[89,2],[86,2],[245,2],[302,2],[84,2],[235,2],[232,2],[88,1],[249,1],[246,1],[243,1],[224,1],[225,1],[96,1],[94,1],[91,1],[226,1],[38,1]]","response":"[[99,3],[76,3],[79,3],[101,3],[245,2],[235,2],[232,2],[302,2],[91,2],[90,2],[249,1],[100,1],[89,1],[244,1],[88,1],[246,1],[98,1],[38,1]]","getfriendlyid":"[[45,1006],[42,1],[39,1]]","apidescription":"[[222,1016],[45,7],[232,7],[235,7],[243,6],[244,6],[248,6],[245,5],[249,5],[39,2],[42,2],[215,2],[219,2],[105,1]]","generates":"[[39,1],[42,1],[45,1],[106,1],[172,1],[295,1],[298,1],[301,1]]","uri":"[[52,4],[39,1],[42,1],[45,1],[215,1],[219,1],[223,1],[295,1],[298,1],[301,1]]","friendly":"[[39,1],[42,1],[45,1]]","id":"[[340,5],[343,5],[45,3],[39,2],[42,2],[105,1]]","e":"[[39,1],[42,1],[45,1]]","g":"[[39,1],[42,1],[45,1]]","get":"[[265,4],[310,4],[64,4],[291,4],[280,4],[269,4],[267,4],[266,4],[188,4],[225,3],[227,3],[229,3],[230,3],[231,3],[239,3],[222,3],[241,3],[242,3],[224,3],[268,3],[270,3],[375,3],[240,3],[223,3],[384,3],[207,3],[74,3],[113,3],[121,3],[135,3],[142,3],[143,3],[144,3],[161,3],[376,3],[169,3],[162,3],[171,3],[179,3],[195,3],[196,3],[204,3],[205,3],[206,3],[170,3],[228,2],[226,2],[45,1],[42,1],[39,1]]","values":"[[135,1005],[39,1],[42,1],[45,1],[128,1],[132,1]]","id_name":"[[39,1],[42,1],[45,1]]","instead":"[[39,1],[42,1],[45,1]]","getvalues":"[[39,1],[42,1],[45,1]]","extension":"[[45,3],[103,3],[102,3],[100,3],[98,3],[96,3],[94,3],[104,3],[93,3],[90,3],[88,3],[86,3],[84,3],[82,3],[92,3],[105,3],[83,2]]","_public":"[[45,1],[249,1],[250,1],[339,1],[340,1],[341,1],[342,1],[343,1],[247,1],[350,1],[357,1],[363,1],[383,1],[390,1],[396,1],[402,1],[408,1],[356,1],[452,1],[242,1],[105,1],[52,1],[82,1],[83,1],[84,1],[86,1],[88,1],[90,1],[181,1],[92,1],[94,1],[96,1],[98,1],[100,1],[102,1],[103,1],[104,1],[93,1],[453,1]]","string":"[[90,1023],[100,1023],[96,1023],[86,1023],[263,1020],[261,1020],[88,1015],[84,1015],[94,1015],[98,1015],[408,45],[76,21],[79,21],[377,12],[246,12],[366,12],[380,12],[249,12],[360,12],[340,10],[342,10],[341,10],[465,10],[343,10],[336,9],[333,9],[205,8],[206,8],[224,8],[171,8],[196,8],[376,8],[144,8],[143,8],[142,8],[375,8],[52,8],[169,8],[260,6],[262,6],[264,6],[265,6],[266,6],[258,6],[251,6],[45,6],[291,6],[232,6],[188,6],[310,6],[74,6],[235,6],[280,6],[330,5],[328,5],[327,5],[325,5],[323,5],[321,5],[350,5],[356,5],[357,5],[363,5],[383,5],[396,5],[402,5],[440,5],[452,5],[453,5],[339,5],[320,5],[491,5],[313,5],[66,5],[67,5],[85,5],[87,5],[89,5],[91,5],[95,5],[97,5],[99,5],[101,5],[105,5],[153,5],[179,5],[187,5],[151,5],[309,5],[231,5],[268,5],[279,5],[283,5],[294,5],[290,5],[344,4],[347,4],[405,3],[399,3],[443,2],[446,2],[449,2],[57,2],[459,2],[54,2],[295,1],[485,1],[298,1],[314,1],[301,1],[303,1],[181,1],[284,1],[273,1]]","return":"[[249,2],[45,1],[321,1],[323,1],[325,1],[327,1],[328,1],[330,1],[339,1],[340,1],[341,1],[342,1],[343,1],[350,1],[313,1],[356,1],[363,1],[383,1],[390,1],[396,1],[402,1],[408,1],[415,1],[427,1],[428,1],[452,1],[453,1],[466,1],[478,1],[357,1],[312,1],[311,1],[301,1],[65,1],[66,1],[67,1],[93,1],[102,1],[104,1],[105,1],[151,1],[153,1],[180,1],[232,1],[235,1],[243,1],[244,1],[245,1],[246,1],[247,1],[248,1],[250,1],[271,1],[272,1],[281,1],[282,1],[283,1],[292,1],[293,1],[294,1],[479,1],[492,1]]","value":"[[144,1010],[250,7],[162,3],[169,3],[170,3],[171,3],[376,3],[375,3],[195,3],[196,3],[206,3],[207,3],[224,3],[225,3],[227,3],[249,3],[205,3],[161,3],[222,3],[384,3],[143,3],[142,3],[113,3],[245,2],[301,2],[246,2],[327,1],[325,1],[323,1],[321,1],[313,1],[312,1],[311,1],[310,1],[328,1],[302,1],[298,1],[295,1],[294,1],[293,1],[292,1],[291,1],[478,1],[330,1],[340,1],[383,1],[390,1],[396,1],[402,1],[408,1],[363,1],[415,1],[357,1],[427,1],[428,1],[440,1],[283,1],[356,1],[452,1],[453,1],[350,1],[466,1],[343,1],[342,1],[341,1],[339,1],[282,1],[45,1],[280,1],[223,1],[204,1],[188,1],[180,1],[179,1],[153,1],[151,1],[140,1],[136,1],[135,1],[121,1],[105,1],[104,1],[102,1],[74,1],[67,1],[66,1],[65,1],[64,1],[226,1],[228,1],[229,1],[230,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[479,1],[281,1],[248,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[235,1],[232,1],[231,1],[247,1],[492,1]]","suppressmessage":"[[52,8],[247,4],[250,4],[242,3],[249,3]]","microsoft":"[[52,8],[247,4],[250,4],[242,3],[249,3]]","globalization":"[[52,4]]","ca1303":"[[52,4]]","do":"[[52,4]]","pass":"[[52,4]]","literals":"[[52,8]]","localized":"[[52,8]]","messageid":"[[52,8]]","edoka":"[[52,4]]","ctor":"[[52,4]]","system":"[[52,4]]","justification":"[[52,8],[247,4],[250,4],[242,3],[249,3]]","end":"[[52,4]]","users":"[[52,4]]","may":"[[52,4]]","choose":"[[52,4]]","merge":"[[52,4]]","existing":"[[52,4]]","resources":"[[52,4]]","naming":"[[52,4]]","ca2204":"[[52,4]]","spelled":"[[52,4]]","correctly":"[[52,4]]","bsonspec":"[[52,4]]","part":"[[52,4],[99,3],[101,3],[76,2],[79,2],[98,1],[100,1]]","controllers":"[[53,1002],[332,1002],[415,2],[409,2],[408,2],[492,2],[402,2],[396,2],[390,2],[383,2],[377,2],[376,2],[375,2],[369,2],[363,2],[384,2],[421,2],[427,2],[428,2],[434,2],[440,2],[446,2],[452,2],[453,2],[459,2],[465,2],[466,2],[472,2],[478,2],[479,2],[485,2],[491,2],[357,2],[356,2],[505,2],[343,2],[54,2],[67,2],[339,2],[350,2],[333,2],[341,2],[340,2],[62,2],[66,2],[342,2],[64,2],[344,2],[60,2],[65,2],[449,1],[352,1],[451,1],[63,1],[454,1],[455,1],[450,1],[448,1],[444,1],[445,1],[443,1],[442,1],[441,1],[439,1],[438,1],[437,1],[436,1],[435,1],[433,1],[432,1],[431,1],[430,1],[429,1],[447,1],[456,1],[460,1],[458,1],[490,1],[489,1],[488,1],[487,1],[486,1],[55,1],[484,1],[483,1],[482,1],[481,1],[480,1],[56,1],[57,1],[477,1],[457,1],[476,1],[474,1],[473,1],[58,1],[471,1],[470,1],[469,1],[468,1],[467,1],[59,1],[464,1],[463,1],[462,1],[461,1],[61,1],[475,1],[426,1],[422,1],[424,1],[386,1],[385,1],[382,1],[381,1],[380,1],[379,1],[378,1],[345,1],[346,1],[374,1],[373,1],[372,1],[371,1],[370,1],[387,1],[347,1],[367,1],[366,1],[365,1],[364,1],[348,1],[362,1],[361,1],[360,1],[359,1],[358,1],[349,1],[355,1],[354,1],[353,1],[368,1],[425,1],[388,1],[391,1],[423,1],[351,1],[334,1],[420,1],[419,1],[418,1],[417,1],[416,1],[335,1],[414,1],[413,1],[412,1],[411,1],[410,1],[389,1],[336,1],[407,1],[406,1],[338,1],[404,1],[403,1],[401,1],[400,1],[399,1],[398,1],[397,1],[395,1],[394,1],[393,1],[392,1],[337,1],[405,1]]","helpcontroller":"[[54,1008],[60,1006],[62,1006],[61,1005],[63,1005],[55,1004],[56,1004],[57,1004],[58,1004],[59,1004],[64,1003],[65,1003],[66,1003],[67,1003],[53,1]]","controller":"[[54,5],[409,4],[264,3],[262,3],[251,3],[263,2],[261,2],[260,2],[258,2],[265,2],[255,1],[246,1],[100,1],[98,1],[96,1],[94,1],[90,1],[88,1],[86,1],[84,1],[249,1],[53,1]]","handle":"[[53,1],[54,1]]","inherits":"[[54,1],[68,1],[107,1],[114,1],[122,1],[128,1],[155,1],[181,1],[208,1],[333,1],[344,1],[377,1],[409,1],[446,1],[498,1]]","extends":"[[54,1],[68,1],[107,1],[114,1],[122,1],[128,1],[155,1],[181,1],[208,1],[333,1],[344,1],[377,1],[409,1],[446,1],[498,1]]","constructors":"[[54,1],[114,1],[128,1],[172,1],[181,1],[197,1],[215,1],[232,1],[251,1],[273,1],[284,1],[303,1],[314,1],[459,1],[485,1]]","configuration":"[[64,1006],[54,1],[58,1],[104,1]]","index":"[[65,1006],[415,1006],[54,1],[57,1],[387,1],[393,1],[409,1],[412,1]]","resourcemodel":"[[67,1006],[57,1],[54,1]]","constructor":"[[60,1002],[320,1002],[309,1002],[290,1002],[279,1002],[264,1002],[263,1002],[262,1002],[261,1002],[260,1002],[465,1002],[258,1002],[259,1002],[238,1002],[221,1002],[203,1002],[187,1002],[178,1002],[134,1002],[120,1002],[63,1002],[62,1002],[61,1002],[257,1002],[491,1002],[295,1],[298,1],[301,1]]","new":"[[258,5],[262,5],[264,5],[260,5],[251,4],[259,2],[257,2],[238,2],[263,2],[221,2],[279,2],[320,2],[261,2],[290,1],[309,1],[314,1],[273,1],[60,1],[232,1],[215,1],[203,1],[187,1],[178,1],[134,1],[120,1],[62,1],[465,1],[491,1]]","overload":"[[61,1],[326,1],[324,1],[322,1],[264,1],[262,1],[260,1],[258,1],[154,1],[329,1],[152,1],[99,1],[97,1],[95,1],[91,1],[89,1],[87,1],[85,1],[63,1],[101,1],[331,1]]","property":"[[228,1006],[64,1005],[225,1005],[226,1005],[227,1005],[229,1005],[230,1005],[231,1005],[239,1005],[240,1005],[241,1005],[242,1005],[265,1005],[266,1005],[267,1005],[268,1005],[269,1005],[270,1005],[280,1005],[291,1005],[310,1005],[375,1005],[224,1005],[376,1005],[223,1005],[170,1005],[74,1005],[113,1005],[121,1005],[135,1005],[142,1005],[143,1005],[144,1005],[161,1005],[162,1005],[169,1005],[384,1005],[171,1005],[179,1005],[188,1005],[195,1005],[196,1005],[204,1005],[205,1005],[206,1005],[207,1005],[222,1005],[215,1],[219,1]]","actionresult":"[[65,5],[66,5],[67,5],[415,5]]","apiid":"[[66,5]]","modelname":"[[67,5]]","arearegistration":"[[68,4]]","areaname":"[[74,1006],[72,1],[68,1]]","registerarea":"[[75,1006],[71,1],[68,1]]","arearegistrationcontext":"[[75,5],[71,1],[68,1]]","readonly":"[[74,1],[226,1],[228,1]]","overrides":"[[74,1],[75,1],[271,1],[272,1],[281,1],[282,1],[283,1],[292,1],[293,1],[294,1],[311,1],[312,1],[313,1]]","override":"[[74,1],[75,1],[242,1],[271,1],[272,1],[281,1],[282,1],[283,1],[292,1],[293,1],[294,1],[311,1],[312,1],[313,1]]","context":"[[75,5]]","gethelppageapimodel":"[[105,1006],[79,1],[76,1]]","gets":"[[215,10],[219,10],[232,8],[255,5],[251,5],[236,4],[235,4],[76,3],[79,3],[223,1],[267,1],[266,1],[265,1],[102,1],[247,1],[245,1],[244,1],[243,1],[242,1],[241,1],[222,1],[240,1],[104,1],[105,1],[268,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[239,1],[270,1]]","model":"[[76,3],[79,3],[105,2],[106,2],[215,2],[104,1],[163,1],[172,1],[214,1],[219,1],[231,1]]","displayed":"[[76,1],[79,1],[105,1],[214,1],[215,1]]","initialized":"[[76,1],[79,1],[105,1]]","first":"[[76,1],[79,1],[105,1],[232,1],[235,1],[247,1]]","call":"[[76,1],[79,1],[105,1]]","cached":"[[76,1],[79,1],[105,1]]","subsequent":"[[76,1],[79,1],[105,1]]","calls":"[[76,1],[79,1],[105,1]]","gethelppagesamplegenerator":"[[102,1006],[79,1],[76,1]]","generator":"[[76,3],[79,3],[102,2],[103,2],[104,1]]","getmodeldescriptiongenerator":"[[104,1006],[79,1],[76,1]]","setactualrequesttype":"[[94,1006],[96,1006],[95,1004],[97,1004],[76,2],[79,2]]","specifies":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1]]","actual":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1],[232,1],[235,1],[248,1]]","objectcontent":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1],[232,1],[235,1],[248,1]]","t":"[[295,6],[298,6],[301,6],[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1],[232,1],[235,1],[248,1]]","passed":"[[95,3],[97,3],[76,2],[79,2],[94,1],[96,1],[232,1],[235,1],[248,1]]","httprequestmessage":"[[491,5],[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[232,3],[235,2],[94,1],[96,1],[98,1],[485,1],[236,1],[239,1],[248,1],[249,1],[100,1]]","action":"[[76,8],[79,8],[262,3],[251,3],[101,3],[264,3],[97,3],[95,3],[91,3],[99,3],[89,3],[85,3],[87,3],[266,2],[258,2],[84,2],[249,2],[263,2],[90,2],[235,2],[232,2],[86,2],[100,2],[98,2],[88,2],[96,2],[94,2],[260,2],[261,2],[246,1],[248,1],[255,1],[93,1]]","information":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1]]","produce":"[[76,5],[79,5],[95,3],[97,3],[99,3],[101,3],[83,1],[94,1],[96,1],[98,1],[100,1]]","more":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1]]","accurate":"[[76,4],[79,4],[95,3],[97,3],[99,3],[101,3],[94,1],[96,1],[98,1],[100,1]]","params":"[[76,4],[79,4],[85,1],[86,1],[87,1],[89,1],[90,1],[91,1],[95,1],[96,1],[97,1],[99,1],[100,1],[101,1]]","setactualresponsetype":"[[98,1006],[100,1006],[99,1004],[101,1004],[76,2],[79,2]]","returned":"[[99,3],[101,3],[76,2],[79,2],[98,1],[100,1]]","setdocumentationprovider":"[[82,1006],[79,1],[76,1]]","sets":"[[76,9],[79,9],[219,5],[215,5],[85,3],[87,3],[89,3],[91,3],[224,1],[223,1],[222,1],[103,1],[93,1],[90,1],[225,1],[88,1],[86,1],[84,1],[83,1],[82,1],[92,1],[227,1]]","provider":"[[82,2],[79,1],[76,1]]","sethelppagesamplegenerator":"[[103,1006],[79,1],[76,1]]","setsampleformediatype":"[[92,1006],[79,1],[76,1]]","mediatypeheadervalue":"[[84,1007],[259,1007],[86,1007],[257,1007],[88,1007],[90,1007],[263,1006],[76,6],[267,6],[79,6],[92,5],[93,5],[229,5],[230,5],[250,5],[246,4],[243,4],[244,4],[245,4],[264,3],[262,3],[251,3],[260,3],[258,3],[91,2],[87,2],[89,2],[235,2],[85,2],[232,2]]","directly":"[[76,6],[79,6],[85,3],[87,3],[89,3],[91,3],[232,2],[236,1],[235,1],[93,1],[90,1],[240,1],[88,1],[86,1],[84,1],[92,1],[246,1]]","actions":"[[76,2],[79,2],[92,1],[93,1],[232,1],[236,1],[240,1]]","specified":"[[76,6],[79,6],[85,3],[87,3],[89,3],[91,3],[84,1],[86,1],[88,1],[90,1],[92,1],[93,1]]","media":"[[76,6],[79,6],[260,4],[258,4],[251,4],[264,4],[85,3],[262,3],[87,3],[89,3],[91,3],[263,2],[259,2],[257,2],[267,2],[93,2],[92,2],[90,2],[88,2],[86,2],[84,2],[246,1],[250,1],[243,1],[255,1],[245,1],[244,1]]","setsamplefortype":"[[93,1006],[79,1],[76,1]]","setsampleobjects":"[[83,1005],[79,1],[76,1]]","idictionary":"[[229,5],[230,5],[239,5],[240,5],[241,5],[83,4],[243,4],[244,4],[245,4],[295,2],[298,2],[301,2],[76,1],[79,1]]","typeobject":"[[76,1],[79,1]]","objects":"[[232,3],[236,3],[83,2],[76,1],[79,1],[240,1],[241,1],[242,1]]","formatters":"[[249,5],[232,3],[236,2],[76,1],[79,1],[83,1],[235,1],[241,1],[242,1],[247,1]]","setsamplerequest":"[[84,1006],[86,1006],[85,1004],[87,1004],[76,2],[79,2]]","setsampleresponse":"[[88,1006],[90,1006],[89,1004],[91,1004],[76,2],[79,2]]","specific":"[[91,2],[76,1],[79,1],[89,1],[90,1]]","documentationprovider":"[[82,5]]","sampleobjects":"[[241,1005],[83,4],[232,2],[235,1],[236,1],[247,1]]","does":"[[83,1],[270,1],[268,1],[263,1],[261,1],[249,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[231,1],[230,1],[229,1],[228,1],[226,1],[223,1],[204,1],[179,1],[135,1],[121,1],[466,1],[492,1]]","support":"[[83,1],[270,1],[268,1],[263,1],[261,1],[249,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[231,1],[230,1],[229,1],[228,1],[226,1],[223,1],[204,1],[179,1],[135,1],[121,1],[466,1],[492,1]]","generic":"[[242,4],[83,1],[270,1],[268,1],[263,1],[261,1],[249,1],[246,1],[245,1],[244,1],[243,1],[241,1],[240,1],[239,1],[231,1],[230,1],[229,1],[228,1],[226,1],[223,1],[204,1],[179,1],[135,1],[121,1],[466,1],[492,1]]","types":"[[301,6],[298,6],[295,6],[242,4],[239,2],[83,1],[270,1],[268,1],[263,1],[261,1],[249,1],[246,1],[245,1],[244,1],[243,1],[241,1],[240,1],[236,1],[232,1],[231,1],[230,1],[229,1],[228,1],[226,1],[223,1],[204,1],[179,1],[172,1],[135,1],[121,1],[106,1],[466,1],[492,1]]","mediatype":"[[267,1006],[84,5],[86,5],[88,5],[90,5],[92,5],[93,5],[250,5],[257,5],[259,5],[246,4],[263,4],[251,1],[255,1]]","controllername":"[[265,1006],[84,5],[86,5],[88,5],[90,5],[94,5],[96,5],[98,5],[100,5],[246,4],[249,4],[261,4],[263,4],[251,1],[255,1]]","actionname":"[[266,1006],[84,5],[86,5],[88,5],[90,5],[94,5],[96,5],[98,5],[100,5],[246,4],[249,4],[261,4],[263,4],[251,1],[255,1]]","paramarray":"[[86,1],[90,1],[96,1],[100,1]]","parameternames":"[[268,1005],[86,5],[90,5],[96,5],[100,5],[246,4],[249,4],[261,4],[263,4],[251,1],[255,1]]","array":"[[86,2],[90,2],[96,2],[100,2],[428,1],[479,1]]","parameter":"[[262,3],[251,3],[264,3],[263,2],[261,2],[260,2],[258,2],[249,2],[86,1],[255,1],[246,1],[232,1],[226,1],[219,1],[215,1],[100,1],[96,1],[93,1],[90,1],[235,1],[268,1]]","names":"[[251,3],[262,3],[264,3],[258,2],[260,2],[261,2],[263,2],[86,1],[90,1],[96,1],[100,1],[246,1],[249,1],[255,1],[268,1]]","samplegenerator":"[[103,5]]","modeldescriptiongenerator":"[[172,1007],[178,1006],[173,1004],[174,1004],[175,1004],[176,1004],[177,1004],[179,1003],[180,1003],[104,6],[106,1]]","apidescriptionid":"[[105,5]]","helppageapimodel":"[[215,1008],[221,1007],[216,1004],[217,1004],[218,1004],[219,1004],[220,1004],[222,1003],[229,1003],[228,1003],[227,1003],[226,1003],[231,1003],[224,1003],[223,1003],[230,1003],[225,1003],[105,6],[214,1]]","modeldescriptions":"[[106,1002],[155,5],[122,5],[107,4],[128,4],[208,4],[114,4],[169,2],[189,2],[188,2],[142,2],[143,2],[144,2],[145,2],[187,2],[181,2],[153,2],[136,2],[180,2],[179,2],[178,2],[161,2],[162,2],[163,2],[172,2],[171,2],[151,2],[135,2],[170,2],[205,2],[203,2],[120,2],[195,2],[134,2],[196,2],[197,2],[121,2],[206,2],[207,2],[204,2],[113,2],[177,1],[209,1],[210,1],[175,1],[174,1],[173,1],[211,1],[212,1],[176,1],[193,1],[182,1],[184,1],[185,1],[186,1],[202,1],[201,1],[200,1],[199,1],[198,1],[190,1],[192,1],[194,1],[183,1],[191,1],[160,1],[167,1],[131,1],[130,1],[129,1],[127,1],[126,1],[125,1],[124,1],[123,1],[132,1],[119,1],[117,1],[116,1],[115,1],[112,1],[111,1],[110,1],[109,1],[108,1],[118,1],[168,1],[133,1],[138,1],[166,1],[165,1],[164,1],[213,1],[159,1],[158,1],[157,1],[156,1],[137,1],[154,1],[150,1],[149,1],[148,1],[147,1],[146,1],[141,1],[140,1],[139,1],[152,1],[505,1]]","collectionmodeldescription":"[[107,1007],[108,1004],[109,1004],[110,1004],[111,1004],[112,1004],[113,1003],[106,1]]","complextypemodeldescription":"[[114,1008],[120,1006],[115,1004],[116,1004],[117,1004],[118,1004],[119,1004],[121,1003],[106,1]]","dictionarymodeldescription":"[[122,1007],[123,1004],[124,1004],[125,1004],[126,1004],[127,1004],[106,1],[155,1]]","enumtypemodeldescription":"[[128,1008],[134,1006],[129,1004],[130,1004],[131,1004],[132,1004],[133,1004],[135,1003],[106,1]]","enumvaluedescription":"[[136,1006],[137,1004],[138,1004],[139,1004],[140,1004],[141,1004],[142,1003],[143,1003],[144,1003],[135,5],[106,1]]","keyvaluepairmodeldescription":"[[155,1007],[156,1004],[157,1004],[158,1004],[159,1004],[160,1004],[161,1003],[162,1003],[122,7],[126,2],[106,1]]","modeldescription":"[[163,1006],[165,1004],[168,1004],[167,1004],[166,1004],[164,1004],[171,1003],[170,1003],[169,1003],[225,9],[227,9],[161,8],[162,8],[128,8],[208,8],[207,8],[114,8],[113,8],[155,8],[107,8],[179,5],[180,5],[122,4],[159,3],[212,3],[111,3],[118,3],[126,3],[132,3],[215,2],[219,2],[106,2],[181,1]]","describes":"[[215,4],[219,4],[106,1],[163,1],[222,1],[223,1],[225,1],[227,1]]","descriptions":"[[215,2],[219,2],[106,1],[172,1],[226,1],[228,1]]","modelnameattribute":"[[181,1007],[187,1006],[182,1004],[183,1004],[184,1004],[185,1004],[186,1004],[188,1003],[106,1]]","attribute":"[[195,8],[181,5],[106,1]]","change":"[[106,1],[181,1]]","parameterannotation":"[[189,1006],[190,1004],[191,1004],[192,1004],[193,1004],[194,1004],[195,1003],[196,1003],[204,5],[106,1]]","parameterdescription":"[[197,1007],[203,1006],[198,1004],[199,1004],[200,1004],[201,1004],[202,1004],[207,1003],[204,1003],[205,1003],[206,1003],[223,6],[228,5],[121,5],[226,5],[215,1],[219,1],[106,1]]","simpletypemodeldescription":"[[208,1007],[209,1004],[210,1004],[211,1004],[212,1004],[213,1004],[106,1]]","interfaces":"[[106,1],[332,1]]","imodeldocumentationprovider":"[[145,1006],[146,1004],[147,1004],[148,1004],[149,1004],[150,1004],[151,1003],[152,1003],[153,1003],[154,1003],[314,4],[106,1]]","inherited":"[[122,5],[126,5],[181,4],[107,3],[111,3],[114,3],[118,3],[128,3],[132,3],[155,3],[159,3],[208,3],[212,3]]","elementdescription":"[[113,1007],[111,1],[107,1]]","modeltype":"[[170,1007],[180,5],[107,1],[111,1],[114,1],[118,1],[122,1],[126,1],[128,1],[132,1],[155,1],[159,1],[163,1],[167,1],[208,1],[212,1]]","inheritance":"[[107,1],[114,1],[122,1],[128,1],[155,1],[208,1]]","hierarchy":"[[107,1],[114,1],[122,1],[128,1],[155,1],[208,1]]","collection":"[[223,6],[121,5],[135,5],[204,5],[231,5],[249,4],[215,1],[219,1],[232,1],[235,1],[242,1]]","keymodeldescription":"[[161,1007],[122,1],[126,1],[155,1],[159,1]]","valuemodeldescription":"[[162,1007],[122,1],[126,1],[155,1],[159,1]]","interface":"[[145,1006],[421,1006],[426,1],[425,1],[424,1],[423,1],[422,1],[420,1],[419,1],[418,1],[427,1],[417,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[416,1],[428,1]]","getdocumentation":"[[331,1007],[329,1007],[326,1007],[324,1007],[322,1007],[328,1006],[325,1006],[323,1006],[321,1006],[153,1006],[151,1006],[330,1006],[154,1004],[152,1004],[317,5],[314,5],[148,2],[145,2]]","memberinfo":"[[151,1007],[328,1007],[145,1],[148,1],[152,1],[154,1],[314,1],[317,1],[322,1],[324,1],[326,1],[329,1],[331,1]]","member":"[[151,5],[328,5]]","mustinherit":"[[163,1]]","abstract":"[[163,3]]","generatedmodels":"[[179,1005],[176,1],[172,1]]","getorcreatemodeldescription":"[[180,1006],[175,1],[172,1]]","dictionary":"[[179,5]]","attributeusage":"[[181,4]]","attributetargets":"[[181,12]]","struct":"[[181,4]]","enum":"[[181,4],[295,1],[298,1],[301,1]]","allowmultiple":"[[181,4]]","false":"[[181,8]]","notinheritable":"[[181,1]]","sealed":"[[181,2]]","final":"[[181,1]]","annotationattribute":"[[195,1007],[193,1],[189,1]]","annotations":"[[204,1005],[201,1],[197,1]]","typedescription":"[[207,1007],[201,1],[197,1]]","models":"[[214,1002],[230,2],[229,2],[228,2],[227,2],[226,2],[225,2],[224,2],[231,2],[223,2],[221,2],[215,2],[222,2],[220,1],[219,1],[218,1],[217,1],[216,1],[505,1]]","initializes":"[[215,1],[221,1],[232,1],[238,1],[273,1],[279,1],[314,1],[320,1]]","instance":"[[215,1],[221,1],[232,1],[238,1],[273,1],[279,1],[314,1],[320,1]]","errormessages":"[[231,1005],[219,1],[215,1]]","error":"[[215,1],[219,1],[231,1]]","messages":"[[215,1],[219,1],[231,1]]","requestbodyparameters":"[[226,1005],[219,1],[215,1]]","body":"[[232,3],[235,3],[215,2],[219,2],[225,1],[226,1],[243,1],[244,1],[245,1]]","requestdocumentation":"[[224,1007],[219,1],[215,1]]","requestmodeldescription":"[[225,1007],[219,1],[215,1]]","resourcedescription":"[[227,1007],[219,1],[215,1]]","resource":"[[215,2],[219,2],[227,1],[228,1]]","resourceproperties":"[[228,1005],[219,1],[215,1]]","samplerequests":"[[229,1005],[219,1],[215,1]]","sampleresponses":"[[230,1005],[219,1],[215,1]]","uriparameters":"[[223,1005],[219,1],[215,1]]","ilist":"[[226,5],[228,5],[242,5],[295,3],[298,3],[301,3]]","actionsamples":"[[240,1005],[232,2],[235,1],[236,1],[246,1]]","are":"[[232,4],[236,3],[235,1],[239,1],[240,1],[241,1],[246,1]]","certain":"[[232,1],[236,1],[240,1]]","actualhttpmessagetypes":"[[239,1005],[236,1],[232,1]]","clr":"[[259,2],[260,2],[232,1],[236,1],[239,1],[246,1],[251,1],[258,1],[262,1],[264,1]]","content":"[[232,1],[236,1],[239,1]]","httpresponsemessage":"[[466,4],[492,4],[232,2],[235,1],[236,1],[239,1],[249,1]]","sampleobjectfactories":"[[242,1007],[247,5],[232,2],[235,1],[236,1]]","factories":"[[232,2],[235,1],[236,1],[242,1],[247,1]]","serialize":"[[232,1],[236,1],[242,1]]","processed":"[[232,1],[236,1],[242,1]]","order":"[[232,1],[236,1],[242,1]]","stopping":"[[232,1],[236,1],[242,1]]","when":"[[232,2],[235,1],[236,1],[242,1],[249,1]]","factory":"[[232,1],[236,1],[242,1]]","successfully":"[[232,1],[236,1],[242,1]]","returns":"[[232,1],[236,1],[242,1]]","non":"[[232,1],[236,1],[242,1]]","serialized":"[[232,2],[235,1],[236,1],[241,1],[247,1]]","getactionsample":"[[246,1005],[235,1],[232,1]]","ienumerable":"[[261,1006],[263,1006],[246,4],[249,4],[232,2],[235,2],[251,2],[258,2],[260,2],[262,2],[264,2],[295,2],[298,2],[301,2]]","mediatypeformatter":"[[250,5],[246,4],[249,4],[232,3],[235,3]]","provided":"[[232,1],[235,1],[246,1]]","through":"[[232,1],[235,1],[246,1]]","getsample":"[[245,1005],[235,1],[232,1]]","getsampleobject":"[[247,1006],[235,1],[232,1]]","look":"[[232,1],[235,1],[247,1]]","at":"[[232,1],[235,1],[247,1]]","if":"[[247,5],[235,1],[232,1]]","found":"[[232,1],[235,1],[247,1]]","try":"[[232,1],[235,1],[247,1]]","one":"[[232,1],[235,1],[247,1]]","using":"[[232,2],[235,2],[247,1],[250,1]]","defaultsampleobjectfactory":"[[232,1],[235,1],[247,1]]","which":"[[232,1],[235,1],[247,1]]","wraps":"[[232,1],[235,1],[247,1]]","other":"[[232,1],[235,1],[247,1]]","getsamplerequests":"[[243,1005],[235,1],[232,1]]","getsampleresponses":"[[244,1005],[235,1],[232,1]]","resolvehttprequestmessagetype":"[[248,1006],[235,1],[232,1]]","resolves":"[[232,2],[235,2],[248,1],[249,1]]","resolvetype":"[[249,1005],[235,1],[232,1]]","out":"[[232,1],[235,1],[249,1]]","writesampleobjectusingformatter":"[[250,1006],[235,1],[232,1]]","writes":"[[232,1],[235,1],[250,1]]","formatter":"[[250,7],[246,5],[232,1],[235,1]]","design":"[[247,4],[250,4],[242,3],[249,3]]","ca1006":"[[242,3]]","donotnestgenerictypesinmembersignatures":"[[242,3]]","appropriate":"[[242,3]]","nesting":"[[242,3]]","func":"[[242,7]]","remarks":"[[242,1]]","includes":"[[242,1]]","just":"[[242,1]]","generateobject":"[[301,1006],[242,1],[295,1],[298,1]]","initially":"[[242,1]]","insert":"[[242,1]]","0":"[[242,1],[302,1]]","add":"[[242,1]]","fallback":"[[242,1]]","keyed":"[[243,1],[244,1],[245,1]]","overridable":"[[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[323,1],[325,1]]","virtual":"[[245,2],[246,2],[247,2],[248,2],[249,2],[250,2],[323,2],[325,2]]","indicating":"[[245,1],[246,1],[249,1]]","matches":"[[246,1]]","ca1031":"[[247,4],[250,4]]","donotcatchgeneralexceptiontypes":"[[247,4],[250,4]]","even":"[[247,4]]","items":"[[247,4]]","throw":"[[247,4]]","problem":"[[247,4]]","visible":"[[247,4]]","missing":"[[247,4]]","ca1021":"[[249,3]]","avoidoutparameters":"[[249,3]]","only":"[[249,3]]","advanced":"[[249,3]]","scenarios":"[[249,3]]","byref":"[[249,1]]","exception":"[[250,4]]","recorded":"[[250,4]]","creates":"[[258,5],[260,5],[262,5],[264,5],[251,4],[257,1],[259,1],[261,1],[263,1]]","based":"[[258,5],[260,5],[262,5],[264,5],[251,4],[257,1],[259,1],[261,1],[263,1]]","parametertype":"[[269,1006],[255,1],[251,1]]","equals":"[[271,1006],[281,1006],[292,1006],[311,1006],[251,1],[254,1],[273,1],[276,1],[284,1],[287,1],[303,1],[306,1]]","gethashcode":"[[272,1006],[282,1006],[293,1006],[312,1006],[251,1],[254,1],[273,1],[276,1],[284,1],[287,1],[303,1],[306,1]]","lt":"[[261,1000],[263,1000]]","gt":"[[261,1000],[263,1000]]","hashset":"[[268,5]]","nullable":"[[270,5],[295,1],[298,1],[301,1]]","obj":"[[271,5],[281,5],[292,5],[311,5]]","boolean":"[[271,2],[281,2],[292,2],[311,2]]","bool":"[[271,3],[281,3],[292,3],[311,3]]","integer":"[[272,1],[282,1],[293,1],[312,1]]","int":"[[272,4],[282,4],[293,4],[312,4],[295,1],[298,1],[301,1]]","src":"[[280,1006],[279,5],[273,1],[277,1]]","tostring":"[[283,1006],[294,1006],[313,1006],[273,1],[276,1],[284,1],[287,1],[303,1],[306,1]]","url":"[[279,1]]","errormessage":"[[291,1006],[290,5],[284,1],[288,1]]","needs":"[[295,1],[298,1],[301,1]]","have":"[[295,1],[298,1],[301,1]]","settable":"[[295,1],[298,1],[301,1]]","currently":"[[295,1],[298,1],[301,1]]","supports":"[[295,1],[298,1],[301,1]]","simple":"[[295,2],[298,2],[301,2]]","datetime":"[[295,1],[298,1],[301,1]]","etc":"[[295,2],[298,2],[301,2]]","complex":"[[295,2],[298,2],[301,2]]","poco":"[[295,1],[298,1],[301,1]]","nullables":"[[295,1],[298,1],[301,1]]","arrays":"[[295,2],[298,2],[301,2]]","key":"[[295,1],[298,1],[301,1]]","pairs":"[[295,1],[298,1],[301,1]]","keyvaluepair":"[[295,1],[298,1],[301,1]]","tkey":"[[295,3],[298,3],[301,3]]","tvalue":"[[295,3],[298,3],[301,3]]","tuples":"[[295,1],[298,1],[301,1]]","tuple":"[[295,2],[298,2],[301,2]]","t1":"[[295,2],[298,2],[301,2]]","t2":"[[295,1],[298,1],[301,1]]","dictionaries":"[[295,1],[298,1],[301,1]]","anything":"[[295,2],[298,2],[301,2]]","deriving":"[[295,2],[298,2],[301,2]]","collections":"[[295,1],[298,1],[301,1]]","icollection":"[[295,3],[298,3],[301,3]]","queryables":"[[295,1],[298,1],[301,1]]","iqueryable":"[[295,2],[298,2],[301,2]]","enumeration":"[[302,1002]]","implements":"[[314,2],[459,2],[472,2],[485,2]]","httpcontrollerdescriptor":"[[321,1007],[314,1],[317,1],[322,1],[324,1],[326,1],[329,1],[331,1]]","httpactiondescriptor":"[[323,1007],[327,5],[314,2],[317,2],[322,1],[324,1],[326,1],[329,1],[331,1]]","httpparameterdescriptor":"[[325,1007],[314,1],[317,1],[322,1],[324,1],[326,1],[329,1],[331,1]]","getresponsedocumentation":"[[327,1006],[317,1],[314,1]]","documentpath":"[[320,5]]","physical":"[[320,1]]","path":"[[320,1]]","controllerdescriptor":"[[321,5]]","actiondescriptor":"[[323,5],[327,5]]","parameterdescriptor":"[[325,5]]","antwortadressecontroller":"[[333,1006],[334,1004],[335,1004],[336,1004],[337,1004],[338,1004],[339,1003],[340,1003],[341,1003],[342,1003],[343,1003],[332,1]]","archivcontroller":"[[344,1006],[345,1004],[346,1004],[347,1004],[348,1004],[349,1004],[350,1003],[356,1003],[357,1003],[363,1003],[332,1]]","documentcontroller":"[[377,1006],[381,1004],[380,1004],[379,1004],[378,1004],[368,1004],[367,1004],[382,1004],[366,1004],[364,1004],[362,1004],[361,1004],[360,1004],[359,1004],[358,1004],[365,1004],[396,1003],[390,1003],[408,1003],[383,1003],[402,1003],[384,1003],[332,1]]","fileresult":"[[459,1007],[465,1006],[454,1004],[455,1004],[456,1004],[457,1004],[458,1004],[460,1004],[461,1004],[462,1004],[463,1004],[464,1004],[466,1003],[332,1]]","fileservice":"[[472,1006],[467,1004],[468,1004],[469,1004],[470,1004],[471,1004],[473,1004],[474,1004],[475,1004],[476,1004],[477,1004],[478,1003],[479,1003],[332,1]]","homecontroller":"[[409,1006],[393,1004],[385,1004],[386,1004],[387,1004],[388,1004],[389,1004],[391,1004],[392,1004],[414,1004],[394,1004],[395,1004],[410,1004],[411,1004],[412,1004],[413,1004],[415,1003],[332,1]]","testparam":"[[369,1006],[370,1004],[351,1004],[352,1004],[353,1004],[354,1004],[355,1004],[374,1004],[371,1004],[372,1004],[373,1004],[376,1003],[375,1003],[390,5],[366,1],[360,1],[377,1],[380,1],[332,1]]","unterschriftcontroller":"[[446,1006],[441,1004],[442,1004],[443,1004],[444,1004],[445,1004],[447,1004],[448,1004],[449,1004],[450,1004],[451,1004],[452,1003],[453,1003],[332,1]]","unterschriftresult":"[[485,1007],[491,1006],[480,1004],[481,1004],[482,1004],[483,1004],[484,1004],[486,1004],[487,1004],[488,1004],[489,1004],[490,1004],[492,1003],[332,1]]","ifileservice":"[[421,1006],[416,1004],[417,1004],[418,1004],[419,1004],[420,1004],[422,1004],[423,1004],[424,1004],[425,1004],[426,1004],[427,1003],[428,1003],[472,4],[332,1]]","apicontroller":"[[333,4],[344,4],[377,4],[446,4]]","getallmitarbeiterbymitarbeiternr":"[[342,1010],[336,1],[333,1]]","getallmitarbeiterbytgnummer":"[[341,1010],[336,1],[333,1]]","getbyid":"[[340,1010],[336,1],[333,1]]","getgetall":"[[339,1006],[336,1],[333,1]]","getmitarbeiterbyid":"[[343,1010],[336,1],[333,1]]","httpget":"[[339,4],[340,4],[341,4],[342,4],[343,4],[350,4],[356,4],[357,4],[383,4],[396,4],[402,4],[452,4],[453,4]]","route":"[[339,4],[340,4],[341,4],[342,4],[343,4],[350,4],[356,4],[357,4],[363,4],[383,4],[390,4],[396,4],[402,4],[408,4],[452,4],[453,4]]","antwortadresse":"[[339,4],[340,4],[341,4],[342,4],[343,4]]","getall":"[[339,4]]","optional":"[[408,7],[339,1],[340,1],[341,1],[342,1],[343,1],[465,1]]","outformat":"[[339,5],[340,5],[341,5],[342,5],[343,5]]","json":"[[339,2],[340,2],[341,2],[342,2],[343,2]]","ihttpactionresult":"[[339,5],[453,5],[452,5],[408,5],[402,5],[396,5],[390,5],[383,5],[363,5],[357,5],[356,5],[350,5],[343,5],[342,5],[341,5],[340,5],[459,4],[485,4]]","tgnummer":"[[341,5],[452,5],[453,5]]","mitarbeiternr":"[[342,5]]","archivdocbase64":"[[356,1006],[344,1],[347,1],[399,1],[405,1]]","archivdocfromiris":"[[363,1010],[344,1],[347,1],[399,1],[405,1]]","archivdoc_from_database":"[[350,1006],[344,1],[347,1],[399,1],[405,1]]","archiviert":"[[344,1],[347,1],[350,1]]","das":"[[344,1],[347,1],[350,1]]","dokument":"[[344,1],[347,1],[350,1]]","aus":"[[350,2],[347,1],[344,1]]","ondoc":"[[344,1],[347,1],[350,1]]","onbase":"[[350,2],[347,1],[344,1]]","checkdocid":"[[357,1010],[347,1],[344,1]]","archivedocfromdatabase":"[[350,4]]","dokid":"[[350,5],[356,5],[383,5],[396,5],[402,5]]","returncode":"[[350,1]]","200":"[[350,1]]","ok":"[[350,1]]","dokumenthandle":"[[350,1]]","param1":"[[375,1007],[354,1],[369,1],[373,1]]","param2":"[[376,1007],[354,1],[369,1],[373,1]]","archivedocbase64":"[[356,4]]","dokumentid":"[[357,5],[363,5]]","gendoc":"[[408,1010],[360,1],[366,1],[377,1],[380,1]]","getdocument":"[[383,1010],[360,1],[366,1],[377,1],[380,1]]","getdocumentjsonbody":"[[390,1010],[360,1],[366,1],[377,1],[380,1]]","getdocumentpdf":"[[396,1010],[360,1],[366,1],[377,1],[380,1]]","sendtoonbase":"[[402,1010],[360,1],[366,1],[377,1],[380,1]]","pagecollection":"[[384,1007],[361,1],[367,1],[377,1],[381,1]]","httppost":"[[363,4],[390,4],[408,4]]","frombody":"[[390,4]]","tp":"[[390,5]]","onbasecontroller":"[[397,1004],[398,1004],[399,1004],[400,1004],[401,1004],[403,1004],[404,1004],[405,1004],[406,1004],[407,1004]]","partnernr":"[[408,5]]","dokumenttypnr":"[[408,5]]","tgcreator":"[[408,5]]","tgresp":"[[408,5]]","tgul":"[[408,5]]","tgur":"[[408,5]]","faksimile":"[[408,5]]","fou":"[[408,5]]","printlogo":"[[408,5]]","getimageasbytearray":"[[428,1006],[479,1006],[418,1],[421,1],[424,1],[469,1],[472,1],[475,1]]","getimageasstream":"[[427,1006],[478,1006],[418,1],[421,1],[424,1],[469,1],[472,1],[475,1]]","stream":"[[427,5],[478,5]]","byte":"[[428,5],[479,5]]","base64image":"[[440,1006],[433,1],[434,1],[439,1]]","field":"[[440,1003]]","const":"[[440,4]]","ivborw0kggoaaaansuheugaaakqaaaa0cayaaaae05mcaaaog0leqvr4no1dcxgu1r3":"[[440,4]]","ze4mjcgbalkguax44fgu1undilqs9foovqsigrhihydcicoqwbbblv4rgxeicfvqs7":"[[440,4]]","qbwtbfs1wwaoihvbk8gjnjnedoxz3":"[[440,4]]","r3d38s3szoz18qp2fl932r3z97mm3nze":"[[440,4]]","r":"[[440,4]]","d":"[[440,4]]","lom5echpuszbd":"[[440,4]]","rwaa7ajjwo4ecc5ahoacad4h4bxasxkqiixgei3qmfwonz1ifhl3zhha0gonqfhwtmbyvk":"[[440,4]]","ses5hhyp8lrrvq8aun1gfzgan":"[[440,4]]","hybqcwoy":"[[440,4]]","bgyy2ikqg2ygyztocwaygb0cl80ycahdz3bll4icjjkcanoc8dqca7ctkswcutek8j5234ucdxyquknf4kucoata1rplclcprundecx93cntbdkjwjykzzzwes4qgygcx0kti1g1":"[[440,4]]","idvfgh0ckuivkesalnvwyf0sjwoyfria9gpwtziic95uqqdibxmkgx8muihkygc":"[[440,4]]","tempa02pagtmu7byohedxzgetcsnoe0voziykgzyz4mnzbt40hcvrszcbssmedhs":"[[440,4]]","qyej8tawa0oqo21ozhikiyerlkzjgksagfuxkhglkiyula92ytrnnpima5ivekkib8bbg6xsvf7naemowtlj3lrvribwwmdmqydeifkvruqcsaaf0xs0ciy78likv5ct8ihvzdr45axhraviz9uazlobzaryo8gyyclrmiqkv5cvzxmrr9dxrrbpdzkjbn27mt8qoqljyxd3fg0zysblvmg9nbimg6ircifag62uu0encvj5zazb1ria3p54m90yjhusflzgoyjbg6phwfmi9gjscanbicze3vqkqlaabtgoxiqvahax34xnw0hsahan9us1u9wmvpx6gc8lmj1cjgwsqna":"[[440,4]]","3ge0whamab":"[[440,4]]","z37qeyvwqiqhv0iczyjnxahkjarvfftaabwc0nxamgkimk6joe2sjikmtywwalpixhtjqfje42wakwfkmrz":"[[440,4]]","hbl8l234op4auaageaknguztcai42bfi4rxmpi48ognzetlerqb8fwdj66htlt3irzo8aiep1wjsccv9i":"[[440,4]]","p7":"[[440,4]]","dwjedoyjpkk4":"[[440,4]]","qwgwfoxnyazmewunibnyxffhjvupdrzxpvf2myh":"[[440,4]]","5ofml8":"[[440,4]]","tgz2i":"[[440,4]]","ly2slfevc7krx2okeeyhthas9peb5ksrjqxs9v8pojwqnstef7z":"[[440,4]]","5totpt56mfzhxvcsbl8isdqbevm":"[[440,4]]","gpmmmn66":"[[440,4]]","wjcmhrwgwi2fghl7marpydymmol":"[[440,4]]","qrmgpbfdkpfwe9qd9ubdzamojcjysblaf":"[[440,4]]","kgfem8xqfghyapbg3psghpmapriqs8h8bopvfdbwcvsvnrkz8bcafnldiu624ttm6p2y4ot5shfkyssh5uz8q0vbyzeqpxs1i":"[[440,4]]","cmbcxb6njevuvnxri9fv3wjlhrs0mytjywauiepbryfhog7dcfeskxddc518":"[[440,4]]","fqah0m":"[[440,4]]","l7owfqfrvjjdd9o1x9kgiyuisjavzxf4g8aaafsanghwvkjj3yhj":"[[440,4]]","jtn6ugn4howf1nchrnqxakd":"[[440,4]]","ugmxglytvv":"[[440,4]]","v0nzypodx0rs1epyq":"[[440,4]]","ptzvy0c8svktfgegcax":"[[440,4]]","haec":"[[440,4]]","mswlqpgqmfvtew0pkat5vjlunf9yqjplhmj5":"[[440,4]]","v0wy":"[[440,4]]","jvomojj6wpffyu7g":"[[440,4]]","phn":"[[440,4]]","upt5s":"[[440,4]]","3x":"[[440,4]]","dctej470apqwa3cbhtpeherxj":"[[440,4]]","utoiojy":"[[440,4]]","bnaytadov6f0ch62ma62mwfahghotztmn7n7hd9lgaqd8az3b":"[[440,4]]","jzohegwfsbxaz":"[[440,4]]","w02":"[[440,4]]","hzymz":"[[440,4]]","tvl5qezkh":"[[440,4]]","q2jxzuqwbmur8a":"[[440,4]]","yqjn6nptfno0hyssjt7tejyopbdjhuo1xeuphxer4lvyfjgxhn3ethmav8smv4iwvvag1lrtb4gsjrds6ecyg6nhrpp1509vcnvobgiruxvur6fmys3sptguj2ayrellv5crqenz4bvvmsanal5aydxawnvzmd4vsqnunqo528vy8fzptli91qseyvt02m5idkqjbti2xeucn0mil2bpbqstkckys9gh3ybztxnlggxsg5hj57iiqrdximjyodqowbyijsqsfm4krklw5jxzclajparevsnv0fw5mrsq4o6ay":"[[440,4]]","ue4r2dfvuzv7anaqzkyqyfkyp2ue1p5jqwzr0crv":"[[440,4]]","rzoyrqhp4sgzbrgmhvdjzhytl0lixm60wyxdn4soyxrdus38":"[[440,4]]","jt5bq9iqvt1qrhxbnvqgewyiud8v9q":"[[440,4]]","ne9jgekqz2udzefvyzhvvidbyr5rzzz6gdashlomefet2e":"[[440,4]]","5ocoxjxvjmar8gpnkkkdnb3lac4unanmucsjdp3xlvycurpbkfhrglczwfmtfxnvjklhdjcjwahu":"[[440,4]]","4ov92r4c6ev4e7xeir0gulx0pe21noso4jfhk93k73imvcwdpgf4":"[[440,4]]","xwalxruo5aqoko":"[[440,4]]","jxjuc02ii":"[[440,4]]","l8iy4h3fv4":"[[440,4]]","tdna1hnwthoqekcqhdnjv":"[[440,4]]","b99evxnxo5nxokmio3uunjox6xch8aq":"[[440,4]]","glhpae3fiqitsvszeccv0nad5hjjaafviubtw":"[[440,4]]","12y":"[[440,4]]","watxi2yjonaal9m":"[[440,4]]","k5ckboettrsh7qvtmphfjzonlvqijhbkjsb0tn5xngwzrbdug":"[[440,4]]","rtkakjs5kchnkrmiqke3rizki":"[[440,4]]","zrkedlxbu6hirokx":"[[440,4]]","lum5powg60kftcm":"[[440,4]]","abgncudvopfsefa":"[[440,4]]","yojbg":"[[440,4]]","vp9t5fe0giwryzsmd5tki90hkmdukk245xk0":"[[440,4]]","qvogvj2eahgetlvdhsscuatm40zvsqekiquuoinpqu4wk9dqogg":"[[440,4]]","mn0ke":"[[440,4]]","i6o0hbvkz":"[[440,4]]","xiuf0t":"[[440,4]]","hnzvlvdprnqn80o11ffsf0v7cqxvpbmzoxcc972j4z":"[[440,4]]","rohzlaprgg30to1wno7czhhr":"[[440,4]]","i21vo3ppzzjojg":"[[440,4]]","cftsfw7":"[[440,4]]","wdnxeeqw":"[[440,4]]","tofyty9gxy9sbc6ehijflkmrdnkf8xmjyxg51zod2nh6uafq5mutiifbg8vkczcxv":"[[440,4]]","p":"[[440,4]]","ciwajcwppqqfnzszois2kz4ixwawh":"[[440,4]]","hl6ftrvee5mzst4mumyrqjjkaej4xtvm":"[[440,4]]","etavn0f3xiwssoq14pclx0uzv0bbonckjti":"[[440,4]]","xrbstnyh3fwwqvpbtqs2urln":"[[440,4]]","xbf8ezfbwgusaairqruwnnqdxqw1lsj3qzc":"[[440,4]]","dybbjqltpzpmmz2":"[[440,4]]","zc95bu1rgqskvbted047qjk9lhqors":"[[440,4]]","keuvftdmrpw0jhsnhiz4fz1u10foohf0k":"[[440,4]]","70xyt1ez1opmwjx6zadtkgf8pbqczfahga8lggyl84hnic73leuvt9a6vy3hy2eoxgewcpqhr2ozvge8libvrh":"[[440,4]]","sz2dea1dggn7kxhjebrx3idh59l":"[[440,4]]","28":"[[440,4]]","oasghpqfddjpdf1rysym0plwtbcyhue2npw31rkvsvcsnpy0v5w7gbw":"[[440,4]]","kklsz0gwwje4f5stvrsbxge17epnu":"[[440,4]]","5m0m0tiso4pjh0utigj2q":"[[440,4]]","ph0hamdysxyfakfabxt5ge":"[[440,4]]","c7kev3xfcqycmzqxspfp5q8rkbbv":"[[440,4]]","hvkoduzu":"[[440,4]]","gjhdcqpnritvmxuyayar0df2ec96dhkagjkqhshtfz9bung53htcjc2zrfjrkhebvvzobqajklcyrfxyn8z":"[[440,4]]","eyuppmskwrqljvp2a9gigcvn3ckncende11hlp93":"[[440,4]]","pgwpkg9xzasmfhxjdxsy0racfnmqw2iqvhzdfuxyyk3oqnb6laikjr4sv0wph3wzxl12jx4yngkdi8uosbqupayi1ipllkitwzttsxuks":"[[440,4]]","iy20ijmbskd9hjvx1wz8deqxn9mrt":"[[440,4]]","nuzz072z30vktiovcojutdywxgbiby":"[[440,4]]","kby":"[[440,4]]","bxpgcoxky1knexjbndk2tdcw3t0zmyld":"[[440,4]]","wyowbb1v0rpfveoi":"[[440,4]]","7mpoatqz1ggeocqmaqqu0p":"[[440,4]]","zlzwv5o2s6ty5le9vjt":"[[440,4]]","wx":"[[440,4]]","w1xfvyjbwmn7ycc1mfeudhdjmf1mffee8h4km":"[[440,4]]","o":"[[440,4]]","y3qvrcetx4d2lskj1jkkpue22tvmohcqu4xtyoj4ayx3wg5":"[[440,4]]","zwanwizndbl":"[[440,4]]","t6ryzdohonqlwb92haikktk9okvkum69ozejguw3htq60vqd":"[[440,4]]","ddka2xj87gizmai90ipu8lgwkmyyz48rw3rjdoqqubjanltskqbxd8cxjzqzardksiyjsqc31cc4mqtgacqhadv9zzrqmouzk0zotfj":"[[440,4]]","ewonp9nmlzhryhmmsdk0cqy0prquylhb6vvzgbuj89bsg1fab0qzdtzgaknm8eguqwoquiozicyuxijwt5lgn3zvkqwd0v381mgptzowx6b1d1g3":"[[440,4]]","ohva6ngiey5ztu03ixqnpimediq4zj16yz9cwa4gx":"[[440,4]]","pyhxl66qt2efyzll":"[[440,4]]","aplpgzlhpb":"[[440,4]]","ohcntl4wksxq5fdhsay6abpvndcec1xxkbgu55jn1f2tem87clmika2wz":"[[440,4]]","2p":"[[440,4]]","oulcuqbmwe7hy":"[[440,4]]","d4grxfo9edd0qxqhu5qtxzcebhhdk2ap":"[[440,4]]","6lgmaxm8ixzwy6u":"[[440,4]]","cxr":"[[440,4]]","4kero7gdj4o91fvjranjdcn":"[[440,4]]","qeooqeaakuece1j7oqohkymooaxwmpbsx":"[[440,4]]","mjrehp6mn4wa7mvgzhzd":"[[440,4]]","i":"[[440,4]]","chfdtf7ed0ykvllsfsve6a0lwo6pce2ajddx5zgna23g5pgdph0tf2nao6nmpjqzpuzfycqdhm5jzh3kyxvtlzncfoxkohcs9pppqbnkg4ohzf":"[[440,4]]","achjdkgunx2ygpo9l0hqc":"[[440,4]]","ckt6xxigmq0rvvhlkjtii9jxf2qgmmykswrtuwyjgx8q7pppxooz1zwm3thnkxgqxrdzfx1emaskvdwomg7sbhb":"[[440,4]]","n9jbcs7aoclwst0haqu7cynqcibh5uas0etjumchngmzbfep3mgl4zzxdl5":"[[440,4]]","zikjscualxtsrgdrapb":"[[440,4]]","mwjxchkxiquaaaaasuvork5cyii":"[[440,4]]","getunterschrift":"[[453,1010],[443,1],[446,1],[449,1]]","getunterschriftasbase64":"[[452,1010],[443,1],[446,1],[449,1]]","executeasync":"[[466,1005],[492,1005],[456,1],[459,1],[462,1],[482,1],[485,1],[488,1]]","cancellationtoken":"[[466,8],[492,8],[456,1],[459,1],[462,1],[482,1],[485,1],[488,1]]","filepath":"[[465,5]]","contenttype":"[[465,5]]","null":"[[465,2]]","task":"[[466,4],[492,4]]","memorystream":"[[491,5],[485,1]]","filename":"[[491,5]]","application_start":"[[504,1006],[495,1],[498,1],[501,1]]","httpapplication":"[[498,4]]","protected":"[[504,4]]","namespaces":"[[505,1]]"}; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_-1.js b/API_NetFramework/VSdoc/toc--/t_-1.js new file mode 100644 index 00000000..257b5a4c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_-1.js @@ -0,0 +1 @@ +c['-1']=[['2',"API_NetFramework Reference","topic_00000000000000C7.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_101.js b/API_NetFramework/VSdoc/toc--/t_101.js new file mode 100644 index 00000000..fe4d45ef --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_101.js @@ -0,0 +1 @@ +c['101']=[['102',"Equals Method","topic_0000000000000086.html",0],['103',"GetHashCode Method","topic_0000000000000087.html",0],['104',"ToString Method","topic_0000000000000088.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_105.js b/API_NetFramework/VSdoc/toc--/t_105.js new file mode 100644 index 00000000..2be1da8e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_105.js @@ -0,0 +1 @@ +c['105']=[['106',"Methods","topic_0000000000000089_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_106.js b/API_NetFramework/VSdoc/toc--/t_106.js new file mode 100644 index 00000000..3d1d4777 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_106.js @@ -0,0 +1 @@ +c['106']=[['107',"GenerateObject Method","topic_000000000000008A.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_108.js b/API_NetFramework/VSdoc/toc--/t_108.js new file mode 100644 index 00000000..5c70bec0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_108.js @@ -0,0 +1 @@ +c['108']=[['109',"TextSample Constructor","topic_000000000000008F.html",0],['110',"Properties","topic_000000000000008E_props--.html",1],['112',"Methods","topic_000000000000008E_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_11.js b/API_NetFramework/VSdoc/toc--/t_11.js new file mode 100644 index 00000000..0675310b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_11.js @@ -0,0 +1 @@ +c['11']=[['12',"Methods","topic_0000000000000005_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_110.js b/API_NetFramework/VSdoc/toc--/t_110.js new file mode 100644 index 00000000..0127b3c1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_110.js @@ -0,0 +1 @@ +c['110']=[['111',"Text Property","topic_0000000000000090.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_112.js b/API_NetFramework/VSdoc/toc--/t_112.js new file mode 100644 index 00000000..95959074 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_112.js @@ -0,0 +1 @@ +c['112']=[['113',"Equals Method","topic_0000000000000091.html",0],['114',"GetHashCode Method","topic_0000000000000092.html",0],['115',"ToString Method","topic_0000000000000093.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_116.js b/API_NetFramework/VSdoc/toc--/t_116.js new file mode 100644 index 00000000..53b7865e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_116.js @@ -0,0 +1 @@ +c['116']=[['117',"XmlDocumentationProvider Constructor","topic_0000000000000095.html",0],['118',"Methods","topic_0000000000000094_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_118.js b/API_NetFramework/VSdoc/toc--/t_118.js new file mode 100644 index 00000000..22556ab0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_118.js @@ -0,0 +1 @@ +c['118']=[['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html",1],['125',"GetResponseDocumentation Method","topic_0000000000000099.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_119.js b/API_NetFramework/VSdoc/toc--/t_119.js new file mode 100644 index 00000000..d6cbfdc0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_119.js @@ -0,0 +1 @@ +c['119']=[['120',"GetDocumentation(HttpControllerDescriptor) Method","topic_0000000000000096.html",0],['121',"GetDocumentation(MemberInfo) Method","topic_000000000000009A.html",0],['122',"GetDocumentation(Type) Method","topic_000000000000009B.html",0],['123',"GetDocumentation(HttpActionDescriptor) Method","topic_0000000000000097.html",0],['124',"GetDocumentation(HttpParameterDescriptor) Method","topic_0000000000000098.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_12.js b/API_NetFramework/VSdoc/toc--/t_12.js new file mode 100644 index 00000000..a7f80974 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_12.js @@ -0,0 +1 @@ +c['12']=[['13',"RegisterRoutes Method","topic_0000000000000006.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_127.js b/API_NetFramework/VSdoc/toc--/t_127.js new file mode 100644 index 00000000..a05fc0d9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_127.js @@ -0,0 +1 @@ +c['127']=[['128',"HelpController Class","topic_0000000000000011.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_128.js b/API_NetFramework/VSdoc/toc--/t_128.js new file mode 100644 index 00000000..a1b8ccbe --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_128.js @@ -0,0 +1 @@ +c['128']=[['129',"HelpController Constructor","topic_0000000000000012_overloads--.html",1],['132',"Properties","topic_0000000000000011_props--.html",1],['134',"Methods","topic_0000000000000011_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_129.js b/API_NetFramework/VSdoc/toc--/t_129.js new file mode 100644 index 00000000..6d049d97 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_129.js @@ -0,0 +1 @@ +c['129']=[['130',"HelpController() Constructor","topic_0000000000000012.html",0],['131',"HelpController(HttpConfiguration) Constructor","topic_0000000000000013.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_132.js b/API_NetFramework/VSdoc/toc--/t_132.js new file mode 100644 index 00000000..9f8629dc --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_132.js @@ -0,0 +1 @@ +c['132']=[['133',"Configuration Property","topic_0000000000000014.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_134.js b/API_NetFramework/VSdoc/toc--/t_134.js new file mode 100644 index 00000000..e016d532 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_134.js @@ -0,0 +1 @@ +c['134']=[['135',"Api Method","topic_0000000000000016.html",0],['136',"Index Method","topic_0000000000000015.html",0],['137',"ResourceModel Method","topic_0000000000000017.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_138.js b/API_NetFramework/VSdoc/toc--/t_138.js new file mode 100644 index 00000000..8b7daa71 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_138.js @@ -0,0 +1 @@ +c['138']=[['139',"CollectionModelDescription Class","topic_000000000000002D.html",1],['142',"ComplexTypeModelDescription Class","topic_000000000000002F.html",1],['146',"DictionaryModelDescription Class","topic_0000000000000032.html",0],['147',"EnumTypeModelDescription Class","topic_0000000000000033.html",1],['151',"EnumValueDescription Class","topic_0000000000000036.html",1],['156',"KeyValuePairModelDescription Class","topic_000000000000003D.html",1],['160',"ModelDescription Class","topic_0000000000000040.html",1],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html",1],['171',"ModelNameAttribute Class","topic_0000000000000048.html",1],['175',"ParameterAnnotation Class","topic_000000000000004B.html",1],['179',"ParameterDescription Class","topic_000000000000004E.html",1],['186',"SimpleTypeModelDescription Class","topic_0000000000000054.html",0],['187',"IModelDocumentationProvider Interface","topic_000000000000003A.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_139.js b/API_NetFramework/VSdoc/toc--/t_139.js new file mode 100644 index 00000000..81e8614e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_139.js @@ -0,0 +1 @@ +c['139']=[['140',"Properties","topic_000000000000002D_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_14.js b/API_NetFramework/VSdoc/toc--/t_14.js new file mode 100644 index 00000000..ecc40408 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_14.js @@ -0,0 +1 @@ +c['14']=[['15',"Methods","topic_0000000000000007_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_140.js b/API_NetFramework/VSdoc/toc--/t_140.js new file mode 100644 index 00000000..89bb88aa --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_140.js @@ -0,0 +1 @@ +c['140']=[['141',"ElementDescription Property","topic_000000000000002E.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_142.js b/API_NetFramework/VSdoc/toc--/t_142.js new file mode 100644 index 00000000..51873496 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_142.js @@ -0,0 +1 @@ +c['142']=[['143',"ComplexTypeModelDescription Constructor","topic_0000000000000030.html",0],['144',"Properties","topic_000000000000002F_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_144.js b/API_NetFramework/VSdoc/toc--/t_144.js new file mode 100644 index 00000000..62f7694c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_144.js @@ -0,0 +1 @@ +c['144']=[['145',"Properties Property","topic_0000000000000031.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_147.js b/API_NetFramework/VSdoc/toc--/t_147.js new file mode 100644 index 00000000..255c1175 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_147.js @@ -0,0 +1 @@ +c['147']=[['148',"EnumTypeModelDescription Constructor","topic_0000000000000034.html",0],['149',"Properties","topic_0000000000000033_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_149.js b/API_NetFramework/VSdoc/toc--/t_149.js new file mode 100644 index 00000000..893ab881 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_149.js @@ -0,0 +1 @@ +c['149']=[['150',"Values Property","topic_0000000000000035.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_15.js b/API_NetFramework/VSdoc/toc--/t_15.js new file mode 100644 index 00000000..268589bd --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_15.js @@ -0,0 +1 @@ +c['15']=[['16',"Register Method","topic_0000000000000008.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_151.js b/API_NetFramework/VSdoc/toc--/t_151.js new file mode 100644 index 00000000..f9217ca4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_151.js @@ -0,0 +1 @@ +c['151']=[['152',"Properties","topic_0000000000000036_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_152.js b/API_NetFramework/VSdoc/toc--/t_152.js new file mode 100644 index 00000000..63751a12 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_152.js @@ -0,0 +1 @@ +c['152']=[['153',"Documentation Property","topic_0000000000000037.html",0],['154',"Name Property","topic_0000000000000038.html",0],['155',"Value Property","topic_0000000000000039.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_156.js b/API_NetFramework/VSdoc/toc--/t_156.js new file mode 100644 index 00000000..9616a05e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_156.js @@ -0,0 +1 @@ +c['156']=[['157',"Properties","topic_000000000000003D_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_157.js b/API_NetFramework/VSdoc/toc--/t_157.js new file mode 100644 index 00000000..5f742eb8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_157.js @@ -0,0 +1 @@ +c['157']=[['158',"KeyModelDescription Property","topic_000000000000003E.html",0],['159',"ValueModelDescription Property","topic_000000000000003F.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_160.js b/API_NetFramework/VSdoc/toc--/t_160.js new file mode 100644 index 00000000..4f3ba0d2 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_160.js @@ -0,0 +1 @@ +c['160']=[['161',"Properties","topic_0000000000000040_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_161.js b/API_NetFramework/VSdoc/toc--/t_161.js new file mode 100644 index 00000000..ae9115e4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_161.js @@ -0,0 +1 @@ +c['161']=[['162',"Documentation Property","topic_0000000000000041.html",0],['163',"ModelType Property","topic_0000000000000042.html",0],['164',"Name Property","topic_0000000000000043.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_165.js b/API_NetFramework/VSdoc/toc--/t_165.js new file mode 100644 index 00000000..3a4a794b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_165.js @@ -0,0 +1 @@ +c['165']=[['166',"ModelDescriptionGenerator Constructor","topic_0000000000000045.html",0],['167',"Properties","topic_0000000000000044_props--.html",1],['169',"Methods","topic_0000000000000044_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_167.js b/API_NetFramework/VSdoc/toc--/t_167.js new file mode 100644 index 00000000..9f8538c9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_167.js @@ -0,0 +1 @@ +c['167']=[['168',"GeneratedModels Property","topic_0000000000000046.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_169.js b/API_NetFramework/VSdoc/toc--/t_169.js new file mode 100644 index 00000000..c64f19e5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_169.js @@ -0,0 +1 @@ +c['169']=[['170',"GetOrCreateModelDescription Method","topic_0000000000000047.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_17.js b/API_NetFramework/VSdoc/toc--/t_17.js new file mode 100644 index 00000000..e1380235 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_17.js @@ -0,0 +1 @@ +c['17']=[['18',"Methods","topic_00000000000000C5_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_171.js b/API_NetFramework/VSdoc/toc--/t_171.js new file mode 100644 index 00000000..95d80d43 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_171.js @@ -0,0 +1 @@ +c['171']=[['172',"ModelNameAttribute Constructor","topic_0000000000000049.html",0],['173',"Properties","topic_0000000000000048_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_173.js b/API_NetFramework/VSdoc/toc--/t_173.js new file mode 100644 index 00000000..e8a8ee31 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_173.js @@ -0,0 +1 @@ +c['173']=[['174',"Name Property","topic_000000000000004A.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_175.js b/API_NetFramework/VSdoc/toc--/t_175.js new file mode 100644 index 00000000..75f91bb4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_175.js @@ -0,0 +1 @@ +c['175']=[['176',"Properties","topic_000000000000004B_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_176.js b/API_NetFramework/VSdoc/toc--/t_176.js new file mode 100644 index 00000000..d94c04e2 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_176.js @@ -0,0 +1 @@ +c['176']=[['177',"AnnotationAttribute Property","topic_000000000000004C.html",0],['178',"Documentation Property","topic_000000000000004D.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_179.js b/API_NetFramework/VSdoc/toc--/t_179.js new file mode 100644 index 00000000..c9674ed8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_179.js @@ -0,0 +1 @@ +c['179']=[['180',"ParameterDescription Constructor","topic_000000000000004F.html",0],['181',"Properties","topic_000000000000004E_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_18.js b/API_NetFramework/VSdoc/toc--/t_18.js new file mode 100644 index 00000000..8cd5f678 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_18.js @@ -0,0 +1 @@ +c['18']=[['19',"Application_Start Method","topic_00000000000000C6.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_181.js b/API_NetFramework/VSdoc/toc--/t_181.js new file mode 100644 index 00000000..ec5bf64b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_181.js @@ -0,0 +1 @@ +c['181']=[['182',"Annotations Property","topic_0000000000000050.html",0],['183',"Documentation Property","topic_0000000000000051.html",0],['184',"Name Property","topic_0000000000000052.html",0],['185',"TypeDescription Property","topic_0000000000000053.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_187.js b/API_NetFramework/VSdoc/toc--/t_187.js new file mode 100644 index 00000000..de0312a6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_187.js @@ -0,0 +1 @@ +c['187']=[['188',"Methods","topic_000000000000003A_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_188.js b/API_NetFramework/VSdoc/toc--/t_188.js new file mode 100644 index 00000000..739722b3 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_188.js @@ -0,0 +1 @@ +c['188']=[['189',"GetDocumentation Method","topic_000000000000003B_overloads--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_189.js b/API_NetFramework/VSdoc/toc--/t_189.js new file mode 100644 index 00000000..c7570996 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_189.js @@ -0,0 +1 @@ +c['189']=[['190',"GetDocumentation(MemberInfo) Method","topic_000000000000003B.html",0],['191',"GetDocumentation(Type) Method","topic_000000000000003C.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_192.js b/API_NetFramework/VSdoc/toc--/t_192.js new file mode 100644 index 00000000..6c5fbc6f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_192.js @@ -0,0 +1 @@ +c['192']=[['193',"HelpPageApiModel Class","topic_0000000000000056.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_193.js b/API_NetFramework/VSdoc/toc--/t_193.js new file mode 100644 index 00000000..06179e5e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_193.js @@ -0,0 +1 @@ +c['193']=[['194',"HelpPageApiModel Constructor","topic_0000000000000057.html",0],['195',"Properties","topic_0000000000000056_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_195.js b/API_NetFramework/VSdoc/toc--/t_195.js new file mode 100644 index 00000000..b345cd71 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_195.js @@ -0,0 +1 @@ +c['195']=[['196',"ApiDescription Property","topic_0000000000000058.html",0],['197',"ErrorMessages Property","topic_0000000000000061.html",0],['198',"RequestBodyParameters Property","topic_000000000000005C.html",0],['199',"RequestDocumentation Property","topic_000000000000005A.html",0],['200',"RequestModelDescription Property","topic_000000000000005B.html",0],['201',"ResourceDescription Property","topic_000000000000005D.html",0],['202',"ResourceProperties Property","topic_000000000000005E.html",0],['203',"SampleRequests Property","topic_000000000000005F.html",0],['204',"SampleResponses Property","topic_0000000000000060.html",0],['205',"UriParameters Property","topic_0000000000000059.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_2.js b/API_NetFramework/VSdoc/toc--/t_2.js new file mode 100644 index 00000000..ac34f34f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_2.js @@ -0,0 +1 @@ +c['2']=[['4',"API_NetFramework Namespace","topic_0000000000000000.html",1],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html",1],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html",1],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html",1],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html",1],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_20.js b/API_NetFramework/VSdoc/toc--/t_20.js new file mode 100644 index 00000000..33ad2c03 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_20.js @@ -0,0 +1 @@ +c['20']=[['21',"Methods","topic_0000000000000009_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_206.js b/API_NetFramework/VSdoc/toc--/t_206.js new file mode 100644 index 00000000..f7a836ab --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_206.js @@ -0,0 +1 @@ +c['206']=[['207',"AntwortAdresseController Class","topic_000000000000009D.html",1],['214',"ArchivController Class","topic_00000000000000A3.html",1],['220',"DocumentController Class","topic_00000000000000AB.html",1],['229',"FileResult Class","topic_00000000000000BC.html",1],['233',"FileService Class","topic_00000000000000BF.html",1],['237',"HomeController Class","topic_00000000000000B2.html",1],['240',"Image Class","topic_00000000000000B7.html",1],['243',"TestParam Class","topic_00000000000000A8.html",1],['247',"UnterschriftController Class","topic_00000000000000B9.html",1],['251',"unterschriftResult Class","topic_00000000000000C2.html",1],['255',"IFileService Interface","topic_00000000000000B4.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_207.js b/API_NetFramework/VSdoc/toc--/t_207.js new file mode 100644 index 00000000..9a5870d5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_207.js @@ -0,0 +1 @@ +c['207']=[['208',"Methods","topic_000000000000009D_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_208.js b/API_NetFramework/VSdoc/toc--/t_208.js new file mode 100644 index 00000000..885d670f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_208.js @@ -0,0 +1 @@ +c['208']=[['209',"GetAllMitarbeiterByMitarbeiterNr Method","topic_00000000000000A1.html",0],['210',"GetAllMitarbeiterByTGNummer Method","topic_00000000000000A0.html",0],['211',"GetByID Method","topic_000000000000009F.html",0],['212',"GetGetAll Method","topic_000000000000009E.html",0],['213',"GetMitarbeiterByID Method","topic_00000000000000A2.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_21.js b/API_NetFramework/VSdoc/toc--/t_21.js new file mode 100644 index 00000000..26d6f0b0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_21.js @@ -0,0 +1 @@ +c['21']=[['22',"Register Method","topic_000000000000000A.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_214.js b/API_NetFramework/VSdoc/toc--/t_214.js new file mode 100644 index 00000000..88e933ac --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_214.js @@ -0,0 +1 @@ +c['214']=[['215',"Methods","topic_00000000000000A3_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_215.js b/API_NetFramework/VSdoc/toc--/t_215.js new file mode 100644 index 00000000..4bfdc52d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_215.js @@ -0,0 +1 @@ +c['215']=[['216',"ArchivDocBase64 Method","topic_00000000000000A5.html",0],['217',"ArchivDocFromIRIS Method","topic_00000000000000A7.html",0],['218',"ArchivDoc_From_Database Method","topic_00000000000000A4.html",0],['219',"CheckDocID Method","topic_00000000000000A6.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_220.js b/API_NetFramework/VSdoc/toc--/t_220.js new file mode 100644 index 00000000..a6000977 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_220.js @@ -0,0 +1 @@ +c['220']=[['221',"Properties","topic_00000000000000AB_props--.html",1],['223',"Methods","topic_00000000000000AB_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_221.js b/API_NetFramework/VSdoc/toc--/t_221.js new file mode 100644 index 00000000..cf155276 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_221.js @@ -0,0 +1 @@ +c['221']=[['222',"pageCollection Property","topic_00000000000000AD.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_223.js b/API_NetFramework/VSdoc/toc--/t_223.js new file mode 100644 index 00000000..57bb779d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_223.js @@ -0,0 +1 @@ +c['223']=[['224',"GenDoc Method","topic_00000000000000B1.html",0],['225',"GetDocument Method","topic_00000000000000AC.html",0],['226',"GetDocumentJSONBody Method","topic_00000000000000AE.html",0],['227',"GetDocumentPDF Method","topic_00000000000000AF.html",0],['228',"SendToOnBase Method","topic_00000000000000B0.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_229.js b/API_NetFramework/VSdoc/toc--/t_229.js new file mode 100644 index 00000000..315cfa1c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_229.js @@ -0,0 +1 @@ +c['229']=[['230',"FileResult Constructor","topic_00000000000000BD.html",0],['231',"Methods","topic_00000000000000BC_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_23.js b/API_NetFramework/VSdoc/toc--/t_23.js new file mode 100644 index 00000000..ce65f8f8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_23.js @@ -0,0 +1 @@ +c['23']=[['24',"ApiDescriptionExtensions Class","topic_000000000000000C.html",1],['27',"HelpPageAreaRegistration Class","topic_0000000000000018.html",1],['32',"HelpPageConfig Class","topic_000000000000000E.html",1],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html",1],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html",1],['73',"HelpPageSampleKey Class","topic_0000000000000070.html",1],['89',"ImageSample Class","topic_000000000000007D.html",1],['97',"InvalidSample Class","topic_0000000000000083.html",1],['105',"ObjectGenerator Class","topic_0000000000000089.html",1],['108',"TextSample Class","topic_000000000000008E.html",1],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html",1],['126',"SampleDirection Enumeration","topic_000000000000008B.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_231.js b/API_NetFramework/VSdoc/toc--/t_231.js new file mode 100644 index 00000000..0d86dc9a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_231.js @@ -0,0 +1 @@ +c['231']=[['232',"ExecuteAsync Method","topic_00000000000000BE.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_233.js b/API_NetFramework/VSdoc/toc--/t_233.js new file mode 100644 index 00000000..24da0713 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_233.js @@ -0,0 +1 @@ +c['233']=[['234',"Methods","topic_00000000000000BF_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_234.js b/API_NetFramework/VSdoc/toc--/t_234.js new file mode 100644 index 00000000..9d0436c7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_234.js @@ -0,0 +1 @@ +c['234']=[['235',"GetImageAsByteArray Method","topic_00000000000000C1.html",0],['236',"GetImageAsStream Method","topic_00000000000000C0.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_237.js b/API_NetFramework/VSdoc/toc--/t_237.js new file mode 100644 index 00000000..d979b608 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_237.js @@ -0,0 +1 @@ +c['237']=[['238',"Methods","topic_00000000000000B2_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_238.js b/API_NetFramework/VSdoc/toc--/t_238.js new file mode 100644 index 00000000..f77ec76a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_238.js @@ -0,0 +1 @@ +c['238']=[['239',"Index Method","topic_00000000000000B3.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_24.js b/API_NetFramework/VSdoc/toc--/t_24.js new file mode 100644 index 00000000..3e097e74 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_24.js @@ -0,0 +1 @@ +c['24']=[['25',"Methods","topic_000000000000000C_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_240.js b/API_NetFramework/VSdoc/toc--/t_240.js new file mode 100644 index 00000000..1a9f38bb --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_240.js @@ -0,0 +1 @@ +c['240']=[['241',"Fields","topic_00000000000000B7_vars--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_241.js b/API_NetFramework/VSdoc/toc--/t_241.js new file mode 100644 index 00000000..f87abd23 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_241.js @@ -0,0 +1 @@ +c['241']=[['242',"Base64Image Field","topic_00000000000000B8.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_243.js b/API_NetFramework/VSdoc/toc--/t_243.js new file mode 100644 index 00000000..ee022101 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_243.js @@ -0,0 +1 @@ +c['243']=[['244',"Properties","topic_00000000000000A8_props--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_244.js b/API_NetFramework/VSdoc/toc--/t_244.js new file mode 100644 index 00000000..7f604102 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_244.js @@ -0,0 +1 @@ +c['244']=[['245',"param1 Property","topic_00000000000000A9.html",0],['246',"param2 Property","topic_00000000000000AA.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_247.js b/API_NetFramework/VSdoc/toc--/t_247.js new file mode 100644 index 00000000..4f702475 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_247.js @@ -0,0 +1 @@ +c['247']=[['248',"Methods","topic_00000000000000B9_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_248.js b/API_NetFramework/VSdoc/toc--/t_248.js new file mode 100644 index 00000000..52792469 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_248.js @@ -0,0 +1 @@ +c['248']=[['249',"GetUnterschrift Method","topic_00000000000000BB.html",0],['250',"GetUnterschriftAsBase64 Method","topic_00000000000000BA.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_25.js b/API_NetFramework/VSdoc/toc--/t_25.js new file mode 100644 index 00000000..5a6fbca5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_25.js @@ -0,0 +1 @@ +c['25']=[['26',"GetFriendlyId Method","topic_000000000000000D.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_251.js b/API_NetFramework/VSdoc/toc--/t_251.js new file mode 100644 index 00000000..f4cc9039 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_251.js @@ -0,0 +1 @@ +c['251']=[['252',"unterschriftResult Constructor","topic_00000000000000C3.html",0],['253',"Methods","topic_00000000000000C2_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_253.js b/API_NetFramework/VSdoc/toc--/t_253.js new file mode 100644 index 00000000..1c11410e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_253.js @@ -0,0 +1 @@ +c['253']=[['254',"ExecuteAsync Method","topic_00000000000000C4.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_255.js b/API_NetFramework/VSdoc/toc--/t_255.js new file mode 100644 index 00000000..58219a2c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_255.js @@ -0,0 +1 @@ +c['255']=[['256',"Methods","topic_00000000000000B4_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_256.js b/API_NetFramework/VSdoc/toc--/t_256.js new file mode 100644 index 00000000..8cb4b1b9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_256.js @@ -0,0 +1 @@ +c['256']=[['257',"GetImageAsByteArray Method","topic_00000000000000B6.html",0],['258',"GetImageAsStream Method","topic_00000000000000B5.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_27.js b/API_NetFramework/VSdoc/toc--/t_27.js new file mode 100644 index 00000000..287e4fe4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_27.js @@ -0,0 +1 @@ +c['27']=[['28',"Properties","topic_0000000000000018_props--.html",1],['30',"Methods","topic_0000000000000018_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_28.js b/API_NetFramework/VSdoc/toc--/t_28.js new file mode 100644 index 00000000..a4a9059d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_28.js @@ -0,0 +1 @@ +c['28']=[['29',"AreaName Property","topic_0000000000000019.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_30.js b/API_NetFramework/VSdoc/toc--/t_30.js new file mode 100644 index 00000000..5ea3feba --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_30.js @@ -0,0 +1 @@ +c['30']=[['31',"RegisterArea Method","topic_000000000000001A.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_32.js b/API_NetFramework/VSdoc/toc--/t_32.js new file mode 100644 index 00000000..7c004f3c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_32.js @@ -0,0 +1 @@ +c['32']=[['33',"Methods","topic_000000000000000E_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_33.js b/API_NetFramework/VSdoc/toc--/t_33.js new file mode 100644 index 00000000..fd7fcdc0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_33.js @@ -0,0 +1 @@ +c['33']=[['34',"Register Method","topic_000000000000000F.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_35.js b/API_NetFramework/VSdoc/toc--/t_35.js new file mode 100644 index 00000000..7679087c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_35.js @@ -0,0 +1 @@ +c['35']=[['36',"Methods","topic_000000000000001B_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_36.js b/API_NetFramework/VSdoc/toc--/t_36.js new file mode 100644 index 00000000..8956e5e0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_36.js @@ -0,0 +1 @@ +c['36']=[['37',"GetHelpPageApiModel Method","topic_000000000000002B.html",0],['38',"GetHelpPageSampleGenerator Method","topic_0000000000000028.html",0],['39',"GetModelDescriptionGenerator Method","topic_000000000000002A.html",0],['40',"SetActualRequestType Method","topic_0000000000000024_overloads--.html",1],['43',"SetActualResponseType Method","topic_0000000000000026_overloads--.html",1],['46',"SetDocumentationProvider Method","topic_000000000000001C.html",0],['47',"SetHelpPageSampleGenerator Method","topic_0000000000000029.html",0],['48',"SetSampleForMediaType Method","topic_0000000000000022.html",0],['49',"SetSampleForType Method","topic_0000000000000023.html",0],['50',"SetSampleObjects Method","topic_000000000000001D.html",0],['51',"SetSampleRequest Method","topic_000000000000001E_overloads--.html",1],['54',"SetSampleResponse Method","topic_0000000000000020_overloads--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_4.js b/API_NetFramework/VSdoc/toc--/t_4.js new file mode 100644 index 00000000..1082177d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_4.js @@ -0,0 +1 @@ +c['4']=[['5',"BundleConfig Class","topic_0000000000000001.html",1],['8',"FilterConfig Class","topic_0000000000000003.html",1],['11',"RouteConfig Class","topic_0000000000000005.html",1],['14',"SwaggerConfig Class","topic_0000000000000007.html",1],['17',"WebApiApplication Class","topic_00000000000000C5.html",1],['20',"WebApiConfig Class","topic_0000000000000009.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_40.js b/API_NetFramework/VSdoc/toc--/t_40.js new file mode 100644 index 00000000..edc1c9d5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_40.js @@ -0,0 +1 @@ +c['40']=[['41',"SetActualRequestType(this HttpConfiguration, Type, string, string) Method","topic_0000000000000024.html",0],['42',"SetActualRequestType(this HttpConfiguration, Type, string, string, params string[]) Method","topic_0000000000000025.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_43.js b/API_NetFramework/VSdoc/toc--/t_43.js new file mode 100644 index 00000000..18d5d75f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_43.js @@ -0,0 +1 @@ +c['43']=[['44',"SetActualResponseType(this HttpConfiguration, Type, string, string) Method","topic_0000000000000026.html",0],['45',"SetActualResponseType(this HttpConfiguration, Type, string, string, params string[]) Method","topic_0000000000000027.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_5.js b/API_NetFramework/VSdoc/toc--/t_5.js new file mode 100644 index 00000000..0d46967b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_5.js @@ -0,0 +1 @@ +c['5']=[['6',"Methods","topic_0000000000000001_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_51.js b/API_NetFramework/VSdoc/toc--/t_51.js new file mode 100644 index 00000000..19ffdd17 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_51.js @@ -0,0 +1 @@ +c['51']=[['52',"SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) Method","topic_000000000000001E.html",0],['53',"SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) Method","topic_000000000000001F.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_54.js b/API_NetFramework/VSdoc/toc--/t_54.js new file mode 100644 index 00000000..7f2b7af9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_54.js @@ -0,0 +1 @@ +c['54']=[['55',"SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) Method","topic_0000000000000020.html",0],['56',"SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) Method","topic_0000000000000021.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_57.js b/API_NetFramework/VSdoc/toc--/t_57.js new file mode 100644 index 00000000..170b5cdb --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_57.js @@ -0,0 +1 @@ +c['57']=[['58',"HelpPageSampleGenerator Constructor","topic_0000000000000063.html",0],['59',"Properties","topic_0000000000000062_props--.html",1],['64',"Methods","topic_0000000000000062_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_59.js b/API_NetFramework/VSdoc/toc--/t_59.js new file mode 100644 index 00000000..07bc1076 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_59.js @@ -0,0 +1 @@ +c['59']=[['60',"ActionSamples Property","topic_0000000000000065.html",0],['61',"ActualHttpMessageTypes Property","topic_0000000000000064.html",0],['62',"SampleObjectFactories Property","topic_0000000000000067.html",0],['63',"SampleObjects Property","topic_0000000000000066.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_6.js b/API_NetFramework/VSdoc/toc--/t_6.js new file mode 100644 index 00000000..f5cf731e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_6.js @@ -0,0 +1 @@ +c['6']=[['7',"RegisterBundles Method","topic_0000000000000002.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_64.js b/API_NetFramework/VSdoc/toc--/t_64.js new file mode 100644 index 00000000..7172478f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_64.js @@ -0,0 +1 @@ +c['64']=[['65',"GetActionSample Method","topic_000000000000006B.html",0],['66',"GetSample Method","topic_000000000000006A.html",0],['67',"GetSampleObject Method","topic_000000000000006C.html",0],['68',"GetSampleRequests Method","topic_0000000000000068.html",0],['69',"GetSampleResponses Method","topic_0000000000000069.html",0],['70',"ResolveHttpRequestMessageType Method","topic_000000000000006D.html",0],['71',"ResolveType Method","topic_000000000000006E.html",0],['72',"WriteSampleObjectUsingFormatter Method","topic_000000000000006F.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_73.js b/API_NetFramework/VSdoc/toc--/t_73.js new file mode 100644 index 00000000..20aab324 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_73.js @@ -0,0 +1 @@ +c['73']=[['74',"HelpPageSampleKey Constructor","topic_0000000000000071_overloads--.html",1],['79',"Properties","topic_0000000000000070_props--.html",1],['86',"Methods","topic_0000000000000070_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_74.js b/API_NetFramework/VSdoc/toc--/t_74.js new file mode 100644 index 00000000..66ddfccb --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_74.js @@ -0,0 +1 @@ +c['74']=[['75',"HelpPageSampleKey(MediaTypeHeaderValue) Constructor","topic_0000000000000071.html",0],['76',"HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable\u003cString\u003e) Constructor","topic_0000000000000074.html",0],['77',"HelpPageSampleKey(MediaTypeHeaderValue, Type) Constructor","topic_0000000000000072.html",0],['78',"HelpPageSampleKey(SampleDirection, string, string, IEnumerable\u003cString\u003e) Constructor","topic_0000000000000073.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_79.js b/API_NetFramework/VSdoc/toc--/t_79.js new file mode 100644 index 00000000..01691e91 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_79.js @@ -0,0 +1 @@ +c['79']=[['80',"ActionName Property","topic_0000000000000076.html",0],['81',"ControllerName Property","topic_0000000000000075.html",0],['82',"MediaType Property","topic_0000000000000077.html",0],['83',"ParameterNames Property","topic_0000000000000078.html",0],['84',"ParameterType Property","topic_0000000000000079.html",0],['85',"SampleDirection Property","topic_000000000000007A.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_8.js b/API_NetFramework/VSdoc/toc--/t_8.js new file mode 100644 index 00000000..8105bc34 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_8.js @@ -0,0 +1 @@ +c['8']=[['9',"Methods","topic_0000000000000003_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_86.js b/API_NetFramework/VSdoc/toc--/t_86.js new file mode 100644 index 00000000..5a1631ca --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_86.js @@ -0,0 +1 @@ +c['86']=[['87',"Equals Method","topic_000000000000007B.html",0],['88',"GetHashCode Method","topic_000000000000007C.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_89.js b/API_NetFramework/VSdoc/toc--/t_89.js new file mode 100644 index 00000000..e6a9d375 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_89.js @@ -0,0 +1 @@ +c['89']=[['90',"ImageSample Constructor","topic_000000000000007E.html",0],['91',"Properties","topic_000000000000007D_props--.html",1],['93',"Methods","topic_000000000000007D_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_9.js b/API_NetFramework/VSdoc/toc--/t_9.js new file mode 100644 index 00000000..e8e44992 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_9.js @@ -0,0 +1 @@ +c['9']=[['10',"RegisterGlobalFilters Method","topic_0000000000000004.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_91.js b/API_NetFramework/VSdoc/toc--/t_91.js new file mode 100644 index 00000000..6134b3e2 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_91.js @@ -0,0 +1 @@ +c['91']=[['92',"Src Property","topic_000000000000007F.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_93.js b/API_NetFramework/VSdoc/toc--/t_93.js new file mode 100644 index 00000000..e927b98d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_93.js @@ -0,0 +1 @@ +c['93']=[['94',"Equals Method","topic_0000000000000080.html",0],['95',"GetHashCode Method","topic_0000000000000081.html",0],['96',"ToString Method","topic_0000000000000082.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_97.js b/API_NetFramework/VSdoc/toc--/t_97.js new file mode 100644 index 00000000..0265b2db --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_97.js @@ -0,0 +1 @@ +c['97']=[['98',"InvalidSample Constructor","topic_0000000000000084.html",0],['99',"Properties","topic_0000000000000083_props--.html",1],['101',"Methods","topic_0000000000000083_methods--.html",1]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/t_99.js b/API_NetFramework/VSdoc/toc--/t_99.js new file mode 100644 index 00000000..584e18d5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/t_99.js @@ -0,0 +1 @@ +c['99']=[['100',"ErrorMessage Property","topic_0000000000000085.html",0]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000000.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000000.html.js new file mode 100644 index 00000000..9c7db69f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000000.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000001.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000001.html.js new file mode 100644 index 00000000..a2869586 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000001.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['5',"BundleConfig Class","topic_0000000000000001.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000001_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000001_methods--.html.js new file mode 100644 index 00000000..a4eb7aa3 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000001_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['5',"BundleConfig Class","topic_0000000000000001.html"],['6',"Methods","topic_0000000000000001_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000002.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000002.html.js new file mode 100644 index 00000000..de730aba --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000002.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['5',"BundleConfig Class","topic_0000000000000001.html"],['6',"Methods","topic_0000000000000001_methods--.html"],['7',"RegisterBundles Method","topic_0000000000000002.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000003.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000003.html.js new file mode 100644 index 00000000..6bd45e49 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000003.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['8',"FilterConfig Class","topic_0000000000000003.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000003_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000003_methods--.html.js new file mode 100644 index 00000000..248221e0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000003_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['8',"FilterConfig Class","topic_0000000000000003.html"],['9',"Methods","topic_0000000000000003_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000004.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000004.html.js new file mode 100644 index 00000000..6ffa539c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000004.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['8',"FilterConfig Class","topic_0000000000000003.html"],['9',"Methods","topic_0000000000000003_methods--.html"],['10',"RegisterGlobalFilters Method","topic_0000000000000004.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000005.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000005.html.js new file mode 100644 index 00000000..8c42da54 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000005.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['11',"RouteConfig Class","topic_0000000000000005.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000005_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000005_methods--.html.js new file mode 100644 index 00000000..6178c016 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000005_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['11',"RouteConfig Class","topic_0000000000000005.html"],['12',"Methods","topic_0000000000000005_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000006.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000006.html.js new file mode 100644 index 00000000..fa888761 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000006.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['11',"RouteConfig Class","topic_0000000000000005.html"],['12',"Methods","topic_0000000000000005_methods--.html"],['13',"RegisterRoutes Method","topic_0000000000000006.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000007.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000007.html.js new file mode 100644 index 00000000..1d235320 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000007.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['14',"SwaggerConfig Class","topic_0000000000000007.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000007_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000007_methods--.html.js new file mode 100644 index 00000000..9e433eff --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000007_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['14',"SwaggerConfig Class","topic_0000000000000007.html"],['15',"Methods","topic_0000000000000007_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000008.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000008.html.js new file mode 100644 index 00000000..979286d4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000008.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['14',"SwaggerConfig Class","topic_0000000000000007.html"],['15',"Methods","topic_0000000000000007_methods--.html"],['16',"Register Method","topic_0000000000000008.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000009.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000009.html.js new file mode 100644 index 00000000..110c206c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000009.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['20',"WebApiConfig Class","topic_0000000000000009.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000009_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000009_methods--.html.js new file mode 100644 index 00000000..2333c0a6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000009_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['20',"WebApiConfig Class","topic_0000000000000009.html"],['21',"Methods","topic_0000000000000009_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000A.html.js new file mode 100644 index 00000000..178c0e33 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['20',"WebApiConfig Class","topic_0000000000000009.html"],['21',"Methods","topic_0000000000000009_methods--.html"],['22',"Register Method","topic_000000000000000A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000B.html.js new file mode 100644 index 00000000..604746ef --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000C.html.js new file mode 100644 index 00000000..f63463f6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['24',"ApiDescriptionExtensions Class","topic_000000000000000C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000C_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000C_methods--.html.js new file mode 100644 index 00000000..0c985c1f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000C_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['24',"ApiDescriptionExtensions Class","topic_000000000000000C.html"],['25',"Methods","topic_000000000000000C_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000D.html.js new file mode 100644 index 00000000..4888c84f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['24',"ApiDescriptionExtensions Class","topic_000000000000000C.html"],['25',"Methods","topic_000000000000000C_methods--.html"],['26',"GetFriendlyId Method","topic_000000000000000D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000E.html.js new file mode 100644 index 00000000..add98986 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['32',"HelpPageConfig Class","topic_000000000000000E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000E_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000E_methods--.html.js new file mode 100644 index 00000000..497a1e97 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000E_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['32',"HelpPageConfig Class","topic_000000000000000E.html"],['33',"Methods","topic_000000000000000E_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000000F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000000F.html.js new file mode 100644 index 00000000..0c8a2b47 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000000F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['32',"HelpPageConfig Class","topic_000000000000000E.html"],['33',"Methods","topic_000000000000000E_methods--.html"],['34',"Register Method","topic_000000000000000F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000010.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000010.html.js new file mode 100644 index 00000000..daff1b92 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000010.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000011.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000011.html.js new file mode 100644 index 00000000..40740c85 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000011.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000011_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000011_methods--.html.js new file mode 100644 index 00000000..6bab69d1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000011_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['134',"Methods","topic_0000000000000011_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000011_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000011_props--.html.js new file mode 100644 index 00000000..efd59657 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000011_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['132',"Properties","topic_0000000000000011_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000012.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000012.html.js new file mode 100644 index 00000000..26d51f66 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000012.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['129',"HelpController Constructor","topic_0000000000000012_overloads--.html"],['130',"HelpController() Constructor","topic_0000000000000012.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000012_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000012_overloads--.html.js new file mode 100644 index 00000000..ee82b3a8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000012_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['129',"HelpController Constructor","topic_0000000000000012_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000013.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000013.html.js new file mode 100644 index 00000000..71a9f813 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000013.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['129',"HelpController Constructor","topic_0000000000000012_overloads--.html"],['131',"HelpController(HttpConfiguration) Constructor","topic_0000000000000013.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000014.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000014.html.js new file mode 100644 index 00000000..d714bf4d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000014.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['132',"Properties","topic_0000000000000011_props--.html"],['133',"Configuration Property","topic_0000000000000014.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000015.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000015.html.js new file mode 100644 index 00000000..82dae51b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000015.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['134',"Methods","topic_0000000000000011_methods--.html"],['136',"Index Method","topic_0000000000000015.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000016.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000016.html.js new file mode 100644 index 00000000..4207df79 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000016.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['134',"Methods","topic_0000000000000011_methods--.html"],['135',"Api Method","topic_0000000000000016.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000017.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000017.html.js new file mode 100644 index 00000000..18d54c84 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000017.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['127',"API_NetFramework.Areas.HelpPage.Controllers Namespace","topic_0000000000000010.html"],['128',"HelpController Class","topic_0000000000000011.html"],['134',"Methods","topic_0000000000000011_methods--.html"],['137',"ResourceModel Method","topic_0000000000000017.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000018.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000018.html.js new file mode 100644 index 00000000..2499b008 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000018.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['27',"HelpPageAreaRegistration Class","topic_0000000000000018.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000018_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000018_methods--.html.js new file mode 100644 index 00000000..25331622 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000018_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['27',"HelpPageAreaRegistration Class","topic_0000000000000018.html"],['30',"Methods","topic_0000000000000018_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000018_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000018_props--.html.js new file mode 100644 index 00000000..5376a203 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000018_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['27',"HelpPageAreaRegistration Class","topic_0000000000000018.html"],['28',"Properties","topic_0000000000000018_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000019.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000019.html.js new file mode 100644 index 00000000..3e5f8548 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000019.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['27',"HelpPageAreaRegistration Class","topic_0000000000000018.html"],['28',"Properties","topic_0000000000000018_props--.html"],['29',"AreaName Property","topic_0000000000000019.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001A.html.js new file mode 100644 index 00000000..6ebd53cd --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['27',"HelpPageAreaRegistration Class","topic_0000000000000018.html"],['30',"Methods","topic_0000000000000018_methods--.html"],['31',"RegisterArea Method","topic_000000000000001A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001B.html.js new file mode 100644 index 00000000..dd339b9a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001B_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001B_methods--.html.js new file mode 100644 index 00000000..58bdc777 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001B_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001C.html.js new file mode 100644 index 00000000..cb31ab8d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['46',"SetDocumentationProvider Method","topic_000000000000001C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001D.html.js new file mode 100644 index 00000000..2264a5de --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['50',"SetSampleObjects Method","topic_000000000000001D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001E.html.js new file mode 100644 index 00000000..88ec517c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['51',"SetSampleRequest Method","topic_000000000000001E_overloads--.html"],['52',"SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) Method","topic_000000000000001E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001E_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001E_overloads--.html.js new file mode 100644 index 00000000..6c85879e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001E_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['51',"SetSampleRequest Method","topic_000000000000001E_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000001F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000001F.html.js new file mode 100644 index 00000000..7abc6897 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000001F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['51',"SetSampleRequest Method","topic_000000000000001E_overloads--.html"],['53',"SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) Method","topic_000000000000001F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000020.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000020.html.js new file mode 100644 index 00000000..ef273036 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000020.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['54',"SetSampleResponse Method","topic_0000000000000020_overloads--.html"],['55',"SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) Method","topic_0000000000000020.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000020_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000020_overloads--.html.js new file mode 100644 index 00000000..b3056a7a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000020_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['54',"SetSampleResponse Method","topic_0000000000000020_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000021.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000021.html.js new file mode 100644 index 00000000..94f2912b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000021.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['54',"SetSampleResponse Method","topic_0000000000000020_overloads--.html"],['56',"SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) Method","topic_0000000000000021.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000022.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000022.html.js new file mode 100644 index 00000000..79ca2a99 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000022.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['48',"SetSampleForMediaType Method","topic_0000000000000022.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000023.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000023.html.js new file mode 100644 index 00000000..46fed593 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000023.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['49',"SetSampleForType Method","topic_0000000000000023.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000024.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000024.html.js new file mode 100644 index 00000000..a26d52bd --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000024.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['40',"SetActualRequestType Method","topic_0000000000000024_overloads--.html"],['41',"SetActualRequestType(this HttpConfiguration, Type, string, string) Method","topic_0000000000000024.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000024_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000024_overloads--.html.js new file mode 100644 index 00000000..2d3a38ff --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000024_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['40',"SetActualRequestType Method","topic_0000000000000024_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000025.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000025.html.js new file mode 100644 index 00000000..9d5ee9a8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000025.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['40',"SetActualRequestType Method","topic_0000000000000024_overloads--.html"],['42',"SetActualRequestType(this HttpConfiguration, Type, string, string, params string[]) Method","topic_0000000000000025.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000026.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000026.html.js new file mode 100644 index 00000000..bde48ca5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000026.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['43',"SetActualResponseType Method","topic_0000000000000026_overloads--.html"],['44',"SetActualResponseType(this HttpConfiguration, Type, string, string) Method","topic_0000000000000026.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000026_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000026_overloads--.html.js new file mode 100644 index 00000000..25f14069 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000026_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['43',"SetActualResponseType Method","topic_0000000000000026_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000027.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000027.html.js new file mode 100644 index 00000000..3ee82052 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000027.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['43',"SetActualResponseType Method","topic_0000000000000026_overloads--.html"],['45',"SetActualResponseType(this HttpConfiguration, Type, string, string, params string[]) Method","topic_0000000000000027.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000028.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000028.html.js new file mode 100644 index 00000000..5311ff23 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000028.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['38',"GetHelpPageSampleGenerator Method","topic_0000000000000028.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000029.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000029.html.js new file mode 100644 index 00000000..e3855b75 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000029.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['47',"SetHelpPageSampleGenerator Method","topic_0000000000000029.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002A.html.js new file mode 100644 index 00000000..dc89348b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['39',"GetModelDescriptionGenerator Method","topic_000000000000002A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002B.html.js new file mode 100644 index 00000000..8f32a681 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['35',"HelpPageConfigurationExtensions Class","topic_000000000000001B.html"],['36',"Methods","topic_000000000000001B_methods--.html"],['37',"GetHelpPageApiModel Method","topic_000000000000002B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002C.html.js new file mode 100644 index 00000000..fe8e0e36 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002D.html.js new file mode 100644 index 00000000..373bbe31 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['139',"CollectionModelDescription Class","topic_000000000000002D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002D_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002D_props--.html.js new file mode 100644 index 00000000..86cf13f7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002D_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['139',"CollectionModelDescription Class","topic_000000000000002D.html"],['140',"Properties","topic_000000000000002D_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002E.html.js new file mode 100644 index 00000000..40bd30d8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['139',"CollectionModelDescription Class","topic_000000000000002D.html"],['140',"Properties","topic_000000000000002D_props--.html"],['141',"ElementDescription Property","topic_000000000000002E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002F.html.js new file mode 100644 index 00000000..6841ee47 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['142',"ComplexTypeModelDescription Class","topic_000000000000002F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000002F_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000002F_props--.html.js new file mode 100644 index 00000000..301101e3 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000002F_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['142',"ComplexTypeModelDescription Class","topic_000000000000002F.html"],['144',"Properties","topic_000000000000002F_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000030.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000030.html.js new file mode 100644 index 00000000..cf36dad7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000030.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['142',"ComplexTypeModelDescription Class","topic_000000000000002F.html"],['143',"ComplexTypeModelDescription Constructor","topic_0000000000000030.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000031.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000031.html.js new file mode 100644 index 00000000..e316fd0e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000031.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['142',"ComplexTypeModelDescription Class","topic_000000000000002F.html"],['144',"Properties","topic_000000000000002F_props--.html"],['145',"Properties Property","topic_0000000000000031.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000032.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000032.html.js new file mode 100644 index 00000000..3bbaf5bf --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000032.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['146',"DictionaryModelDescription Class","topic_0000000000000032.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000033.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000033.html.js new file mode 100644 index 00000000..7c28663e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000033.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['147',"EnumTypeModelDescription Class","topic_0000000000000033.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000033_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000033_props--.html.js new file mode 100644 index 00000000..b0375e76 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000033_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['147',"EnumTypeModelDescription Class","topic_0000000000000033.html"],['149',"Properties","topic_0000000000000033_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000034.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000034.html.js new file mode 100644 index 00000000..65c3ce83 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000034.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['147',"EnumTypeModelDescription Class","topic_0000000000000033.html"],['148',"EnumTypeModelDescription Constructor","topic_0000000000000034.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000035.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000035.html.js new file mode 100644 index 00000000..f31693a4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000035.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['147',"EnumTypeModelDescription Class","topic_0000000000000033.html"],['149',"Properties","topic_0000000000000033_props--.html"],['150',"Values Property","topic_0000000000000035.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000036.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000036.html.js new file mode 100644 index 00000000..ca7927a6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000036.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['151',"EnumValueDescription Class","topic_0000000000000036.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000036_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000036_props--.html.js new file mode 100644 index 00000000..e21fdea0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000036_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['151',"EnumValueDescription Class","topic_0000000000000036.html"],['152',"Properties","topic_0000000000000036_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000037.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000037.html.js new file mode 100644 index 00000000..0223a03f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000037.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['151',"EnumValueDescription Class","topic_0000000000000036.html"],['152',"Properties","topic_0000000000000036_props--.html"],['153',"Documentation Property","topic_0000000000000037.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000038.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000038.html.js new file mode 100644 index 00000000..06444dea --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000038.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['151',"EnumValueDescription Class","topic_0000000000000036.html"],['152',"Properties","topic_0000000000000036_props--.html"],['154',"Name Property","topic_0000000000000038.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000039.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000039.html.js new file mode 100644 index 00000000..463e46e9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000039.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['151',"EnumValueDescription Class","topic_0000000000000036.html"],['152',"Properties","topic_0000000000000036_props--.html"],['155',"Value Property","topic_0000000000000039.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003A.html.js new file mode 100644 index 00000000..a8d92a3b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['187',"IModelDocumentationProvider Interface","topic_000000000000003A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003A_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003A_methods--.html.js new file mode 100644 index 00000000..f5fe09a9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003A_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['187',"IModelDocumentationProvider Interface","topic_000000000000003A.html"],['188',"Methods","topic_000000000000003A_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003B.html.js new file mode 100644 index 00000000..df708a14 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['187',"IModelDocumentationProvider Interface","topic_000000000000003A.html"],['188',"Methods","topic_000000000000003A_methods--.html"],['189',"GetDocumentation Method","topic_000000000000003B_overloads--.html"],['190',"GetDocumentation(MemberInfo) Method","topic_000000000000003B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003B_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003B_overloads--.html.js new file mode 100644 index 00000000..09e1e9ee --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003B_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['187',"IModelDocumentationProvider Interface","topic_000000000000003A.html"],['188',"Methods","topic_000000000000003A_methods--.html"],['189',"GetDocumentation Method","topic_000000000000003B_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003C.html.js new file mode 100644 index 00000000..ec5014aa --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['187',"IModelDocumentationProvider Interface","topic_000000000000003A.html"],['188',"Methods","topic_000000000000003A_methods--.html"],['189',"GetDocumentation Method","topic_000000000000003B_overloads--.html"],['191',"GetDocumentation(Type) Method","topic_000000000000003C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003D.html.js new file mode 100644 index 00000000..ab3e0723 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['156',"KeyValuePairModelDescription Class","topic_000000000000003D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003D_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003D_props--.html.js new file mode 100644 index 00000000..bbe3d405 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003D_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['156',"KeyValuePairModelDescription Class","topic_000000000000003D.html"],['157',"Properties","topic_000000000000003D_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003E.html.js new file mode 100644 index 00000000..37eb0c43 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['156',"KeyValuePairModelDescription Class","topic_000000000000003D.html"],['157',"Properties","topic_000000000000003D_props--.html"],['158',"KeyModelDescription Property","topic_000000000000003E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000003F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000003F.html.js new file mode 100644 index 00000000..6359bb22 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000003F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['156',"KeyValuePairModelDescription Class","topic_000000000000003D.html"],['157',"Properties","topic_000000000000003D_props--.html"],['159',"ValueModelDescription Property","topic_000000000000003F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000040.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000040.html.js new file mode 100644 index 00000000..10d58c26 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000040.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['160',"ModelDescription Class","topic_0000000000000040.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000040_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000040_props--.html.js new file mode 100644 index 00000000..0051374a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000040_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['160',"ModelDescription Class","topic_0000000000000040.html"],['161',"Properties","topic_0000000000000040_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000041.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000041.html.js new file mode 100644 index 00000000..4c905faf --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000041.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['160',"ModelDescription Class","topic_0000000000000040.html"],['161',"Properties","topic_0000000000000040_props--.html"],['162',"Documentation Property","topic_0000000000000041.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000042.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000042.html.js new file mode 100644 index 00000000..2f14fb13 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000042.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['160',"ModelDescription Class","topic_0000000000000040.html"],['161',"Properties","topic_0000000000000040_props--.html"],['163',"ModelType Property","topic_0000000000000042.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000043.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000043.html.js new file mode 100644 index 00000000..7e574cd6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000043.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['160',"ModelDescription Class","topic_0000000000000040.html"],['161',"Properties","topic_0000000000000040_props--.html"],['164',"Name Property","topic_0000000000000043.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000044.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000044.html.js new file mode 100644 index 00000000..e0700f6b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000044.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000044_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000044_methods--.html.js new file mode 100644 index 00000000..c23be8ea --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000044_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html"],['169',"Methods","topic_0000000000000044_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000044_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000044_props--.html.js new file mode 100644 index 00000000..47c8e40c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000044_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html"],['167',"Properties","topic_0000000000000044_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000045.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000045.html.js new file mode 100644 index 00000000..ba4cfd30 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000045.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html"],['166',"ModelDescriptionGenerator Constructor","topic_0000000000000045.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000046.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000046.html.js new file mode 100644 index 00000000..2fdac04b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000046.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html"],['167',"Properties","topic_0000000000000044_props--.html"],['168',"GeneratedModels Property","topic_0000000000000046.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000047.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000047.html.js new file mode 100644 index 00000000..b924f3bc --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000047.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['165',"ModelDescriptionGenerator Class","topic_0000000000000044.html"],['169',"Methods","topic_0000000000000044_methods--.html"],['170',"GetOrCreateModelDescription Method","topic_0000000000000047.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000048.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000048.html.js new file mode 100644 index 00000000..e70d7474 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000048.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['171',"ModelNameAttribute Class","topic_0000000000000048.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000048_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000048_props--.html.js new file mode 100644 index 00000000..23c984fd --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000048_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['171',"ModelNameAttribute Class","topic_0000000000000048.html"],['173',"Properties","topic_0000000000000048_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000049.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000049.html.js new file mode 100644 index 00000000..41948c13 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000049.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['171',"ModelNameAttribute Class","topic_0000000000000048.html"],['172',"ModelNameAttribute Constructor","topic_0000000000000049.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004A.html.js new file mode 100644 index 00000000..6e2c8e67 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['171',"ModelNameAttribute Class","topic_0000000000000048.html"],['173',"Properties","topic_0000000000000048_props--.html"],['174',"Name Property","topic_000000000000004A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004B.html.js new file mode 100644 index 00000000..9dc45c86 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['175',"ParameterAnnotation Class","topic_000000000000004B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004B_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004B_props--.html.js new file mode 100644 index 00000000..d0119064 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004B_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['175',"ParameterAnnotation Class","topic_000000000000004B.html"],['176',"Properties","topic_000000000000004B_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004C.html.js new file mode 100644 index 00000000..69440fb5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['175',"ParameterAnnotation Class","topic_000000000000004B.html"],['176',"Properties","topic_000000000000004B_props--.html"],['177',"AnnotationAttribute Property","topic_000000000000004C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004D.html.js new file mode 100644 index 00000000..827a17b1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['175',"ParameterAnnotation Class","topic_000000000000004B.html"],['176',"Properties","topic_000000000000004B_props--.html"],['178',"Documentation Property","topic_000000000000004D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004E.html.js new file mode 100644 index 00000000..062c9503 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004E_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004E_props--.html.js new file mode 100644 index 00000000..8c7dc27d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004E_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"],['181',"Properties","topic_000000000000004E_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000004F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000004F.html.js new file mode 100644 index 00000000..025d00ab --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000004F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"],['180',"ParameterDescription Constructor","topic_000000000000004F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000050.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000050.html.js new file mode 100644 index 00000000..dc6977ad --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000050.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"],['181',"Properties","topic_000000000000004E_props--.html"],['182',"Annotations Property","topic_0000000000000050.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000051.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000051.html.js new file mode 100644 index 00000000..3ef0f980 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000051.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"],['181',"Properties","topic_000000000000004E_props--.html"],['183',"Documentation Property","topic_0000000000000051.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000052.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000052.html.js new file mode 100644 index 00000000..ead8639d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000052.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"],['181',"Properties","topic_000000000000004E_props--.html"],['184',"Name Property","topic_0000000000000052.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000053.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000053.html.js new file mode 100644 index 00000000..abc6bf47 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000053.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['179',"ParameterDescription Class","topic_000000000000004E.html"],['181',"Properties","topic_000000000000004E_props--.html"],['185',"TypeDescription Property","topic_0000000000000053.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000054.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000054.html.js new file mode 100644 index 00000000..e2dafcab --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000054.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['138',"API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace","topic_000000000000002C.html"],['186',"SimpleTypeModelDescription Class","topic_0000000000000054.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000055.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000055.html.js new file mode 100644 index 00000000..fbed1268 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000055.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000056.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000056.html.js new file mode 100644 index 00000000..5fbd9ff1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000056.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000056_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000056_props--.html.js new file mode 100644 index 00000000..a1debf23 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000056_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000057.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000057.html.js new file mode 100644 index 00000000..e5ae1f4a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000057.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['194',"HelpPageApiModel Constructor","topic_0000000000000057.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000058.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000058.html.js new file mode 100644 index 00000000..0104c410 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000058.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['196',"ApiDescription Property","topic_0000000000000058.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000059.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000059.html.js new file mode 100644 index 00000000..cfee215a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000059.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['205',"UriParameters Property","topic_0000000000000059.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000005A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000005A.html.js new file mode 100644 index 00000000..c9ffce01 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000005A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['199',"RequestDocumentation Property","topic_000000000000005A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000005B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000005B.html.js new file mode 100644 index 00000000..97b07c0d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000005B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['200',"RequestModelDescription Property","topic_000000000000005B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000005C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000005C.html.js new file mode 100644 index 00000000..79b74e73 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000005C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['198',"RequestBodyParameters Property","topic_000000000000005C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000005D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000005D.html.js new file mode 100644 index 00000000..44a38389 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000005D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['201',"ResourceDescription Property","topic_000000000000005D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000005E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000005E.html.js new file mode 100644 index 00000000..d05f85a1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000005E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['202',"ResourceProperties Property","topic_000000000000005E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000005F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000005F.html.js new file mode 100644 index 00000000..7e16df44 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000005F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['203',"SampleRequests Property","topic_000000000000005F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000060.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000060.html.js new file mode 100644 index 00000000..4c8cc88c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000060.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['204',"SampleResponses Property","topic_0000000000000060.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000061.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000061.html.js new file mode 100644 index 00000000..808fdf77 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000061.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['192',"API_NetFramework.Areas.HelpPage.Models Namespace","topic_0000000000000055.html"],['193',"HelpPageApiModel Class","topic_0000000000000056.html"],['195',"Properties","topic_0000000000000056_props--.html"],['197',"ErrorMessages Property","topic_0000000000000061.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000062.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000062.html.js new file mode 100644 index 00000000..611997c6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000062.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000062_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000062_methods--.html.js new file mode 100644 index 00000000..81a8dde2 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000062_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000062_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000062_props--.html.js new file mode 100644 index 00000000..c6d2fd8e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000062_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['59',"Properties","topic_0000000000000062_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000063.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000063.html.js new file mode 100644 index 00000000..5f66935e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000063.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['58',"HelpPageSampleGenerator Constructor","topic_0000000000000063.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000064.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000064.html.js new file mode 100644 index 00000000..0755593e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000064.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['59',"Properties","topic_0000000000000062_props--.html"],['61',"ActualHttpMessageTypes Property","topic_0000000000000064.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000065.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000065.html.js new file mode 100644 index 00000000..e2f345d3 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000065.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['59',"Properties","topic_0000000000000062_props--.html"],['60',"ActionSamples Property","topic_0000000000000065.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000066.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000066.html.js new file mode 100644 index 00000000..ae6eaa7c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000066.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['59',"Properties","topic_0000000000000062_props--.html"],['63',"SampleObjects Property","topic_0000000000000066.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000067.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000067.html.js new file mode 100644 index 00000000..645c48f7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000067.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['59',"Properties","topic_0000000000000062_props--.html"],['62',"SampleObjectFactories Property","topic_0000000000000067.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000068.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000068.html.js new file mode 100644 index 00000000..1e1807a5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000068.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['68',"GetSampleRequests Method","topic_0000000000000068.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000069.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000069.html.js new file mode 100644 index 00000000..b659ae41 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000069.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['69',"GetSampleResponses Method","topic_0000000000000069.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000006A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000006A.html.js new file mode 100644 index 00000000..49eac016 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000006A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['66',"GetSample Method","topic_000000000000006A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000006B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000006B.html.js new file mode 100644 index 00000000..45f4bf84 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000006B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['65',"GetActionSample Method","topic_000000000000006B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000006C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000006C.html.js new file mode 100644 index 00000000..262aa4e6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000006C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['67',"GetSampleObject Method","topic_000000000000006C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000006D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000006D.html.js new file mode 100644 index 00000000..bf62a69c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000006D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['70',"ResolveHttpRequestMessageType Method","topic_000000000000006D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000006E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000006E.html.js new file mode 100644 index 00000000..51528142 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000006E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['71',"ResolveType Method","topic_000000000000006E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000006F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000006F.html.js new file mode 100644 index 00000000..821e75a6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000006F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['57',"HelpPageSampleGenerator Class","topic_0000000000000062.html"],['64',"Methods","topic_0000000000000062_methods--.html"],['72',"WriteSampleObjectUsingFormatter Method","topic_000000000000006F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000070.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000070.html.js new file mode 100644 index 00000000..960152c6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000070.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000070_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000070_methods--.html.js new file mode 100644 index 00000000..b2f63a66 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000070_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['86',"Methods","topic_0000000000000070_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000070_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000070_props--.html.js new file mode 100644 index 00000000..4ce666d4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000070_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000071.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000071.html.js new file mode 100644 index 00000000..15386bbe --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000071.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['74',"HelpPageSampleKey Constructor","topic_0000000000000071_overloads--.html"],['75',"HelpPageSampleKey(MediaTypeHeaderValue) Constructor","topic_0000000000000071.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000071_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000071_overloads--.html.js new file mode 100644 index 00000000..235cdf8d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000071_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['74',"HelpPageSampleKey Constructor","topic_0000000000000071_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000072.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000072.html.js new file mode 100644 index 00000000..d38535f5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000072.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['74',"HelpPageSampleKey Constructor","topic_0000000000000071_overloads--.html"],['77',"HelpPageSampleKey(MediaTypeHeaderValue, Type) Constructor","topic_0000000000000072.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000073.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000073.html.js new file mode 100644 index 00000000..55996b14 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000073.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['74',"HelpPageSampleKey Constructor","topic_0000000000000071_overloads--.html"],['78',"HelpPageSampleKey(SampleDirection, string, string, IEnumerable\u003cString\u003e) Constructor","topic_0000000000000073.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000074.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000074.html.js new file mode 100644 index 00000000..1e68eadc --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000074.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['74',"HelpPageSampleKey Constructor","topic_0000000000000071_overloads--.html"],['76',"HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable\u003cString\u003e) Constructor","topic_0000000000000074.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000075.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000075.html.js new file mode 100644 index 00000000..d9fd25b0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000075.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"],['81',"ControllerName Property","topic_0000000000000075.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000076.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000076.html.js new file mode 100644 index 00000000..ff0a0103 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000076.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"],['80',"ActionName Property","topic_0000000000000076.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000077.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000077.html.js new file mode 100644 index 00000000..251acf2a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000077.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"],['82',"MediaType Property","topic_0000000000000077.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000078.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000078.html.js new file mode 100644 index 00000000..13b1ffbb --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000078.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"],['83',"ParameterNames Property","topic_0000000000000078.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000079.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000079.html.js new file mode 100644 index 00000000..46e77dce --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000079.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"],['84',"ParameterType Property","topic_0000000000000079.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007A.html.js new file mode 100644 index 00000000..07333d62 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['79',"Properties","topic_0000000000000070_props--.html"],['85',"SampleDirection Property","topic_000000000000007A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007B.html.js new file mode 100644 index 00000000..71cab5ea --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['86',"Methods","topic_0000000000000070_methods--.html"],['87',"Equals Method","topic_000000000000007B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007C.html.js new file mode 100644 index 00000000..cbfafa25 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['73',"HelpPageSampleKey Class","topic_0000000000000070.html"],['86',"Methods","topic_0000000000000070_methods--.html"],['88',"GetHashCode Method","topic_000000000000007C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007D.html.js new file mode 100644 index 00000000..a2a7b8e8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007D_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007D_methods--.html.js new file mode 100644 index 00000000..993ce465 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007D_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['93',"Methods","topic_000000000000007D_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007D_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007D_props--.html.js new file mode 100644 index 00000000..b0162fbf --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007D_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['91',"Properties","topic_000000000000007D_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007E.html.js new file mode 100644 index 00000000..44f52a89 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['90',"ImageSample Constructor","topic_000000000000007E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000007F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000007F.html.js new file mode 100644 index 00000000..9a6c0453 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000007F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['91',"Properties","topic_000000000000007D_props--.html"],['92',"Src Property","topic_000000000000007F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000080.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000080.html.js new file mode 100644 index 00000000..01ca8542 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000080.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['93',"Methods","topic_000000000000007D_methods--.html"],['94',"Equals Method","topic_0000000000000080.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000081.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000081.html.js new file mode 100644 index 00000000..688b1dc0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000081.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['93',"Methods","topic_000000000000007D_methods--.html"],['95',"GetHashCode Method","topic_0000000000000081.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000082.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000082.html.js new file mode 100644 index 00000000..9a1928a6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000082.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['89',"ImageSample Class","topic_000000000000007D.html"],['93',"Methods","topic_000000000000007D_methods--.html"],['96',"ToString Method","topic_0000000000000082.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000083.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000083.html.js new file mode 100644 index 00000000..3db00ce9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000083.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000083_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000083_methods--.html.js new file mode 100644 index 00000000..7ed7da6c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000083_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['101',"Methods","topic_0000000000000083_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000083_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000083_props--.html.js new file mode 100644 index 00000000..b809162a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000083_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['99',"Properties","topic_0000000000000083_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000084.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000084.html.js new file mode 100644 index 00000000..0d2aa722 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000084.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['98',"InvalidSample Constructor","topic_0000000000000084.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000085.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000085.html.js new file mode 100644 index 00000000..421b72d7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000085.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['99',"Properties","topic_0000000000000083_props--.html"],['100',"ErrorMessage Property","topic_0000000000000085.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000086.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000086.html.js new file mode 100644 index 00000000..cd2e71b4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000086.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['101',"Methods","topic_0000000000000083_methods--.html"],['102',"Equals Method","topic_0000000000000086.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000087.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000087.html.js new file mode 100644 index 00000000..f4a92e9f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000087.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['101',"Methods","topic_0000000000000083_methods--.html"],['103',"GetHashCode Method","topic_0000000000000087.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000088.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000088.html.js new file mode 100644 index 00000000..03d99819 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000088.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['97',"InvalidSample Class","topic_0000000000000083.html"],['101',"Methods","topic_0000000000000083_methods--.html"],['104',"ToString Method","topic_0000000000000088.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000089.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000089.html.js new file mode 100644 index 00000000..586cbd85 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000089.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['105',"ObjectGenerator Class","topic_0000000000000089.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000089_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000089_methods--.html.js new file mode 100644 index 00000000..4c90aa29 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000089_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['105',"ObjectGenerator Class","topic_0000000000000089.html"],['106',"Methods","topic_0000000000000089_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000008A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000008A.html.js new file mode 100644 index 00000000..bd8a3eb3 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000008A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['105',"ObjectGenerator Class","topic_0000000000000089.html"],['106',"Methods","topic_0000000000000089_methods--.html"],['107',"GenerateObject Method","topic_000000000000008A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000008B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000008B.html.js new file mode 100644 index 00000000..f0e57e26 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000008B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['126',"SampleDirection Enumeration","topic_000000000000008B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000008E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000008E.html.js new file mode 100644 index 00000000..ca1624e3 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000008E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000008E_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000008E_methods--.html.js new file mode 100644 index 00000000..52d8d88d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000008E_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['112',"Methods","topic_000000000000008E_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000008E_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000008E_props--.html.js new file mode 100644 index 00000000..69ebd3ff --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000008E_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['110',"Properties","topic_000000000000008E_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000008F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000008F.html.js new file mode 100644 index 00000000..506a8980 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000008F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['109',"TextSample Constructor","topic_000000000000008F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000090.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000090.html.js new file mode 100644 index 00000000..8fb30f8d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000090.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['110',"Properties","topic_000000000000008E_props--.html"],['111',"Text Property","topic_0000000000000090.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000091.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000091.html.js new file mode 100644 index 00000000..b077beef --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000091.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['112',"Methods","topic_000000000000008E_methods--.html"],['113',"Equals Method","topic_0000000000000091.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000092.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000092.html.js new file mode 100644 index 00000000..492a8288 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000092.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['112',"Methods","topic_000000000000008E_methods--.html"],['114',"GetHashCode Method","topic_0000000000000092.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000093.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000093.html.js new file mode 100644 index 00000000..5ed55b89 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000093.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['108',"TextSample Class","topic_000000000000008E.html"],['112',"Methods","topic_000000000000008E_methods--.html"],['115',"ToString Method","topic_0000000000000093.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000094.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000094.html.js new file mode 100644 index 00000000..f92642f0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000094.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000094_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000094_methods--.html.js new file mode 100644 index 00000000..2f45f5f1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000094_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000095.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000095.html.js new file mode 100644 index 00000000..d983b3ed --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000095.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['117',"XmlDocumentationProvider Constructor","topic_0000000000000095.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000096.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000096.html.js new file mode 100644 index 00000000..7507b505 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000096.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html"],['120',"GetDocumentation(HttpControllerDescriptor) Method","topic_0000000000000096.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000096_overloads--.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000096_overloads--.html.js new file mode 100644 index 00000000..296947be --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000096_overloads--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000097.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000097.html.js new file mode 100644 index 00000000..4b680940 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000097.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html"],['123',"GetDocumentation(HttpActionDescriptor) Method","topic_0000000000000097.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000098.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000098.html.js new file mode 100644 index 00000000..0304db2a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000098.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html"],['124',"GetDocumentation(HttpParameterDescriptor) Method","topic_0000000000000098.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_0000000000000099.html.js b/API_NetFramework/VSdoc/toc--/topic_0000000000000099.html.js new file mode 100644 index 00000000..e4dbcdd5 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_0000000000000099.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['125',"GetResponseDocumentation Method","topic_0000000000000099.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009A.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009A.html.js new file mode 100644 index 00000000..5ad44d64 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009A.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html"],['121',"GetDocumentation(MemberInfo) Method","topic_000000000000009A.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009B.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009B.html.js new file mode 100644 index 00000000..acb83c70 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009B.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['23',"API_NetFramework.Areas.HelpPage Namespace","topic_000000000000000B.html"],['116',"XmlDocumentationProvider Class","topic_0000000000000094.html"],['118',"Methods","topic_0000000000000094_methods--.html"],['119',"GetDocumentation Method","topic_0000000000000096_overloads--.html"],['122',"GetDocumentation(Type) Method","topic_000000000000009B.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009C.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009C.html.js new file mode 100644 index 00000000..9810be38 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009C.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009D.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009D.html.js new file mode 100644 index 00000000..9f745a8c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009D.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009D_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009D_methods--.html.js new file mode 100644 index 00000000..5024323a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009D_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"],['208',"Methods","topic_000000000000009D_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009E.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009E.html.js new file mode 100644 index 00000000..847c4117 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009E.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"],['208',"Methods","topic_000000000000009D_methods--.html"],['212',"GetGetAll Method","topic_000000000000009E.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_000000000000009F.html.js b/API_NetFramework/VSdoc/toc--/topic_000000000000009F.html.js new file mode 100644 index 00000000..39f4d4c0 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_000000000000009F.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"],['208',"Methods","topic_000000000000009D_methods--.html"],['211',"GetByID Method","topic_000000000000009F.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A0.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A0.html.js new file mode 100644 index 00000000..b1d2c859 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A0.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"],['208',"Methods","topic_000000000000009D_methods--.html"],['210',"GetAllMitarbeiterByTGNummer Method","topic_00000000000000A0.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A1.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A1.html.js new file mode 100644 index 00000000..0b25b4cf --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A1.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"],['208',"Methods","topic_000000000000009D_methods--.html"],['209',"GetAllMitarbeiterByMitarbeiterNr Method","topic_00000000000000A1.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A2.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A2.html.js new file mode 100644 index 00000000..b08cf83f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A2.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['207',"AntwortAdresseController Class","topic_000000000000009D.html"],['208',"Methods","topic_000000000000009D_methods--.html"],['213',"GetMitarbeiterByID Method","topic_00000000000000A2.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A3.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A3.html.js new file mode 100644 index 00000000..63c11a1e --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A3.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['214',"ArchivController Class","topic_00000000000000A3.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A3_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A3_methods--.html.js new file mode 100644 index 00000000..94f34400 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A3_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['214',"ArchivController Class","topic_00000000000000A3.html"],['215',"Methods","topic_00000000000000A3_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A4.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A4.html.js new file mode 100644 index 00000000..ca6c1120 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A4.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['214',"ArchivController Class","topic_00000000000000A3.html"],['215',"Methods","topic_00000000000000A3_methods--.html"],['218',"ArchivDoc_From_Database Method","topic_00000000000000A4.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A5.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A5.html.js new file mode 100644 index 00000000..28013e11 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A5.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['214',"ArchivController Class","topic_00000000000000A3.html"],['215',"Methods","topic_00000000000000A3_methods--.html"],['216',"ArchivDocBase64 Method","topic_00000000000000A5.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A6.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A6.html.js new file mode 100644 index 00000000..759e5bc1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A6.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['214',"ArchivController Class","topic_00000000000000A3.html"],['215',"Methods","topic_00000000000000A3_methods--.html"],['219',"CheckDocID Method","topic_00000000000000A6.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A7.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A7.html.js new file mode 100644 index 00000000..4210fb2d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A7.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['214',"ArchivController Class","topic_00000000000000A3.html"],['215',"Methods","topic_00000000000000A3_methods--.html"],['217',"ArchivDocFromIRIS Method","topic_00000000000000A7.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A8.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A8.html.js new file mode 100644 index 00000000..87f2dbc1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A8.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['243',"TestParam Class","topic_00000000000000A8.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A8_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A8_props--.html.js new file mode 100644 index 00000000..7463e189 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A8_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['243',"TestParam Class","topic_00000000000000A8.html"],['244',"Properties","topic_00000000000000A8_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000A9.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000A9.html.js new file mode 100644 index 00000000..8c8f9cf9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000A9.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['243',"TestParam Class","topic_00000000000000A8.html"],['244',"Properties","topic_00000000000000A8_props--.html"],['245',"param1 Property","topic_00000000000000A9.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AA.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AA.html.js new file mode 100644 index 00000000..e17c6a68 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AA.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['243',"TestParam Class","topic_00000000000000A8.html"],['244',"Properties","topic_00000000000000A8_props--.html"],['246',"param2 Property","topic_00000000000000AA.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AB.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AB.html.js new file mode 100644 index 00000000..1e9f4dfc --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AB.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AB_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AB_methods--.html.js new file mode 100644 index 00000000..88ec65a4 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AB_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['223',"Methods","topic_00000000000000AB_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AB_props--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AB_props--.html.js new file mode 100644 index 00000000..4b29e55f --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AB_props--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['221',"Properties","topic_00000000000000AB_props--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AC.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AC.html.js new file mode 100644 index 00000000..54874f25 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AC.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['223',"Methods","topic_00000000000000AB_methods--.html"],['225',"GetDocument Method","topic_00000000000000AC.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AD.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AD.html.js new file mode 100644 index 00000000..fd586c0d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AD.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['221',"Properties","topic_00000000000000AB_props--.html"],['222',"pageCollection Property","topic_00000000000000AD.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AE.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AE.html.js new file mode 100644 index 00000000..ef92c897 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AE.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['223',"Methods","topic_00000000000000AB_methods--.html"],['226',"GetDocumentJSONBody Method","topic_00000000000000AE.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000AF.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000AF.html.js new file mode 100644 index 00000000..23d4523d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000AF.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['223',"Methods","topic_00000000000000AB_methods--.html"],['227',"GetDocumentPDF Method","topic_00000000000000AF.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B0.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B0.html.js new file mode 100644 index 00000000..688d5c8d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B0.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['223',"Methods","topic_00000000000000AB_methods--.html"],['228',"SendToOnBase Method","topic_00000000000000B0.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B1.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B1.html.js new file mode 100644 index 00000000..4fde1ce7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B1.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['220',"DocumentController Class","topic_00000000000000AB.html"],['223',"Methods","topic_00000000000000AB_methods--.html"],['224',"GenDoc Method","topic_00000000000000B1.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B2.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B2.html.js new file mode 100644 index 00000000..f64d1a8d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B2.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['237',"HomeController Class","topic_00000000000000B2.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B2_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B2_methods--.html.js new file mode 100644 index 00000000..959b4f6d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B2_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['237',"HomeController Class","topic_00000000000000B2.html"],['238',"Methods","topic_00000000000000B2_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B3.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B3.html.js new file mode 100644 index 00000000..db0a1d2b --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B3.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['237',"HomeController Class","topic_00000000000000B2.html"],['238',"Methods","topic_00000000000000B2_methods--.html"],['239',"Index Method","topic_00000000000000B3.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B4.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B4.html.js new file mode 100644 index 00000000..dcd50800 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B4.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['255',"IFileService Interface","topic_00000000000000B4.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B4_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B4_methods--.html.js new file mode 100644 index 00000000..03e2d88d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B4_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['255',"IFileService Interface","topic_00000000000000B4.html"],['256',"Methods","topic_00000000000000B4_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B5.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B5.html.js new file mode 100644 index 00000000..30c71533 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B5.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['255',"IFileService Interface","topic_00000000000000B4.html"],['256',"Methods","topic_00000000000000B4_methods--.html"],['258',"GetImageAsStream Method","topic_00000000000000B5.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B6.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B6.html.js new file mode 100644 index 00000000..5cab9d35 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B6.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['255',"IFileService Interface","topic_00000000000000B4.html"],['256',"Methods","topic_00000000000000B4_methods--.html"],['257',"GetImageAsByteArray Method","topic_00000000000000B6.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B7.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B7.html.js new file mode 100644 index 00000000..47f9c600 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B7.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['240',"Image Class","topic_00000000000000B7.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B7_vars--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B7_vars--.html.js new file mode 100644 index 00000000..bcc8b343 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B7_vars--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['240',"Image Class","topic_00000000000000B7.html"],['241',"Fields","topic_00000000000000B7_vars--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B8.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B8.html.js new file mode 100644 index 00000000..abf49e9d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B8.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['240',"Image Class","topic_00000000000000B7.html"],['241',"Fields","topic_00000000000000B7_vars--.html"],['242',"Base64Image Field","topic_00000000000000B8.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B9.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B9.html.js new file mode 100644 index 00000000..02170200 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B9.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['247',"UnterschriftController Class","topic_00000000000000B9.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000B9_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000B9_methods--.html.js new file mode 100644 index 00000000..03b44b78 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000B9_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['247',"UnterschriftController Class","topic_00000000000000B9.html"],['248',"Methods","topic_00000000000000B9_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BA.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BA.html.js new file mode 100644 index 00000000..4be760b6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BA.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['247',"UnterschriftController Class","topic_00000000000000B9.html"],['248',"Methods","topic_00000000000000B9_methods--.html"],['250',"GetUnterschriftAsBase64 Method","topic_00000000000000BA.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BB.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BB.html.js new file mode 100644 index 00000000..2f72f2d7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BB.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['247',"UnterschriftController Class","topic_00000000000000B9.html"],['248',"Methods","topic_00000000000000B9_methods--.html"],['249',"GetUnterschrift Method","topic_00000000000000BB.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BC.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BC.html.js new file mode 100644 index 00000000..f8b34afa --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BC.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['229',"FileResult Class","topic_00000000000000BC.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BC_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BC_methods--.html.js new file mode 100644 index 00000000..5126d6e6 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BC_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['229',"FileResult Class","topic_00000000000000BC.html"],['231',"Methods","topic_00000000000000BC_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BD.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BD.html.js new file mode 100644 index 00000000..a5497748 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BD.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['229',"FileResult Class","topic_00000000000000BC.html"],['230',"FileResult Constructor","topic_00000000000000BD.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BE.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BE.html.js new file mode 100644 index 00000000..0f3ebb22 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BE.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['229',"FileResult Class","topic_00000000000000BC.html"],['231',"Methods","topic_00000000000000BC_methods--.html"],['232',"ExecuteAsync Method","topic_00000000000000BE.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BF.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BF.html.js new file mode 100644 index 00000000..39576dd8 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BF.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['233',"FileService Class","topic_00000000000000BF.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000BF_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000BF_methods--.html.js new file mode 100644 index 00000000..03361a8c --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000BF_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['233',"FileService Class","topic_00000000000000BF.html"],['234',"Methods","topic_00000000000000BF_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C0.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C0.html.js new file mode 100644 index 00000000..c362d4d9 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C0.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['233',"FileService Class","topic_00000000000000BF.html"],['234',"Methods","topic_00000000000000BF_methods--.html"],['236',"GetImageAsStream Method","topic_00000000000000C0.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C1.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C1.html.js new file mode 100644 index 00000000..38c4ab79 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C1.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['233',"FileService Class","topic_00000000000000BF.html"],['234',"Methods","topic_00000000000000BF_methods--.html"],['235',"GetImageAsByteArray Method","topic_00000000000000C1.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C2.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C2.html.js new file mode 100644 index 00000000..95dd0f24 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C2.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['251',"unterschriftResult Class","topic_00000000000000C2.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C2_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C2_methods--.html.js new file mode 100644 index 00000000..8f6e85d2 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C2_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['251',"unterschriftResult Class","topic_00000000000000C2.html"],['253',"Methods","topic_00000000000000C2_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C3.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C3.html.js new file mode 100644 index 00000000..b21f4d69 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C3.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['251',"unterschriftResult Class","topic_00000000000000C2.html"],['252',"unterschriftResult Constructor","topic_00000000000000C3.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C4.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C4.html.js new file mode 100644 index 00000000..3b3818f7 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C4.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['206',"API_NetFramework.Controllers Namespace","topic_000000000000009C.html"],['251',"unterschriftResult Class","topic_00000000000000C2.html"],['253',"Methods","topic_00000000000000C2_methods--.html"],['254',"ExecuteAsync Method","topic_00000000000000C4.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C5.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C5.html.js new file mode 100644 index 00000000..619993e1 --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C5.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['17',"WebApiApplication Class","topic_00000000000000C5.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C5_methods--.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C5_methods--.html.js new file mode 100644 index 00000000..0ce58f0a --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C5_methods--.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['17',"WebApiApplication Class","topic_00000000000000C5.html"],['18',"Methods","topic_00000000000000C5_methods--.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C6.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C6.html.js new file mode 100644 index 00000000..dc9b7f7d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C6.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"],['4',"API_NetFramework Namespace","topic_0000000000000000.html"],['17',"WebApiApplication Class","topic_00000000000000C5.html"],['18',"Methods","topic_00000000000000C5_methods--.html"],['19',"Application_Start Method","topic_00000000000000C6.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/toc--/topic_00000000000000C7.html.js b/API_NetFramework/VSdoc/toc--/topic_00000000000000C7.html.js new file mode 100644 index 00000000..aa64054d --- /dev/null +++ b/API_NetFramework/VSdoc/toc--/topic_00000000000000C7.html.js @@ -0,0 +1 @@ +var breadcrumbs=[['-1',"",""],['2',"API_NetFramework Reference","topic_00000000000000C7.html"]]; \ No newline at end of file diff --git a/API_NetFramework/VSdoc/topic_0000000000000000.html b/API_NetFramework/VSdoc/topic_0000000000000000.html new file mode 100644 index 00000000..18fd7758 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000000.html @@ -0,0 +1,363 @@ + + + + + + + API_NetFramework Namespace + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework Namespace

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ Classes +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public class + + + + + BundleConfig + + + + +
+ Public class + + + + + FilterConfig + + + + +
+ Public class + + + + + RouteConfig + + + + +
+ Public class + + + + + SwaggerConfig + + + + +
+ Public class + + + + + WebApiApplication + + + + +
+ Public class + + Static + + + + WebApiConfig + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000001.html b/API_NetFramework/VSdoc/topic_0000000000000001.html new file mode 100644 index 00000000..a6526f3f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000001.html @@ -0,0 +1,477 @@ + + + + + + + BundleConfig Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class BundleConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class BundleConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class BundleConfig 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class BundleConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + RegisterBundles(BundleCollection) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ +
+ +
+
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000001_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000001_attached_props--.html new file mode 100644 index 00000000..ef6f04b3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000001_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + BundleConfig Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig Attached Properties

+

+

+ The following tables list the members exposed by the + BundleConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000001_events--.html b/API_NetFramework/VSdoc/topic_0000000000000001_events--.html new file mode 100644 index 00000000..ef3e44e7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000001_events--.html @@ -0,0 +1,123 @@ + + + + + + + BundleConfig Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig Events

+

+

+ The following tables list the members exposed by the + BundleConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000001_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000001_methods--.html new file mode 100644 index 00000000..1ef501dd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000001_methods--.html @@ -0,0 +1,194 @@ + + + + + + + BundleConfig Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig Methods

+

+

+ The following tables list the members exposed by the + BundleConfig + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + RegisterBundles(BundleCollection) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000001_props--.html b/API_NetFramework/VSdoc/topic_0000000000000001_props--.html new file mode 100644 index 00000000..83088212 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000001_props--.html @@ -0,0 +1,123 @@ + + + + + + + BundleConfig Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig Properties

+

+

+ The following tables list the members exposed by the + BundleConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000001_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000001_vars--.html new file mode 100644 index 00000000..042be870 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000001_vars--.html @@ -0,0 +1,123 @@ + + + + + + + BundleConfig Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig Fields

+

+

+ The following tables list the members exposed by the + BundleConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000002.html b/API_NetFramework/VSdoc/topic_0000000000000002.html new file mode 100644 index 00000000..63151d87 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000002.html @@ -0,0 +1,404 @@ + + + + + + + BundleConfig.RegisterBundles Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

BundleConfig.RegisterBundles Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Shared Sub RegisterBundles( _ 
ByVal bundles As BundleCollection
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void RegisterBundles( 
BundleCollection bundles 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
static void RegisterBundles( 
BundleCollection^ bundles 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static function RegisterBundles( 
bundles : BundleCollection 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + bundles + +
+
+ BundleCollection +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000003.html b/API_NetFramework/VSdoc/topic_0000000000000003.html new file mode 100644 index 00000000..b4ce9294 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000003.html @@ -0,0 +1,477 @@ + + + + + + + FilterConfig Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class FilterConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class FilterConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class FilterConfig 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class FilterConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + RegisterGlobalFilters(GlobalFilterCollection) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ +
+ +
+
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000003_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000003_attached_props--.html new file mode 100644 index 00000000..bdf628cc --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000003_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + FilterConfig Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig Attached Properties

+

+

+ The following tables list the members exposed by the + FilterConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000003_events--.html b/API_NetFramework/VSdoc/topic_0000000000000003_events--.html new file mode 100644 index 00000000..2d5af109 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000003_events--.html @@ -0,0 +1,123 @@ + + + + + + + FilterConfig Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig Events

+

+

+ The following tables list the members exposed by the + FilterConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000003_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000003_methods--.html new file mode 100644 index 00000000..6b759d2f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000003_methods--.html @@ -0,0 +1,194 @@ + + + + + + + FilterConfig Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig Methods

+

+

+ The following tables list the members exposed by the + FilterConfig + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + RegisterGlobalFilters(GlobalFilterCollection) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000003_props--.html b/API_NetFramework/VSdoc/topic_0000000000000003_props--.html new file mode 100644 index 00000000..dc5adc42 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000003_props--.html @@ -0,0 +1,123 @@ + + + + + + + FilterConfig Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig Properties

+

+

+ The following tables list the members exposed by the + FilterConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000003_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000003_vars--.html new file mode 100644 index 00000000..afb23a11 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000003_vars--.html @@ -0,0 +1,123 @@ + + + + + + + FilterConfig Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig Fields

+

+

+ The following tables list the members exposed by the + FilterConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000004.html b/API_NetFramework/VSdoc/topic_0000000000000004.html new file mode 100644 index 00000000..d773c3a6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000004.html @@ -0,0 +1,404 @@ + + + + + + + FilterConfig.RegisterGlobalFilters Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FilterConfig.RegisterGlobalFilters Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Shared Sub RegisterGlobalFilters( _ 
ByVal filters As GlobalFilterCollection
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void RegisterGlobalFilters( 
GlobalFilterCollection filters 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
static void RegisterGlobalFilters( 
GlobalFilterCollection^ filters 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static function RegisterGlobalFilters( 
filters : GlobalFilterCollection 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + filters + +
+
+ GlobalFilterCollection +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000005.html b/API_NetFramework/VSdoc/topic_0000000000000005.html new file mode 100644 index 00000000..2cd0e5e8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000005.html @@ -0,0 +1,477 @@ + + + + + + + RouteConfig Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class RouteConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class RouteConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class RouteConfig 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class RouteConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + RegisterRoutes(RouteCollection) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ +
+ +
+
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000005_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000005_attached_props--.html new file mode 100644 index 00000000..586807e6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000005_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + RouteConfig Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig Attached Properties

+

+

+ The following tables list the members exposed by the + RouteConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000005_events--.html b/API_NetFramework/VSdoc/topic_0000000000000005_events--.html new file mode 100644 index 00000000..f5d17db3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000005_events--.html @@ -0,0 +1,123 @@ + + + + + + + RouteConfig Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig Events

+

+

+ The following tables list the members exposed by the + RouteConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000005_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000005_methods--.html new file mode 100644 index 00000000..550cfc95 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000005_methods--.html @@ -0,0 +1,194 @@ + + + + + + + RouteConfig Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig Methods

+

+

+ The following tables list the members exposed by the + RouteConfig + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + RegisterRoutes(RouteCollection) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000005_props--.html b/API_NetFramework/VSdoc/topic_0000000000000005_props--.html new file mode 100644 index 00000000..a60f0029 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000005_props--.html @@ -0,0 +1,123 @@ + + + + + + + RouteConfig Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig Properties

+

+

+ The following tables list the members exposed by the + RouteConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000005_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000005_vars--.html new file mode 100644 index 00000000..5cceac83 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000005_vars--.html @@ -0,0 +1,123 @@ + + + + + + + RouteConfig Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig Fields

+

+

+ The following tables list the members exposed by the + RouteConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000006.html b/API_NetFramework/VSdoc/topic_0000000000000006.html new file mode 100644 index 00000000..41bf967c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000006.html @@ -0,0 +1,404 @@ + + + + + + + RouteConfig.RegisterRoutes Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

RouteConfig.RegisterRoutes Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Shared Sub RegisterRoutes( _ 
ByVal routes As RouteCollection
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void RegisterRoutes( 
RouteCollection routes 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
static void RegisterRoutes( 
RouteCollection^ routes 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static function RegisterRoutes( 
routes : RouteCollection 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + routes + +
+
+ RouteCollection +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000007.html b/API_NetFramework/VSdoc/topic_0000000000000007.html new file mode 100644 index 00000000..cd969a94 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000007.html @@ -0,0 +1,477 @@ + + + + + + + SwaggerConfig Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class SwaggerConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class SwaggerConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class SwaggerConfig 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class SwaggerConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + Register() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ +
+ +
+
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000007_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000007_attached_props--.html new file mode 100644 index 00000000..ebdbd46b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000007_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + SwaggerConfig Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig Attached Properties

+

+

+ The following tables list the members exposed by the + SwaggerConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000007_events--.html b/API_NetFramework/VSdoc/topic_0000000000000007_events--.html new file mode 100644 index 00000000..c1f4b886 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000007_events--.html @@ -0,0 +1,123 @@ + + + + + + + SwaggerConfig Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig Events

+

+

+ The following tables list the members exposed by the + SwaggerConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000007_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000007_methods--.html new file mode 100644 index 00000000..914e49f9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000007_methods--.html @@ -0,0 +1,194 @@ + + + + + + + SwaggerConfig Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig Methods

+

+

+ The following tables list the members exposed by the + SwaggerConfig + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + Register() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000007_props--.html b/API_NetFramework/VSdoc/topic_0000000000000007_props--.html new file mode 100644 index 00000000..2d0a7066 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000007_props--.html @@ -0,0 +1,123 @@ + + + + + + + SwaggerConfig Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig Properties

+

+

+ The following tables list the members exposed by the + SwaggerConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000007_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000007_vars--.html new file mode 100644 index 00000000..fc3481ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000007_vars--.html @@ -0,0 +1,123 @@ + + + + + + + SwaggerConfig Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig Fields

+

+

+ The following tables list the members exposed by the + SwaggerConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000008.html b/API_NetFramework/VSdoc/topic_0000000000000008.html new file mode 100644 index 00000000..0e2a5c13 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000008.html @@ -0,0 +1,388 @@ + + + + + + + SwaggerConfig.Register Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

SwaggerConfig.Register Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Shared Sub Register()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void Register()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
static void Register()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static function Register();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000009.html b/API_NetFramework/VSdoc/topic_0000000000000009.html new file mode 100644 index 00000000..e90d0162 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000009.html @@ -0,0 +1,477 @@ + + + + + + + WebApiConfig Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class WebApiConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static class WebApiConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class WebApiConfig 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class WebApiConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + Register(HttpConfiguration) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ +
+ +
+
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000009_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000009_attached_props--.html new file mode 100644 index 00000000..33589e12 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000009_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiConfig Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig Attached Properties

+

+

+ The following tables list the members exposed by the + WebApiConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000009_events--.html b/API_NetFramework/VSdoc/topic_0000000000000009_events--.html new file mode 100644 index 00000000..68e0ef06 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000009_events--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiConfig Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig Events

+

+

+ The following tables list the members exposed by the + WebApiConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000009_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000009_methods--.html new file mode 100644 index 00000000..e69bc4be --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000009_methods--.html @@ -0,0 +1,194 @@ + + + + + + + WebApiConfig Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig Methods

+

+

+ The following tables list the members exposed by the + WebApiConfig + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + Register(HttpConfiguration) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000009_props--.html b/API_NetFramework/VSdoc/topic_0000000000000009_props--.html new file mode 100644 index 00000000..2f4c3d24 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000009_props--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiConfig Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig Properties

+

+

+ The following tables list the members exposed by the + WebApiConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000009_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000009_vars--.html new file mode 100644 index 00000000..7d080c94 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000009_vars--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiConfig Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig Fields

+

+

+ The following tables list the members exposed by the + WebApiConfig + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000000A.html b/API_NetFramework/VSdoc/topic_000000000000000A.html new file mode 100644 index 00000000..c92dcf0b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000A.html @@ -0,0 +1,404 @@ + + + + + + + WebApiConfig.Register Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiConfig.Register Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Shared Sub Register( _ 
ByVal config As HttpConfiguration
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void Register( 
HttpConfiguration config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
static void Register( 
HttpConfiguration^ config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static function Register( 
config : HttpConfiguration 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000B.html b/API_NetFramework/VSdoc/topic_000000000000000B.html new file mode 100644 index 00000000..f967e9a5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000B.html @@ -0,0 +1,508 @@ + + + + + + + API_NetFramework.Areas.HelpPage Namespace + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework.Areas.HelpPage Namespace

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ Classes +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public class + + Static + + + + ApiDescriptionExtensions + + + + +
+ Public class + + + + + HelpPageAreaRegistration + + + + +
+ Public class + + Static + + + + HelpPageConfig + + +Use this class to customize the Help Page. +For example you can set a custom IDocumentationProvider to supply the documentation +or you can provide the samples for the requests/responses. + +
+ Public class + + Static + + + + HelpPageConfigurationExtensions + + + + +
+ Public class + + + + + HelpPageSampleGenerator + + +This class will generate the samples for the help page. + +
+ Public class + + + + + HelpPageSampleKey + + +This is used to identify the place where the sample should be applied. + +
+ Public class + + + + + ImageSample + + +This represents an image sample on the help page. There's a display template named ImageSample associated with this class. + +
+ Public class + + + + + InvalidSample + + +This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. + +
+ Public class + + + + + ObjectGenerator + + +This class will create an object of a given type and populate it with sample data. + +
+ Public class + + + + + TextSample + + +This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. + +
+ Public class + + + + + XmlDocumentationProvider + + +A custom IDocumentationProvider that reads the API documentation from an XML documentation file. + +
+ + + Top + + +
+
+ + + + + +
+
+ Enumerations +
 
+
+ +
+ + + + + + + + + + + + + +
+ Name + + Description +
+ Public enumeration + + + + + SampleDirection + + +Indicates whether the sample is used for request or response + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000000C.html b/API_NetFramework/VSdoc/topic_000000000000000C.html new file mode 100644 index 00000000..5d2f6eff --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000C.html @@ -0,0 +1,477 @@ + + + + + + + ApiDescriptionExtensions Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ApiDescriptionExtensions
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static class ApiDescriptionExtensions
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ApiDescriptionExtensions 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ApiDescriptionExtensions
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + GetFriendlyId(this ApiDescription) + + + +Generates an URI-friendly ID for the ApiDescription. E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000C_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000000C_attached_props--.html new file mode 100644 index 00000000..cd4f5df7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000C_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ApiDescriptionExtensions Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions Attached Properties

+

+

+ The following tables list the members exposed by the + ApiDescriptionExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000C_events--.html b/API_NetFramework/VSdoc/topic_000000000000000C_events--.html new file mode 100644 index 00000000..2b962da5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000C_events--.html @@ -0,0 +1,123 @@ + + + + + + + ApiDescriptionExtensions Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions Events

+

+

+ The following tables list the members exposed by the + ApiDescriptionExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000C_methods--.html b/API_NetFramework/VSdoc/topic_000000000000000C_methods--.html new file mode 100644 index 00000000..309867fe --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000C_methods--.html @@ -0,0 +1,194 @@ + + + + + + + ApiDescriptionExtensions Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions Methods

+

+

+ The following tables list the members exposed by the + ApiDescriptionExtensions + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + GetFriendlyId(this ApiDescription) + + + +Generates an URI-friendly ID for the ApiDescription. E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000C_props--.html b/API_NetFramework/VSdoc/topic_000000000000000C_props--.html new file mode 100644 index 00000000..f293553d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000C_props--.html @@ -0,0 +1,123 @@ + + + + + + + ApiDescriptionExtensions Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions Properties

+

+

+ The following tables list the members exposed by the + ApiDescriptionExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000C_vars--.html b/API_NetFramework/VSdoc/topic_000000000000000C_vars--.html new file mode 100644 index 00000000..fb778f47 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000C_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ApiDescriptionExtensions Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions Fields

+

+

+ The following tables list the members exposed by the + ApiDescriptionExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000000D.html b/API_NetFramework/VSdoc/topic_000000000000000D.html new file mode 100644 index 00000000..e9da2046 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000D.html @@ -0,0 +1,412 @@ + + + + + + + ApiDescriptionExtensions.GetFriendlyId Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ApiDescriptionExtensions.GetFriendlyId Method

+ + + + + + Generates an URI-friendly ID for the ApiDescription. E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Function GetFriendlyId( _ 
ByVal description As ApiDescription
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static string GetFriendlyId( 
this ApiDescription description 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static String^ GetFriendlyId( 
ApiDescription^ description 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function GetFriendlyId( 
description : ApiDescription 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + description + +
+
+ ApiDescription +
+
+

+ The ApiDescription. +

+ +

+ +

+ Return Value

+ string +

+ The ID as a string. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000E.html b/API_NetFramework/VSdoc/topic_000000000000000E.html new file mode 100644 index 00000000..0c7da97d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000E.html @@ -0,0 +1,480 @@ + + + + + + + HelpPageConfig Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig Class

+ + + + + + Use this class to customize the Help Page. +For example you can set a custom IDocumentationProvider to supply the documentation +or you can provide the samples for the requests/responses. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpPageConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static class HelpPageConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpPageConfig 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageConfig
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + Register(HttpConfiguration) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000E_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000000E_attached_props--.html new file mode 100644 index 00000000..c57a30e4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000E_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfig Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig Attached Properties

+

+

+ The following tables list the members exposed by the + HelpPageConfig + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000E_events--.html b/API_NetFramework/VSdoc/topic_000000000000000E_events--.html new file mode 100644 index 00000000..016a84c7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000E_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfig Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig Events

+

+

+ The following tables list the members exposed by the + HelpPageConfig + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000E_methods--.html b/API_NetFramework/VSdoc/topic_000000000000000E_methods--.html new file mode 100644 index 00000000..82f49f50 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000E_methods--.html @@ -0,0 +1,194 @@ + + + + + + + HelpPageConfig Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig Methods

+

+

+ The following tables list the members exposed by the + HelpPageConfig + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + Register(HttpConfiguration) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000E_props--.html b/API_NetFramework/VSdoc/topic_000000000000000E_props--.html new file mode 100644 index 00000000..feca852f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000E_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfig Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig Properties

+

+

+ The following tables list the members exposed by the + HelpPageConfig + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000000E_vars--.html b/API_NetFramework/VSdoc/topic_000000000000000E_vars--.html new file mode 100644 index 00000000..492a3202 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000E_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfig Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig Fields

+

+

+ The following tables list the members exposed by the + HelpPageConfig + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000000F.html b/API_NetFramework/VSdoc/topic_000000000000000F.html new file mode 100644 index 00000000..18bc8038 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000000F.html @@ -0,0 +1,420 @@ + + + + + + + HelpPageConfig.Register Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfig.Register Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as localized parameters",
+            MessageId = "EDOKA API_NetFramework.Areas.HelpPage.TextSample.#ctor(System.String)",
+            Justification = "End users may choose to merge this string with existing localized resources.")> _ 
<SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", + MessageId = "bsonspec", + Justification = "Part of a URI.")> _ 
Public Shared Sub Register( _ 
ByVal config As HttpConfiguration
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as localized parameters",
+            MessageId = "EDOKA API_NetFramework.Areas.HelpPage.TextSample.#ctor(System.String)",
+            Justification = "End users may choose to merge this string with existing localized resources.")] 
[SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", + MessageId = "bsonspec", + Justification = "Part of a URI.")] 
public static void Register( 
HttpConfiguration config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as localized parameters",
+            MessageId = "EDOKA API_NetFramework.Areas.HelpPage.TextSample.#ctor(System.String)",
+            Justification = "End users may choose to merge this string with existing localized resources.")] 
[SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", + MessageId = "bsonspec", + Justification = "Part of a URI.")] 
public:  
static void Register( 
HttpConfiguration^ config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as localized parameters", + MessageId = "EDOKA API_NetFramework.Areas.HelpPage.TextSample.#ctor(System.String)", + Justification = "End users may choose to merge this string with existing localized resources.") 
SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", + MessageId = "bsonspec", + Justification = "Part of a URI.") 
static function Register( 
config : HttpConfiguration 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000010.html b/API_NetFramework/VSdoc/topic_0000000000000010.html new file mode 100644 index 00000000..d5d3ce43 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000010.html @@ -0,0 +1,267 @@ + + + + + + + API_NetFramework.Areas.HelpPage.Controllers Namespace + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework.Areas.HelpPage.Controllers Namespace

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ Classes +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public class + + + + + HelpController + + +The controller that will handle requests for the help page. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000011.html b/API_NetFramework/VSdoc/topic_0000000000000011.html new file mode 100644 index 00000000..ede05090 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000011.html @@ -0,0 +1,657 @@ + + + + + + + HelpController Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Class

+ + + + + + The controller that will handle requests for the help page. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpController 
Inherits Controller
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpController : Controller
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpController : public Controller^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpController 
extends Controller
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + HelpController() + + + + + +
+ Public constructor + + + + + HelpController(HttpConfiguration) + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Configuration + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Api(string) + + + + + +
+Public method + + + + + Index() + + + + + +
+Public method + + + + + ResourceModel(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000011_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000011_attached_props--.html new file mode 100644 index 00000000..c5de5a71 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000011_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Attached Properties

+

+

+ The following tables list the members exposed by the + HelpController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000011_events--.html b/API_NetFramework/VSdoc/topic_0000000000000011_events--.html new file mode 100644 index 00000000..ad84f94f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000011_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Events

+

+

+ The following tables list the members exposed by the + HelpController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000011_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000011_methods--.html new file mode 100644 index 00000000..af1b955b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000011_methods--.html @@ -0,0 +1,251 @@ + + + + + + + HelpController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Methods

+

+

+ The following tables list the members exposed by the + HelpController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Api(string) + + + + + +
+Public method + + + + + Index() + + + + + +
+Public method + + + + + ResourceModel(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000011_props--.html b/API_NetFramework/VSdoc/topic_0000000000000011_props--.html new file mode 100644 index 00000000..8bc18479 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000011_props--.html @@ -0,0 +1,174 @@ + + + + + + + HelpController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Properties

+

+

+ The following tables list the members exposed by the + HelpController + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Configuration + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000011_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000011_vars--.html new file mode 100644 index 00000000..2a86eeae --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000011_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Fields

+

+

+ The following tables list the members exposed by the + HelpController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000012.html b/API_NetFramework/VSdoc/topic_0000000000000012.html new file mode 100644 index 00000000..40b0b7d8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000012.html @@ -0,0 +1,388 @@ + + + + + + + HelpController Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpController()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpController()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function HelpController();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000012_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000012_overloads--.html new file mode 100644 index 00000000..aa5415c7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000012_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + HelpController Constructor + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Constructor

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +HelpController() + + + + + +
+ +HelpController(HttpConfiguration) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000013.html b/API_NetFramework/VSdoc/topic_0000000000000013.html new file mode 100644 index 00000000..5ce707ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000013.html @@ -0,0 +1,404 @@ + + + + + + + HelpController(HttpConfiguration) Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController(HttpConfiguration) Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal config As HttpConfiguration
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpController( 
HttpConfiguration config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpController( 
HttpConfiguration^ config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function HelpController( 
config : HttpConfiguration 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000013_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000013_overloads--.html new file mode 100644 index 00000000..aa5415c7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000013_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + HelpController Constructor + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController Constructor

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +HelpController() + + + + + +
+ +HelpController(HttpConfiguration) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000014.html b/API_NetFramework/VSdoc/topic_0000000000000014.html new file mode 100644 index 00000000..81befb2a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000014.html @@ -0,0 +1,392 @@ + + + + + + + HelpController.Configuration Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController.Configuration Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Configuration() As HttpConfiguration 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HttpConfiguration Configuration {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property HttpConfiguration^ Configuration { 
HttpConfiguration^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Configuration() : HttpConfiguration;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ HttpConfiguration + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000015.html b/API_NetFramework/VSdoc/topic_0000000000000015.html new file mode 100644 index 00000000..8da99aa6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000015.html @@ -0,0 +1,392 @@ + + + + + + + HelpController.Index Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController.Index Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function Index() As ActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ActionResult Index()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ActionResult^ Index()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Index() : ActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ ActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000016.html b/API_NetFramework/VSdoc/topic_0000000000000016.html new file mode 100644 index 00000000..206d4e45 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000016.html @@ -0,0 +1,408 @@ + + + + + + + HelpController.Api Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController.Api Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function Api( _ 
ByVal apiId As String
) As ActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ActionResult Api( 
string apiId 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ActionResult^ Api( 
String^ apiId 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Api( 
apiId : String 
) : ActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + apiId + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ ActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000017.html b/API_NetFramework/VSdoc/topic_0000000000000017.html new file mode 100644 index 00000000..9a82f8e0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000017.html @@ -0,0 +1,408 @@ + + + + + + + HelpController.ResourceModel Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpController.ResourceModel Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function ResourceModel( _ 
ByVal modelName As String
) As ActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ActionResult ResourceModel( 
string modelName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ActionResult^ ResourceModel( 
String^ modelName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ResourceModel( 
modelName : String 
) : ActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + modelName + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ ActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000018.html b/API_NetFramework/VSdoc/topic_0000000000000018.html new file mode 100644 index 00000000..2656e52b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000018.html @@ -0,0 +1,527 @@ + + + + + + + HelpPageAreaRegistration Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpPageAreaRegistration 
Inherits AreaRegistration
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageAreaRegistration : AreaRegistration
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpPageAreaRegistration : public AreaRegistration^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageAreaRegistration 
extends AreaRegistration
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + AreaName + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + RegisterArea(AreaRegistrationContext) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000018_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000018_attached_props--.html new file mode 100644 index 00000000..b24119c7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000018_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageAreaRegistration Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration Attached Properties

+

+

+ The following tables list the members exposed by the + HelpPageAreaRegistration + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000018_events--.html b/API_NetFramework/VSdoc/topic_0000000000000018_events--.html new file mode 100644 index 00000000..80d3ef94 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000018_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageAreaRegistration Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration Events

+

+

+ The following tables list the members exposed by the + HelpPageAreaRegistration + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000018_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000018_methods--.html new file mode 100644 index 00000000..c520e8e7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000018_methods--.html @@ -0,0 +1,193 @@ + + + + + + + HelpPageAreaRegistration Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration Methods

+

+

+ The following tables list the members exposed by the + HelpPageAreaRegistration + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + RegisterArea(AreaRegistrationContext) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000018_props--.html b/API_NetFramework/VSdoc/topic_0000000000000018_props--.html new file mode 100644 index 00000000..0df3e4a6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000018_props--.html @@ -0,0 +1,174 @@ + + + + + + + HelpPageAreaRegistration Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration Properties

+

+

+ The following tables list the members exposed by the + HelpPageAreaRegistration + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + AreaName + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000018_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000018_vars--.html new file mode 100644 index 00000000..34c82be3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000018_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageAreaRegistration Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration Fields

+

+

+ The following tables list the members exposed by the + HelpPageAreaRegistration + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000019.html b/API_NetFramework/VSdoc/topic_0000000000000019.html new file mode 100644 index 00000000..1b04bb48 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000019.html @@ -0,0 +1,392 @@ + + + + + + + HelpPageAreaRegistration.AreaName Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration.AreaName Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public ReadOnly Overrides Property AreaName() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override string AreaName {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ AreaName { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get AreaName() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001A.html b/API_NetFramework/VSdoc/topic_000000000000001A.html new file mode 100644 index 00000000..7dcbb1a1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001A.html @@ -0,0 +1,404 @@ + + + + + + + HelpPageAreaRegistration.RegisterArea Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageAreaRegistration.RegisterArea Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Sub RegisterArea( _ 
ByVal context As AreaRegistrationContext
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override void RegisterArea( 
AreaRegistrationContext context 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
void RegisterArea( 
AreaRegistrationContext^ context 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function RegisterArea( 
context : AreaRegistrationContext 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + context + +
+
+ AreaRegistrationContext +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001B.html b/API_NetFramework/VSdoc/topic_000000000000001B.html new file mode 100644 index 00000000..26fc51e7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001B.html @@ -0,0 +1,895 @@ + + + + + + + HelpPageConfigurationExtensions Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpPageConfigurationExtensions
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static class HelpPageConfigurationExtensions
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpPageConfigurationExtensions 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageConfigurationExtensions
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + GetHelpPageApiModel(this HttpConfiguration, string) + + + +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. + +
+Public method + + Static + + + + GetHelpPageSampleGenerator(this HttpConfiguration) + + + +Gets the help page sample generator. + +
+Public method + + Static + + + + GetModelDescriptionGenerator(this HttpConfiguration) + + + +Gets the model description generator. + +
+Public method + + Static + + + + SetActualRequestType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+Public method + + Static + + + + SetActualRequestType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+Public method + + Static + + + + SetActualResponseType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+Public method + + Static + + + + SetActualResponseType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+Public method + + Static + + + + SetDocumentationProvider(this HttpConfiguration, IDocumentationProvider) + + + +Sets the documentation provider for help page. + +
+Public method + + Static + + + + SetHelpPageSampleGenerator(this HttpConfiguration, HelpPageSampleGenerator) + + + +Sets the help page sample generator. + +
+Public method + + Static + + + + SetSampleForMediaType(this HttpConfiguration, object, MediaTypeHeaderValue) + + + +Sets the sample directly for all actions with the specified media type. + +
+Public method + + Static + + + + SetSampleForType(this HttpConfiguration, object, MediaTypeHeaderValue, Type) + + + +Sets the sample directly for all actions with the specified type and media type. + +
+Public method + + Static + + + + SetSampleObjects(this HttpConfiguration, IDictionary<TypeObject>) + + + +Sets the objects that will be used by the formatters to produce sample requests/responses. + +
+Public method + + Static + + + + SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type and action. + +
+Public method + + Static + + + + SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample request directly for the specified media type and action with parameters. + +
+Public method + + Static + + + + SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type of the action. + +
+Public method + + Static + + + + SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample response directly for the specified media type of the action with specific parameters. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001B_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000001B_attached_props--.html new file mode 100644 index 00000000..7f8580f2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001B_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfigurationExtensions Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions Attached Properties

+

+

+ The following tables list the members exposed by the + HelpPageConfigurationExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001B_events--.html b/API_NetFramework/VSdoc/topic_000000000000001B_events--.html new file mode 100644 index 00000000..b8e98c9a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001B_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfigurationExtensions Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions Events

+

+

+ The following tables list the members exposed by the + HelpPageConfigurationExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001B_methods--.html b/API_NetFramework/VSdoc/topic_000000000000001B_methods--.html new file mode 100644 index 00000000..5729460d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001B_methods--.html @@ -0,0 +1,612 @@ + + + + + + + HelpPageConfigurationExtensions Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions Methods

+

+

+ The following tables list the members exposed by the + HelpPageConfigurationExtensions + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + Static + + + + GetHelpPageApiModel(this HttpConfiguration, string) + + + +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. + +
+Public method + + Static + + + + GetHelpPageSampleGenerator(this HttpConfiguration) + + + +Gets the help page sample generator. + +
+Public method + + Static + + + + GetModelDescriptionGenerator(this HttpConfiguration) + + + +Gets the model description generator. + +
+Public method + + Static + + + + SetActualRequestType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+Public method + + Static + + + + SetActualRequestType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+Public method + + Static + + + + SetActualResponseType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+Public method + + Static + + + + SetActualResponseType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+Public method + + Static + + + + SetDocumentationProvider(this HttpConfiguration, IDocumentationProvider) + + + +Sets the documentation provider for help page. + +
+Public method + + Static + + + + SetHelpPageSampleGenerator(this HttpConfiguration, HelpPageSampleGenerator) + + + +Sets the help page sample generator. + +
+Public method + + Static + + + + SetSampleForMediaType(this HttpConfiguration, object, MediaTypeHeaderValue) + + + +Sets the sample directly for all actions with the specified media type. + +
+Public method + + Static + + + + SetSampleForType(this HttpConfiguration, object, MediaTypeHeaderValue, Type) + + + +Sets the sample directly for all actions with the specified type and media type. + +
+Public method + + Static + + + + SetSampleObjects(this HttpConfiguration, IDictionary<TypeObject>) + + + +Sets the objects that will be used by the formatters to produce sample requests/responses. + +
+Public method + + Static + + + + SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type and action. + +
+Public method + + Static + + + + SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample request directly for the specified media type and action with parameters. + +
+Public method + + Static + + + + SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type of the action. + +
+Public method + + Static + + + + SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample response directly for the specified media type of the action with specific parameters. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001B_props--.html b/API_NetFramework/VSdoc/topic_000000000000001B_props--.html new file mode 100644 index 00000000..734f8dd2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001B_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfigurationExtensions Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions Properties

+

+

+ The following tables list the members exposed by the + HelpPageConfigurationExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001B_vars--.html b/API_NetFramework/VSdoc/topic_000000000000001B_vars--.html new file mode 100644 index 00000000..88b75bde --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001B_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageConfigurationExtensions Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions Fields

+

+

+ The following tables list the members exposed by the + HelpPageConfigurationExtensions + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000001C.html b/API_NetFramework/VSdoc/topic_000000000000001C.html new file mode 100644 index 00000000..a51f45d9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001C.html @@ -0,0 +1,418 @@ + + + + + + + HelpPageConfigurationExtensions.SetDocumentationProvider Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetDocumentationProvider Method

+ + + + + + Sets the documentation provider for help page. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetDocumentationProvider( _ 
ByVal config As HttpConfiguration, _ 
ByVal documentationProvider As IDocumentationProvider
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetDocumentationProvider( 
this HttpConfiguration config
IDocumentationProvider documentationProvider 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetDocumentationProvider( 
HttpConfiguration^ config
IDocumentationProvider^ documentationProvider 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetDocumentationProvider( 
config : HttpConfiguration
documentationProvider : IDocumentationProvider 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + documentationProvider + +
+
+ IDocumentationProvider +
+
+

+ The documentation provider. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001D.html b/API_NetFramework/VSdoc/topic_000000000000001D.html new file mode 100644 index 00000000..dd8cba2a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001D.html @@ -0,0 +1,418 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleObjects Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleObjects Method

+ + + + + + Sets the objects that will be used by the formatters to produce sample requests/responses. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleObjects( _ 
ByVal config As HttpConfiguration, _ 
ByVal sampleObjects As IDictionary(Of Type, Object) _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleObjects( 
this HttpConfiguration config
IDictionary<Type, object> sampleObjects 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleObjects( 
HttpConfiguration^ config
IDictionary<Type^, object^>^ sampleObjects 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sampleObjects + +
+
+ IDictionary<Type, object> +
+
+

+ The sample objects. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001E.html b/API_NetFramework/VSdoc/topic_000000000000001E.html new file mode 100644 index 00000000..b1f5062b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001E.html @@ -0,0 +1,457 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method

+ + + + + + Sets the sample request directly for the specified media type and action. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleRequest( _ 
ByVal config As HttpConfiguration, _ 
ByVal sample As Object, _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal controllerName As String, _ 
ByVal actionName As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleRequest( 
this HttpConfiguration config
object sample
MediaTypeHeaderValue mediaType
string controllerName
string actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleRequest( 
HttpConfiguration^ config
object^ sample
MediaTypeHeaderValue^ mediaType
String^ controllerName
String^ actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetSampleRequest( 
config : HttpConfiguration
sample : object
mediaType : MediaTypeHeaderValue
controllerName : String
actionName : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sample + +
+
+ object +
+
+

+ The sample request. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001E_overloads--.html b/API_NetFramework/VSdoc/topic_000000000000001E_overloads--.html new file mode 100644 index 00000000..4470f217 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001E_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleRequest Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleRequest Method

+

+ + + Sets the sample request directly for the specified media type and action. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type and action. + +
+ +SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample request directly for the specified media type and action with parameters. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001F.html b/API_NetFramework/VSdoc/topic_000000000000001F.html new file mode 100644 index 00000000..531b3af0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001F.html @@ -0,0 +1,470 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleRequest (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method

+ + + + + + Sets the sample request directly for the specified media type and action with parameters. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleRequest( _ 
ByVal config As HttpConfiguration, _ 
ByVal sample As Object, _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal ParamArray parameterNames As String() _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleRequest( 
this HttpConfiguration config
object sample
MediaTypeHeaderValue mediaType
string controllerName
string actionName
params string[] parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleRequest( 
HttpConfiguration^ config
object^ sample
MediaTypeHeaderValue^ mediaType
String^ controllerName
String^ actionName
...array< array< String^ >^ >^ parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetSampleRequest( 
config : HttpConfiguration
sample : object
mediaType : MediaTypeHeaderValue
controllerName : String
actionName : String
... parameterNames : String[] 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sample + +
+
+ object +
+
+

+ The sample request. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ string[] +
+
+

+ The parameter names. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000001F_overloads--.html b/API_NetFramework/VSdoc/topic_000000000000001F_overloads--.html new file mode 100644 index 00000000..86a713be --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000001F_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleRequest Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleRequest Method

+

+ + + Sets the sample request directly for the specified media type and action with parameters. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type and action. + +
+ +SetSampleRequest(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample request directly for the specified media type and action with parameters. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000020.html b/API_NetFramework/VSdoc/topic_0000000000000020.html new file mode 100644 index 00000000..793c25df --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000020.html @@ -0,0 +1,457 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String) Method

+ + + + + + Sets the sample request directly for the specified media type of the action. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleResponse( _ 
ByVal config As HttpConfiguration, _ 
ByVal sample As Object, _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal controllerName As String, _ 
ByVal actionName As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleResponse( 
this HttpConfiguration config
object sample
MediaTypeHeaderValue mediaType
string controllerName
string actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleResponse( 
HttpConfiguration^ config
object^ sample
MediaTypeHeaderValue^ mediaType
String^ controllerName
String^ actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetSampleResponse( 
config : HttpConfiguration
sample : object
mediaType : MediaTypeHeaderValue
controllerName : String
actionName : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sample + +
+
+ object +
+
+

+ The sample response. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000020_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000020_overloads--.html new file mode 100644 index 00000000..29c3b7e8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000020_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleResponse Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleResponse Method

+

+ + + Sets the sample request directly for the specified media type of the action. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type of the action. + +
+ +SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample response directly for the specified media type of the action with specific parameters. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000021.html b/API_NetFramework/VSdoc/topic_0000000000000021.html new file mode 100644 index 00000000..bdc591e7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000021.html @@ -0,0 +1,470 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleResponse (HttpConfiguration, Object, MediaTypeHeaderValue, String, String, String()) Method

+ + + + + + Sets the sample response directly for the specified media type of the action with specific parameters. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleResponse( _ 
ByVal config As HttpConfiguration, _ 
ByVal sample As Object, _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal ParamArray parameterNames As String() _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleResponse( 
this HttpConfiguration config
object sample
MediaTypeHeaderValue mediaType
string controllerName
string actionName
params string[] parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleResponse( 
HttpConfiguration^ config
object^ sample
MediaTypeHeaderValue^ mediaType
String^ controllerName
String^ actionName
...array< array< String^ >^ >^ parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetSampleResponse( 
config : HttpConfiguration
sample : object
mediaType : MediaTypeHeaderValue
controllerName : String
actionName : String
... parameterNames : String[] 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sample + +
+
+ object +
+
+

+ The sample response. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ string[] +
+
+

+ The parameter names. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000021_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000021_overloads--.html new file mode 100644 index 00000000..f27516d4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000021_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleResponse Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleResponse Method

+

+ + + Sets the sample response directly for the specified media type of the action with specific parameters. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string) + + + +Sets the sample request directly for the specified media type of the action. + +
+ +SetSampleResponse(this HttpConfiguration, object, MediaTypeHeaderValue, string, string, params string[]) + + + +Sets the sample response directly for the specified media type of the action with specific parameters. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000022.html b/API_NetFramework/VSdoc/topic_0000000000000022.html new file mode 100644 index 00000000..0f814723 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000022.html @@ -0,0 +1,431 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleForMediaType Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleForMediaType Method

+ + + + + + Sets the sample directly for all actions with the specified media type. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleForMediaType( _ 
ByVal config As HttpConfiguration, _ 
ByVal sample As Object, _ 
ByVal mediaType As MediaTypeHeaderValue
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleForMediaType( 
this HttpConfiguration config
object sample
MediaTypeHeaderValue mediaType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleForMediaType( 
HttpConfiguration^ config
object^ sample
MediaTypeHeaderValue^ mediaType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetSampleForMediaType( 
config : HttpConfiguration
sample : object
mediaType : MediaTypeHeaderValue 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sample + +
+
+ object +
+
+

+ The sample. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000023.html b/API_NetFramework/VSdoc/topic_0000000000000023.html new file mode 100644 index 00000000..1fc01310 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000023.html @@ -0,0 +1,444 @@ + + + + + + + HelpPageConfigurationExtensions.SetSampleForType Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetSampleForType Method

+ + + + + + Sets the sample directly for all actions with the specified type and media type. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetSampleForType( _ 
ByVal config As HttpConfiguration, _ 
ByVal sample As Object, _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal type As Type
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetSampleForType( 
this HttpConfiguration config
object sample
MediaTypeHeaderValue mediaType
Type type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetSampleForType( 
HttpConfiguration^ config
object^ sample
MediaTypeHeaderValue^ mediaType
Type^ type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetSampleForType( 
config : HttpConfiguration
sample : object
mediaType : MediaTypeHeaderValue
type : Type 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sample + +
+
+ object +
+
+

+ The sample. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + type + +
+
+ Type +
+
+

+ The parameter type or return type of an action. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000024.html b/API_NetFramework/VSdoc/topic_0000000000000024.html new file mode 100644 index 00000000..fec5bd3a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000024.html @@ -0,0 +1,445 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String) Method

+ + + + + + Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetActualRequestType( _ 
ByVal config As HttpConfiguration, _ 
ByVal type As Type, _ 
ByVal controllerName As String, _ 
ByVal actionName As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetActualRequestType( 
this HttpConfiguration config
Type type
string controllerName
string actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetActualRequestType( 
HttpConfiguration^ config
Type^ type
String^ controllerName
String^ actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetActualRequestType( 
config : HttpConfiguration
type : Type
controllerName : String
actionName : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + type + +
+
+ Type +
+
+

+ The type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000024_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000024_overloads--.html new file mode 100644 index 00000000..034020ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000024_overloads--.html @@ -0,0 +1,175 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualRequestType Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualRequestType Method

+

+ + + Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetActualRequestType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+ +SetActualRequestType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000025.html b/API_NetFramework/VSdoc/topic_0000000000000025.html new file mode 100644 index 00000000..f6f38623 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000025.html @@ -0,0 +1,458 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String, String()) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualRequestType (HttpConfiguration, Type, String, String, String()) Method

+ + + + + + Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetActualRequestType( _ 
ByVal config As HttpConfiguration, _ 
ByVal type As Type, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal ParamArray parameterNames As String() _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetActualRequestType( 
this HttpConfiguration config
Type type
string controllerName
string actionName
params string[] parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetActualRequestType( 
HttpConfiguration^ config
Type^ type
String^ controllerName
String^ actionName
...array< array< String^ >^ >^ parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetActualRequestType( 
config : HttpConfiguration
type : Type
controllerName : String
actionName : String
... parameterNames : String[] 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + type + +
+
+ Type +
+
+

+ The type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ string[] +
+
+

+ The parameter names. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000025_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000025_overloads--.html new file mode 100644 index 00000000..034020ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000025_overloads--.html @@ -0,0 +1,175 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualRequestType Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualRequestType Method

+

+ + + Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetActualRequestType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+ +SetActualRequestType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. +The help page will use this information to produce more accurate request samples. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000026.html b/API_NetFramework/VSdoc/topic_0000000000000026.html new file mode 100644 index 00000000..3309cbe1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000026.html @@ -0,0 +1,445 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String) Method

+ + + + + + Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetActualResponseType( _ 
ByVal config As HttpConfiguration, _ 
ByVal type As Type, _ 
ByVal controllerName As String, _ 
ByVal actionName As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetActualResponseType( 
this HttpConfiguration config
Type type
string controllerName
string actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetActualResponseType( 
HttpConfiguration^ config
Type^ type
String^ controllerName
String^ actionName 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetActualResponseType( 
config : HttpConfiguration
type : Type
controllerName : String
actionName : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + type + +
+
+ Type +
+
+

+ The type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000026_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000026_overloads--.html new file mode 100644 index 00000000..f699ba97 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000026_overloads--.html @@ -0,0 +1,175 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualResponseType Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualResponseType Method

+

+ + + Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetActualResponseType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+ +SetActualResponseType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000027.html b/API_NetFramework/VSdoc/topic_0000000000000027.html new file mode 100644 index 00000000..111dfc7d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000027.html @@ -0,0 +1,458 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String, String()) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualResponseType (HttpConfiguration, Type, String, String, String()) Method

+ + + + + + Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetActualResponseType( _ 
ByVal config As HttpConfiguration, _ 
ByVal type As Type, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal ParamArray parameterNames As String() _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetActualResponseType( 
this HttpConfiguration config
Type type
string controllerName
string actionName
params string[] parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetActualResponseType( 
HttpConfiguration^ config
Type^ type
String^ controllerName
String^ actionName
...array< array< String^ >^ >^ parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetActualResponseType( 
config : HttpConfiguration
type : Type
controllerName : String
actionName : String
... parameterNames : String[] 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + type + +
+
+ Type +
+
+

+ The type. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ string[] +
+
+

+ The parameter names. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000027_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000027_overloads--.html new file mode 100644 index 00000000..f699ba97 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000027_overloads--.html @@ -0,0 +1,175 @@ + + + + + + + HelpPageConfigurationExtensions.SetActualResponseType Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetActualResponseType Method

+

+ + + Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +SetActualResponseType(this HttpConfiguration, Type, string, string) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+ +SetActualResponseType(this HttpConfiguration, Type, string, string, params string[]) + + + +Specifies the actual type of ObjectContent<T> returned as part of the HttpRequestMessage in an action. +The help page will use this information to produce more accurate response samples. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000028.html b/API_NetFramework/VSdoc/topic_0000000000000028.html new file mode 100644 index 00000000..8249b8ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000028.html @@ -0,0 +1,412 @@ + + + + + + + HelpPageConfigurationExtensions.GetHelpPageSampleGenerator Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.GetHelpPageSampleGenerator Method

+ + + + + + Gets the help page sample generator. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Function GetHelpPageSampleGenerator( _ 
ByVal config As HttpConfiguration
) As HelpPageSampleGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static HelpPageSampleGenerator GetHelpPageSampleGenerator( 
this HttpConfiguration config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static HelpPageSampleGenerator^ GetHelpPageSampleGenerator( 
HttpConfiguration^ config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function GetHelpPageSampleGenerator( 
config : HttpConfiguration 
) : HelpPageSampleGenerator;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+ +

+ +

+ Return Value

+ HelpPageSampleGenerator +

+ The help page sample generator. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000029.html b/API_NetFramework/VSdoc/topic_0000000000000029.html new file mode 100644 index 00000000..25ec9c9c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000029.html @@ -0,0 +1,418 @@ + + + + + + + HelpPageConfigurationExtensions.SetHelpPageSampleGenerator Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.SetHelpPageSampleGenerator Method

+ + + + + + Sets the help page sample generator. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Sub SetHelpPageSampleGenerator( _ 
ByVal config As HttpConfiguration, _ 
ByVal sampleGenerator As HelpPageSampleGenerator
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static void SetHelpPageSampleGenerator( 
this HttpConfiguration config
HelpPageSampleGenerator sampleGenerator 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static void SetHelpPageSampleGenerator( 
HttpConfiguration^ config
HelpPageSampleGenerator^ sampleGenerator 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function SetHelpPageSampleGenerator( 
config : HttpConfiguration
sampleGenerator : HelpPageSampleGenerator 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + sampleGenerator + +
+
+ HelpPageSampleGenerator +
+
+

+ The help page sample generator. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002A.html b/API_NetFramework/VSdoc/topic_000000000000002A.html new file mode 100644 index 00000000..4c256224 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002A.html @@ -0,0 +1,412 @@ + + + + + + + HelpPageConfigurationExtensions.GetModelDescriptionGenerator Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.GetModelDescriptionGenerator Method

+ + + + + + Gets the model description generator. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Function GetModelDescriptionGenerator( _ 
ByVal config As HttpConfiguration
) As ModelDescriptionGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static ModelDescriptionGenerator GetModelDescriptionGenerator( 
this HttpConfiguration config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static ModelDescriptionGenerator^ GetModelDescriptionGenerator( 
HttpConfiguration^ config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function GetModelDescriptionGenerator( 
config : HttpConfiguration 
) : ModelDescriptionGenerator;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The configuration. +

+ +

+ +

+ Return Value

+ ModelDescriptionGenerator +

+ The ModelDescriptionGenerator +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002B.html b/API_NetFramework/VSdoc/topic_000000000000002B.html new file mode 100644 index 00000000..012fca5e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002B.html @@ -0,0 +1,425 @@ + + + + + + + HelpPageConfigurationExtensions.GetHelpPageApiModel Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageConfigurationExtensions.GetHelpPageApiModel Method

+ + + + + + 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. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Extension()> _ 
Public Shared Function GetHelpPageApiModel( _ 
ByVal config As HttpConfiguration, _ 
ByVal apiDescriptionId As String
) As HelpPageApiModel
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static HelpPageApiModel GetHelpPageApiModel( 
this HttpConfiguration config
string apiDescriptionId 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Extension()] 
public:  
static HelpPageApiModel^ GetHelpPageApiModel( 
HttpConfiguration^ config
String^ apiDescriptionId 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Extension() 
static function GetHelpPageApiModel( 
config : HttpConfiguration
apiDescriptionId : String 
) : HelpPageApiModel;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ The HttpConfiguration. +

+
+
+ + apiDescriptionId + +
+
+ string +
+
+

+ The ApiDescription ID. +

+ +

+ +

+ Return Value

+ HelpPageApiModel +

+ An HelpPageApiModel +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002C.html b/API_NetFramework/VSdoc/topic_000000000000002C.html new file mode 100644 index 00000000..abac3af4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002C.html @@ -0,0 +1,522 @@ + + + + + + + API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ Classes +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public class + + + + + CollectionModelDescription + + + + +
+ Public class + + + + + ComplexTypeModelDescription + + + + +
+ Public class + + + + + DictionaryModelDescription + + + + +
+ Public class + + + + + EnumTypeModelDescription + + + + +
+ Public class + + + + + EnumValueDescription + + + + +
+ Public class + + + + + KeyValuePairModelDescription + + + + +
+ Public class + + + + + ModelDescription + + +Describes a type model. + +
+ Public class + + + + + ModelDescriptionGenerator + + +Generates model descriptions for given types. + +
+ Public class + + + + + ModelNameAttribute + + +Use this attribute to change the name of the ModelDescription generated for a type. + +
+ Public class + + + + + ParameterAnnotation + + + + +
+ Public class + + + + + ParameterDescription + + + + +
+ Public class + + + + + SimpleTypeModelDescription + + + + +
+ + + Top + + +
+
+ + +
+
+ Interfaces +
 
+
+ +
+ + + + + + + + + + + + + +
+ Name + + Description +
+ Public interface + + + + + IModelDocumentationProvider + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000002D.html b/API_NetFramework/VSdoc/topic_000000000000002D.html new file mode 100644 index 00000000..81352843 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002D.html @@ -0,0 +1,555 @@ + + + + + + + CollectionModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class CollectionModelDescription 
Inherits ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class CollectionModelDescription : ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class CollectionModelDescription : public ModelDescription^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class CollectionModelDescription 
extends ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ElementDescription + + + + + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + + + +
API_NetFramework.Areas.HelpPage.ModelDescriptions.CollectionModelDescription
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002D_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000002D_attached_props--.html new file mode 100644 index 00000000..45665b86 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002D_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + CollectionModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + CollectionModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002D_events--.html b/API_NetFramework/VSdoc/topic_000000000000002D_events--.html new file mode 100644 index 00000000..cc2424c7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002D_events--.html @@ -0,0 +1,123 @@ + + + + + + + CollectionModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription Events

+

+

+ The following tables list the members exposed by the + CollectionModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002D_methods--.html b/API_NetFramework/VSdoc/topic_000000000000002D_methods--.html new file mode 100644 index 00000000..00b15d60 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002D_methods--.html @@ -0,0 +1,125 @@ + + + + + + + CollectionModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription Methods

+

+

+ The following tables list the members exposed by the + CollectionModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002D_props--.html b/API_NetFramework/VSdoc/topic_000000000000002D_props--.html new file mode 100644 index 00000000..db05b6d9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002D_props--.html @@ -0,0 +1,252 @@ + + + + + + + CollectionModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription Properties

+

+

+ The following tables list the members exposed by the + CollectionModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ElementDescription + + + + + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002D_vars--.html b/API_NetFramework/VSdoc/topic_000000000000002D_vars--.html new file mode 100644 index 00000000..13b60529 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002D_vars--.html @@ -0,0 +1,123 @@ + + + + + + + CollectionModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription Fields

+

+

+ The following tables list the members exposed by the + CollectionModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000002E.html b/API_NetFramework/VSdoc/topic_000000000000002E.html new file mode 100644 index 00000000..29e20595 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002E.html @@ -0,0 +1,392 @@ + + + + + + + CollectionModelDescription.ElementDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

CollectionModelDescription.ElementDescription Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ElementDescription() As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription ElementDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ModelDescription^ ElementDescription { 
ModelDescription^ get( ); 
void set( 
ModelDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ElementDescription() : ModelDescription
public function set ElementDescription(value : ModelDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002F.html b/API_NetFramework/VSdoc/topic_000000000000002F.html new file mode 100644 index 00000000..27aad20f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002F.html @@ -0,0 +1,606 @@ + + + + + + + ComplexTypeModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ComplexTypeModelDescription 
Inherits ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ComplexTypeModelDescription : ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ComplexTypeModelDescription : public ModelDescription^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ComplexTypeModelDescription 
extends ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + ComplexTypeModelDescription() + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Properties + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + + + +
API_NetFramework.Areas.HelpPage.ModelDescriptions.ComplexTypeModelDescription
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002F_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000002F_attached_props--.html new file mode 100644 index 00000000..07728501 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002F_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ComplexTypeModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + ComplexTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002F_events--.html b/API_NetFramework/VSdoc/topic_000000000000002F_events--.html new file mode 100644 index 00000000..da1e305d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002F_events--.html @@ -0,0 +1,123 @@ + + + + + + + ComplexTypeModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Events

+

+

+ The following tables list the members exposed by the + ComplexTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002F_methods--.html b/API_NetFramework/VSdoc/topic_000000000000002F_methods--.html new file mode 100644 index 00000000..b6aba432 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002F_methods--.html @@ -0,0 +1,125 @@ + + + + + + + ComplexTypeModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Methods

+

+

+ The following tables list the members exposed by the + ComplexTypeModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002F_props--.html b/API_NetFramework/VSdoc/topic_000000000000002F_props--.html new file mode 100644 index 00000000..a38e9470 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002F_props--.html @@ -0,0 +1,252 @@ + + + + + + + ComplexTypeModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Properties

+

+

+ The following tables list the members exposed by the + ComplexTypeModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Properties + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000002F_vars--.html b/API_NetFramework/VSdoc/topic_000000000000002F_vars--.html new file mode 100644 index 00000000..bfa6f46c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000002F_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ComplexTypeModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Fields

+

+

+ The following tables list the members exposed by the + ComplexTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000030.html b/API_NetFramework/VSdoc/topic_0000000000000030.html new file mode 100644 index 00000000..82ebd07f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000030.html @@ -0,0 +1,388 @@ + + + + + + + ComplexTypeModelDescription Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ComplexTypeModelDescription()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ComplexTypeModelDescription()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ComplexTypeModelDescription();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000031.html b/API_NetFramework/VSdoc/topic_0000000000000031.html new file mode 100644 index 00000000..aeeb2b09 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000031.html @@ -0,0 +1,392 @@ + + + + + + + ComplexTypeModelDescription.Properties Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ComplexTypeModelDescription.Properties Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Properties() As Collection(Of ParameterDescription
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Collection<ParameterDescription> Properties {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Collection<ParameterDescription^>^ Properties { 
Collection<ParameterDescription^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Collection<ParameterDescription> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000032.html b/API_NetFramework/VSdoc/topic_0000000000000032.html new file mode 100644 index 00000000..3e280e1f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000032.html @@ -0,0 +1,586 @@ + + + + + + + DictionaryModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DictionaryModelDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class DictionaryModelDescription 
Inherits KeyValuePairModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class DictionaryModelDescription : KeyValuePairModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class DictionaryModelDescription : public KeyValuePairModelDescription^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class DictionaryModelDescription 
extends KeyValuePairModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + KeyModelDescription + + + + +(inherited from KeyValuePairModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ValueModelDescription + + + + +(inherited from KeyValuePairModelDescription). + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + + + + + +
API_NetFramework.Areas.HelpPage.ModelDescriptions.DictionaryModelDescription
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000032_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000032_attached_props--.html new file mode 100644 index 00000000..a43faf16 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000032_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + DictionaryModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DictionaryModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + DictionaryModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000032_events--.html b/API_NetFramework/VSdoc/topic_0000000000000032_events--.html new file mode 100644 index 00000000..a37eb9b4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000032_events--.html @@ -0,0 +1,123 @@ + + + + + + + DictionaryModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DictionaryModelDescription Events

+

+

+ The following tables list the members exposed by the + DictionaryModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000032_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000032_methods--.html new file mode 100644 index 00000000..acd9a78e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000032_methods--.html @@ -0,0 +1,125 @@ + + + + + + + DictionaryModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DictionaryModelDescription Methods

+

+

+ The following tables list the members exposed by the + DictionaryModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000032_props--.html b/API_NetFramework/VSdoc/topic_0000000000000032_props--.html new file mode 100644 index 00000000..0537b091 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000032_props--.html @@ -0,0 +1,280 @@ + + + + + + + DictionaryModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DictionaryModelDescription Properties

+

+

+ The following tables list the members exposed by the + DictionaryModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + KeyModelDescription + + + + +(inherited from KeyValuePairModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ValueModelDescription + + + + +(inherited from KeyValuePairModelDescription). + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000032_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000032_vars--.html new file mode 100644 index 00000000..213dd658 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000032_vars--.html @@ -0,0 +1,123 @@ + + + + + + + DictionaryModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DictionaryModelDescription Fields

+

+

+ The following tables list the members exposed by the + DictionaryModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000033.html b/API_NetFramework/VSdoc/topic_0000000000000033.html new file mode 100644 index 00000000..95405492 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000033.html @@ -0,0 +1,606 @@ + + + + + + + EnumTypeModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class EnumTypeModelDescription 
Inherits ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class EnumTypeModelDescription : ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class EnumTypeModelDescription : public ModelDescription^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class EnumTypeModelDescription 
extends ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + EnumTypeModelDescription() + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Values + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + + + +
API_NetFramework.Areas.HelpPage.ModelDescriptions.EnumTypeModelDescription
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000033_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000033_attached_props--.html new file mode 100644 index 00000000..c46e62c9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000033_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + EnumTypeModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + EnumTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000033_events--.html b/API_NetFramework/VSdoc/topic_0000000000000033_events--.html new file mode 100644 index 00000000..7999de8b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000033_events--.html @@ -0,0 +1,123 @@ + + + + + + + EnumTypeModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Events

+

+

+ The following tables list the members exposed by the + EnumTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000033_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000033_methods--.html new file mode 100644 index 00000000..8e58d741 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000033_methods--.html @@ -0,0 +1,125 @@ + + + + + + + EnumTypeModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Methods

+

+

+ The following tables list the members exposed by the + EnumTypeModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000033_props--.html b/API_NetFramework/VSdoc/topic_0000000000000033_props--.html new file mode 100644 index 00000000..7be2b791 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000033_props--.html @@ -0,0 +1,252 @@ + + + + + + + EnumTypeModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Properties

+

+

+ The following tables list the members exposed by the + EnumTypeModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Values + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000033_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000033_vars--.html new file mode 100644 index 00000000..f081c77e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000033_vars--.html @@ -0,0 +1,123 @@ + + + + + + + EnumTypeModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Fields

+

+

+ The following tables list the members exposed by the + EnumTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000034.html b/API_NetFramework/VSdoc/topic_0000000000000034.html new file mode 100644 index 00000000..4e05bf6c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000034.html @@ -0,0 +1,388 @@ + + + + + + + EnumTypeModelDescription Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public EnumTypeModelDescription()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
EnumTypeModelDescription()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function EnumTypeModelDescription();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000035.html b/API_NetFramework/VSdoc/topic_0000000000000035.html new file mode 100644 index 00000000..dfd08d80 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000035.html @@ -0,0 +1,392 @@ + + + + + + + EnumTypeModelDescription.Values Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumTypeModelDescription.Values Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Values() As Collection(Of EnumValueDescription
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Collection<EnumValueDescription> Values {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Collection<EnumValueDescription^>^ Values { 
Collection<EnumValueDescription^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Collection<EnumValueDescription> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000036.html b/API_NetFramework/VSdoc/topic_0000000000000036.html new file mode 100644 index 00000000..20793d4a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000036.html @@ -0,0 +1,507 @@ + + + + + + + EnumValueDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class EnumValueDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class EnumValueDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class EnumValueDescription 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class EnumValueDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + + +
+Public property + + + + + Name + + + + + +
+Public property + + + + + Value + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000036_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000036_attached_props--.html new file mode 100644 index 00000000..fde3eae0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000036_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + EnumValueDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription Attached Properties

+

+

+ The following tables list the members exposed by the + EnumValueDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000036_events--.html b/API_NetFramework/VSdoc/topic_0000000000000036_events--.html new file mode 100644 index 00000000..a2ae08e5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000036_events--.html @@ -0,0 +1,123 @@ + + + + + + + EnumValueDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription Events

+

+

+ The following tables list the members exposed by the + EnumValueDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000036_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000036_methods--.html new file mode 100644 index 00000000..99e18fdc --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000036_methods--.html @@ -0,0 +1,125 @@ + + + + + + + EnumValueDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription Methods

+

+

+ The following tables list the members exposed by the + EnumValueDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000036_props--.html b/API_NetFramework/VSdoc/topic_0000000000000036_props--.html new file mode 100644 index 00000000..59bf7fb5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000036_props--.html @@ -0,0 +1,222 @@ + + + + + + + EnumValueDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription Properties

+

+

+ The following tables list the members exposed by the + EnumValueDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + + +
+Public property + + + + + Name + + + + + +
+Public property + + + + + Value + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000036_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000036_vars--.html new file mode 100644 index 00000000..7f3c294f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000036_vars--.html @@ -0,0 +1,123 @@ + + + + + + + EnumValueDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription Fields

+

+

+ The following tables list the members exposed by the + EnumValueDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000037.html b/API_NetFramework/VSdoc/topic_0000000000000037.html new file mode 100644 index 00000000..6d4284b3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000037.html @@ -0,0 +1,392 @@ + + + + + + + EnumValueDescription.Documentation Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription.Documentation Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Documentation() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Documentation {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Documentation { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Documentation() : String
public function set Documentation(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000038.html b/API_NetFramework/VSdoc/topic_0000000000000038.html new file mode 100644 index 00000000..af4b2ac1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000038.html @@ -0,0 +1,392 @@ + + + + + + + EnumValueDescription.Name Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription.Name Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Name() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Name {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Name { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Name() : String
public function set Name(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000039.html b/API_NetFramework/VSdoc/topic_0000000000000039.html new file mode 100644 index 00000000..cbf0feaa --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000039.html @@ -0,0 +1,392 @@ + + + + + + + EnumValueDescription.Value Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

EnumValueDescription.Value Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Value() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Value {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Value { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Value() : String
public function set Value(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003A.html b/API_NetFramework/VSdoc/topic_000000000000003A.html new file mode 100644 index 00000000..43795e60 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003A.html @@ -0,0 +1,495 @@ + + + + + + + IModelDocumentationProvider Interface + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider Interface

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Interface IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public interface IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public interface class IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public interface IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetDocumentation(MemberInfo) + + + + + +
+Public method + + + + + GetDocumentation(Type) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003A_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000003A_attached_props--.html new file mode 100644 index 00000000..5e3e60d4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003A_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + IModelDocumentationProvider Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider Attached Properties

+

+

+ The following tables list the members exposed by the + IModelDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003A_events--.html b/API_NetFramework/VSdoc/topic_000000000000003A_events--.html new file mode 100644 index 00000000..5d178fb3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003A_events--.html @@ -0,0 +1,123 @@ + + + + + + + IModelDocumentationProvider Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider Events

+

+

+ The following tables list the members exposed by the + IModelDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003A_methods--.html b/API_NetFramework/VSdoc/topic_000000000000003A_methods--.html new file mode 100644 index 00000000..1135ed87 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003A_methods--.html @@ -0,0 +1,213 @@ + + + + + + + IModelDocumentationProvider Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider Methods

+

+

+ The following tables list the members exposed by the + IModelDocumentationProvider + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetDocumentation(MemberInfo) + + + + + +
+Public method + + + + + GetDocumentation(Type) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003A_props--.html b/API_NetFramework/VSdoc/topic_000000000000003A_props--.html new file mode 100644 index 00000000..d0b1f4d3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003A_props--.html @@ -0,0 +1,123 @@ + + + + + + + IModelDocumentationProvider Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider Properties

+

+

+ The following tables list the members exposed by the + IModelDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003A_vars--.html b/API_NetFramework/VSdoc/topic_000000000000003A_vars--.html new file mode 100644 index 00000000..cbc46d9d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003A_vars--.html @@ -0,0 +1,123 @@ + + + + + + + IModelDocumentationProvider Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider Fields

+

+

+ The following tables list the members exposed by the + IModelDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000003B.html b/API_NetFramework/VSdoc/topic_000000000000003B.html new file mode 100644 index 00000000..2ce952dd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003B.html @@ -0,0 +1,408 @@ + + + + + + + IModelDocumentationProvider.GetDocumentation (MemberInfo) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider.GetDocumentation (MemberInfo) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Function GetDocumentation( _ 
ByVal member As MemberInfo
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
string GetDocumentation( 
MemberInfo member 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
 
String^ GetDocumentation( 
MemberInfo^ member 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
function GetDocumentation( 
member : MemberInfo 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + member + +
+
+ MemberInfo +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003B_overloads--.html b/API_NetFramework/VSdoc/topic_000000000000003B_overloads--.html new file mode 100644 index 00000000..d001cbc9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003B_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + IModelDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003C.html b/API_NetFramework/VSdoc/topic_000000000000003C.html new file mode 100644 index 00000000..ec0352ba --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003C.html @@ -0,0 +1,408 @@ + + + + + + + IModelDocumentationProvider.GetDocumentation (Type) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider.GetDocumentation (Type) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Function GetDocumentation( _ 
ByVal type As Type
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
string GetDocumentation( 
Type type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
 
String^ GetDocumentation( 
Type^ type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
function GetDocumentation( 
type : Type 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + type + +
+
+ Type +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003C_overloads--.html b/API_NetFramework/VSdoc/topic_000000000000003C_overloads--.html new file mode 100644 index 00000000..d001cbc9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003C_overloads--.html @@ -0,0 +1,172 @@ + + + + + + + IModelDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IModelDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003D.html b/API_NetFramework/VSdoc/topic_000000000000003D.html new file mode 100644 index 00000000..56310442 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003D.html @@ -0,0 +1,583 @@ + + + + + + + KeyValuePairModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class KeyValuePairModelDescription 
Inherits ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class KeyValuePairModelDescription : ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class KeyValuePairModelDescription : public ModelDescription^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class KeyValuePairModelDescription 
extends ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + KeyModelDescription + + + + + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ValueModelDescription + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + + + +
API_NetFramework.Areas.HelpPage.ModelDescriptions.KeyValuePairModelDescription
+ + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003D_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000003D_attached_props--.html new file mode 100644 index 00000000..33f1837e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003D_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + KeyValuePairModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + KeyValuePairModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003D_events--.html b/API_NetFramework/VSdoc/topic_000000000000003D_events--.html new file mode 100644 index 00000000..99d92813 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003D_events--.html @@ -0,0 +1,123 @@ + + + + + + + KeyValuePairModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription Events

+

+

+ The following tables list the members exposed by the + KeyValuePairModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003D_methods--.html b/API_NetFramework/VSdoc/topic_000000000000003D_methods--.html new file mode 100644 index 00000000..dc671dac --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003D_methods--.html @@ -0,0 +1,125 @@ + + + + + + + KeyValuePairModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription Methods

+

+

+ The following tables list the members exposed by the + KeyValuePairModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003D_props--.html b/API_NetFramework/VSdoc/topic_000000000000003D_props--.html new file mode 100644 index 00000000..40217be5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003D_props--.html @@ -0,0 +1,276 @@ + + + + + + + KeyValuePairModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription Properties

+

+

+ The following tables list the members exposed by the + KeyValuePairModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + KeyModelDescription + + + + + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ValueModelDescription + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003D_vars--.html b/API_NetFramework/VSdoc/topic_000000000000003D_vars--.html new file mode 100644 index 00000000..f35b23a2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003D_vars--.html @@ -0,0 +1,123 @@ + + + + + + + KeyValuePairModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription Fields

+

+

+ The following tables list the members exposed by the + KeyValuePairModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000003E.html b/API_NetFramework/VSdoc/topic_000000000000003E.html new file mode 100644 index 00000000..1e1a61c8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003E.html @@ -0,0 +1,392 @@ + + + + + + + KeyValuePairModelDescription.KeyModelDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription.KeyModelDescription Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property KeyModelDescription() As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription KeyModelDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ModelDescription^ KeyModelDescription { 
ModelDescription^ get( ); 
void set( 
ModelDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get KeyModelDescription() : ModelDescription
public function set KeyModelDescription(value : ModelDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000003F.html b/API_NetFramework/VSdoc/topic_000000000000003F.html new file mode 100644 index 00000000..70a37eee --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000003F.html @@ -0,0 +1,392 @@ + + + + + + + KeyValuePairModelDescription.ValueModelDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

KeyValuePairModelDescription.ValueModelDescription Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ValueModelDescription() As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription ValueModelDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ModelDescription^ ValueModelDescription { 
ModelDescription^ get( ); 
void set( 
ModelDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ValueModelDescription() : ModelDescription
public function set ValueModelDescription(value : ModelDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000040.html b/API_NetFramework/VSdoc/topic_0000000000000040.html new file mode 100644 index 00000000..78f37eed --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000040.html @@ -0,0 +1,508 @@ + + + + + + + ModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription Class

+ + + + + + Describes a type model. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public MustInherit Class ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public abstract class ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ModelDescription abstract 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public abstract class ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + + +
+Public property + + + + + ModelType + + + + + +
+Public property + + + + + Name + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000040_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000040_attached_props--.html new file mode 100644 index 00000000..b1c72067 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000040_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + ModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000040_events--.html b/API_NetFramework/VSdoc/topic_0000000000000040_events--.html new file mode 100644 index 00000000..e4fdcfa9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000040_events--.html @@ -0,0 +1,123 @@ + + + + + + + ModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription Events

+

+

+ The following tables list the members exposed by the + ModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000040_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000040_methods--.html new file mode 100644 index 00000000..118378e1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000040_methods--.html @@ -0,0 +1,125 @@ + + + + + + + ModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription Methods

+

+

+ The following tables list the members exposed by the + ModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000040_props--.html b/API_NetFramework/VSdoc/topic_0000000000000040_props--.html new file mode 100644 index 00000000..ad0b9956 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000040_props--.html @@ -0,0 +1,222 @@ + + + + + + + ModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription Properties

+

+

+ The following tables list the members exposed by the + ModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + + +
+Public property + + + + + ModelType + + + + + +
+Public property + + + + + Name + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000040_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000040_vars--.html new file mode 100644 index 00000000..957bbb41 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000040_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription Fields

+

+

+ The following tables list the members exposed by the + ModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000041.html b/API_NetFramework/VSdoc/topic_0000000000000041.html new file mode 100644 index 00000000..c1a6aec9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000041.html @@ -0,0 +1,392 @@ + + + + + + + ModelDescription.Documentation Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription.Documentation Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Documentation() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Documentation {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Documentation { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Documentation() : String
public function set Documentation(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000042.html b/API_NetFramework/VSdoc/topic_0000000000000042.html new file mode 100644 index 00000000..eb91ec5d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000042.html @@ -0,0 +1,392 @@ + + + + + + + ModelDescription.ModelType Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription.ModelType Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ModelType() As Type
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Type ModelType {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Type^ ModelType { 
Type^ get( ); 
void set( 
Type^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ModelType() : Type
public function set ModelType(value : Type);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Type + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000043.html b/API_NetFramework/VSdoc/topic_0000000000000043.html new file mode 100644 index 00000000..68fb502a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000043.html @@ -0,0 +1,392 @@ + + + + + + + ModelDescription.Name Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescription.Name Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Name() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Name {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Name { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Name() : String
public function set Name(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000044.html b/API_NetFramework/VSdoc/topic_0000000000000044.html new file mode 100644 index 00000000..559c641c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000044.html @@ -0,0 +1,579 @@ + + + + + + + ModelDescriptionGenerator Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Class

+ + + + + + Generates model descriptions for given types. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ModelDescriptionGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ModelDescriptionGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ModelDescriptionGenerator 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ModelDescriptionGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + ModelDescriptionGenerator(HttpConfiguration) + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + GeneratedModels + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetOrCreateModelDescription(Type) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000044_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000044_attached_props--.html new file mode 100644 index 00000000..bf89942a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000044_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ModelDescriptionGenerator Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Attached Properties

+

+

+ The following tables list the members exposed by the + ModelDescriptionGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000044_events--.html b/API_NetFramework/VSdoc/topic_0000000000000044_events--.html new file mode 100644 index 00000000..4afd7be1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000044_events--.html @@ -0,0 +1,123 @@ + + + + + + + ModelDescriptionGenerator Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Events

+

+

+ The following tables list the members exposed by the + ModelDescriptionGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000044_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000044_methods--.html new file mode 100644 index 00000000..efe1ed0b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000044_methods--.html @@ -0,0 +1,193 @@ + + + + + + + ModelDescriptionGenerator Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Methods

+

+

+ The following tables list the members exposed by the + ModelDescriptionGenerator + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetOrCreateModelDescription(Type) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000044_props--.html b/API_NetFramework/VSdoc/topic_0000000000000044_props--.html new file mode 100644 index 00000000..ae473e36 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000044_props--.html @@ -0,0 +1,174 @@ + + + + + + + ModelDescriptionGenerator Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Properties

+

+

+ The following tables list the members exposed by the + ModelDescriptionGenerator + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + GeneratedModels + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000044_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000044_vars--.html new file mode 100644 index 00000000..7d68c7a1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000044_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ModelDescriptionGenerator Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Fields

+

+

+ The following tables list the members exposed by the + ModelDescriptionGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000045.html b/API_NetFramework/VSdoc/topic_0000000000000045.html new file mode 100644 index 00000000..794fbe0a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000045.html @@ -0,0 +1,404 @@ + + + + + + + ModelDescriptionGenerator Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal config As HttpConfiguration
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescriptionGenerator( 
HttpConfiguration config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ModelDescriptionGenerator( 
HttpConfiguration^ config 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ModelDescriptionGenerator( 
config : HttpConfiguration 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + config + +
+
+ HttpConfiguration +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000046.html b/API_NetFramework/VSdoc/topic_0000000000000046.html new file mode 100644 index 00000000..9e0d87fa --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000046.html @@ -0,0 +1,392 @@ + + + + + + + ModelDescriptionGenerator.GeneratedModels Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator.GeneratedModels Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property GeneratedModels() As Dictionary(Of String, ModelDescription
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Dictionary<string, ModelDescription> GeneratedModels {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Dictionary<String^, ModelDescription^>^ GeneratedModels { 
Dictionary<String^, ModelDescription^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Dictionary<string, ModelDescription> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000047.html b/API_NetFramework/VSdoc/topic_0000000000000047.html new file mode 100644 index 00000000..a9ba1c16 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000047.html @@ -0,0 +1,408 @@ + + + + + + + ModelDescriptionGenerator.GetOrCreateModelDescription Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelDescriptionGenerator.GetOrCreateModelDescription Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetOrCreateModelDescription( _ 
ByVal modelType As Type
) As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription GetOrCreateModelDescription( 
Type modelType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ModelDescription^ GetOrCreateModelDescription( 
Type^ modelType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetOrCreateModelDescription( 
modelType : Type 
) : ModelDescription;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + modelType + +
+
+ Type +
+
+

+ +

+ +

+ +

+ Return Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000048.html b/API_NetFramework/VSdoc/topic_0000000000000048.html new file mode 100644 index 00000000..192d8672 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000048.html @@ -0,0 +1,511 @@ + + + + + + + ModelNameAttribute Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Class

+ + + + + + Use this attribute to change the name of the ModelDescription generated for a type. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)> _ 
Public NotInheritable Class ModelNameAttribute 
Inherits Attribute
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)] 
public sealed class ModelNameAttribute : Attribute
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)] 
public ref class ModelNameAttribute sealed : public Attribute^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false) 
final class ModelNameAttribute 
extends Attribute
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + ModelNameAttribute(string) + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Name + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000048_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000048_attached_props--.html new file mode 100644 index 00000000..9187467e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000048_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ModelNameAttribute Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Attached Properties

+

+

+ The following tables list the members exposed by the + ModelNameAttribute + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000048_events--.html b/API_NetFramework/VSdoc/topic_0000000000000048_events--.html new file mode 100644 index 00000000..cda28f0a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000048_events--.html @@ -0,0 +1,123 @@ + + + + + + + ModelNameAttribute Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Events

+

+

+ The following tables list the members exposed by the + ModelNameAttribute + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000048_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000048_methods--.html new file mode 100644 index 00000000..9770bde6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000048_methods--.html @@ -0,0 +1,125 @@ + + + + + + + ModelNameAttribute Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Methods

+

+

+ The following tables list the members exposed by the + ModelNameAttribute + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000048_props--.html b/API_NetFramework/VSdoc/topic_0000000000000048_props--.html new file mode 100644 index 00000000..855f8b58 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000048_props--.html @@ -0,0 +1,174 @@ + + + + + + + ModelNameAttribute Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Properties

+

+

+ The following tables list the members exposed by the + ModelNameAttribute + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Name + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000048_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000048_vars--.html new file mode 100644 index 00000000..9a6af31f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000048_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ModelNameAttribute Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Fields

+

+

+ The following tables list the members exposed by the + ModelNameAttribute + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000049.html b/API_NetFramework/VSdoc/topic_0000000000000049.html new file mode 100644 index 00000000..f8f52cf7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000049.html @@ -0,0 +1,404 @@ + + + + + + + ModelNameAttribute Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal name As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelNameAttribute( 
string name 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ModelNameAttribute( 
String^ name 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ModelNameAttribute( 
name : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + name + +
+
+ string +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004A.html b/API_NetFramework/VSdoc/topic_000000000000004A.html new file mode 100644 index 00000000..a1660706 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004A.html @@ -0,0 +1,392 @@ + + + + + + + ModelNameAttribute.Name Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ModelNameAttribute.Name Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Name() As String 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Name {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Name { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Name() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004B.html b/API_NetFramework/VSdoc/topic_000000000000004B.html new file mode 100644 index 00000000..c3e5da93 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004B.html @@ -0,0 +1,483 @@ + + + + + + + ParameterAnnotation Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ParameterAnnotation
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ParameterAnnotation
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ParameterAnnotation 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ParameterAnnotation
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + AnnotationAttribute + + + + + +
+Public property + + + + + Documentation + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004B_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000004B_attached_props--.html new file mode 100644 index 00000000..48e9f20e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004B_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ParameterAnnotation Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation Attached Properties

+

+

+ The following tables list the members exposed by the + ParameterAnnotation + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004B_events--.html b/API_NetFramework/VSdoc/topic_000000000000004B_events--.html new file mode 100644 index 00000000..7059a293 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004B_events--.html @@ -0,0 +1,123 @@ + + + + + + + ParameterAnnotation Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation Events

+

+

+ The following tables list the members exposed by the + ParameterAnnotation + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004B_methods--.html b/API_NetFramework/VSdoc/topic_000000000000004B_methods--.html new file mode 100644 index 00000000..1cceef28 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004B_methods--.html @@ -0,0 +1,125 @@ + + + + + + + ParameterAnnotation Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation Methods

+

+

+ The following tables list the members exposed by the + ParameterAnnotation + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004B_props--.html b/API_NetFramework/VSdoc/topic_000000000000004B_props--.html new file mode 100644 index 00000000..c1d9bd68 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004B_props--.html @@ -0,0 +1,198 @@ + + + + + + + ParameterAnnotation Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation Properties

+

+

+ The following tables list the members exposed by the + ParameterAnnotation + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + AnnotationAttribute + + + + + +
+Public property + + + + + Documentation + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004B_vars--.html b/API_NetFramework/VSdoc/topic_000000000000004B_vars--.html new file mode 100644 index 00000000..b90bf04d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004B_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ParameterAnnotation Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation Fields

+

+

+ The following tables list the members exposed by the + ParameterAnnotation + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000004C.html b/API_NetFramework/VSdoc/topic_000000000000004C.html new file mode 100644 index 00000000..af7ac35a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004C.html @@ -0,0 +1,392 @@ + + + + + + + ParameterAnnotation.AnnotationAttribute Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation.AnnotationAttribute Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property AnnotationAttribute() As Attribute
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Attribute AnnotationAttribute {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Attribute^ AnnotationAttribute { 
Attribute^ get( ); 
void set( 
Attribute^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get AnnotationAttribute() : Attribute
public function set AnnotationAttribute(value : Attribute);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Attribute + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004D.html b/API_NetFramework/VSdoc/topic_000000000000004D.html new file mode 100644 index 00000000..ce5710e1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004D.html @@ -0,0 +1,392 @@ + + + + + + + ParameterAnnotation.Documentation Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterAnnotation.Documentation Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Documentation() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Documentation {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Documentation { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Documentation() : String
public function set Documentation(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004E.html b/API_NetFramework/VSdoc/topic_000000000000004E.html new file mode 100644 index 00000000..43070dbb --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004E.html @@ -0,0 +1,582 @@ + + + + + + + ParameterDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ParameterDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ParameterDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ParameterDescription 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ParameterDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + ParameterDescription() + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Annotations + + + + + +
+Public property + + + + + Documentation + + + + + +
+Public property + + + + + Name + + + + + +
+Public property + + + + + TypeDescription + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004E_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000004E_attached_props--.html new file mode 100644 index 00000000..b6afde5d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004E_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ParameterDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Attached Properties

+

+

+ The following tables list the members exposed by the + ParameterDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004E_events--.html b/API_NetFramework/VSdoc/topic_000000000000004E_events--.html new file mode 100644 index 00000000..7a1be0ec --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004E_events--.html @@ -0,0 +1,123 @@ + + + + + + + ParameterDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Events

+

+

+ The following tables list the members exposed by the + ParameterDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004E_methods--.html b/API_NetFramework/VSdoc/topic_000000000000004E_methods--.html new file mode 100644 index 00000000..bdde134f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004E_methods--.html @@ -0,0 +1,125 @@ + + + + + + + ParameterDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Methods

+

+

+ The following tables list the members exposed by the + ParameterDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004E_props--.html b/API_NetFramework/VSdoc/topic_000000000000004E_props--.html new file mode 100644 index 00000000..71e6094e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004E_props--.html @@ -0,0 +1,246 @@ + + + + + + + ParameterDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Properties

+

+

+ The following tables list the members exposed by the + ParameterDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Annotations + + + + + +
+Public property + + + + + Documentation + + + + + +
+Public property + + + + + Name + + + + + +
+Public property + + + + + TypeDescription + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000004E_vars--.html b/API_NetFramework/VSdoc/topic_000000000000004E_vars--.html new file mode 100644 index 00000000..a3444bb2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004E_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ParameterDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Fields

+

+

+ The following tables list the members exposed by the + ParameterDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000004F.html b/API_NetFramework/VSdoc/topic_000000000000004F.html new file mode 100644 index 00000000..4bcc79f8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000004F.html @@ -0,0 +1,388 @@ + + + + + + + ParameterDescription Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ParameterDescription()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ParameterDescription()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ParameterDescription();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000050.html b/API_NetFramework/VSdoc/topic_0000000000000050.html new file mode 100644 index 00000000..286cc718 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000050.html @@ -0,0 +1,392 @@ + + + + + + + ParameterDescription.Annotations Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription.Annotations Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Annotations() As Collection(Of ParameterAnnotation
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Collection<ParameterAnnotation> Annotations {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Collection<ParameterAnnotation^>^ Annotations { 
Collection<ParameterAnnotation^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Collection<ParameterAnnotation> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000051.html b/API_NetFramework/VSdoc/topic_0000000000000051.html new file mode 100644 index 00000000..901dd20b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000051.html @@ -0,0 +1,392 @@ + + + + + + + ParameterDescription.Documentation Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription.Documentation Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Documentation() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Documentation {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Documentation { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Documentation() : String
public function set Documentation(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000052.html b/API_NetFramework/VSdoc/topic_0000000000000052.html new file mode 100644 index 00000000..123c7b28 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000052.html @@ -0,0 +1,392 @@ + + + + + + + ParameterDescription.Name Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription.Name Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Name() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Name {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Name { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Name() : String
public function set Name(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000053.html b/API_NetFramework/VSdoc/topic_0000000000000053.html new file mode 100644 index 00000000..eccd6c9f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000053.html @@ -0,0 +1,392 @@ + + + + + + + ParameterDescription.TypeDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ParameterDescription.TypeDescription Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property TypeDescription() As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription TypeDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ModelDescription^ TypeDescription { 
ModelDescription^ get( ); 
void set( 
ModelDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get TypeDescription() : ModelDescription
public function set TypeDescription(value : ModelDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000054.html b/API_NetFramework/VSdoc/topic_0000000000000054.html new file mode 100644 index 00000000..6c77181f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000054.html @@ -0,0 +1,531 @@ + + + + + + + SimpleTypeModelDescription Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

SimpleTypeModelDescription Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class SimpleTypeModelDescription 
Inherits ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class SimpleTypeModelDescription : ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class SimpleTypeModelDescription : public ModelDescription^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class SimpleTypeModelDescription 
extends ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + + + +
API_NetFramework.Areas.HelpPage.ModelDescriptions.SimpleTypeModelDescription
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000054_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000054_attached_props--.html new file mode 100644 index 00000000..562eb3c6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000054_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + SimpleTypeModelDescription Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SimpleTypeModelDescription Attached Properties

+

+

+ The following tables list the members exposed by the + SimpleTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000054_events--.html b/API_NetFramework/VSdoc/topic_0000000000000054_events--.html new file mode 100644 index 00000000..5c18b39c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000054_events--.html @@ -0,0 +1,123 @@ + + + + + + + SimpleTypeModelDescription Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SimpleTypeModelDescription Events

+

+

+ The following tables list the members exposed by the + SimpleTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000054_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000054_methods--.html new file mode 100644 index 00000000..b8cfa551 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000054_methods--.html @@ -0,0 +1,125 @@ + + + + + + + SimpleTypeModelDescription Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SimpleTypeModelDescription Methods

+

+

+ The following tables list the members exposed by the + SimpleTypeModelDescription + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000054_props--.html b/API_NetFramework/VSdoc/topic_0000000000000054_props--.html new file mode 100644 index 00000000..9039c711 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000054_props--.html @@ -0,0 +1,228 @@ + + + + + + + SimpleTypeModelDescription Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SimpleTypeModelDescription Properties

+

+

+ The following tables list the members exposed by the + SimpleTypeModelDescription + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Documentation + + + + +(inherited from ModelDescription). + +
+Public property + + + + + ModelType + + + + +(inherited from ModelDescription). + +
+Public property + + + + + Name + + + + +(inherited from ModelDescription). + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000054_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000054_vars--.html new file mode 100644 index 00000000..ad0d25ac --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000054_vars--.html @@ -0,0 +1,123 @@ + + + + + + + SimpleTypeModelDescription Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

SimpleTypeModelDescription Fields

+

+

+ The following tables list the members exposed by the + SimpleTypeModelDescription + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000055.html b/API_NetFramework/VSdoc/topic_0000000000000055.html new file mode 100644 index 00000000..c6923857 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000055.html @@ -0,0 +1,267 @@ + + + + + + + API_NetFramework.Areas.HelpPage.Models Namespace + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework.Areas.HelpPage.Models Namespace

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ Classes +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public class + + + + + HelpPageApiModel + + +The model that represents an API displayed on the help page. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000056.html b/API_NetFramework/VSdoc/topic_0000000000000056.html new file mode 100644 index 00000000..0279a5f1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000056.html @@ -0,0 +1,727 @@ + + + + + + + HelpPageApiModel Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Class

+ + + + + + The model that represents an API displayed on the help page. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpPageApiModel
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageApiModel
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpPageApiModel 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageApiModel
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + HelpPageApiModel() + + + + Initializes a new instance of the HelpPageApiModel class. + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ApiDescription + + + +Gets or sets the ApiDescription that describes the API. + +
+Public property + + + + + ErrorMessages + + + +Gets the error messages associated with this model. + +
+Public property + + + + + RequestBodyParameters + + + +Gets the request body parameter descriptions. + +
+Public property + + + + + RequestDocumentation + + + +Gets or sets the documentation for the request. + +
+Public property + + + + + RequestModelDescription + + + +Gets or sets the ModelDescription that describes the request body. + +
+Public property + + + + + ResourceDescription + + + +Gets or sets the ModelDescription that describes the resource. + +
+Public property + + + + + ResourceProperties + + + +Gets the resource property descriptions. + +
+Public property + + + + + SampleRequests + + + +Gets the sample requests associated with the API. + +
+Public property + + + + + SampleResponses + + + +Gets the sample responses associated with the API. + +
+Public property + + + + + UriParameters + + + +Gets or sets the ParameterDescription collection that describes the URI parameters for the API. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000056_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000056_attached_props--.html new file mode 100644 index 00000000..4422b6c1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000056_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageApiModel Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Attached Properties

+

+

+ The following tables list the members exposed by the + HelpPageApiModel + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000056_events--.html b/API_NetFramework/VSdoc/topic_0000000000000056_events--.html new file mode 100644 index 00000000..d247846f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000056_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageApiModel Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Events

+

+

+ The following tables list the members exposed by the + HelpPageApiModel + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000056_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000056_methods--.html new file mode 100644 index 00000000..d852d961 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000056_methods--.html @@ -0,0 +1,125 @@ + + + + + + + HelpPageApiModel Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Methods

+

+

+ The following tables list the members exposed by the + HelpPageApiModel + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000056_props--.html b/API_NetFramework/VSdoc/topic_0000000000000056_props--.html new file mode 100644 index 00000000..078565ef --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000056_props--.html @@ -0,0 +1,390 @@ + + + + + + + HelpPageApiModel Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Properties

+

+

+ The following tables list the members exposed by the + HelpPageApiModel + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ApiDescription + + + +Gets or sets the ApiDescription that describes the API. + +
+Public property + + + + + ErrorMessages + + + +Gets the error messages associated with this model. + +
+Public property + + + + + RequestBodyParameters + + + +Gets the request body parameter descriptions. + +
+Public property + + + + + RequestDocumentation + + + +Gets or sets the documentation for the request. + +
+Public property + + + + + RequestModelDescription + + + +Gets or sets the ModelDescription that describes the request body. + +
+Public property + + + + + ResourceDescription + + + +Gets or sets the ModelDescription that describes the resource. + +
+Public property + + + + + ResourceProperties + + + +Gets the resource property descriptions. + +
+Public property + + + + + SampleRequests + + + +Gets the sample requests associated with the API. + +
+Public property + + + + + SampleResponses + + + +Gets the sample responses associated with the API. + +
+Public property + + + + + UriParameters + + + +Gets or sets the ParameterDescription collection that describes the URI parameters for the API. + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000056_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000056_vars--.html new file mode 100644 index 00000000..e5a07bc3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000056_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageApiModel Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Fields

+

+

+ The following tables list the members exposed by the + HelpPageApiModel + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000057.html b/API_NetFramework/VSdoc/topic_0000000000000057.html new file mode 100644 index 00000000..9198be23 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000057.html @@ -0,0 +1,389 @@ + + + + + + + HelpPageApiModel Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel Constructor

+ + + + + + Initializes a new instance of the HelpPageApiModel class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpPageApiModel()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpPageApiModel()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function HelpPageApiModel();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000058.html b/API_NetFramework/VSdoc/topic_0000000000000058.html new file mode 100644 index 00000000..5a4b2b4b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000058.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.ApiDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.ApiDescription Property

+ + + + + + Gets or sets the ApiDescription that describes the API. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ApiDescription() As ApiDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ApiDescription ApiDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ApiDescription^ ApiDescription { 
ApiDescription^ get( ); 
void set( 
ApiDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ApiDescription() : ApiDescription
public function set ApiDescription(value : ApiDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ApiDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000059.html b/API_NetFramework/VSdoc/topic_0000000000000059.html new file mode 100644 index 00000000..c62a49d9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000059.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.UriParameters Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.UriParameters Property

+ + + + + + Gets or sets the ParameterDescription collection that describes the URI parameters for the API. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property UriParameters() As Collection(Of ParameterDescription
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Collection<ParameterDescription> UriParameters {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Collection<ParameterDescription^>^ UriParameters { 
Collection<ParameterDescription^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Collection<ParameterDescription> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000005A.html b/API_NetFramework/VSdoc/topic_000000000000005A.html new file mode 100644 index 00000000..718765ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000005A.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.RequestDocumentation Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.RequestDocumentation Property

+ + + + + + Gets or sets the documentation for the request. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property RequestDocumentation() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string RequestDocumentation {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ RequestDocumentation { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get RequestDocumentation() : String
public function set RequestDocumentation(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000005B.html b/API_NetFramework/VSdoc/topic_000000000000005B.html new file mode 100644 index 00000000..2ac69d52 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000005B.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.RequestModelDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.RequestModelDescription Property

+ + + + + + Gets or sets the ModelDescription that describes the request body. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property RequestModelDescription() As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription RequestModelDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ModelDescription^ RequestModelDescription { 
ModelDescription^ get( ); 
void set( 
ModelDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get RequestModelDescription() : ModelDescription
public function set RequestModelDescription(value : ModelDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000005C.html b/API_NetFramework/VSdoc/topic_000000000000005C.html new file mode 100644 index 00000000..7cfbd564 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000005C.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.RequestBodyParameters Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.RequestBodyParameters Property

+ + + + + + Gets the request body parameter descriptions. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public ReadOnly Property RequestBodyParameters() As IList(Of ParameterDescription)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IList<ParameterDescription> RequestBodyParameters {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IList<ParameterDescription^>^ RequestBodyParameters { 
IList<ParameterDescription^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IList<ParameterDescription> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000005D.html b/API_NetFramework/VSdoc/topic_000000000000005D.html new file mode 100644 index 00000000..24e34a65 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000005D.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.ResourceDescription Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.ResourceDescription Property

+ + + + + + Gets or sets the ModelDescription that describes the resource. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ResourceDescription() As ModelDescription
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ModelDescription ResourceDescription {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property ModelDescription^ ResourceDescription { 
ModelDescription^ get( ); 
void set( 
ModelDescription^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ResourceDescription() : ModelDescription
public function set ResourceDescription(value : ModelDescription);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ ModelDescription + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000005E.html b/API_NetFramework/VSdoc/topic_000000000000005E.html new file mode 100644 index 00000000..cb8c9b02 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000005E.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.ResourceProperties Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.ResourceProperties Property

+ + + + + + Gets the resource property descriptions. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public ReadOnly Property ResourceProperties() As IList(Of ParameterDescription)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IList<ParameterDescription> ResourceProperties {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IList<ParameterDescription^>^ ResourceProperties { 
IList<ParameterDescription^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IList<ParameterDescription> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000005F.html b/API_NetFramework/VSdoc/topic_000000000000005F.html new file mode 100644 index 00000000..87310923 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000005F.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.SampleRequests Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.SampleRequests Property

+ + + + + + Gets the sample requests associated with the API. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property SampleRequests() As IDictionary(Of MediaTypeHeaderValue, Object
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<MediaTypeHeaderValue, object> SampleRequests {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IDictionary<MediaTypeHeaderValue^, object^>^ SampleRequests { 
IDictionary<MediaTypeHeaderValue^, object^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IDictionary<MediaTypeHeaderValue, object> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000060.html b/API_NetFramework/VSdoc/topic_0000000000000060.html new file mode 100644 index 00000000..4d7d01e9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000060.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.SampleResponses Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.SampleResponses Property

+ + + + + + Gets the sample responses associated with the API. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property SampleResponses() As IDictionary(Of MediaTypeHeaderValue, Object
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<MediaTypeHeaderValue, object> SampleResponses {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IDictionary<MediaTypeHeaderValue^, object^>^ SampleResponses { 
IDictionary<MediaTypeHeaderValue^, object^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IDictionary<MediaTypeHeaderValue, object> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000061.html b/API_NetFramework/VSdoc/topic_0000000000000061.html new file mode 100644 index 00000000..e195519b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000061.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageApiModel.ErrorMessages Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageApiModel.ErrorMessages Property

+ + + + + + Gets the error messages associated with this model. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ErrorMessages() As Collection(Of String
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Collection<string> ErrorMessages {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Collection<String^>^ ErrorMessages { 
Collection<String^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Collection<string> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000062.html b/API_NetFramework/VSdoc/topic_0000000000000062.html new file mode 100644 index 00000000..561028ab --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000062.html @@ -0,0 +1,858 @@ + + + + + + + HelpPageSampleGenerator Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Class

+ + + + + + This class will generate the samples for the help page. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpPageSampleGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageSampleGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpPageSampleGenerator 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageSampleGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + HelpPageSampleGenerator() + + + + Initializes a new instance of the HelpPageSampleGenerator class. + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ActionSamples + + + +Gets the objects that are used directly as samples for certain actions. + +
+Public property + + + + + ActualHttpMessageTypes + + + +Gets CLR types that are used as the content of HttpRequestMessage or HttpResponseMessage. + +
+Public property + + + + + SampleObjectFactories + + + +Gets factories for the objects that the supported formatters will serialize as samples. Processed in order, +stopping when the factory successfully returns a non- object. + +
+Public property + + + + + SampleObjects + + + +Gets the objects that are serialized as samples by the supported formatters. + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetActionSample(string, string, IEnumerable<String>, Type, MediaTypeFormatter, MediaTypeHeaderValue, SampleDirection) + + + +Search for samples that are provided directly through ActionSamples. + +
+Public method + + + + + GetSample(ApiDescription, SampleDirection) + + + +Gets the request or response body samples. + +
+Public method + + + + + GetSampleObject(Type) + + + +Gets the sample object that will be serialized by the formatters. +First, it will look at the SampleObjects. If no sample object is found, it will try to create +one using DefaultSampleObjectFactory (which wraps an ObjectGenerator) and other +factories in SampleObjectFactories. + +
+Public method + + + + + GetSampleRequests(ApiDescription) + + + +Gets the request body samples for a given ApiDescription. + +
+Public method + + + + + GetSampleResponses(ApiDescription) + + + +Gets the response body samples for a given ApiDescription. + +
+Public method + + + + + ResolveHttpRequestMessageType(ApiDescription) + + + +Resolves the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. + +
+Public method + + + + + ResolveType(ApiDescription, string, string, IEnumerable<String>, SampleDirection, out Collection<MediaTypeFormatter>) + + + +Resolves the type of the action parameter or return value when HttpRequestMessage or HttpResponseMessage is used. + +
+Public method + + + + + WriteSampleObjectUsingFormatter(MediaTypeFormatter, object, Type, MediaTypeHeaderValue) + + + +Writes the sample object using formatter. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000062_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000062_attached_props--.html new file mode 100644 index 00000000..0e58d18f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000062_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageSampleGenerator Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Attached Properties

+

+

+ The following tables list the members exposed by the + HelpPageSampleGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000062_events--.html b/API_NetFramework/VSdoc/topic_0000000000000062_events--.html new file mode 100644 index 00000000..4a32bdc4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000062_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageSampleGenerator Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Events

+

+

+ The following tables list the members exposed by the + HelpPageSampleGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000062_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000062_methods--.html new file mode 100644 index 00000000..7c6bba02 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000062_methods--.html @@ -0,0 +1,399 @@ + + + + + + + HelpPageSampleGenerator Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Methods

+

+

+ The following tables list the members exposed by the + HelpPageSampleGenerator + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetActionSample(string, string, IEnumerable<String>, Type, MediaTypeFormatter, MediaTypeHeaderValue, SampleDirection) + + + +Search for samples that are provided directly through ActionSamples. + +
+Public method + + + + + GetSample(ApiDescription, SampleDirection) + + + +Gets the request or response body samples. + +
+Public method + + + + + GetSampleObject(Type) + + + +Gets the sample object that will be serialized by the formatters. +First, it will look at the SampleObjects. If no sample object is found, it will try to create +one using DefaultSampleObjectFactory (which wraps an ObjectGenerator) and other +factories in SampleObjectFactories. + +
+Public method + + + + + GetSampleRequests(ApiDescription) + + + +Gets the request body samples for a given ApiDescription. + +
+Public method + + + + + GetSampleResponses(ApiDescription) + + + +Gets the response body samples for a given ApiDescription. + +
+Public method + + + + + ResolveHttpRequestMessageType(ApiDescription) + + + +Resolves the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. + +
+Public method + + + + + ResolveType(ApiDescription, string, string, IEnumerable<String>, SampleDirection, out Collection<MediaTypeFormatter>) + + + +Resolves the type of the action parameter or return value when HttpRequestMessage or HttpResponseMessage is used. + +
+Public method + + + + + WriteSampleObjectUsingFormatter(MediaTypeFormatter, object, Type, MediaTypeHeaderValue) + + + +Writes the sample object using formatter. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000062_props--.html b/API_NetFramework/VSdoc/topic_0000000000000062_props--.html new file mode 100644 index 00000000..65e9815f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000062_props--.html @@ -0,0 +1,247 @@ + + + + + + + HelpPageSampleGenerator Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Properties

+

+

+ The following tables list the members exposed by the + HelpPageSampleGenerator + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ActionSamples + + + +Gets the objects that are used directly as samples for certain actions. + +
+Public property + + + + + ActualHttpMessageTypes + + + +Gets CLR types that are used as the content of HttpRequestMessage or HttpResponseMessage. + +
+Public property + + + + + SampleObjectFactories + + + +Gets factories for the objects that the supported formatters will serialize as samples. Processed in order, +stopping when the factory successfully returns a non- object. + +
+Public property + + + + + SampleObjects + + + +Gets the objects that are serialized as samples by the supported formatters. + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000062_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000062_vars--.html new file mode 100644 index 00000000..cf42545c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000062_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageSampleGenerator Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Fields

+

+

+ The following tables list the members exposed by the + HelpPageSampleGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000063.html b/API_NetFramework/VSdoc/topic_0000000000000063.html new file mode 100644 index 00000000..09610fdb --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000063.html @@ -0,0 +1,389 @@ + + + + + + + HelpPageSampleGenerator Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator Constructor

+ + + + + + Initializes a new instance of the HelpPageSampleGenerator class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpPageSampleGenerator()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpPageSampleGenerator()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function HelpPageSampleGenerator();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000064.html b/API_NetFramework/VSdoc/topic_0000000000000064.html new file mode 100644 index 00000000..edbadfce --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000064.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageSampleGenerator.ActualHttpMessageTypes Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.ActualHttpMessageTypes Property

+ + + + + + Gets CLR types that are used as the content of HttpRequestMessage or HttpResponseMessage. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ActualHttpMessageTypes() As IDictionary(Of HelpPageSampleKey, Type
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<HelpPageSampleKey, Type> ActualHttpMessageTypes {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IDictionary<HelpPageSampleKey^, Type^>^ ActualHttpMessageTypes { 
IDictionary<HelpPageSampleKey^, Type^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IDictionary<HelpPageSampleKey, Type> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000065.html b/API_NetFramework/VSdoc/topic_0000000000000065.html new file mode 100644 index 00000000..548e7080 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000065.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageSampleGenerator.ActionSamples Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.ActionSamples Property

+ + + + + + Gets the objects that are used directly as samples for certain actions. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ActionSamples() As IDictionary(Of HelpPageSampleKey, Object
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<HelpPageSampleKey, object> ActionSamples {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IDictionary<HelpPageSampleKey^, object^>^ ActionSamples { 
IDictionary<HelpPageSampleKey^, object^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IDictionary<HelpPageSampleKey, object> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000066.html b/API_NetFramework/VSdoc/topic_0000000000000066.html new file mode 100644 index 00000000..c975a3d9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000066.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageSampleGenerator.SampleObjects Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.SampleObjects Property

+ + + + + + Gets the objects that are serialized as samples by the supported formatters. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property SampleObjects() As IDictionary(Of Type, Object
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<Type, object> SampleObjects {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property IDictionary<Type^, object^>^ SampleObjects { 
IDictionary<Type^, object^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IDictionary<Type, object> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000067.html b/API_NetFramework/VSdoc/topic_0000000000000067.html new file mode 100644 index 00000000..a123300a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000067.html @@ -0,0 +1,425 @@ + + + + + + + HelpPageSampleGenerator.SampleObjectFactories Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.SampleObjectFactories Property

+ + + + + + Gets factories for the objects that the supported formatters will serialize as samples. Processed in order, +stopping when the factory successfully returns a non- object. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures",
+            Justification = "This is an appropriate nesting of generic types")> _ 
Public Property SampleObjectFactories() As IList(Of Func(Of HelpPageSampleGenerator, Type, Object)) 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures",
+            Justification = "This is an appropriate nesting of generic types")] 
public IList<Func<HelpPageSampleGenerator, Type, object>> SampleObjectFactories {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures",
+            Justification = "This is an appropriate nesting of generic types")] 
public:  
property IList<Func<HelpPageSampleGenerator^, Type^, object^>^>^ SampleObjectFactories { 
IList<Func<HelpPageSampleGenerator^, Type^, object^>^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ IList<Func<HelpPageSampleGenerator, Type, object>> + + + + + + + + + + + + + + + +
+
+ + + + + +
+
+ Remarks +
 
+
+ +
+ Collection includes just GenerateObject initially. Use +
+
+ Copy +
+ +
+
SampleObjectFactories.Insert(0, func)					
+
+
to provide an override and +
+
+ Copy +
+ +
+
SampleObjectFactories.Add(func)					
+
+
to provide a fallback. +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000068.html b/API_NetFramework/VSdoc/topic_0000000000000068.html new file mode 100644 index 00000000..d1b16dc8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000068.html @@ -0,0 +1,412 @@ + + + + + + + HelpPageSampleGenerator.GetSampleRequests Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.GetSampleRequests Method

+ + + + + + Gets the request body samples for a given ApiDescription. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetSampleRequests( _ 
ByVal api As ApiDescription
) As IDictionary(Of MediaTypeHeaderValue, Object)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<MediaTypeHeaderValue, object> GetSampleRequests( 
ApiDescription api 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
IDictionary<MediaTypeHeaderValue^, object^>^ GetSampleRequests( 
ApiDescription^ api 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + api + +
+
+ ApiDescription +
+
+

+ The ApiDescription. +

+ +

+ +

+ Return Value

+ IDictionary<MediaTypeHeaderValue, object> +

+ The samples keyed by media type. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000069.html b/API_NetFramework/VSdoc/topic_0000000000000069.html new file mode 100644 index 00000000..495408e3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000069.html @@ -0,0 +1,412 @@ + + + + + + + HelpPageSampleGenerator.GetSampleResponses Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.GetSampleResponses Method

+ + + + + + Gets the response body samples for a given ApiDescription. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetSampleResponses( _ 
ByVal api As ApiDescription
) As IDictionary(Of MediaTypeHeaderValue, Object)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public IDictionary<MediaTypeHeaderValue, object> GetSampleResponses( 
ApiDescription api 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
IDictionary<MediaTypeHeaderValue^, object^>^ GetSampleResponses( 
ApiDescription^ api 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + api + +
+
+ ApiDescription +
+
+

+ The ApiDescription. +

+ +

+ +

+ Return Value

+ IDictionary<MediaTypeHeaderValue, object> +

+ The samples keyed by media type. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000006A.html b/API_NetFramework/VSdoc/topic_000000000000006A.html new file mode 100644 index 00000000..d70bf02f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000006A.html @@ -0,0 +1,425 @@ + + + + + + + HelpPageSampleGenerator.GetSample Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.GetSample Method

+ + + + + + Gets the request or response body samples. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overridable Function GetSample( _ 
ByVal api As ApiDescription, _ 
ByVal sampleDirection As SampleDirection
) As IDictionary(Of MediaTypeHeaderValue, Object)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public virtual IDictionary<MediaTypeHeaderValue, object> GetSample( 
ApiDescription api
SampleDirection sampleDirection 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
virtual IDictionary<MediaTypeHeaderValue^, object^>^ GetSample( 
ApiDescription^ api
SampleDirection sampleDirection 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + api + +
+
+ ApiDescription +
+
+

+ The ApiDescription. +

+
+
+ + sampleDirection + +
+
+ SampleDirection +
+
+

+ The value indicating whether the sample is for a request or for a response. +

+ +

+ +

+ Return Value

+ IDictionary<MediaTypeHeaderValue, object> +

+ The samples keyed by media type. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000006B.html b/API_NetFramework/VSdoc/topic_000000000000006B.html new file mode 100644 index 00000000..1ef16bd3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000006B.html @@ -0,0 +1,490 @@ + + + + + + + HelpPageSampleGenerator.GetActionSample Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.GetActionSample Method

+ + + + + + Search for samples that are provided directly through ActionSamples. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overridable Function GetActionSample( _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal parameterNames As IEnumerable(Of String), _ 
ByVal type As Type, _ 
ByVal formatter As MediaTypeFormatter, _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal sampleDirection As SampleDirection
) As Object
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public virtual object GetActionSample( 
string controllerName
string actionName
IEnumerable<string> parameterNames
Type type
MediaTypeFormatter formatter
MediaTypeHeaderValue mediaType
SampleDirection sampleDirection 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
virtual object^ GetActionSample( 
String^ controllerName
String^ actionName
IEnumerable<String^>^ parameterNames
Type^ type
MediaTypeFormatter^ formatter
MediaTypeHeaderValue^ mediaType
SampleDirection sampleDirection 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ IEnumerable<string> +
+
+

+ The parameter names. +

+
+
+ + type + +
+
+ Type +
+
+

+ The CLR type. +

+
+
+ + formatter + +
+
+ MediaTypeFormatter +
+
+

+ The formatter. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + sampleDirection + +
+
+ SampleDirection +
+
+

+ The value indicating whether the sample is for a request or for a response. +

+ +

+ +

+ Return Value

+ object +

+ The sample that matches the parameters. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000006C.html b/API_NetFramework/VSdoc/topic_000000000000006C.html new file mode 100644 index 00000000..0a9a2bed --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000006C.html @@ -0,0 +1,419 @@ + + + + + + + HelpPageSampleGenerator.GetSampleObject Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.GetSampleObject Method

+ + + + + + Gets the sample object that will be serialized by the formatters. +First, it will look at the SampleObjects. If no sample object is found, it will try to create +one using DefaultSampleObjectFactory (which wraps an ObjectGenerator) and other +factories in SampleObjectFactories. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes",
+            Justification = "Even if all items in SampleObjectFactories throw, problem will be visible as missing sample.")> _ 
Public Overridable Function GetSampleObject( _ 
ByVal type As Type
) As Object
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes",
+            Justification = "Even if all items in SampleObjectFactories throw, problem will be visible as missing sample.")] 
public virtual object GetSampleObject( 
Type type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes",
+            Justification = "Even if all items in SampleObjectFactories throw, problem will be visible as missing sample.")] 
public:  
virtual object^ GetSampleObject( 
Type^ type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", + Justification = "Even if all items in SampleObjectFactories throw, problem will be visible as missing sample.") 
function GetSampleObject( 
type : Type 
) : object;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + type + +
+
+ Type +
+
+

+ The type. +

+ +

+ +

+ Return Value

+ object +

+ The sample object. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000006D.html b/API_NetFramework/VSdoc/topic_000000000000006D.html new file mode 100644 index 00000000..d36ad11b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000006D.html @@ -0,0 +1,412 @@ + + + + + + + HelpPageSampleGenerator.ResolveHttpRequestMessageType Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.ResolveHttpRequestMessageType Method

+ + + + + + Resolves the actual type of ObjectContent<T> passed to the HttpRequestMessage in an action. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overridable Function ResolveHttpRequestMessageType( _ 
ByVal api As ApiDescription
) As Type
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public virtual Type ResolveHttpRequestMessageType( 
ApiDescription api 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
virtual Type^ ResolveHttpRequestMessageType( 
ApiDescription^ api 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ResolveHttpRequestMessageType( 
api : ApiDescription 
) : Type;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + api + +
+
+ ApiDescription +
+
+

+ The ApiDescription. +

+ +

+ +

+ Return Value

+ Type +

+ The type. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000006E.html b/API_NetFramework/VSdoc/topic_000000000000006E.html new file mode 100644 index 00000000..1c7d53a3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000006E.html @@ -0,0 +1,474 @@ + + + + + + + HelpPageSampleGenerator.ResolveType Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.ResolveType Method

+ + + + + + Resolves the type of the action parameter or return value when HttpRequestMessage or HttpResponseMessage is used. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", Justification = "This is only used in advanced scenarios.")> _ 
Public Overridable Function ResolveType( _ 
ByVal api As ApiDescription, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal parameterNames As IEnumerable(Of String), _ 
ByVal sampleDirection As SampleDirection, _ 
ByRef formatters As Collection(Of MediaTypeFormatter) _ 
) As Type
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", Justification = "This is only used in advanced scenarios.")] 
public virtual Type ResolveType( 
ApiDescription api
string controllerName
string actionName
IEnumerable<string> parameterNames
SampleDirection sampleDirection
out Collection<MediaTypeFormatter> formatters 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", Justification = "This is only used in advanced scenarios.")] 
public:  
virtual Type^ ResolveType( 
ApiDescription^ api
String^ controllerName
String^ actionName
IEnumerable<String^>^ parameterNames
SampleDirection sampleDirection
Collection<MediaTypeFormatter^>^& formatters 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + api + +
+
+ ApiDescription +
+
+

+ The ApiDescription. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ IEnumerable<string> +
+
+

+ The parameter names. +

+
+
+ + sampleDirection + +
+
+ SampleDirection +
+
+

+ The value indicating whether the sample is for a request or a response. +

+
+
+ + formatters + +
+
+ Collection<MediaTypeFormatter> +
+
+

+ The formatters. +

+ +

+ +

+ Return Value

+ Type + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000006F.html b/API_NetFramework/VSdoc/topic_000000000000006F.html new file mode 100644 index 00000000..edd55730 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000006F.html @@ -0,0 +1,448 @@ + + + + + + + HelpPageSampleGenerator.WriteSampleObjectUsingFormatter Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleGenerator.WriteSampleObjectUsingFormatter Method

+ + + + + + Writes the sample object using formatter. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "The exception is recorded as InvalidSample.")> _ 
Public Overridable Function WriteSampleObjectUsingFormatter( _ 
ByVal formatter As MediaTypeFormatter, _ 
ByVal value As Object, _ 
ByVal type As Type, _ 
ByVal mediaType As MediaTypeHeaderValue
) As Object
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "The exception is recorded as InvalidSample.")] 
public virtual object WriteSampleObjectUsingFormatter( 
MediaTypeFormatter formatter
object value
Type type
MediaTypeHeaderValue mediaType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "The exception is recorded as InvalidSample.")] 
public:  
virtual object^ WriteSampleObjectUsingFormatter( 
MediaTypeFormatter^ formatter
object^ value
Type^ type
MediaTypeHeaderValue^ mediaType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "The exception is recorded as InvalidSample.") 
function WriteSampleObjectUsingFormatter( 
formatter : MediaTypeFormatter
value : object
type : Type
mediaType : MediaTypeHeaderValue 
) : object;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + formatter + +
+
+ MediaTypeFormatter +
+
+

+ The formatter. +

+
+
+ + value + +
+
+ object +
+
+

+ The value. +

+
+
+ + type + +
+
+ Type +
+
+

+ The type. +

+
+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ Type of the media. +

+ +

+ +

+ Return Value

+ object + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000070.html b/API_NetFramework/VSdoc/topic_0000000000000070.html new file mode 100644 index 00000000..8b646d5f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000070.html @@ -0,0 +1,788 @@ + + + + + + + HelpPageSampleKey Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Class

+ + + + + + This is used to identify the place where the sample should be applied. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HelpPageSampleKey
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageSampleKey
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HelpPageSampleKey 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HelpPageSampleKey
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + HelpPageSampleKey(MediaTypeHeaderValue) + + + + Creates a new HelpPageSampleKey based on media type. + +
+ Public constructor + + + + + HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable<String>) + + + + Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + +
+ Public constructor + + + + + HelpPageSampleKey(MediaTypeHeaderValue, Type) + + + + Creates a new HelpPageSampleKey based on media type and CLR type. + +
+ Public constructor + + + + + HelpPageSampleKey(SampleDirection, string, string, IEnumerable<String>) + + + + Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ActionName + + + +Gets the name of the action. + +
+Public property + + + + + ControllerName + + + +Gets the name of the controller. + +
+Public property + + + + + MediaType + + + +Gets the media type. + +
+Public property + + + + + ParameterNames + + + +Gets the parameter names. + +
+Public property + + + + + ParameterType + + + + + +
+Public property + + + + + SampleDirection + + + +Gets the SampleDirection. + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000070_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000070_attached_props--.html new file mode 100644 index 00000000..b5351db9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000070_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageSampleKey Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Attached Properties

+

+

+ The following tables list the members exposed by the + HelpPageSampleKey + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000070_events--.html b/API_NetFramework/VSdoc/topic_0000000000000070_events--.html new file mode 100644 index 00000000..ac07b31d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000070_events--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageSampleKey Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Events

+

+

+ The following tables list the members exposed by the + HelpPageSampleKey + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000070_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000070_methods--.html new file mode 100644 index 00000000..4363824a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000070_methods--.html @@ -0,0 +1,222 @@ + + + + + + + HelpPageSampleKey Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Methods

+

+

+ The following tables list the members exposed by the + HelpPageSampleKey + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000070_props--.html b/API_NetFramework/VSdoc/topic_0000000000000070_props--.html new file mode 100644 index 00000000..51983a2b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000070_props--.html @@ -0,0 +1,294 @@ + + + + + + + HelpPageSampleKey Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Properties

+

+

+ The following tables list the members exposed by the + HelpPageSampleKey + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ActionName + + + +Gets the name of the action. + +
+Public property + + + + + ControllerName + + + +Gets the name of the controller. + +
+Public property + + + + + MediaType + + + +Gets the media type. + +
+Public property + + + + + ParameterNames + + + +Gets the parameter names. + +
+Public property + + + + + ParameterType + + + + + +
+Public property + + + + + SampleDirection + + + +Gets the SampleDirection. + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000070_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000070_vars--.html new file mode 100644 index 00000000..440c51b7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000070_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HelpPageSampleKey Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Fields

+

+

+ The following tables list the members exposed by the + HelpPageSampleKey + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000071.html b/API_NetFramework/VSdoc/topic_0000000000000071.html new file mode 100644 index 00000000..2d697d42 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000071.html @@ -0,0 +1,405 @@ + + + + + + + HelpPageSampleKey(MediaTypeHeaderValue) Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey(MediaTypeHeaderValue) Constructor

+ + + + + + Creates a new HelpPageSampleKey based on media type. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal mediaType As MediaTypeHeaderValue
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpPageSampleKey( 
MediaTypeHeaderValue mediaType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpPageSampleKey( 
MediaTypeHeaderValue^ mediaType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function HelpPageSampleKey( 
mediaType : MediaTypeHeaderValue 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000071_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000071_overloads--.html new file mode 100644 index 00000000..6c8822ca --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000071_overloads--.html @@ -0,0 +1,196 @@ + + + + + + + HelpPageSampleKey Constructor + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Constructor

+

+ + + Creates a new HelpPageSampleKey based on media type. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +HelpPageSampleKey(MediaTypeHeaderValue) + + + +Creates a new HelpPageSampleKey based on media type. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, Type) + + + +Creates a new HelpPageSampleKey based on media type and CLR type. + +
+ +HelpPageSampleKey(SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000072.html b/API_NetFramework/VSdoc/topic_0000000000000072.html new file mode 100644 index 00000000..ca80d54b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000072.html @@ -0,0 +1,418 @@ + + + + + + + HelpPageSampleKey(MediaTypeHeaderValue, Type) Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey(MediaTypeHeaderValue, Type) Constructor

+ + + + + + Creates a new HelpPageSampleKey based on media type and CLR type. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal type As Type
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpPageSampleKey( 
MediaTypeHeaderValue mediaType
Type type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpPageSampleKey( 
MediaTypeHeaderValue^ mediaType
Type^ type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function HelpPageSampleKey( 
mediaType : MediaTypeHeaderValue
type : Type 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + type + +
+
+ Type +
+
+

+ The CLR type. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000072_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000072_overloads--.html new file mode 100644 index 00000000..27290a67 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000072_overloads--.html @@ -0,0 +1,196 @@ + + + + + + + HelpPageSampleKey Constructor + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Constructor

+

+ + + Creates a new HelpPageSampleKey based on media type and CLR type. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +HelpPageSampleKey(MediaTypeHeaderValue) + + + +Creates a new HelpPageSampleKey based on media type. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, Type) + + + +Creates a new HelpPageSampleKey based on media type and CLR type. + +
+ +HelpPageSampleKey(SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000073.html b/API_NetFramework/VSdoc/topic_0000000000000073.html new file mode 100644 index 00000000..a8a2833e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000073.html @@ -0,0 +1,444 @@ + + + + + + + HelpPageSampleKey(SampleDirection, String, String, IEnumerable<String>) Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey(SampleDirection, String, String, IEnumerable<String>) Constructor

+ + + + + + Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal sampleDirection As SampleDirection, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal parameterNames As IEnumerable(Of String) _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpPageSampleKey( 
SampleDirection sampleDirection
string controllerName
string actionName
IEnumerable<string> parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpPageSampleKey( 
SampleDirection sampleDirection
String^ controllerName
String^ actionName
IEnumerable<String^>^ parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + sampleDirection + +
+
+ SampleDirection +
+
+

+ The SampleDirection. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ IEnumerable<string> +
+
+

+ The parameter names. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000073_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000073_overloads--.html new file mode 100644 index 00000000..4df9526f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000073_overloads--.html @@ -0,0 +1,196 @@ + + + + + + + HelpPageSampleKey Constructor + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Constructor

+

+ + + Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +HelpPageSampleKey(MediaTypeHeaderValue) + + + +Creates a new HelpPageSampleKey based on media type. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, Type) + + + +Creates a new HelpPageSampleKey based on media type and CLR type. + +
+ +HelpPageSampleKey(SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000074.html b/API_NetFramework/VSdoc/topic_0000000000000074.html new file mode 100644 index 00000000..84408738 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000074.html @@ -0,0 +1,457 @@ + + + + + + + HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, String, String, IEnumerable<String>) Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, String, String, IEnumerable<String>) Constructor

+ + + + + + Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal mediaType As MediaTypeHeaderValue, _ 
ByVal sampleDirection As SampleDirection, _ 
ByVal controllerName As String, _ 
ByVal actionName As String, _ 
ByVal parameterNames As IEnumerable(Of String) _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HelpPageSampleKey( 
MediaTypeHeaderValue mediaType
SampleDirection sampleDirection
string controllerName
string actionName
IEnumerable<string> parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
HelpPageSampleKey( 
MediaTypeHeaderValue^ mediaType
SampleDirection sampleDirection
String^ controllerName
String^ actionName
IEnumerable<String^>^ parameterNames 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + mediaType + +
+
+ MediaTypeHeaderValue +
+
+

+ The media type. +

+
+
+ + sampleDirection + +
+
+ SampleDirection +
+
+

+ The SampleDirection. +

+
+
+ + controllerName + +
+
+ string +
+
+

+ Name of the controller. +

+
+
+ + actionName + +
+
+ string +
+
+

+ Name of the action. +

+
+
+ + parameterNames + +
+
+ IEnumerable<string> +
+
+

+ The parameter names. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000074_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000074_overloads--.html new file mode 100644 index 00000000..e133fc10 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000074_overloads--.html @@ -0,0 +1,196 @@ + + + + + + + HelpPageSampleKey Constructor + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey Constructor

+

+ + + Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +HelpPageSampleKey(MediaTypeHeaderValue) + + + +Creates a new HelpPageSampleKey based on media type. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on media type, SampleDirection, controller name, action name and parameter names. + +
+ +HelpPageSampleKey(MediaTypeHeaderValue, Type) + + + +Creates a new HelpPageSampleKey based on media type and CLR type. + +
+ +HelpPageSampleKey(SampleDirection, string, string, IEnumerable<String>) + + + +Creates a new HelpPageSampleKey based on SampleDirection, controller name, action name and parameter names. + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000075.html b/API_NetFramework/VSdoc/topic_0000000000000075.html new file mode 100644 index 00000000..e1b54725 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000075.html @@ -0,0 +1,396 @@ + + + + + + + HelpPageSampleKey.ControllerName Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.ControllerName Property

+ + + + + + Gets the name of the controller. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ControllerName() As String 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string ControllerName {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ ControllerName { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ControllerName() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string +

+ The name of the controller. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000076.html b/API_NetFramework/VSdoc/topic_0000000000000076.html new file mode 100644 index 00000000..d0ac7ea7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000076.html @@ -0,0 +1,396 @@ + + + + + + + HelpPageSampleKey.ActionName Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.ActionName Property

+ + + + + + Gets the name of the action. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ActionName() As String 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string ActionName {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ ActionName { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ActionName() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string +

+ The name of the action. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000077.html b/API_NetFramework/VSdoc/topic_0000000000000077.html new file mode 100644 index 00000000..58580ed5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000077.html @@ -0,0 +1,396 @@ + + + + + + + HelpPageSampleKey.MediaType Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.MediaType Property

+ + + + + + Gets the media type. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property MediaType() As MediaTypeHeaderValue 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public MediaTypeHeaderValue MediaType {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property MediaTypeHeaderValue^ MediaType { 
MediaTypeHeaderValue^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get MediaType() : MediaTypeHeaderValue;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ MediaTypeHeaderValue +

+ The media type. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000078.html b/API_NetFramework/VSdoc/topic_0000000000000078.html new file mode 100644 index 00000000..8fc2555a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000078.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageSampleKey.ParameterNames Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.ParameterNames Property

+ + + + + + Gets the parameter names. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ParameterNames() As HashSet(Of String
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public HashSet<string> ParameterNames {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property HashSet<String^>^ ParameterNames { 
HashSet<String^>^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ HashSet<string> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000079.html b/API_NetFramework/VSdoc/topic_0000000000000079.html new file mode 100644 index 00000000..31232e50 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000079.html @@ -0,0 +1,392 @@ + + + + + + + HelpPageSampleKey.ParameterType Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.ParameterType Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ParameterType() As Type 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Type ParameterType {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Type^ ParameterType { 
Type^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ParameterType() : Type;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Type + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007A.html b/API_NetFramework/VSdoc/topic_000000000000007A.html new file mode 100644 index 00000000..ad688c10 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007A.html @@ -0,0 +1,393 @@ + + + + + + + HelpPageSampleKey.SampleDirection Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.SampleDirection Property

+ + + + + + Gets the SampleDirection. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property SampleDirection() As Nullable(Of SampleDirection
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Nullable<SampleDirection> SampleDirection {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property Nullable<SampleDirection^> SampleDirection { 
Nullable<SampleDirection^> get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ Nullable<SampleDirection> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007B.html b/API_NetFramework/VSdoc/topic_000000000000007B.html new file mode 100644 index 00000000..9ddee748 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007B.html @@ -0,0 +1,408 @@ + + + + + + + HelpPageSampleKey.Equals Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.Equals Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function Equals( _ 
ByVal obj As Object
) As Boolean
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override bool Equals( 
object obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
bool Equals( 
object^ obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Equals( 
obj : object 
) : boolean;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + obj + +
+
+ object +
+
+

+ +

+ +

+ +

+ Return Value

+ bool + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007C.html b/API_NetFramework/VSdoc/topic_000000000000007C.html new file mode 100644 index 00000000..d835dd07 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007C.html @@ -0,0 +1,392 @@ + + + + + + + HelpPageSampleKey.GetHashCode Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HelpPageSampleKey.GetHashCode Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function GetHashCode() As Integer
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetHashCode() : int;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ int + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007D.html b/API_NetFramework/VSdoc/topic_000000000000007D.html new file mode 100644 index 00000000..a0d1e17b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007D.html @@ -0,0 +1,637 @@ + + + + + + + ImageSample Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Class

+ + + + + + This represents an image sample on the help page. There's a display template named ImageSample associated with this class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ImageSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ImageSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ImageSample 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ImageSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + ImageSample(string) + + + + Initializes a new instance of the ImageSample class. + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Src + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+Public method + + + + + ToString() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007D_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000007D_attached_props--.html new file mode 100644 index 00000000..70973912 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007D_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ImageSample Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Attached Properties

+

+

+ The following tables list the members exposed by the + ImageSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007D_events--.html b/API_NetFramework/VSdoc/topic_000000000000007D_events--.html new file mode 100644 index 00000000..1b7105b3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007D_events--.html @@ -0,0 +1,123 @@ + + + + + + + ImageSample Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Events

+

+

+ The following tables list the members exposed by the + ImageSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007D_methods--.html b/API_NetFramework/VSdoc/topic_000000000000007D_methods--.html new file mode 100644 index 00000000..948ef58f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007D_methods--.html @@ -0,0 +1,251 @@ + + + + + + + ImageSample Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Methods

+

+

+ The following tables list the members exposed by the + ImageSample + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+Public method + + + + + ToString() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007D_props--.html b/API_NetFramework/VSdoc/topic_000000000000007D_props--.html new file mode 100644 index 00000000..10f83964 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007D_props--.html @@ -0,0 +1,174 @@ + + + + + + + ImageSample Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Properties

+

+

+ The following tables list the members exposed by the + ImageSample + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Src + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007D_vars--.html b/API_NetFramework/VSdoc/topic_000000000000007D_vars--.html new file mode 100644 index 00000000..637fd567 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007D_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ImageSample Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Fields

+

+

+ The following tables list the members exposed by the + ImageSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000007E.html b/API_NetFramework/VSdoc/topic_000000000000007E.html new file mode 100644 index 00000000..1710813c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007E.html @@ -0,0 +1,405 @@ + + + + + + + ImageSample Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample Constructor

+ + + + + + Initializes a new instance of the ImageSample class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal src As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ImageSample( 
string src 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ImageSample( 
String^ src 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ImageSample( 
src : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + src + +
+
+ string +
+
+

+ The URL of an image. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000007F.html b/API_NetFramework/VSdoc/topic_000000000000007F.html new file mode 100644 index 00000000..ece4a59b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000007F.html @@ -0,0 +1,392 @@ + + + + + + + ImageSample.Src Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample.Src Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Src() As String 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Src {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Src { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Src() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000080.html b/API_NetFramework/VSdoc/topic_0000000000000080.html new file mode 100644 index 00000000..4227ee06 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000080.html @@ -0,0 +1,408 @@ + + + + + + + ImageSample.Equals Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample.Equals Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function Equals( _ 
ByVal obj As Object
) As Boolean
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override bool Equals( 
object obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
bool Equals( 
object^ obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Equals( 
obj : object 
) : boolean;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + obj + +
+
+ object +
+
+

+ +

+ +

+ +

+ Return Value

+ bool + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000081.html b/API_NetFramework/VSdoc/topic_0000000000000081.html new file mode 100644 index 00000000..7931982e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000081.html @@ -0,0 +1,392 @@ + + + + + + + ImageSample.GetHashCode Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample.GetHashCode Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function GetHashCode() As Integer
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetHashCode() : int;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ int + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000082.html b/API_NetFramework/VSdoc/topic_0000000000000082.html new file mode 100644 index 00000000..a3806b95 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000082.html @@ -0,0 +1,392 @@ + + + + + + + ImageSample.ToString Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ImageSample.ToString Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function ToString() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override string ToString()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ ToString()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ToString() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000083.html b/API_NetFramework/VSdoc/topic_0000000000000083.html new file mode 100644 index 00000000..ff68e401 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000083.html @@ -0,0 +1,637 @@ + + + + + + + InvalidSample Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Class

+ + + + + + This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class InvalidSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class InvalidSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class InvalidSample 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class InvalidSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + InvalidSample(string) + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ErrorMessage + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+Public method + + + + + ToString() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000083_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000083_attached_props--.html new file mode 100644 index 00000000..1d008a86 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000083_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + InvalidSample Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Attached Properties

+

+

+ The following tables list the members exposed by the + InvalidSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000083_events--.html b/API_NetFramework/VSdoc/topic_0000000000000083_events--.html new file mode 100644 index 00000000..b7b05385 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000083_events--.html @@ -0,0 +1,123 @@ + + + + + + + InvalidSample Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Events

+

+

+ The following tables list the members exposed by the + InvalidSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000083_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000083_methods--.html new file mode 100644 index 00000000..785df52a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000083_methods--.html @@ -0,0 +1,251 @@ + + + + + + + InvalidSample Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Methods

+

+

+ The following tables list the members exposed by the + InvalidSample + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+Public method + + + + + ToString() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000083_props--.html b/API_NetFramework/VSdoc/topic_0000000000000083_props--.html new file mode 100644 index 00000000..b6353089 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000083_props--.html @@ -0,0 +1,174 @@ + + + + + + + InvalidSample Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Properties

+

+

+ The following tables list the members exposed by the + InvalidSample + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + ErrorMessage + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000083_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000083_vars--.html new file mode 100644 index 00000000..64067585 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000083_vars--.html @@ -0,0 +1,123 @@ + + + + + + + InvalidSample Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Fields

+

+

+ The following tables list the members exposed by the + InvalidSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000084.html b/API_NetFramework/VSdoc/topic_0000000000000084.html new file mode 100644 index 00000000..5a93aef9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000084.html @@ -0,0 +1,404 @@ + + + + + + + InvalidSample Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal errorMessage As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public InvalidSample( 
string errorMessage 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
InvalidSample( 
String^ errorMessage 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function InvalidSample( 
errorMessage : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + errorMessage + +
+
+ string +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000085.html b/API_NetFramework/VSdoc/topic_0000000000000085.html new file mode 100644 index 00000000..884fbed0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000085.html @@ -0,0 +1,392 @@ + + + + + + + InvalidSample.ErrorMessage Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample.ErrorMessage Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property ErrorMessage() As String 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string ErrorMessage {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ ErrorMessage { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get ErrorMessage() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000086.html b/API_NetFramework/VSdoc/topic_0000000000000086.html new file mode 100644 index 00000000..f892a5f6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000086.html @@ -0,0 +1,408 @@ + + + + + + + InvalidSample.Equals Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample.Equals Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function Equals( _ 
ByVal obj As Object
) As Boolean
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override bool Equals( 
object obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
bool Equals( 
object^ obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Equals( 
obj : object 
) : boolean;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + obj + +
+
+ object +
+
+

+ +

+ +

+ +

+ Return Value

+ bool + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000087.html b/API_NetFramework/VSdoc/topic_0000000000000087.html new file mode 100644 index 00000000..91c057dd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000087.html @@ -0,0 +1,392 @@ + + + + + + + InvalidSample.GetHashCode Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample.GetHashCode Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function GetHashCode() As Integer
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetHashCode() : int;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ int + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000088.html b/API_NetFramework/VSdoc/topic_0000000000000088.html new file mode 100644 index 00000000..f54fe620 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000088.html @@ -0,0 +1,392 @@ + + + + + + + InvalidSample.ToString Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

InvalidSample.ToString Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function ToString() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override string ToString()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ ToString()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ToString() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000089.html b/API_NetFramework/VSdoc/topic_0000000000000089.html new file mode 100644 index 00000000..912edaa9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000089.html @@ -0,0 +1,486 @@ + + + + + + + ObjectGenerator Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator Class

+ + + + + + This class will create an object of a given type and populate it with sample data. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ObjectGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ObjectGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ObjectGenerator 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ObjectGenerator
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GenerateObject(Type) + + + +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: int, string, Enum, DateTime, Uri, etc. +Complex types: POCO types. +Nullables: Nullable<T>. +Arrays: arrays of simple types or complex types. +Key value pairs: KeyValuePair<TKey,TValue> +Tuples: Tuple<T1>, Tuple<T1,T2>, etc +Dictionaries: IDictionary<TKey,TValue> or anything deriving from IDictionary<TKey,TValue>. +Collections: IList<T>, IEnumerable<T>, ICollection<T>, IList, IEnumerable, ICollection or anything deriving from ICollection<T> or IList. +Queryables: IQueryable, IQueryable<T>. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000089_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000089_attached_props--.html new file mode 100644 index 00000000..780e04cd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000089_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ObjectGenerator Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator Attached Properties

+

+

+ The following tables list the members exposed by the + ObjectGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000089_events--.html b/API_NetFramework/VSdoc/topic_0000000000000089_events--.html new file mode 100644 index 00000000..d2738572 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000089_events--.html @@ -0,0 +1,123 @@ + + + + + + + ObjectGenerator Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator Events

+

+

+ The following tables list the members exposed by the + ObjectGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000089_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000089_methods--.html new file mode 100644 index 00000000..1df2d849 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000089_methods--.html @@ -0,0 +1,202 @@ + + + + + + + ObjectGenerator Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator Methods

+

+

+ The following tables list the members exposed by the + ObjectGenerator + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GenerateObject(Type) + + + +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: int, string, Enum, DateTime, Uri, etc. +Complex types: POCO types. +Nullables: Nullable<T>. +Arrays: arrays of simple types or complex types. +Key value pairs: KeyValuePair<TKey,TValue> +Tuples: Tuple<T1>, Tuple<T1,T2>, etc +Dictionaries: IDictionary<TKey,TValue> or anything deriving from IDictionary<TKey,TValue>. +Collections: IList<T>, IEnumerable<T>, ICollection<T>, IList, IEnumerable, ICollection or anything deriving from ICollection<T> or IList. +Queryables: IQueryable, IQueryable<T>. + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000089_props--.html b/API_NetFramework/VSdoc/topic_0000000000000089_props--.html new file mode 100644 index 00000000..ecdf4937 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000089_props--.html @@ -0,0 +1,123 @@ + + + + + + + ObjectGenerator Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator Properties

+

+

+ The following tables list the members exposed by the + ObjectGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000089_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000089_vars--.html new file mode 100644 index 00000000..11c549d2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000089_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ObjectGenerator Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator Fields

+

+

+ The following tables list the members exposed by the + ObjectGenerator + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000008A.html b/API_NetFramework/VSdoc/topic_000000000000008A.html new file mode 100644 index 00000000..4eee22de --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008A.html @@ -0,0 +1,421 @@ + + + + + + + ObjectGenerator.GenerateObject Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ObjectGenerator.GenerateObject Method

+ + + + + + 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: int, string, Enum, DateTime, Uri, etc. +Complex types: POCO types. +Nullables: Nullable<T>. +Arrays: arrays of simple types or complex types. +Key value pairs: KeyValuePair<TKey,TValue> +Tuples: Tuple<T1>, Tuple<T1,T2>, etc +Dictionaries: IDictionary<TKey,TValue> or anything deriving from IDictionary<TKey,TValue>. +Collections: IList<T>, IEnumerable<T>, ICollection<T>, IList, IEnumerable, ICollection or anything deriving from ICollection<T> or IList. +Queryables: IQueryable, IQueryable<T>. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GenerateObject( _ 
ByVal type As Type
) As Object
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public object GenerateObject( 
Type type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
object^ GenerateObject( 
Type^ type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GenerateObject( 
type : Type 
) : object;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + type + +
+
+ Type +
+
+

+ The type. +

+ +

+ +

+ Return Value

+ object +

+ An object of the given type. +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000008B.html b/API_NetFramework/VSdoc/topic_000000000000008B.html new file mode 100644 index 00000000..d633e2ff --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008B.html @@ -0,0 +1,232 @@ + + + + + + + SampleDirection Enumeration + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

SampleDirection Enumeration

+ + + + + + Indicates whether the sample is used for request or response + + + + + + + + + + + +
+ + + + + +
+ + + + +
+
+ Fields +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Value + Description +
+ Request + + 0 + + +
+ Response + + 1 + + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000008E.html b/API_NetFramework/VSdoc/topic_000000000000008E.html new file mode 100644 index 00000000..baa2ae7c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008E.html @@ -0,0 +1,637 @@ + + + + + + + TextSample Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Class

+ + + + + + This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class TextSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class TextSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class TextSample 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class TextSample
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + TextSample(string) + + + + + +
+ + + Top + + +
+
+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Text + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+Public method + + + + + ToString() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000008E_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000008E_attached_props--.html new file mode 100644 index 00000000..074ed007 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008E_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + TextSample Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Attached Properties

+

+

+ The following tables list the members exposed by the + TextSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000008E_events--.html b/API_NetFramework/VSdoc/topic_000000000000008E_events--.html new file mode 100644 index 00000000..cf5ba9b0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008E_events--.html @@ -0,0 +1,123 @@ + + + + + + + TextSample Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Events

+

+

+ The following tables list the members exposed by the + TextSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000008E_methods--.html b/API_NetFramework/VSdoc/topic_000000000000008E_methods--.html new file mode 100644 index 00000000..16d8704a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008E_methods--.html @@ -0,0 +1,251 @@ + + + + + + + TextSample Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Methods

+

+

+ The following tables list the members exposed by the + TextSample + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Equals(object) + + + + + +
+Public method + + + + + GetHashCode() + + + + + +
+Public method + + + + + ToString() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000008E_props--.html b/API_NetFramework/VSdoc/topic_000000000000008E_props--.html new file mode 100644 index 00000000..55ff5aaa --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008E_props--.html @@ -0,0 +1,174 @@ + + + + + + + TextSample Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Properties

+

+

+ The following tables list the members exposed by the + TextSample + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + Text + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000008E_vars--.html b/API_NetFramework/VSdoc/topic_000000000000008E_vars--.html new file mode 100644 index 00000000..e23f464f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008E_vars--.html @@ -0,0 +1,123 @@ + + + + + + + TextSample Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Fields

+

+

+ The following tables list the members exposed by the + TextSample + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000008F.html b/API_NetFramework/VSdoc/topic_000000000000008F.html new file mode 100644 index 00000000..014b68d2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000008F.html @@ -0,0 +1,404 @@ + + + + + + + TextSample Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal text As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public TextSample( 
string text 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
TextSample( 
String^ text 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function TextSample( 
text : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + text + +
+
+ string +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000090.html b/API_NetFramework/VSdoc/topic_0000000000000090.html new file mode 100644 index 00000000..73767d89 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000090.html @@ -0,0 +1,392 @@ + + + + + + + TextSample.Text Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample.Text Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property Text() As String 
Get 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string Text {get;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ Text { 
String^ get( ); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get Text() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000091.html b/API_NetFramework/VSdoc/topic_0000000000000091.html new file mode 100644 index 00000000..45a07e45 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000091.html @@ -0,0 +1,408 @@ + + + + + + + TextSample.Equals Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample.Equals Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function Equals( _ 
ByVal obj As Object
) As Boolean
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override bool Equals( 
object obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
bool Equals( 
object^ obj 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Equals( 
obj : object 
) : boolean;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + obj + +
+
+ object +
+
+

+ +

+ +

+ +

+ Return Value

+ bool + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000092.html b/API_NetFramework/VSdoc/topic_0000000000000092.html new file mode 100644 index 00000000..53d1364e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000092.html @@ -0,0 +1,392 @@ + + + + + + + TextSample.GetHashCode Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample.GetHashCode Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function GetHashCode() As Integer
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
int GetHashCode()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetHashCode() : int;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ int + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000093.html b/API_NetFramework/VSdoc/topic_0000000000000093.html new file mode 100644 index 00000000..83598a99 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000093.html @@ -0,0 +1,392 @@ + + + + + + + TextSample.ToString Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TextSample.ToString Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overrides Function ToString() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public override string ToString()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ ToString()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function ToString() : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000094.html b/API_NetFramework/VSdoc/topic_0000000000000094.html new file mode 100644 index 00000000..59886527 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000094.html @@ -0,0 +1,637 @@ + + + + + + + XmlDocumentationProvider Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Class

+ + + + + + A custom IDocumentationProvider that reads the API documentation from an XML documentation file. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class XmlDocumentationProvider 
Implements IDocumentationProvider, _ 
IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class XmlDocumentationProvider : IDocumentationProvider
IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class XmlDocumentationProvider  : public IDocumentationProvider^, 
public IModelDocumentationProvider^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class XmlDocumentationProvider 
implements IDocumentationProvider
IModelDocumentationProvider
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + XmlDocumentationProvider(string) + + + + Initializes a new instance of the XmlDocumentationProvider class. + +
+ + + Top + + +
+
+ + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetDocumentation(HttpControllerDescriptor) + + + + + +
+Public method + + + + + GetDocumentation(MemberInfo) + + + + + +
+Public method + + + + + GetDocumentation(Type) + + + + + +
+Public method + + + + + GetDocumentation(HttpActionDescriptor) + + + + + +
+Public method + + + + + GetDocumentation(HttpParameterDescriptor) + + + + + +
+Public method + + + + + GetResponseDocumentation(HttpActionDescriptor) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000094_attached_props--.html b/API_NetFramework/VSdoc/topic_0000000000000094_attached_props--.html new file mode 100644 index 00000000..8effa45e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000094_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + XmlDocumentationProvider Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Attached Properties

+

+

+ The following tables list the members exposed by the + XmlDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000094_events--.html b/API_NetFramework/VSdoc/topic_0000000000000094_events--.html new file mode 100644 index 00000000..7d471bb6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000094_events--.html @@ -0,0 +1,123 @@ + + + + + + + XmlDocumentationProvider Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Events

+

+

+ The following tables list the members exposed by the + XmlDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000094_methods--.html b/API_NetFramework/VSdoc/topic_0000000000000094_methods--.html new file mode 100644 index 00000000..25971ba9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000094_methods--.html @@ -0,0 +1,302 @@ + + + + + + + XmlDocumentationProvider Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Methods

+

+

+ The following tables list the members exposed by the + XmlDocumentationProvider + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetDocumentation(HttpControllerDescriptor) + + + + + +
+Public method + + + + + GetDocumentation(MemberInfo) + + + + + +
+Public method + + + + + GetDocumentation(Type) + + + + + +
+Public method + + + + + GetDocumentation(HttpActionDescriptor) + + + + + +
+Public method + + + + + GetDocumentation(HttpParameterDescriptor) + + + + + +
+Public method + + + + + GetResponseDocumentation(HttpActionDescriptor) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000094_props--.html b/API_NetFramework/VSdoc/topic_0000000000000094_props--.html new file mode 100644 index 00000000..0e3bf14f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000094_props--.html @@ -0,0 +1,123 @@ + + + + + + + XmlDocumentationProvider Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Properties

+

+

+ The following tables list the members exposed by the + XmlDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000094_vars--.html b/API_NetFramework/VSdoc/topic_0000000000000094_vars--.html new file mode 100644 index 00000000..b1f21646 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000094_vars--.html @@ -0,0 +1,123 @@ + + + + + + + XmlDocumentationProvider Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Fields

+

+

+ The following tables list the members exposed by the + XmlDocumentationProvider + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_0000000000000095.html b/API_NetFramework/VSdoc/topic_0000000000000095.html new file mode 100644 index 00000000..3df0ecf3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000095.html @@ -0,0 +1,405 @@ + + + + + + + XmlDocumentationProvider Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider Constructor

+ + + + + + Initializes a new instance of the XmlDocumentationProvider class. + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal documentPath As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public XmlDocumentationProvider( 
string documentPath 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
XmlDocumentationProvider( 
String^ documentPath 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function XmlDocumentationProvider( 
documentPath : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + documentPath + +
+
+ string +
+
+

+ The physical path to XML document. +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000096.html b/API_NetFramework/VSdoc/topic_0000000000000096.html new file mode 100644 index 00000000..d12ba459 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000096.html @@ -0,0 +1,408 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation (HttpControllerDescriptor) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation (HttpControllerDescriptor) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetDocumentation( _ 
ByVal controllerDescriptor As HttpControllerDescriptor
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string GetDocumentation( 
HttpControllerDescriptor controllerDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ GetDocumentation( 
HttpControllerDescriptor^ controllerDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetDocumentation( 
controllerDescriptor : HttpControllerDescriptor 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + controllerDescriptor + +
+
+ HttpControllerDescriptor +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000096_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000096_overloads--.html new file mode 100644 index 00000000..fcfad302 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000096_overloads--.html @@ -0,0 +1,208 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(HttpControllerDescriptor) + + + + + +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+ +GetDocumentation(HttpActionDescriptor) + + + + + +
+ +GetDocumentation(HttpParameterDescriptor) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000097.html b/API_NetFramework/VSdoc/topic_0000000000000097.html new file mode 100644 index 00000000..6ea4e3c3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000097.html @@ -0,0 +1,408 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation (HttpActionDescriptor) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation (HttpActionDescriptor) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overridable Function GetDocumentation( _ 
ByVal actionDescriptor As HttpActionDescriptor
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public virtual string GetDocumentation( 
HttpActionDescriptor actionDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
virtual String^ GetDocumentation( 
HttpActionDescriptor^ actionDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetDocumentation( 
actionDescriptor : HttpActionDescriptor 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + actionDescriptor + +
+
+ HttpActionDescriptor +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000097_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000097_overloads--.html new file mode 100644 index 00000000..fcfad302 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000097_overloads--.html @@ -0,0 +1,208 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(HttpControllerDescriptor) + + + + + +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+ +GetDocumentation(HttpActionDescriptor) + + + + + +
+ +GetDocumentation(HttpParameterDescriptor) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000098.html b/API_NetFramework/VSdoc/topic_0000000000000098.html new file mode 100644 index 00000000..b35b0d9d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000098.html @@ -0,0 +1,408 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation (HttpParameterDescriptor) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation (HttpParameterDescriptor) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Overridable Function GetDocumentation( _ 
ByVal parameterDescriptor As HttpParameterDescriptor
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public virtual string GetDocumentation( 
HttpParameterDescriptor parameterDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
virtual String^ GetDocumentation( 
HttpParameterDescriptor^ parameterDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetDocumentation( 
parameterDescriptor : HttpParameterDescriptor 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + parameterDescriptor + +
+
+ HttpParameterDescriptor +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000098_overloads--.html b/API_NetFramework/VSdoc/topic_0000000000000098_overloads--.html new file mode 100644 index 00000000..fcfad302 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000098_overloads--.html @@ -0,0 +1,208 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(HttpControllerDescriptor) + + + + + +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+ +GetDocumentation(HttpActionDescriptor) + + + + + +
+ +GetDocumentation(HttpParameterDescriptor) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_0000000000000099.html b/API_NetFramework/VSdoc/topic_0000000000000099.html new file mode 100644 index 00000000..35940f64 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_0000000000000099.html @@ -0,0 +1,408 @@ + + + + + + + XmlDocumentationProvider.GetResponseDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetResponseDocumentation Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetResponseDocumentation( _ 
ByVal actionDescriptor As HttpActionDescriptor
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string GetResponseDocumentation( 
HttpActionDescriptor actionDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ GetResponseDocumentation( 
HttpActionDescriptor^ actionDescriptor 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetResponseDocumentation( 
actionDescriptor : HttpActionDescriptor 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + actionDescriptor + +
+
+ HttpActionDescriptor +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009A.html b/API_NetFramework/VSdoc/topic_000000000000009A.html new file mode 100644 index 00000000..71b802bb --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009A.html @@ -0,0 +1,408 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation (MemberInfo) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation (MemberInfo) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetDocumentation( _ 
ByVal member As MemberInfo
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string GetDocumentation( 
MemberInfo member 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ GetDocumentation( 
MemberInfo^ member 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetDocumentation( 
member : MemberInfo 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + member + +
+
+ MemberInfo +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009A_overloads--.html b/API_NetFramework/VSdoc/topic_000000000000009A_overloads--.html new file mode 100644 index 00000000..fcfad302 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009A_overloads--.html @@ -0,0 +1,208 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(HttpControllerDescriptor) + + + + + +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+ +GetDocumentation(HttpActionDescriptor) + + + + + +
+ +GetDocumentation(HttpParameterDescriptor) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009B.html b/API_NetFramework/VSdoc/topic_000000000000009B.html new file mode 100644 index 00000000..6baecfa9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009B.html @@ -0,0 +1,408 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation (Type) Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation (Type) Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetDocumentation( _ 
ByVal type As Type
) As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string GetDocumentation( 
Type type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
String^ GetDocumentation( 
Type^ type 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetDocumentation( 
type : Type 
) : String;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + type + +
+
+ Type +
+
+

+ +

+ +

+ +

+ Return Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009B_overloads--.html b/API_NetFramework/VSdoc/topic_000000000000009B_overloads--.html new file mode 100644 index 00000000..fcfad302 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009B_overloads--.html @@ -0,0 +1,208 @@ + + + + + + + XmlDocumentationProvider.GetDocumentation Method + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

XmlDocumentationProvider.GetDocumentation Method

+

+ + + + + +

+
+ Overload List +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ +GetDocumentation(HttpControllerDescriptor) + + + + + +
+ +GetDocumentation(MemberInfo) + + + + + +
+ +GetDocumentation(Type) + + + + + +
+ +GetDocumentation(HttpActionDescriptor) + + + + + +
+ +GetDocumentation(HttpParameterDescriptor) + + + + + +
+
+
+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009C.html b/API_NetFramework/VSdoc/topic_000000000000009C.html new file mode 100644 index 00000000..0c5c6981 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009C.html @@ -0,0 +1,485 @@ + + + + + + + API_NetFramework.Controllers Namespace + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework.Controllers Namespace

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ Classes +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public class + + + + + AntwortAdresseController + + + + +
+ Public class + + + + + ArchivController + + + + +
+ Public class + + + + + DocumentController + + + + +
+ Public class + + + + + FileResult + + + + +
+ Public class + + + + + FileService + + + + +
+ Public class + + + + + HomeController + + + + +
+ Public class + + Static + + + + Image + + + + +
+ Public class + + + + + TestParam + + + + +
+ Public class + + + + + UnterschriftController + + + + +
+ Public class + + + + + unterschriftResult + + + + +
+ + + Top + + +
+
+ + +
+
+ Interfaces +
 
+
+ +
+ + + + + + + + + + + + + +
+ Name + + Description +
+ Public interface + + + + + IFileService + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000009D.html b/API_NetFramework/VSdoc/topic_000000000000009D.html new file mode 100644 index 00000000..ca24c991 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009D.html @@ -0,0 +1,592 @@ + + + + + + + AntwortAdresseController Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class AntwortAdresseController 
Inherits ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class AntwortAdresseController : ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class AntwortAdresseController : public ApiController^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class AntwortAdresseController 
extends ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetAllMitarbeiterByMitarbeiterNr(string, string) + + + + + +
+Public method + + + + + GetAllMitarbeiterByTGNummer(string, string) + + + + + +
+Public method + + + + + GetByID(string, string) + + + + + +
+Public method + + + + + GetGetAll(string) + + + + + +
+Public method + + + + + GetMitarbeiterByID(string, string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009D_attached_props--.html b/API_NetFramework/VSdoc/topic_000000000000009D_attached_props--.html new file mode 100644 index 00000000..489c2dcb --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009D_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + AntwortAdresseController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController Attached Properties

+

+

+ The following tables list the members exposed by the + AntwortAdresseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009D_events--.html b/API_NetFramework/VSdoc/topic_000000000000009D_events--.html new file mode 100644 index 00000000..6124dc33 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009D_events--.html @@ -0,0 +1,123 @@ + + + + + + + AntwortAdresseController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController Events

+

+

+ The following tables list the members exposed by the + AntwortAdresseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009D_methods--.html b/API_NetFramework/VSdoc/topic_000000000000009D_methods--.html new file mode 100644 index 00000000..c9164434 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009D_methods--.html @@ -0,0 +1,309 @@ + + + + + + + AntwortAdresseController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController Methods

+

+

+ The following tables list the members exposed by the + AntwortAdresseController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetAllMitarbeiterByMitarbeiterNr(string, string) + + + + + +
+Public method + + + + + GetAllMitarbeiterByTGNummer(string, string) + + + + + +
+Public method + + + + + GetByID(string, string) + + + + + +
+Public method + + + + + GetGetAll(string) + + + + + +
+Public method + + + + + GetMitarbeiterByID(string, string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009D_props--.html b/API_NetFramework/VSdoc/topic_000000000000009D_props--.html new file mode 100644 index 00000000..a5a7daf4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009D_props--.html @@ -0,0 +1,123 @@ + + + + + + + AntwortAdresseController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController Properties

+

+

+ The following tables list the members exposed by the + AntwortAdresseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009D_vars--.html b/API_NetFramework/VSdoc/topic_000000000000009D_vars--.html new file mode 100644 index 00000000..86dd2e3e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009D_vars--.html @@ -0,0 +1,123 @@ + + + + + + + AntwortAdresseController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController Fields

+

+

+ The following tables list the members exposed by the + AntwortAdresseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_000000000000009E.html b/API_NetFramework/VSdoc/topic_000000000000009E.html new file mode 100644 index 00000000..f9ea27a2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009E.html @@ -0,0 +1,408 @@ + + + + + + + AntwortAdresseController.GetGetAll Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController.GetGetAll Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/Antwortadresse/GetAll")> _ 
Public Function GetGetAll( _ 
Optional ByVal OutFormat As String = "JSON" _ 
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/Antwortadresse/GetAll")] 
public IHttpActionResult GetGetAll( 
string OutFormat = "JSON" 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/Antwortadresse/GetAll")] 
public:  
IHttpActionResult^ GetGetAll( 
String^ OutFormat 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/Antwortadresse/GetAll") 
function GetGetAll( 
OutFormat : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + OutFormat + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_000000000000009F.html b/API_NetFramework/VSdoc/topic_000000000000009F.html new file mode 100644 index 00000000..68660607 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_000000000000009F.html @@ -0,0 +1,421 @@ + + + + + + + AntwortAdresseController.GetByID Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController.GetByID Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/Antwortadresse/GetByID")> _ 
Public Function GetByID( _ 
ByVal ID As String, _ 
Optional ByVal OutFormat As String = "JSON" _ 
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/Antwortadresse/GetByID")] 
public IHttpActionResult GetByID( 
string ID
string OutFormat = "JSON" 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/Antwortadresse/GetByID")] 
public:  
IHttpActionResult^ GetByID( 
String^ ID
String^ OutFormat 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/Antwortadresse/GetByID") 
function GetByID( 
ID : String
OutFormat : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + ID + +
+
+ string +
+
+

+ +

+
+
+ + OutFormat + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A0.html b/API_NetFramework/VSdoc/topic_00000000000000A0.html new file mode 100644 index 00000000..f13616cf --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A0.html @@ -0,0 +1,421 @@ + + + + + + + AntwortAdresseController.GetAllMitarbeiterByTGNummer Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController.GetAllMitarbeiterByTGNummer Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer")> _ 
Public Function GetAllMitarbeiterByTGNummer( _ 
ByVal tgnummer As String, _ 
Optional ByVal OutFormat As String = "JSON" _ 
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer")] 
public IHttpActionResult GetAllMitarbeiterByTGNummer( 
string tgnummer
string OutFormat = "JSON" 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer")] 
public:  
IHttpActionResult^ GetAllMitarbeiterByTGNummer( 
String^ tgnummer
String^ OutFormat 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer") 
function GetAllMitarbeiterByTGNummer( 
tgnummer : String
OutFormat : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + tgnummer + +
+
+ string +
+
+

+ +

+
+
+ + OutFormat + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A1.html b/API_NetFramework/VSdoc/topic_00000000000000A1.html new file mode 100644 index 00000000..c463fc70 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A1.html @@ -0,0 +1,421 @@ + + + + + + + AntwortAdresseController.GetAllMitarbeiterByMitarbeiterNr Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController.GetAllMitarbeiterByMitarbeiterNr Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")> _ 
Public Function GetAllMitarbeiterByMitarbeiterNr( _ 
ByVal Mitarbeiternr As String, _ 
Optional ByVal OutFormat As String = "JSON" _ 
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")] 
public IHttpActionResult GetAllMitarbeiterByMitarbeiterNr( 
string Mitarbeiternr
string OutFormat = "JSON" 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")] 
public:  
IHttpActionResult^ GetAllMitarbeiterByMitarbeiterNr( 
String^ Mitarbeiternr
String^ OutFormat 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr") 
function GetAllMitarbeiterByMitarbeiterNr( 
Mitarbeiternr : String
OutFormat : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + Mitarbeiternr + +
+
+ string +
+
+

+ +

+
+
+ + OutFormat + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A2.html b/API_NetFramework/VSdoc/topic_00000000000000A2.html new file mode 100644 index 00000000..08fca729 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A2.html @@ -0,0 +1,421 @@ + + + + + + + AntwortAdresseController.GetMitarbeiterByID Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

AntwortAdresseController.GetMitarbeiterByID Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/API/AntwortAdresse/GetMitarbeiterByID")> _ 
Public Function GetMitarbeiterByID( _ 
ByVal ID As String, _ 
Optional ByVal OutFormat As String = "JSON" _ 
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/API/AntwortAdresse/GetMitarbeiterByID")] 
public IHttpActionResult GetMitarbeiterByID( 
string ID
string OutFormat = "JSON" 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/API/AntwortAdresse/GetMitarbeiterByID")] 
public:  
IHttpActionResult^ GetMitarbeiterByID( 
String^ ID
String^ OutFormat 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/API/AntwortAdresse/GetMitarbeiterByID") 
function GetMitarbeiterByID( 
ID : String
OutFormat : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + ID + +
+
+ string +
+
+

+ +

+
+
+ + OutFormat + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A3.html b/API_NetFramework/VSdoc/topic_00000000000000A3.html new file mode 100644 index 00000000..89c45622 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A3.html @@ -0,0 +1,563 @@ + + + + + + + ArchivController Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class ArchivController 
Inherits ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ArchivController : ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class ArchivController : public ApiController^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class ArchivController 
extends ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ArchivDocBase64(string) + + + + + +
+Public method + + + + + ArchivDocFromIRIS(string) + + + + + +
+Public method + + + + + ArchivDoc_From_Database(string) + + + +Archiviert das Dokument aus OnDoc in OnBase + +
+Public method + + + + + CheckDocID(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A3_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A3_attached_props--.html new file mode 100644 index 00000000..1a55d308 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A3_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + ArchivController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController Attached Properties

+

+

+ The following tables list the members exposed by the + ArchivController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A3_events--.html b/API_NetFramework/VSdoc/topic_00000000000000A3_events--.html new file mode 100644 index 00000000..23bccaf6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A3_events--.html @@ -0,0 +1,123 @@ + + + + + + + ArchivController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController Events

+

+

+ The following tables list the members exposed by the + ArchivController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A3_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000A3_methods--.html new file mode 100644 index 00000000..568c0759 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A3_methods--.html @@ -0,0 +1,280 @@ + + + + + + + ArchivController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController Methods

+

+

+ The following tables list the members exposed by the + ArchivController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ArchivDocBase64(string) + + + + + +
+Public method + + + + + ArchivDocFromIRIS(string) + + + + + +
+Public method + + + + + ArchivDoc_From_Database(string) + + + +Archiviert das Dokument aus OnDoc in OnBase + +
+Public method + + + + + CheckDocID(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A3_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A3_props--.html new file mode 100644 index 00000000..0e0346b8 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A3_props--.html @@ -0,0 +1,123 @@ + + + + + + + ArchivController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController Properties

+

+

+ The following tables list the members exposed by the + ArchivController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A3_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000A3_vars--.html new file mode 100644 index 00000000..f8de0ad0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A3_vars--.html @@ -0,0 +1,123 @@ + + + + + + + ArchivController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController Fields

+

+

+ The following tables list the members exposed by the + ArchivController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A4.html b/API_NetFramework/VSdoc/topic_00000000000000A4.html new file mode 100644 index 00000000..a877666f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A4.html @@ -0,0 +1,413 @@ + + + + + + + ArchivController.ArchivDoc_From_Database Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController.ArchivDoc_From_Database Method

+ + + + + + Archiviert das Dokument aus OnDoc in OnBase + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/ArchiveDocFromDatabase")> _ 
Public Function ArchivDoc_From_Database( _ 
ByVal dokid As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/ArchiveDocFromDatabase")] 
public IHttpActionResult ArchivDoc_From_Database( 
string dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/ArchiveDocFromDatabase")] 
public:  
IHttpActionResult^ ArchivDoc_From_Database( 
String^ dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/ArchiveDocFromDatabase") 
function ArchivDoc_From_Database( 
dokid : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + dokid + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult +

+ Returncode: 200 (OK) +Dokumenthandle aus OnBase +

+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A4_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A4_attached_props--.html new file mode 100644 index 00000000..1eeb8869 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A4_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + TestParam Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Attached Properties

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A4_events--.html b/API_NetFramework/VSdoc/topic_00000000000000A4_events--.html new file mode 100644 index 00000000..b22154e6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A4_events--.html @@ -0,0 +1,123 @@ + + + + + + + TestParam Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Events

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A4_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000A4_methods--.html new file mode 100644 index 00000000..5bc381ba --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A4_methods--.html @@ -0,0 +1,125 @@ + + + + + + + TestParam Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Methods

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A4_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A4_props--.html new file mode 100644 index 00000000..24c4a733 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A4_props--.html @@ -0,0 +1,198 @@ + + + + + + + TestParam Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Properties

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + param1 + + + + + +
+Public property + + + + + param2 + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A4_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000A4_vars--.html new file mode 100644 index 00000000..3d6491ea --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A4_vars--.html @@ -0,0 +1,123 @@ + + + + + + + TestParam Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Fields

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A5.html b/API_NetFramework/VSdoc/topic_00000000000000A5.html new file mode 100644 index 00000000..7857d0fd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A5.html @@ -0,0 +1,408 @@ + + + + + + + ArchivController.ArchivDocBase64 Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController.ArchivDocBase64 Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/ArchiveDocBase64")> _ 
Public Function ArchivDocBase64( _ 
ByVal dokid As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/ArchiveDocBase64")] 
public IHttpActionResult ArchivDocBase64( 
string dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/ArchiveDocBase64")] 
public:  
IHttpActionResult^ ArchivDocBase64( 
String^ dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/ArchiveDocBase64") 
function ArchivDocBase64( 
dokid : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + dokid + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A6.html b/API_NetFramework/VSdoc/topic_00000000000000A6.html new file mode 100644 index 00000000..578a1a04 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A6.html @@ -0,0 +1,408 @@ + + + + + + + ArchivController.CheckDocID Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController.CheckDocID Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/CheckDocID")> _ 
Public Function CheckDocID( _ 
ByVal DokumentID As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/CheckDocID")] 
public IHttpActionResult CheckDocID( 
string DokumentID 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/CheckDocID")] 
public:  
IHttpActionResult^ CheckDocID( 
String^ DokumentID 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/CheckDocID") 
function CheckDocID( 
DokumentID : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + DokumentID + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A6_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A6_attached_props--.html new file mode 100644 index 00000000..4e6efd26 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A6_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Attached Properties

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A6_events--.html b/API_NetFramework/VSdoc/topic_00000000000000A6_events--.html new file mode 100644 index 00000000..9483a4da --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A6_events--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Events

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A6_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000A6_methods--.html new file mode 100644 index 00000000..831670a0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A6_methods--.html @@ -0,0 +1,309 @@ + + + + + + + DocumentController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Methods

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GenDoc(string, string, string, string, string, string, string, string, string) + + + + + +
+Public method + + + + + GetDocument(string) + + + + + +
+Public method + + + + + GetDocumentJSONBody(TestParam) + + + + + +
+Public method + + + + + GetDocumentPDF(string) + + + + + +
+Public method + + + + + SendToOnBase(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A6_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A6_props--.html new file mode 100644 index 00000000..3ac521f7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A6_props--.html @@ -0,0 +1,174 @@ + + + + + + + DocumentController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Properties

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + pageCollection + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A6_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000A6_vars--.html new file mode 100644 index 00000000..1c8a1348 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A6_vars--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Fields

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A7.html b/API_NetFramework/VSdoc/topic_00000000000000A7.html new file mode 100644 index 00000000..78afd476 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A7.html @@ -0,0 +1,408 @@ + + + + + + + ArchivController.ArchivDocFromIRIS Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

ArchivController.ArchivDocFromIRIS Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpPost()> _ 
<Route("API/ArchivDocFromIRIS")> _ 
Public Function ArchivDocFromIRIS( _ 
ByVal dokumentid As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpPost()] 
[Route("API/ArchivDocFromIRIS")] 
public IHttpActionResult ArchivDocFromIRIS( 
string dokumentid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpPost()] 
[Route("API/ArchivDocFromIRIS")] 
public:  
IHttpActionResult^ ArchivDocFromIRIS( 
String^ dokumentid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpPost() 
Route("API/ArchivDocFromIRIS") 
function ArchivDocFromIRIS( 
dokumentid : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + dokumentid + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A7_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A7_attached_props--.html new file mode 100644 index 00000000..9e7fc6ce --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A7_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Attached Properties

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A7_events--.html b/API_NetFramework/VSdoc/topic_00000000000000A7_events--.html new file mode 100644 index 00000000..bdfed965 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A7_events--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Events

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A7_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000A7_methods--.html new file mode 100644 index 00000000..ed0d5d6d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A7_methods--.html @@ -0,0 +1,309 @@ + + + + + + + DocumentController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Methods

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GenDoc(string, string, string, string, string, string, string, string, string) + + + + + +
+Public method + + + + + GetDocument(string) + + + + + +
+Public method + + + + + GetDocumentJSONBody(TestParam) + + + + + +
+Public method + + + + + GetDocumentPDF(string) + + + + + +
+Public method + + + + + SendToOnBase(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A7_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A7_props--.html new file mode 100644 index 00000000..38369627 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A7_props--.html @@ -0,0 +1,174 @@ + + + + + + + DocumentController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Properties

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + pageCollection + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A7_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000A7_vars--.html new file mode 100644 index 00000000..914149dd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A7_vars--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Fields

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A8.html b/API_NetFramework/VSdoc/topic_00000000000000A8.html new file mode 100644 index 00000000..a16c2cb1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A8.html @@ -0,0 +1,483 @@ + + + + + + + TestParam Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class TestParam
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class TestParam
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class TestParam 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class TestParam
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + param1 + + + + + +
+Public property + + + + + param2 + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A8_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A8_attached_props--.html new file mode 100644 index 00000000..a25829c6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A8_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + TestParam Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Attached Properties

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A8_events--.html b/API_NetFramework/VSdoc/topic_00000000000000A8_events--.html new file mode 100644 index 00000000..d859ee21 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A8_events--.html @@ -0,0 +1,123 @@ + + + + + + + TestParam Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Events

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A8_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000A8_methods--.html new file mode 100644 index 00000000..90771a55 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A8_methods--.html @@ -0,0 +1,125 @@ + + + + + + + TestParam Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Methods

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A8_props--.html b/API_NetFramework/VSdoc/topic_00000000000000A8_props--.html new file mode 100644 index 00000000..d4fe45b9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A8_props--.html @@ -0,0 +1,198 @@ + + + + + + + TestParam Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Properties

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + param1 + + + + + +
+Public property + + + + + param2 + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A8_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000A8_vars--.html new file mode 100644 index 00000000..152ff3a9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A8_vars--.html @@ -0,0 +1,123 @@ + + + + + + + TestParam Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam Fields

+

+

+ The following tables list the members exposed by the + TestParam + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000A9.html b/API_NetFramework/VSdoc/topic_00000000000000A9.html new file mode 100644 index 00000000..3fe8f59e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000A9.html @@ -0,0 +1,392 @@ + + + + + + + TestParam.param1 Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam.param1 Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property param1() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string param1 {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ param1 { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get param1() : String
public function set param1(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AA.html b/API_NetFramework/VSdoc/topic_00000000000000AA.html new file mode 100644 index 00000000..e5eac924 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AA.html @@ -0,0 +1,392 @@ + + + + + + + TestParam.param2 Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

TestParam.param2 Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property param2() As String
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public string param2 {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property String^ param2 { 
String^ get( ); 
void set( 
String^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get param2() : String
public function set param2(value : String);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AB.html b/API_NetFramework/VSdoc/topic_00000000000000AB.html new file mode 100644 index 00000000..f14b3ddd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AB.html @@ -0,0 +1,643 @@ + + + + + + + DocumentController Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class DocumentController 
Inherits ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class DocumentController : ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class DocumentController : public ApiController^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class DocumentController 
extends ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + pageCollection + + + + + +
+ + + Top + + +
+
+ + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GenDoc(string, string, string, string, string, string, string, string, string) + + + + + +
+Public method + + + + + GetDocument(string) + + + + + +
+Public method + + + + + GetDocumentJSONBody(TestParam) + + + + + +
+Public method + + + + + GetDocumentPDF(string) + + + + + +
+Public method + + + + + SendToOnBase(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AB_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AB_attached_props--.html new file mode 100644 index 00000000..9f6eca89 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AB_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Attached Properties

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AB_events--.html b/API_NetFramework/VSdoc/topic_00000000000000AB_events--.html new file mode 100644 index 00000000..f65820a5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AB_events--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Events

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AB_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000AB_methods--.html new file mode 100644 index 00000000..389826ad --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AB_methods--.html @@ -0,0 +1,309 @@ + + + + + + + DocumentController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Methods

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GenDoc(string, string, string, string, string, string, string, string, string) + + + + + +
+Public method + + + + + GetDocument(string) + + + + + +
+Public method + + + + + GetDocumentJSONBody(TestParam) + + + + + +
+Public method + + + + + GetDocumentPDF(string) + + + + + +
+Public method + + + + + SendToOnBase(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AB_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AB_props--.html new file mode 100644 index 00000000..97e09185 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AB_props--.html @@ -0,0 +1,174 @@ + + + + + + + DocumentController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Properties

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ +
+
+ Properties +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public property + + + + + pageCollection + + + + + +
+ + + Top + + +
+
+ + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AB_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000AB_vars--.html new file mode 100644 index 00000000..d3494e98 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AB_vars--.html @@ -0,0 +1,123 @@ + + + + + + + DocumentController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController Fields

+

+

+ The following tables list the members exposed by the + DocumentController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AC.html b/API_NetFramework/VSdoc/topic_00000000000000AC.html new file mode 100644 index 00000000..3bf7be8c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AC.html @@ -0,0 +1,408 @@ + + + + + + + DocumentController.GetDocument Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController.GetDocument Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/GetDocument")> _ 
Public Function GetDocument( _ 
ByVal dokid As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/GetDocument")] 
public IHttpActionResult GetDocument( 
string dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/GetDocument")] 
public:  
IHttpActionResult^ GetDocument( 
String^ dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/GetDocument") 
function GetDocument( 
dokid : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + dokid + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AD.html b/API_NetFramework/VSdoc/topic_00000000000000AD.html new file mode 100644 index 00000000..5a9b9b4c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AD.html @@ -0,0 +1,392 @@ + + + + + + + DocumentController.pageCollection Property + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController.pageCollection Property

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Property pageCollection() As Object
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public object pageCollection {get; set;}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
property object^ pageCollection { 
object^ get( ); 
void set( 
object^ value 
); 
}
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function get pageCollection() : object
public function set pageCollection(value : object);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Property Value

+ object + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AD_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AD_attached_props--.html new file mode 100644 index 00000000..531dc55c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AD_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Attached Properties

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AD_events--.html b/API_NetFramework/VSdoc/topic_00000000000000AD_events--.html new file mode 100644 index 00000000..3803f1bd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AD_events--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Events

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AD_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000AD_methods--.html new file mode 100644 index 00000000..c5ec35cf --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AD_methods--.html @@ -0,0 +1,193 @@ + + + + + + + HomeController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Methods

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Index() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AD_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AD_props--.html new file mode 100644 index 00000000..e5f1e892 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AD_props--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Properties

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AD_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000AD_vars--.html new file mode 100644 index 00000000..6d7471fa --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AD_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Fields

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AE.html b/API_NetFramework/VSdoc/topic_00000000000000AE.html new file mode 100644 index 00000000..03b5a879 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AE.html @@ -0,0 +1,408 @@ + + + + + + + DocumentController.GetDocumentJSONBody Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController.GetDocumentJSONBody Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpPost()> _ 
<Route("API/GetDocumentJSONBody")> _ 
Public Function GetDocumentJSONBody( _ 
<FromBody()> _ 
ByVal tp As TestParam
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpPost()] 
[Route("API/GetDocumentJSONBody")] 
public IHttpActionResult GetDocumentJSONBody( 
[FromBody()] 
TestParam tp 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpPost()] 
[Route("API/GetDocumentJSONBody")] 
public:  
IHttpActionResult^ GetDocumentJSONBody( 
[FromBody()] 
TestParam^ tp 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpPost() 
Route("API/GetDocumentJSONBody") 
function GetDocumentJSONBody( 
FromBody() 
tp : TestParam 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + tp + +
+
+ TestParam +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AE_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AE_attached_props--.html new file mode 100644 index 00000000..50e14cc1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AE_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Attached Properties

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AE_events--.html b/API_NetFramework/VSdoc/topic_00000000000000AE_events--.html new file mode 100644 index 00000000..1fd2a60f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AE_events--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Events

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AE_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000AE_methods--.html new file mode 100644 index 00000000..1150810e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AE_methods--.html @@ -0,0 +1,193 @@ + + + + + + + HomeController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Methods

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Index() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AE_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AE_props--.html new file mode 100644 index 00000000..8a22c4d9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AE_props--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Properties

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AE_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000AE_vars--.html new file mode 100644 index 00000000..906e46a7 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AE_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Fields

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AF.html b/API_NetFramework/VSdoc/topic_00000000000000AF.html new file mode 100644 index 00000000..2d9e05e4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AF.html @@ -0,0 +1,408 @@ + + + + + + + DocumentController.GetDocumentPDF Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController.GetDocumentPDF Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<Route("API/GetDocumentPDF")> _ 
<HttpGet()> _ 
Public Function GetDocumentPDF( _ 
ByVal dokid As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Route("API/GetDocumentPDF")] 
[HttpGet()] 
public IHttpActionResult GetDocumentPDF( 
string dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[Route("API/GetDocumentPDF")] 
[HttpGet()] 
public:  
IHttpActionResult^ GetDocumentPDF( 
String^ dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
Route("API/GetDocumentPDF") 
HttpGet() 
function GetDocumentPDF( 
dokid : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + dokid + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AF_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AF_attached_props--.html new file mode 100644 index 00000000..ff6d4830 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AF_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Attached Properties

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AF_events--.html b/API_NetFramework/VSdoc/topic_00000000000000AF_events--.html new file mode 100644 index 00000000..06457503 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AF_events--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Events

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AF_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000AF_methods--.html new file mode 100644 index 00000000..8cbc437d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AF_methods--.html @@ -0,0 +1,251 @@ + + + + + + + OnBaseController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Methods

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ArchivDocBase64(string) + + + + + +
+Public method + + + + + ArchivDocFromIRIS(string) + + + + + +
+Public method + + + + + ArchivDoc_From_Database(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AF_props--.html b/API_NetFramework/VSdoc/topic_00000000000000AF_props--.html new file mode 100644 index 00000000..0e1b166d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AF_props--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Properties

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000AF_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000AF_vars--.html new file mode 100644 index 00000000..26301b21 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000AF_vars--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Fields

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B0.html b/API_NetFramework/VSdoc/topic_00000000000000B0.html new file mode 100644 index 00000000..88ee4313 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B0.html @@ -0,0 +1,408 @@ + + + + + + + DocumentController.SendToOnBase Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController.SendToOnBase Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/SendToOnBase")> _ 
Public Function SendToOnBase( _ 
ByVal dokid As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/SendToOnBase")] 
public IHttpActionResult SendToOnBase( 
string dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/SendToOnBase")] 
public:  
IHttpActionResult^ SendToOnBase( 
String^ dokid 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/SendToOnBase") 
function SendToOnBase( 
dokid : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + dokid + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B0_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B0_attached_props--.html new file mode 100644 index 00000000..65937f41 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B0_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Attached Properties

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B0_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B0_events--.html new file mode 100644 index 00000000..9de41f23 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B0_events--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Events

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B0_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B0_methods--.html new file mode 100644 index 00000000..4a8fa1b6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B0_methods--.html @@ -0,0 +1,251 @@ + + + + + + + OnBaseController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Methods

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ArchivDocBase64(string) + + + + + +
+Public method + + + + + ArchivDocFromIRIS(string) + + + + + +
+Public method + + + + + ArchivDoc_From_Database(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B0_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B0_props--.html new file mode 100644 index 00000000..6faf0082 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B0_props--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Properties

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B0_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B0_vars--.html new file mode 100644 index 00000000..4ec7d628 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B0_vars--.html @@ -0,0 +1,123 @@ + + + + + + + OnBaseController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

OnBaseController Fields

+

+

+ The following tables list the members exposed by the + OnBaseController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B1.html b/API_NetFramework/VSdoc/topic_00000000000000B1.html new file mode 100644 index 00000000..80039381 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B1.html @@ -0,0 +1,512 @@ + + + + + + + DocumentController.GenDoc Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

DocumentController.GenDoc Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpPost()> _ 
<Route("API/GenDoc")> _ 
Public Function GenDoc( _ 
ByVal Partnernr As String, _ 
ByVal Dokumenttypnr As String, _ 
Optional ByVal TGCreator As String = "", _ 
Optional ByVal TGResp As String = "", _ 
Optional ByVal TGUL As String = "", _ 
Optional ByVal TGUR As String = "", _ 
Optional ByVal Faksimile As String = "", _ 
Optional ByVal FoU As String = "", _ 
Optional ByVal PrintLogo As String = "" _ 
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpPost()] 
[Route("API/GenDoc")] 
public IHttpActionResult GenDoc( 
string Partnernr
string Dokumenttypnr
string TGCreator = "", 
string TGResp = "", 
string TGUL = "", 
string TGUR = "", 
string Faksimile = "", 
string FoU = "", 
string PrintLogo = "" 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpPost()] 
[Route("API/GenDoc")] 
public:  
IHttpActionResult^ GenDoc( 
String^ Partnernr
String^ Dokumenttypnr
String^ TGCreator
String^ TGResp
String^ TGUL
String^ TGUR
String^ Faksimile
String^ FoU
String^ PrintLogo 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpPost() 
Route("API/GenDoc") 
function GenDoc( 
Partnernr : String
Dokumenttypnr : String
TGCreator : String
TGResp : String
TGUL : String
TGUR : String
Faksimile : String
FoU : String
PrintLogo : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + Partnernr + +
+
+ string +
+
+

+ +

+
+
+ + Dokumenttypnr + +
+
+ string +
+
+

+ +

+
+
+ + TGCreator + +
+
+ string +
+
+

+ +

+
+
+ + TGResp + +
+
+ string +
+
+

+ +

+
+
+ + TGUL + +
+
+ string +
+
+

+ +

+
+
+ + TGUR + +
+
+ string +
+
+

+ +

+
+
+ + Faksimile + +
+
+ string +
+
+

+ +

+
+
+ + FoU + +
+
+ string +
+
+

+ +

+
+
+ + PrintLogo + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B2.html b/API_NetFramework/VSdoc/topic_00000000000000B2.html new file mode 100644 index 00000000..9193f71b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B2.html @@ -0,0 +1,476 @@ + + + + + + + HomeController Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class HomeController 
Inherits Controller
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HomeController : Controller
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class HomeController : public Controller^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class HomeController 
extends Controller
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Index() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B2_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B2_attached_props--.html new file mode 100644 index 00000000..4c3c6b54 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B2_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Attached Properties

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B2_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B2_events--.html new file mode 100644 index 00000000..6b7f1a20 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B2_events--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Events

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B2_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B2_methods--.html new file mode 100644 index 00000000..35798aa2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B2_methods--.html @@ -0,0 +1,193 @@ + + + + + + + HomeController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Methods

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + Index() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B2_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B2_props--.html new file mode 100644 index 00000000..6094c33c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B2_props--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Properties

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B2_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B2_vars--.html new file mode 100644 index 00000000..c3107c49 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B2_vars--.html @@ -0,0 +1,123 @@ + + + + + + + HomeController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController Fields

+

+

+ The following tables list the members exposed by the + HomeController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B3.html b/API_NetFramework/VSdoc/topic_00000000000000B3.html new file mode 100644 index 00000000..1a107d93 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B3.html @@ -0,0 +1,392 @@ + + + + + + + HomeController.Index Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

HomeController.Index Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function Index() As ActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ActionResult Index()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
ActionResult^ Index()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function Index() : ActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ ActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B3_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B3_attached_props--.html new file mode 100644 index 00000000..74402e39 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B3_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Attached Properties

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B3_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B3_events--.html new file mode 100644 index 00000000..55e682e5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B3_events--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Events

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B3_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B3_methods--.html new file mode 100644 index 00000000..d2b532b4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B3_methods--.html @@ -0,0 +1,222 @@ + + + + + + + IFileService Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Methods

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetImageAsByteArray() + + + + + +
+Public method + + + + + GetImageAsStream() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B3_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B3_props--.html new file mode 100644 index 00000000..250602ef --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B3_props--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Properties

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B3_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B3_vars--.html new file mode 100644 index 00000000..2575569e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B3_vars--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Fields

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B4.html b/API_NetFramework/VSdoc/topic_00000000000000B4.html new file mode 100644 index 00000000..6483c5c6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B4.html @@ -0,0 +1,504 @@ + + + + + + + IFileService Interface + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Interface

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Interface IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public interface IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public interface class IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public interface IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetImageAsByteArray() + + + + + +
+Public method + + + + + GetImageAsStream() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B4_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B4_attached_props--.html new file mode 100644 index 00000000..6f4c5007 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B4_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Attached Properties

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B4_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B4_events--.html new file mode 100644 index 00000000..a1511e19 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B4_events--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Events

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B4_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B4_methods--.html new file mode 100644 index 00000000..b4da6961 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B4_methods--.html @@ -0,0 +1,222 @@ + + + + + + + IFileService Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Methods

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetImageAsByteArray() + + + + + +
+Public method + + + + + GetImageAsStream() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B4_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B4_props--.html new file mode 100644 index 00000000..bcca938d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B4_props--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Properties

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B4_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B4_vars--.html new file mode 100644 index 00000000..1d9a67d3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B4_vars--.html @@ -0,0 +1,123 @@ + + + + + + + IFileService Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService Fields

+

+

+ The following tables list the members exposed by the + IFileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B5.html b/API_NetFramework/VSdoc/topic_00000000000000B5.html new file mode 100644 index 00000000..4de59353 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B5.html @@ -0,0 +1,392 @@ + + + + + + + IFileService.GetImageAsStream Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService.GetImageAsStream Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Function GetImageAsStream() As Stream
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Stream GetImageAsStream()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
 
Stream^ GetImageAsStream()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
function GetImageAsStream() : Stream;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ Stream + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B6.html b/API_NetFramework/VSdoc/topic_00000000000000B6.html new file mode 100644 index 00000000..5e6a74c6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B6.html @@ -0,0 +1,392 @@ + + + + + + + IFileService.GetImageAsByteArray Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

IFileService.GetImageAsByteArray Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Function GetImageAsByteArray() As Byte()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
byte[] GetImageAsByteArray()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
 
array< Byte >^ GetImageAsByteArray()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
function GetImageAsByteArray() : byte[];
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ byte[] + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B6_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B6_attached_props--.html new file mode 100644 index 00000000..44442614 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B6_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + Image Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Attached Properties

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B6_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B6_events--.html new file mode 100644 index 00000000..91781c9d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B6_events--.html @@ -0,0 +1,123 @@ + + + + + + + Image Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Events

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B6_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B6_methods--.html new file mode 100644 index 00000000..6b54af4d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B6_methods--.html @@ -0,0 +1,125 @@ + + + + + + + Image Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Methods

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B6_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B6_props--.html new file mode 100644 index 00000000..787c1810 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B6_props--.html @@ -0,0 +1,123 @@ + + + + + + + Image Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Properties

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B6_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B6_vars--.html new file mode 100644 index 00000000..71b9f404 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B6_vars--.html @@ -0,0 +1,169 @@ + + + + + + + Image Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Fields

+

+

+ The following tables list the members exposed by the + Image + type. +

+ +
+
+ Fields +
 
+
+ +
+ + + + + + + + + + + + + +
+ Name + + Description +
+ Public field + + + + + Base64Image + + + + +
+ + + Top + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B7.html b/API_NetFramework/VSdoc/topic_00000000000000B7.html new file mode 100644 index 00000000..74a98e62 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B7.html @@ -0,0 +1,454 @@ + + + + + + + Image Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class Image
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public static class Image
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class Image 
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class Image
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Fields +
 
+
+ +
+ + + + + + + + + + + + + +
+ Name + + Description +
+ Public field + + + + + Base64Image + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B7_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B7_attached_props--.html new file mode 100644 index 00000000..714e28d6 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B7_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + Image Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Attached Properties

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B7_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B7_events--.html new file mode 100644 index 00000000..3321a1db --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B7_events--.html @@ -0,0 +1,123 @@ + + + + + + + Image Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Events

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B7_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B7_methods--.html new file mode 100644 index 00000000..c1f8e19d --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B7_methods--.html @@ -0,0 +1,125 @@ + + + + + + + Image Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Methods

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B7_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B7_props--.html new file mode 100644 index 00000000..860f68ba --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B7_props--.html @@ -0,0 +1,123 @@ + + + + + + + Image Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Properties

+

+

+ The following tables list the members exposed by the + Image + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B7_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B7_vars--.html new file mode 100644 index 00000000..ab9fafe0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B7_vars--.html @@ -0,0 +1,169 @@ + + + + + + + Image Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

Image Fields

+

+

+ The following tables list the members exposed by the + Image + type. +

+ +
+
+ Fields +
 
+
+ +
+ + + + + + + + + + + + + +
+ Name + + Description +
+ Public field + + + + + Base64Image + + + + +
+ + + Top + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B8.html b/API_NetFramework/VSdoc/topic_00000000000000B8.html new file mode 100644 index 00000000..9b02116f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B8.html @@ -0,0 +1,391 @@ + + + + + + + Base64Image Field + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

Base64Image Field

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Const Base64Image As String = "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"
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public const string Base64Image = @"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"
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
const String^ Base64Image = "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";
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public const Base64Image : String = "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"
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Field Value

+ string + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B8_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B8_attached_props--.html new file mode 100644 index 00000000..8b3f6686 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B8_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Attached Properties

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B8_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B8_events--.html new file mode 100644 index 00000000..0b06558e --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B8_events--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Events

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B8_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B8_methods--.html new file mode 100644 index 00000000..23c9c7fe --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B8_methods--.html @@ -0,0 +1,222 @@ + + + + + + + UnterschriftController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Methods

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetUnterschrift(string) + + + + + +
+Public method + + + + + GetUnterschriftAsBase64(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B8_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B8_props--.html new file mode 100644 index 00000000..a63161e5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B8_props--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Properties

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B8_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B8_vars--.html new file mode 100644 index 00000000..906ccc2a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B8_vars--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Fields

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B9.html b/API_NetFramework/VSdoc/topic_00000000000000B9.html new file mode 100644 index 00000000..a8ac54e3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B9.html @@ -0,0 +1,505 @@ + + + + + + + UnterschriftController Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class UnterschriftController 
Inherits ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class UnterschriftController : ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class UnterschriftController : public ApiController^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class UnterschriftController 
extends ApiController
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetUnterschrift(string) + + + + + +
+Public method + + + + + GetUnterschriftAsBase64(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B9_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B9_attached_props--.html new file mode 100644 index 00000000..a5e726d1 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B9_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Attached Properties

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B9_events--.html b/API_NetFramework/VSdoc/topic_00000000000000B9_events--.html new file mode 100644 index 00000000..282edf90 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B9_events--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Events

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B9_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000B9_methods--.html new file mode 100644 index 00000000..8bd4205c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B9_methods--.html @@ -0,0 +1,222 @@ + + + + + + + UnterschriftController Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Methods

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetUnterschrift(string) + + + + + +
+Public method + + + + + GetUnterschriftAsBase64(string) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B9_props--.html b/API_NetFramework/VSdoc/topic_00000000000000B9_props--.html new file mode 100644 index 00000000..44f7f6d2 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B9_props--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Properties

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000B9_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000B9_vars--.html new file mode 100644 index 00000000..4453dcac --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000B9_vars--.html @@ -0,0 +1,123 @@ + + + + + + + UnterschriftController Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController Fields

+

+

+ The following tables list the members exposed by the + UnterschriftController + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BA.html b/API_NetFramework/VSdoc/topic_00000000000000BA.html new file mode 100644 index 00000000..53311098 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BA.html @@ -0,0 +1,408 @@ + + + + + + + UnterschriftController.GetUnterschriftAsBase64 Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController.GetUnterschriftAsBase64 Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/GetUnterschriftAsBase64")> _ 
Public Function GetUnterschriftAsBase64( _ 
ByVal TGNummer As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/GetUnterschriftAsBase64")] 
public IHttpActionResult GetUnterschriftAsBase64( 
string TGNummer 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/GetUnterschriftAsBase64")] 
public:  
IHttpActionResult^ GetUnterschriftAsBase64( 
String^ TGNummer 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/GetUnterschriftAsBase64") 
function GetUnterschriftAsBase64( 
TGNummer : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + TGNummer + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BB.html b/API_NetFramework/VSdoc/topic_00000000000000BB.html new file mode 100644 index 00000000..044182ac --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BB.html @@ -0,0 +1,408 @@ + + + + + + + UnterschriftController.GetUnterschrift Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

UnterschriftController.GetUnterschrift Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
<HttpGet()> _ 
<Route("API/GetUnterschrift")> _ 
Public Function GetUnterschrift( _ 
ByVal TGNummer As String
) As IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/GetUnterschrift")] 
public IHttpActionResult GetUnterschrift( 
string TGNummer 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
[HttpGet()] 
[Route("API/GetUnterschrift")] 
public:  
IHttpActionResult^ GetUnterschrift( 
String^ TGNummer 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public  
HttpGet() 
Route("API/GetUnterschrift") 
function GetUnterschrift( 
TGNummer : String 
) : IHttpActionResult;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + TGNummer + +
+
+ string +
+
+

+ +

+ +

+ +

+ Return Value

+ IHttpActionResult + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BB_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BB_attached_props--.html new file mode 100644 index 00000000..0caee4e0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BB_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Attached Properties

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BB_events--.html b/API_NetFramework/VSdoc/topic_00000000000000BB_events--.html new file mode 100644 index 00000000..1b9599f5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BB_events--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Events

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BB_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000BB_methods--.html new file mode 100644 index 00000000..d750d6cc --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BB_methods--.html @@ -0,0 +1,193 @@ + + + + + + + FileResult Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Methods

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ExecuteAsync(CancellationToken) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BB_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BB_props--.html new file mode 100644 index 00000000..3df35576 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BB_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Properties

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BB_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000BB_vars--.html new file mode 100644 index 00000000..5159a1f0 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BB_vars--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Fields

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BC.html b/API_NetFramework/VSdoc/topic_00000000000000BC.html new file mode 100644 index 00000000..be2b55d9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BC.html @@ -0,0 +1,527 @@ + + + + + + + FileResult Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class FileResult 
Implements IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class FileResult : IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class FileResult  : public IHttpActionResult^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class FileResult 
implements IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + FileResult(string, string) + + + + + +
+ + + Top + + +
+
+ + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ExecuteAsync(CancellationToken) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BC_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BC_attached_props--.html new file mode 100644 index 00000000..96aefe9a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BC_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Attached Properties

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BC_events--.html b/API_NetFramework/VSdoc/topic_00000000000000BC_events--.html new file mode 100644 index 00000000..905989dc --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BC_events--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Events

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BC_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000BC_methods--.html new file mode 100644 index 00000000..dffd2644 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BC_methods--.html @@ -0,0 +1,193 @@ + + + + + + + FileResult Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Methods

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ExecuteAsync(CancellationToken) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BC_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BC_props--.html new file mode 100644 index 00000000..ded3a2c5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BC_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Properties

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BC_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000BC_vars--.html new file mode 100644 index 00000000..356b32f9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BC_vars--.html @@ -0,0 +1,123 @@ + + + + + + + FileResult Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Fields

+

+

+ The following tables list the members exposed by the + FileResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BD.html b/API_NetFramework/VSdoc/topic_00000000000000BD.html new file mode 100644 index 00000000..84bf2d3f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BD.html @@ -0,0 +1,417 @@ + + + + + + + FileResult Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal filePath As String, _ 
Optional ByVal contentType As String = null _ 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public FileResult( 
string filePath
string contentType = null 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
FileResult( 
String^ filePath
String^ contentType 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function FileResult( 
filePath : String
contentType : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + filePath + +
+
+ string +
+
+

+ +

+
+
+ + contentType + +
+
+ string +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BE.html b/API_NetFramework/VSdoc/topic_00000000000000BE.html new file mode 100644 index 00000000..70e4217a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BE.html @@ -0,0 +1,408 @@ + + + + + + + FileResult.ExecuteAsync Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileResult.ExecuteAsync Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function ExecuteAsync( _ 
ByVal cancellationToken As CancellationToken
) As Task(Of HttpResponseMessage)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Task<HttpResponseMessage> ExecuteAsync( 
CancellationToken cancellationToken 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
Task<HttpResponseMessage^>^ ExecuteAsync( 
CancellationToken cancellationToken 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + cancellationToken + +
+
+ CancellationToken +
+
+

+ +

+ +

+ +

+ Return Value

+ Task<HttpResponseMessage> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BE_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BE_attached_props--.html new file mode 100644 index 00000000..f1293acd --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BE_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Attached Properties

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BE_events--.html b/API_NetFramework/VSdoc/topic_00000000000000BE_events--.html new file mode 100644 index 00000000..29e053ed --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BE_events--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Events

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BE_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000BE_methods--.html new file mode 100644 index 00000000..1908a9c3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BE_methods--.html @@ -0,0 +1,222 @@ + + + + + + + FileService Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Methods

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetImageAsByteArray() + + + + + +
+Public method + + + + + GetImageAsStream() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BE_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BE_props--.html new file mode 100644 index 00000000..ea91280a --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BE_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Properties

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BE_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000BE_vars--.html new file mode 100644 index 00000000..e57bcac5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BE_vars--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Fields

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BF.html b/API_NetFramework/VSdoc/topic_00000000000000BF.html new file mode 100644 index 00000000..f5786d49 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BF.html @@ -0,0 +1,505 @@ + + + + + + + FileService Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class FileService 
Implements IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class FileService : IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class FileService  : public IFileService^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class FileService 
implements IFileService
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetImageAsByteArray() + + + + + +
+Public method + + + + + GetImageAsStream() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BF_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BF_attached_props--.html new file mode 100644 index 00000000..c7167a8c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BF_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Attached Properties

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BF_events--.html b/API_NetFramework/VSdoc/topic_00000000000000BF_events--.html new file mode 100644 index 00000000..6a800943 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BF_events--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Events

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BF_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000BF_methods--.html new file mode 100644 index 00000000..430b07c3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BF_methods--.html @@ -0,0 +1,222 @@ + + + + + + + FileService Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Methods

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + GetImageAsByteArray() + + + + + +
+Public method + + + + + GetImageAsStream() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BF_props--.html b/API_NetFramework/VSdoc/topic_00000000000000BF_props--.html new file mode 100644 index 00000000..a60c72be --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BF_props--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Properties

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000BF_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000BF_vars--.html new file mode 100644 index 00000000..ba8362f3 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000BF_vars--.html @@ -0,0 +1,123 @@ + + + + + + + FileService Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService Fields

+

+

+ The following tables list the members exposed by the + FileService + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C0.html b/API_NetFramework/VSdoc/topic_00000000000000C0.html new file mode 100644 index 00000000..8fd8dc77 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C0.html @@ -0,0 +1,392 @@ + + + + + + + FileService.GetImageAsStream Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService.GetImageAsStream Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetImageAsStream() As Stream
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Stream GetImageAsStream()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
Stream^ GetImageAsStream()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetImageAsStream() : Stream;
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ Stream + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C1.html b/API_NetFramework/VSdoc/topic_00000000000000C1.html new file mode 100644 index 00000000..10ceb1ec --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C1.html @@ -0,0 +1,392 @@ + + + + + + + FileService.GetImageAsByteArray Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

FileService.GetImageAsByteArray Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function GetImageAsByteArray() As Byte()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public byte[] GetImageAsByteArray()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
array< Byte >^ GetImageAsByteArray()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function GetImageAsByteArray() : byte[];
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + +

+ Return Value

+ byte[] + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C1_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C1_attached_props--.html new file mode 100644 index 00000000..cf42c6ba --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C1_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Attached Properties

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C1_events--.html b/API_NetFramework/VSdoc/topic_00000000000000C1_events--.html new file mode 100644 index 00000000..1a6b68ec --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C1_events--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Events

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C1_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000C1_methods--.html new file mode 100644 index 00000000..84a80259 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C1_methods--.html @@ -0,0 +1,193 @@ + + + + + + + unterschriftResult Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Methods

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ExecuteAsync(CancellationToken) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C1_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C1_props--.html new file mode 100644 index 00000000..00fe5f84 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C1_props--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Properties

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C1_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000C1_vars--.html new file mode 100644 index 00000000..0ea66dba --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C1_vars--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Fields

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C2.html b/API_NetFramework/VSdoc/topic_00000000000000C2.html new file mode 100644 index 00000000..b4fb370c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C2.html @@ -0,0 +1,527 @@ + + + + + + + unterschriftResult Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class unterschriftResult 
Implements IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class unterschriftResult : IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class unterschriftResult  : public IHttpActionResult^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class unterschriftResult 
implements IHttpActionResult
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + +
+
+ Constructors +
 
+
+ +
+ + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Public constructor + + + + + unterschriftResult(MemoryStream, HttpRequestMessage, string) + + + + + +
+ + + Top + + +
+
+ + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ExecuteAsync(CancellationToken) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C2_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C2_attached_props--.html new file mode 100644 index 00000000..c36bfd2f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C2_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Attached Properties

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C2_events--.html b/API_NetFramework/VSdoc/topic_00000000000000C2_events--.html new file mode 100644 index 00000000..832a6d85 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C2_events--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Events

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C2_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000C2_methods--.html new file mode 100644 index 00000000..eafb6265 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C2_methods--.html @@ -0,0 +1,193 @@ + + + + + + + unterschriftResult Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Methods

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+Public method + + + + + ExecuteAsync(CancellationToken) + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C2_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C2_props--.html new file mode 100644 index 00000000..b03a74a4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C2_props--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Properties

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C2_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000C2_vars--.html new file mode 100644 index 00000000..13741835 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C2_vars--.html @@ -0,0 +1,123 @@ + + + + + + + unterschriftResult Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Fields

+

+

+ The following tables list the members exposed by the + unterschriftResult + type. +

+ + + + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C3.html b/API_NetFramework/VSdoc/topic_00000000000000C3.html new file mode 100644 index 00000000..541181db --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C3.html @@ -0,0 +1,430 @@ + + + + + + + unterschriftResult Constructor + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult Constructor

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Sub New( _ 
ByVal data As MemoryStream, _ 
ByVal request As HttpRequestMessage, _ 
ByVal filename As String
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public unterschriftResult( 
MemoryStream data
HttpRequestMessage request
string filename 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
unterschriftResult( 
MemoryStream^ data
HttpRequestMessage^ request
String^ filename 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public function unterschriftResult( 
data : MemoryStream
request : HttpRequestMessage
filename : String 
);
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + data + +
+
+ MemoryStream +
+
+

+ +

+
+
+ + request + +
+
+ HttpRequestMessage +
+
+

+ +

+
+
+ + filename + +
+
+ string +
+
+

+ +

+ +

+ + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C4.html b/API_NetFramework/VSdoc/topic_00000000000000C4.html new file mode 100644 index 00000000..31f08654 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C4.html @@ -0,0 +1,408 @@ + + + + + + + unterschriftResult.ExecuteAsync Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

unterschriftResult.ExecuteAsync Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Function ExecuteAsync( _ 
ByVal cancellationToken As CancellationToken
) As Task(Of HttpResponseMessage)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public Task<HttpResponseMessage> ExecuteAsync( 
CancellationToken cancellationToken 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public:  
Task<HttpResponseMessage^>^ ExecuteAsync( 
CancellationToken cancellationToken 
)
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
JScript does not support generic types and methods.
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + +

+ Parameters

+
+ + cancellationToken + +
+
+ CancellationToken +
+
+

+ +

+ +

+ +

+ Return Value

+ Task<HttpResponseMessage> + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C4_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C4_attached_props--.html new file mode 100644 index 00000000..6d213e28 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C4_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Attached Properties

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C4_events--.html b/API_NetFramework/VSdoc/topic_00000000000000C4_events--.html new file mode 100644 index 00000000..461f0760 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C4_events--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Events

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C4_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000C4_methods--.html new file mode 100644 index 00000000..66172662 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C4_methods--.html @@ -0,0 +1,196 @@ + + + + + + + WebApiApplication Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Methods

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Protected method + + + + + + + + Application_Start() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C4_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C4_props--.html new file mode 100644 index 00000000..3ce097b4 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C4_props--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Properties

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C4_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000C4_vars--.html new file mode 100644 index 00000000..aef16fbe --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C4_vars--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Fields

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C5.html b/API_NetFramework/VSdoc/topic_00000000000000C5.html new file mode 100644 index 00000000..d72dad64 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C5.html @@ -0,0 +1,479 @@ + + + + + + + WebApiApplication Class + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Class

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Public Class WebApiApplication 
Inherits HttpApplication
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class WebApiApplication : HttpApplication
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public ref class WebApiApplication : public HttpApplication^
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
public class WebApiApplication 
extends HttpApplication
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Protected method + + + + + + + + Application_Start() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ + +
+
+ See Also +
 
+
+ +
+ +
+
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C5_attached_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C5_attached_props--.html new file mode 100644 index 00000000..56bc39e5 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C5_attached_props--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Attached Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Attached Properties

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C5_events--.html b/API_NetFramework/VSdoc/topic_00000000000000C5_events--.html new file mode 100644 index 00000000..895b5e6b --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C5_events--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Events + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Events

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C5_methods--.html b/API_NetFramework/VSdoc/topic_00000000000000C5_methods--.html new file mode 100644 index 00000000..3bae16f9 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C5_methods--.html @@ -0,0 +1,196 @@ + + + + + + + WebApiApplication Methods + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Methods

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + + + +
+
+ Methods +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Protected method + + + + + + + + Application_Start() + + + + + +
+ + + Top + + +
+
+ + + + + + + + + + + + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C5_props--.html b/API_NetFramework/VSdoc/topic_00000000000000C5_props--.html new file mode 100644 index 00000000..a4df0e81 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C5_props--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Properties + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Properties

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C5_vars--.html b/API_NetFramework/VSdoc/topic_00000000000000C5_vars--.html new file mode 100644 index 00000000..08af636f --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C5_vars--.html @@ -0,0 +1,123 @@ + + + + + + + WebApiApplication Fields + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication Fields

+

+

+ The following tables list the members exposed by the + WebApiApplication + type. +

+ + + +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C6.html b/API_NetFramework/VSdoc/topic_00000000000000C6.html new file mode 100644 index 00000000..5e4b3a6c --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C6.html @@ -0,0 +1,388 @@ + + + + + + + WebApiApplication.Application_Start Method + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

WebApiApplication.Application_Start Method

+ + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
Protected Sub Application_Start()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
protected void Application_Start()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ + +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
protected:  
void Application_Start()
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+
+
+
+
+ VB +
+
+ C# +
+
+ F# +
+
+ C++ +
+
+ JScript +
+
+
+
+
+
+ +
+
+ Copy +
+ +
+
protected function Application_Start();
+
+
+
This language is not supported or no code example is available.
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Applies to +
 
+
+ +
+

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
+ + + + + + + + + + + + +
+
+ +
+
+ See Also +
 
+
+ + +
+
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + + diff --git a/API_NetFramework/VSdoc/topic_00000000000000C7.html b/API_NetFramework/VSdoc/topic_00000000000000C7.html new file mode 100644 index 00000000..b6d9ce21 --- /dev/null +++ b/API_NetFramework/VSdoc/topic_00000000000000C7.html @@ -0,0 +1,288 @@ + + + + + + + API_NetFramework Reference + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+
+
+
+ +
+

API_NetFramework Reference

+ + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Namespaces +
 
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Name + + Description +
+ Namespace + + + API_NetFramework + + + + +
+ Namespace + + + API_NetFramework.Areas.HelpPage + + + + +
+ Namespace + + + API_NetFramework.Areas.HelpPage.Controllers + + + + +
+ Namespace + + + API_NetFramework.Areas.HelpPage.ModelDescriptions + + + + +
+ Namespace + + + API_NetFramework.Areas.HelpPage.Models + + + + +
+ Namespace + + + API_NetFramework.Controllers + + + + +
+ + + Top + + +
+
+ + +
+ +
+
+

In this article

+ Definition +
+
+ +
+ +
+ + diff --git a/API_NetFramework/VSdoc/vsdocman_overrides.css b/API_NetFramework/VSdoc/vsdocman_overrides.css new file mode 100644 index 00000000..f976d15b --- /dev/null +++ b/API_NetFramework/VSdoc/vsdocman_overrides.css @@ -0,0 +1,7 @@ +/* This is a custom CSS stylesheet that can override VSdocman built-in styling. + If you want to customize HTML-based output, create a copy of this file + (The name must be "vsdocman_overrides.css") in your External files folder + and add your styles there. + + VSdocman will automatically include that file in the documentation. +*/ diff --git a/API_NetFramework/Web.config b/API_NetFramework/Web.config index e25d2f7b..9296ba79 100644 --- a/API_NetFramework/Web.config +++ b/API_NetFramework/Web.config @@ -9,6 +9,7 @@ + diff --git a/API_NetFramework/bin/DOCGEN.dll b/API_NetFramework/bin/DOCGEN.dll index c7b4f4f7..3cb8e3aa 100644 Binary files a/API_NetFramework/bin/DOCGEN.dll and b/API_NetFramework/bin/DOCGEN.dll differ diff --git a/API_NetFramework/bin/DOCGEN.pdb b/API_NetFramework/bin/DOCGEN.pdb index df40b23e..0fcd75b1 100644 Binary files a/API_NetFramework/bin/DOCGEN.pdb and b/API_NetFramework/bin/DOCGEN.pdb differ diff --git a/API_NetFramework/bin/EDOKAAPI_NetFramework.dll b/API_NetFramework/bin/EDOKAAPI_NetFramework.dll deleted file mode 100644 index e27c3278..00000000 Binary files a/API_NetFramework/bin/EDOKAAPI_NetFramework.dll and /dev/null differ diff --git a/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb b/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb deleted file mode 100644 index 77d36146..00000000 Binary files a/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb and /dev/null differ diff --git a/API_NetFramework/bin/OnDoc_NetFramework.dll b/API_NetFramework/bin/OnDoc_NetFramework.dll new file mode 100644 index 00000000..38dd7c7c Binary files /dev/null and b/API_NetFramework/bin/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/bin/EDOKAAPI_NetFramework.dll.config b/API_NetFramework/bin/OnDoc_NetFramework.dll.config similarity index 98% rename from API_NetFramework/bin/EDOKAAPI_NetFramework.dll.config rename to API_NetFramework/bin/OnDoc_NetFramework.dll.config index e25d2f7b..9296ba79 100644 --- a/API_NetFramework/bin/EDOKAAPI_NetFramework.dll.config +++ b/API_NetFramework/bin/OnDoc_NetFramework.dll.config @@ -9,6 +9,7 @@ + diff --git a/API_NetFramework/bin/OnDoc_NetFramework.pdb b/API_NetFramework/bin/OnDoc_NetFramework.pdb new file mode 100644 index 00000000..9e3d836f Binary files /dev/null and b/API_NetFramework/bin/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/bin/Owin.dll b/API_NetFramework/bin/Owin.dll new file mode 100644 index 00000000..ba6e21ed Binary files /dev/null and b/API_NetFramework/bin/Owin.dll differ diff --git a/API_NetFramework/bin/System.Web.Cors.dll b/API_NetFramework/bin/System.Web.Cors.dll new file mode 100644 index 00000000..18b11399 Binary files /dev/null and b/API_NetFramework/bin/System.Web.Cors.dll differ diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache index a47e2237..9169857c 100644 Binary files a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache and b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache differ diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache b/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache index 450f430d..6afb6fe4 100644 --- a/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache +++ b/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ffc2e7a5302e859b56ea5b0fe0020c980612614ece61944eda615fd87be24da8 +437efbeb5f1e7a1da4f8ab7dbf8950250ef4d12fb7064335315d9f11fb8c35cb diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.FileListAbsolute.txt b/API_NetFramework/obj/Debug/API_NetFramework.csproj.FileListAbsolute.txt index 731067ad..d431a021 100644 --- a/API_NetFramework/obj/Debug/API_NetFramework.csproj.FileListAbsolute.txt +++ b/API_NetFramework/obj/Debug/API_NetFramework.csproj.FileListAbsolute.txt @@ -130,9 +130,6 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\libSkiaSharp.dylib E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\x86\libSkiaSharp.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\x64\libSkiaSharp.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\arm64\libSkiaSharp.dll -E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\EDOKAAPI_NetFramework.dll.config -E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\EDOKAAPI_NetFramework.dll -E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\EDOKAAPI_NetFramework.pdb E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csc.exe E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csc.exe.config E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\roslyn\csc.rsp @@ -249,8 +246,6 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\de\System.Web.Optimization E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetFramework.csproj.AssemblyReference.cache E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetFramework.csproj.CoreCompileInputs.cache E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetF.7D617477.Up2Date -E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\EDOKAAPI_NetFramework.dll -E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\EDOKAAPI_NetFramework.pdb E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.xml E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.dll @@ -259,3 +254,10 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.Bars.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.DataVisualization.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.Editor.dll E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.xml +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDoc_NetFramework.dll.config +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDoc_NetFramework.dll +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDoc_NetFramework.pdb +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.dll +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.pdb +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Owin.dll +E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Web.Cors.dll diff --git a/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index d61316bd..fbaba87f 100644 Binary files a/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll b/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll deleted file mode 100644 index e27c3278..00000000 Binary files a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll and /dev/null differ diff --git a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb b/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb deleted file mode 100644 index 77d36146..00000000 Binary files a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb and /dev/null differ diff --git a/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll b/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll new file mode 100644 index 00000000..38dd7c7c Binary files /dev/null and b/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb b/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb new file mode 100644 index 00000000..9e3d836f Binary files /dev/null and b/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/packages.config b/API_NetFramework/packages.config index 53c0d540..ac3f337b 100644 --- a/API_NetFramework/packages.config +++ b/API_NetFramework/packages.config @@ -3,6 +3,7 @@ + @@ -20,10 +21,16 @@ + + + + + + diff --git a/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache b/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache index 4fc70ac1..ce933810 100644 Binary files a/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache and b/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache differ diff --git a/Client/Diverses/valueselector.Designer.cs b/Client/Diverses/valueselector.Designer.cs index cf43cffe..fcbe22a0 100644 --- a/Client/Diverses/valueselector.Designer.cs +++ b/Client/Diverses/valueselector.Designer.cs @@ -28,6 +28,7 @@ /// private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(valueselector)); this.GridData = new Syncfusion.WinForms.DataGrid.SfDataGrid(); ((System.ComponentModel.ISupportInitialize)(this.GridData)).BeginInit(); this.SuspendLayout(); @@ -55,6 +56,7 @@ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(373, 450); this.Controls.Add(this.GridData); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "valueselector"; this.Style.MdiChild.IconHorizontalAlignment = System.Windows.Forms.HorizontalAlignment.Center; this.Style.MdiChild.IconVerticalAlignment = System.Windows.Forms.VisualStyles.VerticalAlignment.Center; diff --git a/Client/Diverses/valueselector.resx b/Client/Diverses/valueselector.resx index 1af7de15..a42a6b3a 100644 --- a/Client/Diverses/valueselector.resx +++ b/Client/Diverses/valueselector.resx @@ -117,4 +117,361 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 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 + Ox+6TP769V/8Hycxb6gFDQUHAAAAAElFTkSuQmCCKAAAADAAAABgAAAAAQAgAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAARwAAAOkAAAD2AAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAABMAAAA9gAAAP8AAAD/AAAA9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAD2AAAA/wAAAP8AAAD/AAAA6QAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAPgAAAD/AAAA/wAAAP8AAAD2AAAARwAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAA9gAAAP8AAAD/AAAA/wAA + APYAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAD2AAAA/wAA + AP8AAAD/AAAA+AAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAA + APgAAAD/AAAA/wAAAP8AAAD2AAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAeAAAARQAAAGEAAABoAAAAaAAA + AGgAAABNAAAALQAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABMAAAA9gAAAP8AAAD/AAAA/wAAAPYAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAABSAAAAogAAAOMAAAD9AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAPAAAAC+AAAAbwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAEsAAAD2AAAA/wAAAP8AAAD/AAAA+AAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAfgAAAOkAAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAPsAAACqAAAALwAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAPgAAAD/AAAA/wAAAP8AAAD2AAAASwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAGQAAADoAAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/AAAAKAAAAAXAAAAAAAAAAAAAABMAAAA9gAAAP8AAAD/AAAA/wAAAPYAAABMAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAsAAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP4AAADPAAAAnwAAAHkAAABuAAAAZgAAAHAAAACQAAAAuAAA + APIAAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAADoAAAASgAAAEsAAAD2AAAA/wAAAP8AAAD/AAAA+AAA + AEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + ACkAAADiAAAA/wAAAP8AAAD/AAAA/wAAAP8AAADTAAAAbwAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAYAAABIAAAApwAAAPsAAAD/AAAA/wAAAP8AAAD/AAAA/QAAAPgAAAD/AAAA/wAA + AP8AAAD2AAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAANQAAAO4AAAD/AAAA/wAAAP8AAAD/AAAA3AAAAFEAAAAEAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAACnAAAA/gAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAPYAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAnAAAA5QAAAP8AAAD/AAAA/wAAAP4AAACZAAAACwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAA + AO0AAAD/AAAA/wAAAP8AAAD/AAAA+AAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADTAAAA/wAAAP8AAAD/AAAA+QAAAGcAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAACEAAADYAAAA/wAAAP8AAAD/AAAA/QAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAD/AAAA/wAAAP8AAAD8AAAAVgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAA2AAAAP8AAAD/AAAA/wAAAOgAAAAXAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAP4AAAD/AAAA/wAA + AP8AAAB2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAO0AAAD/AAAA/wAA + AP8AAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAxgAA + AP8AAAD/AAAA/wAAALMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AE4AAAD+AAAA/wAAAP8AAAD8AAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABGAAAA/gAAAP8AAAD/AAAA8wAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACnAAAA/wAAAP8AAAD/AAAAqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACxAAAA/wAAAP8AAAD/AAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAA+wAAAP8AAAD/AAAA+wAAABkAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAD4AAAA/wAAAP8AAAD2AAAAGQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApwAAAP8AAAD/AAAA/wAA + AG8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAAD/AAAA/wAAAP8AAACtAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAA + AP8AAAD/AAAA/wAAAL4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJYAAAD/AAAA/wAA + AP8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAABgAAAPIAAAD/AAAA/wAAAPIAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AMUAAAD/AAAA/wAAAP0AAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAD/AAAA/wAAAP8AAAAtAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAOkAAAD/AAAA/wAAAPAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAD/AAAA/wAAAP8AAABNAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAA/wAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAD/AAAA/wAA + AP8AAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAA/wAAAMsAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AGYAAAD/AAAA/wAAAP8AAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAA/wAA + ANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAG4AAAD/AAAA/wAAAP8AAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + APgAAAD/AAAA/wAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAD/AAAA/wAAAP8AAABhAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAN0AAAD/AAAA/wAAAPYAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ8AAAD/AAAA/wAAAP8AAABFAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALMAAAD/AAAA/wAAAP8AAAA4AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM8AAAD/AAAA/wAA + AP0AAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAD/AAAA/wAAAP8AAAB6AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAA + AP4AAAD/AAAA/wAAAOMAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAD/AAAA/wAA + AP8AAADSAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAbwAAAP8AAAD/AAAA/wAAAKIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAYAAADkAAAA/wAAAP8AAAD+AAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAEAAAA0wAAAP8AAAD/AAAA/wAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACIAAAA/wAAAP8AAAD/AAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAA/wAAAP8AAAD/AAAA6QAAAAcAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAA9wAAAP8AAAD/AAAA/wAAAFAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAADcAAAA/wAAAP8AAAD/AAAAfgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjwAAAP8AAAD/AAAA/wAA + AOcAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAD/AAAA/wAA + AP8AAADoAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAA + AOkAAAD/AAAA/wAAAP8AAADCAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAA + AP4AAAD/AAAA/wAAAP8AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAFIAAAD+AAAA/wAAAP8AAAD/AAAArgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABYAAAA+QAAAP8AAAD/AAAA/wAAALAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACPAAAA/wAAAP8AAAD/AAAA/wAAAMIAAAAaAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAQAAAHYAAAD8AAAA/wAAAP8AAAD/AAAA4gAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAqwAAAP8AAAD/AAAA/wAA + AP8AAADnAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAcAAAAswAAAP8AAAD/AAAA/wAAAP8AAADuAAAAKQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAA + AKsAAAD/AAAA/wAAAP8AAAD/AAAA/wAAALgAAABBAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAIcAAADzAAAA/wAAAP8AAAD/AAAA/wAAAOUAAAA1AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAQAAACPAAAA/gAAAP8AAAD/AAAA/wAAAP8AAAD+AAAA0gAAAHoAAAA4AAAADgAA + AAAAAAAAAAAAAAAAAAAAAAAFAAAAIwAAAF4AAACtAAAA9gAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA0wAA + ACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAUgAAAOkAAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA9gAAAOAAAADUAAAAywAAANgAAADwAAAA/QAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP4AAACZAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAACPAAAA9wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD+AAAAxgAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAHgAAAIgAAADkAAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA+AAAALEAAABGAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAOwAAAH4AAACzAAAA3QAAAPgAAAD/AAAA/wAA + AP8AAADpAAAAxQAAAJYAAABWAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////8AAA///////g + AAD//////8AAAP//////gAAA//////8BAAD//////gMAAP/////8BwAA//4Af/gPAAD/8AAP8B8AAP/A + AAPgPwAA/wAAAMB/AAD+AAAAAP8AAPwA/wAB/wAA+AP/4AP/AADwD//4B/8AAOA///wH/wAA4H///gP/ + AADA////A/8AAID///+B/wAAgf///8H/AACD////wP8AAAP////g/wAAB////+D/AAAH////4H8AAAf/ + ///wfwAAB/////B/AAAP////8H8AAA/////wfwAAD/////B/AAAP////8H8AAAf////wfwAAB/////B/ + AAAH////4H8AAAP////g/wAAA////8D/AACD////wP8AAIH///+B/wAAwP///4H/AADAf///A/8AAOA/ + //4D/wAA4B//+Af/AADwD//wD/8AAPgB/8Af/wAA/AA8AD//AAD+AAAAf/8AAP+AAAH//wAA/+AAA/// + AAD/+AAf//8AACgAAAAgAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAD1AAAAuAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAAA/AAA + AP8AAAD1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAA + APwAAAD/AAAA/AAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AFsAAAD8AAAA/wAAAPwAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABbAAAA/AAAAP8AAAD8AAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAQAAAAYAAAAKIAAADRAAAA7AAAAO8AAADrAAAAzQAAAJwAAABYAAAACwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAWwAAAPwAAAD/AAAA/AAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAXAAAAkgAAAPUAAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAADxAAAAiAAA + ABIAAAAAAAAAAAAAAFsAAAD8AAAA/wAAAPwAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAWQAAAO8AAAD/AAAA/wAAAP8AAAD3AAAAxgAAAKMAAACaAAAApAAAAMkAAAD5AAAA/wAA + AP8AAAD/AAAA6QAAAFAAAABbAAAA/AAAAP8AAAD8AAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAQAAAIsAAAD/AAAA/wAAAP8AAADLAAAAWgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AA0AAABgAAAA0gAAAP8AAAD/AAAA/gAAAPwAAAD/AAAA/AAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACNAAAA/wAAAP8AAADzAAAAYgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAACAAAAbQAAAPcAAAD/AAAA/wAAAPwAAABbAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAP8AAAD/AAAA4wAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAOoAAAD/AAAA/gAAAFAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAADxAAAA/wAAAPIAAAArAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAPcAAAD/AAAA6QAA + ABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmgAAAP8AAAD/AAAAXQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAA + AP8AAAD/AAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAD5AAAA/wAAAMQAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAACAAAA0gAAAP8AAADxAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAP8AAAD/AAAATwAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAABgAAAA/wAAAP8AAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACuAAAA/wAA + APAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAD5AAAA/wAAAJ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AN8AAAD/AAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkAAAD/AAAAzQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAA+wAAAP8AAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAP8AAADrAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACaAAAA/wAA + AO8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD/AAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AKMAAAD/AAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4QAAAP8AAAC1AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAxgAAAP8AAADRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACyAAAA/wAAAO0AAAADAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAoAAAD3AAAA/wAAAKIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAD/AAAA/wAA + AEkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAP8AAAD/AAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAA + APsAAAD/AAAAvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAADLAAAA/wAAAPUAAAAQAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAogAAAP8AAAD/AAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAP8AAAD/AAAAkgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAhAAAA9QAAAP8AAADtAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAADzAAAA/wAAAO8AAAAXAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAA/wAAAP8AAADbAAAAIwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAA4wAAAP8AAAD/AAAAWQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACbAAAA/wAAAP8AAADtAAAAUgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAPIAAAD/AAAA/wAA + AIsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAACbAAAA/wAA + AP8AAAD/AAAAvAAAAEkAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAATwAAAMQAAAD/AAAA/wAA + AP8AAACNAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABsAAAA9QAAAP8AAAD/AAAA/wAAAO0AAAC1AAAAkwAAAIgAAACUAAAAuAAAAPAAAAD/AAAA/wAA + AP8AAADxAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAhAAAAogAAAPsAAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD5AAAAmgAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAHAAAACyAAAA4QAAAPwAAAD/AAAA+wAA + AN8AAACuAAAAawAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA////+P////D////g////wf///4P/AB8H/AAGD/gAAB/gHwA/4H/Af8H/8H+D//g/h//8Pw// + /B8P//4fD//+Hx///x8f//8fH///Hx///x8f//8fD//+Hw///h8P//wfh//8P4P/+D/B//B/4P/g/+Af + AP/4AAP//AAH//8AH/8oAAAAGAAAADAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAMkAAADXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAzgAA + AP8AAADJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAADOAAAA/wAAAM4AAAATAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAEAAAAZAAAAMgAAADQAAAAfAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAA + AM4AAAD/AAAAzgAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAkAAAAOEAAAD+AAAA/wAA + AP8AAAD/AAAA6wAAAKAAAAA2AAAAAAAAAAAAAAATAAAAzgAAAP8AAADOAAAAEwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAABQAAAIUAAAD5AAAA/wAAAP8AAADbAAAAuQAAALUAAADRAAAA/AAAAP8AAAD+AAAAqAAA + ACUAAADOAAAA/wAAAM4AAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAvgAAAP8AAAD2AAAAigAA + ACEAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAHEAAADpAAAA/wAAAP0AAAD/AAAAzgAAABMAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAMAAAC3AAAA/wAAANcAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAUAAAAuQAAAP8AAAD9AAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHUAAAD/AAAA3AAA + ABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAALkAAAD/AAAAqAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAPEAAAD8AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAADpAAAA/gAAADYAAAAAAAAAAAAAAAAAAAAAAAAAbwAA + AP8AAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABxAAAA/wAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAugAAAP8AAABDAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAA/AAAAOsAAAACAAAAAAAA + AAAAAAAAAAAA6wAAAPsAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAA0QAAAP8AAAAfAAAAAAAAAAAAAAAAAAAA/wAAAOgAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtQAA + AP8AAAA0AAAAAAAAAAAAAAAAAAAA/QAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuQAAAP8AAAAyAAAAAAAAAAAAAAAAAAAA4wAA + AP0AAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAA2wAAAP4AAAAZAAAAAAAAAAAAAAAAAAAArgAAAP8AAABUAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAA/wAAAOEAAAABAAAAAAAA + AAAAAAAAAAAAXAAAAP8AAAC9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACKAAAA/wAAAJAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAOEAAAD/AAAAVAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAD2AAAA+QAA + ACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAAD/AAAA8AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAANcAAAD/AAAAhQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAACQAAAA/wAAAPAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAA3AAA + AP8AAAC+AAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAkAAAAP8AAAD/AAAAvQAA + AFQAAAARAAAAAAAAAAAAAAAKAAAAQwAAAKUAAAD8AAAA/wAAALcAAAANAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAADhAAAA/wAAAP8AAAD9AAAA7QAAAOgAAAD7AAAA/wAA + AP8AAADxAAAAdQAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAHAAAAXAAAAK4AAADjAAAA/QAAAP8AAADrAAAAugAAAG8AAAASAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA///4Qf//8EH//+BB/gfBQfgBg0HgAAdBwPAPQYP8H0GH/h9BD/8PQR// + j0Ef/4dBH//HQT//x0E//8dBH//HQR//h0Ef/49BD/8PQYf+H0HD/B9BwGA/QfAAf0H4Af9BKAAAABAA + AAAgAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAP4AAABsAAAAAAAAAAAAAAAAAAAAAAAA + ABwAAABdAAAAdwAAAG4AAAA9AAAAAwAAAAAAAAAAAAAAbAAAAP4AAABsAAAAAAAAAAAAAAAAAAAAFgAA + AKYAAAD9AAAA7wAAAM8AAADbAAAA/gAAAN4AAABTAAAAbAAAAP4AAABsAAAAAAAAAAAAAAAAAAAAJAAA + AOIAAADVAAAASQAAAAIAAAAAAAAAAAAAABsAAACQAAAA/QAAAP4AAABsAAAAAAAAAAAAAAAAAAAABwAA + ANQAAADAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAAD9AAAAUwAAAAAAAAAAAAAAAAAA + AGoAAADwAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAN4AAAADAAAAAAAA + AAAAAADGAAAAkQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAD+AAAAPQAA + AAAAAAAAAAAA9gAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2wAA + AG4AAAAAAAAAAAAAAP4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AM8AAAB3AAAAAAAAAAAAAADkAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAIAAADvAAAAXQAAAAAAAAAAAAAAoQAAAMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABJAAAA/QAAABwAAAAAAAAAAAAAADEAAAD9AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAALAAAA1QAAAKYAAAAAAAAAAAAAAAAAAAAAAAAAggAAAPYAAABYAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAXAAAAwAAAAOIAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACCAAAA/QAAAMEAAABpAAAARwAA + AFMAAACRAAAA8AAAANQAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAChAAAA5AAA + AP4AAAD2AAAAxgAAAGoAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAD//KxB//isQfAxrEHAA6xBgwesQQ/H + rEEf46xBP+OsQT/zrEE/86xBP+OsQT/jrEEfx6xBj4esQYAPrEHgH6xB + + \ No newline at end of file diff --git a/Client/UIControls/Administrator/Dokumenttyp.Designer.cs b/Client/UIControls/Administrator/Dokumenttyp.Designer.cs index 2784ed7e..2aedbaae 100644 --- a/Client/UIControls/Administrator/Dokumenttyp.Designer.cs +++ b/Client/UIControls/Administrator/Dokumenttyp.Designer.cs @@ -58,6 +58,7 @@ this.GrpBewilligung = new System.Windows.Forms.GroupBox(); this.chkBewilliigungZwingend = new System.Windows.Forms.CheckBox(); this.groupBox4 = new System.Windows.Forms.GroupBox(); + this.chkinterop = new System.Windows.Forms.CheckBox(); this.chkbearbeitungdirekt = new System.Windows.Forms.CheckBox(); this.cbbearbeitungzwingend = new System.Windows.Forms.CheckBox(); this.cbPDFDirekteArchivierung = new System.Windows.Forms.CheckBox(); @@ -137,7 +138,6 @@ this.label16 = new System.Windows.Forms.Label(); this.rbNr = new System.Windows.Forms.RadioButton(); this.label15 = new System.Windows.Forms.Label(); - this.chkinterop = new System.Windows.Forms.CheckBox(); ((System.ComponentModel.ISupportInitialize)(this.tabControlAdv1)).BeginInit(); this.tabControlAdv1.SuspendLayout(); this.tabPageAdv1.SuspendLayout(); @@ -366,6 +366,14 @@ this.groupBox4.TabStop = false; this.groupBox4.Text = "Dokument-Produktion"; // + // chkinterop + // + this.chkinterop.Location = new System.Drawing.Point(259, 59); + this.chkinterop.Name = "chkinterop"; + this.chkinterop.Size = new System.Drawing.Size(127, 24); + this.chkinterop.TabIndex = 11; + this.chkinterop.Text = "Bearbeitung InterOP"; + // // chkbearbeitungdirekt // this.chkbearbeitungdirekt.Location = new System.Drawing.Point(259, 40); @@ -819,6 +827,7 @@ // // groupBox5 // + this.groupBox5.BackColor = System.Drawing.Color.LightGray; this.groupBox5.Controls.Add(this.listBox1); this.groupBox5.Dock = System.Windows.Forms.DockStyle.Left; this.groupBox5.Location = new System.Drawing.Point(0, 42); @@ -830,6 +839,7 @@ // // listBox1 // + this.listBox1.BackColor = System.Drawing.Color.LightBlue; this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.listBox1.FormattingEnabled = true; this.listBox1.Location = new System.Drawing.Point(3, 16); @@ -1239,7 +1249,7 @@ this.groupBox7.Size = new System.Drawing.Size(282, 760); this.groupBox7.TabIndex = 1; this.groupBox7.TabStop = false; - this.groupBox7.Text = "sflk"; + this.groupBox7.Text = "Dokumenttypen"; // // TreeDokumenttyp // @@ -1350,14 +1360,6 @@ this.label15.TabIndex = 7; this.label15.Text = "Sort"; // - // chkinterop - // - this.chkinterop.Location = new System.Drawing.Point(259, 59); - this.chkinterop.Name = "chkinterop"; - this.chkinterop.Size = new System.Drawing.Size(127, 24); - this.chkinterop.TabIndex = 11; - this.chkinterop.Text = "Bearbeitung InterOP"; - // // Dokumenttyp // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); diff --git a/Client/UIControls/Administrator/Dokumenttyp.cs b/Client/UIControls/Administrator/Dokumenttyp.cs index abf26a44..f121f112 100644 --- a/Client/UIControls/Administrator/Dokumenttyp.cs +++ b/Client/UIControls/Administrator/Dokumenttyp.cs @@ -330,7 +330,7 @@ namespace OnDoc.UIControls.Administrator { DB db = new DB(AppParams.connectionstring); db.Insert_Vorlagenfeld(Convert.ToInt32(this.listBox1.SelectedValue), this.dokumenttypnr, AppParams.CurrentMitarbieter); - db.Get_Tabledata("Select top 1 vorlagenfeldnr from vorlagenfeld order by vorlagenfeldnr desc", false, true); + db.Get_Tabledata("Select top 1 vorlagenfeldnr from vorlagenfeld order by erstellt_am desc", false, true); int newkey = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0][0]); Update_Vorlagenfelder(); pos_grid(newkey); @@ -345,8 +345,13 @@ namespace OnDoc.UIControls.Administrator foreach (var record in records) { var obj = record.Data as DataRowView; - if (obj["id"].ToString()==newkey.ToString()) - this.sfDataGrid1.SelectedItems.Add(obj); + if (obj["id"].ToString() == newkey.ToString()) + { this.sfDataGrid1.SelectedItems.Add(obj); + + var dataRow = (obj as DataRowView).Row; + Origin = (obj as DataRowView).Row; + + Update_Vorlagenfeld(dataRow);} } } diff --git a/Client/UIControls/DokList.Designer.cs b/Client/UIControls/DokList.Designer.cs index d0727ff8..e5cea1e9 100644 --- a/Client/UIControls/DokList.Designer.cs +++ b/Client/UIControls/DokList.Designer.cs @@ -44,6 +44,7 @@ namespace OnDoc.UICintrols this.druckenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pDFGenerierenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.dokumentAnVersandstrasseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.wordInterOPEditToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); this.tsrbvorschau = new System.Windows.Forms.ToolStripComboBox(); @@ -114,7 +115,6 @@ namespace OnDoc.UICintrols this.lblToApprove = new System.Windows.Forms.Label(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.cbboxMitarbeiter = new Syncfusion.WinForms.ListView.SfComboBox(); - this.wordInterOPEditToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit(); this.ctxMenuDokList.SuspendLayout(); this.toolStrip1.SuspendLayout(); @@ -161,7 +161,7 @@ namespace OnDoc.UICintrols this.dokumentAnVersandstrasseToolStripMenuItem, this.wordInterOPEditToolStripMenuItem}); this.ctxMenuDokList.Name = "ctxMenuDokList"; - this.ctxMenuDokList.Size = new System.Drawing.Size(280, 268); + this.ctxMenuDokList.Size = new System.Drawing.Size(280, 246); // // dokumentAnzeigenToolStripMenuItem // @@ -237,6 +237,13 @@ namespace OnDoc.UICintrols this.dokumentAnVersandstrasseToolStripMenuItem.Size = new System.Drawing.Size(279, 22); this.dokumentAnVersandstrasseToolStripMenuItem.Text = "Dokument an Versandstrasse"; // + // wordInterOPEditToolStripMenuItem + // + this.wordInterOPEditToolStripMenuItem.Name = "wordInterOPEditToolStripMenuItem"; + this.wordInterOPEditToolStripMenuItem.Size = new System.Drawing.Size(279, 22); + this.wordInterOPEditToolStripMenuItem.Text = "Word InterOP Edit"; + this.wordInterOPEditToolStripMenuItem.Click += new System.EventHandler(this.wordInterOPEditToolStripMenuItem_Click); + // // toolStrip1 // this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom; @@ -747,7 +754,6 @@ namespace OnDoc.UICintrols this.ribbonButton1.LargeImage = global::OnDoc.Properties.Resources.Pprofil_32x32_32; this.ribbonButton1.Name = "ribbonButton1"; this.ribbonButton1.SmallImage = global::OnDoc.Properties.Resources.Pprofil_16x16_32; - this.ribbonButton1.Visible = false; this.ribbonButton1.Click += new System.EventHandler(this.ribbonButton1_Click); // // ribbonPannelDiverseVorlagen @@ -882,13 +888,6 @@ namespace OnDoc.UICintrols this.cbboxMitarbeiter.TabStop = false; this.cbboxMitarbeiter.SelectedValueChanged += new System.EventHandler(this.cbboxMitarbeiter_SelectedValueChanged); // - // wordInterOPEditToolStripMenuItem - // - this.wordInterOPEditToolStripMenuItem.Name = "wordInterOPEditToolStripMenuItem"; - this.wordInterOPEditToolStripMenuItem.Size = new System.Drawing.Size(279, 22); - this.wordInterOPEditToolStripMenuItem.Text = "Word InterOP Edit"; - this.wordInterOPEditToolStripMenuItem.Click += new System.EventHandler(this.wordInterOPEditToolStripMenuItem_Click); - // // DokList // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); diff --git a/Client/UIControls/UCAllgemeineDokumentParam.cs b/Client/UIControls/UCAllgemeineDokumentParam.cs index 24908988..c81d9209 100644 --- a/Client/UIControls/UCAllgemeineDokumentParam.cs +++ b/Client/UIControls/UCAllgemeineDokumentParam.cs @@ -27,6 +27,7 @@ namespace OnDoc.UIControls public bool checkpartner { get; set; } = true; public bool interop { get; set; } = false; + public bool barcode { get; set; } = false; public bool runmacros { get; set; } = false; public string check_error { get; set; } = ""; @@ -108,6 +109,7 @@ namespace OnDoc.UIControls interop = Convert.ToBoolean(dr["interop"]) == true; } catch { interop = false; } + barcode = Convert.ToBoolean(dr["Vertrag"])== true; } else { @@ -289,7 +291,7 @@ namespace OnDoc.UIControls if (rbEditlater.Checked) { docgendata.erstellungsart = Erstellungsart.DokumentSpäterBearbeiten; } if (rbasPDF.Checked) { docgendata.erstellungsart = Erstellungsart.DokumentAlsPDF; } if (rbasPDFarchivieren.Checked) { docgendata.erstellungsart = Erstellungsart.DokumentAlsPDFArchivieren; } - + docgendata.dokumentwerte = gridDokwertlist.DataSource as DataTable; } @@ -311,6 +313,7 @@ namespace OnDoc.UIControls if (docgendata.erstellungsart == Erstellungsart.DokumentAlsPDF) { dokdata.Result_as_PDF = "True"; } else { dokdata.Result_as_PDF = "False"; } if (docgendata.digitaleunterschrift == true) { dokdata.As_Faksimile = "True"; } else { dokdata.As_Faksimile = "False"; } dokdata.dokumentwerte = docgendata.dokumentwerte; + dokdata.Barcode = barcode; } private void sfButton1_Click(object sender, EventArgs e) diff --git a/Client/bin/Debug/DOCGEN.dll b/Client/bin/Debug/DOCGEN.dll index c7b4f4f7..3cb8e3aa 100644 Binary files a/Client/bin/Debug/DOCGEN.dll and b/Client/bin/Debug/DOCGEN.dll differ diff --git a/Client/bin/Debug/DOCGEN.pdb b/Client/bin/Debug/DOCGEN.pdb index df40b23e..0fcd75b1 100644 Binary files a/Client/bin/Debug/DOCGEN.pdb and b/Client/bin/Debug/DOCGEN.pdb differ diff --git a/Client/bin/Debug/OnDoc.exe b/Client/bin/Debug/OnDoc.exe index 70c02755..b6f039ba 100644 Binary files a/Client/bin/Debug/OnDoc.exe and b/Client/bin/Debug/OnDoc.exe differ diff --git a/Client/bin/Debug/OnDoc.pdb b/Client/bin/Debug/OnDoc.pdb index e81f85a9..6c87c676 100644 Binary files a/Client/bin/Debug/OnDoc.pdb and b/Client/bin/Debug/OnDoc.pdb differ diff --git a/Client/bin/Debug/OnDocOffice.dll b/Client/bin/Debug/OnDocOffice.dll index 720e535e..da66295f 100644 Binary files a/Client/bin/Debug/OnDocOffice.dll and b/Client/bin/Debug/OnDocOffice.dll differ diff --git a/Client/bin/Debug/OnDocOffice.pdb b/Client/bin/Debug/OnDocOffice.pdb index 272dafdf..810bc012 100644 Binary files a/Client/bin/Debug/OnDocOffice.pdb and b/Client/bin/Debug/OnDocOffice.pdb differ diff --git a/Client/bin/Debug/de-DE/OnDoc.resources.dll b/Client/bin/Debug/de-DE/OnDoc.resources.dll index 9c6e248d..85045e3d 100644 Binary files a/Client/bin/Debug/de-DE/OnDoc.resources.dll and b/Client/bin/Debug/de-DE/OnDoc.resources.dll differ diff --git a/Client/bin/Debug/log.txt b/Client/bin/Debug/log.txt index a94ca4b5..6b10707c 100644 --- a/Client/bin/Debug/log.txt +++ b/Client/bin/Debug/log.txt @@ -36432,3 +36432,2327 @@ 2024-09-27 18:40:04.9355|DEBUG|EDOKA| 2024-09-27 18:40:12.4331|DEBUG|EDOKA| 2024-09-27 18:40:45.1361|DEBUG|EDOKA| +2024-09-28 11:20:08.6190|DEBUG|EDOKA|Start +2024-09-28 11:20:08.6847|DEBUG|EDOKA| +2024-09-28 11:20:08.6847|DEBUG|EDOKA| +2024-09-28 11:20:08.7967|DEBUG|EDOKA| +2024-09-29 09:42:03.4964|DEBUG|EDOKA|Start +2024-09-29 09:42:03.5645|DEBUG|EDOKA| +2024-09-29 09:42:03.5745|DEBUG|EDOKA| +2024-09-29 09:42:03.6685|DEBUG|EDOKA| +2024-09-29 09:42:07.2331|DEBUG|EDOKA| +2024-09-29 09:42:07.2791|DEBUG|EDOKA| +2024-09-29 09:42:07.2791|DEBUG|EDOKA| +2024-09-29 09:42:07.3681|DEBUG|EDOKA| +2024-09-29 09:42:07.3681|DEBUG|EDOKA|Start - Ende +2024-09-29 09:42:09.6258|DEBUG|EDOKA| +2024-09-29 09:42:09.6362|DEBUG|EDOKA| +2024-09-29 09:42:12.9199|DEBUG|EDOKA| +2024-09-29 09:42:12.9569|DEBUG|EDOKA| +2024-09-29 09:42:15.5460|DEBUG|EDOKA| +2024-09-29 09:42:15.5757|DEBUG|EDOKA| +2024-09-29 09:42:15.5968|DEBUG|EDOKA| +2024-09-29 09:42:15.6259|DEBUG|EDOKA| +2024-09-29 09:42:19.8937|DEBUG|EDOKA| +2024-09-29 09:42:19.9404|DEBUG|EDOKA| +2024-09-29 09:42:21.4777|DEBUG|EDOKA| +2024-09-29 09:42:21.4777|DEBUG|EDOKA| +2024-09-29 09:42:21.4947|DEBUG|EDOKA| +2024-09-29 09:42:21.4947|DEBUG|EDOKA| +2024-09-29 09:42:21.4947|DEBUG|EDOKA| +2024-09-29 09:42:21.5287|DEBUG|EDOKA| +2024-09-29 09:42:23.2241|DEBUG|EDOKA| +2024-09-29 09:42:26.4990|DEBUG|EDOKA| +2024-09-29 09:42:26.5380|DEBUG|EDOKA| +2024-09-29 09:42:26.5400|DEBUG|EDOKA| +2024-09-29 09:42:26.5740|DEBUG|EDOKA| +2024-09-29 09:42:26.5740|DEBUG|EDOKA| +2024-09-29 09:42:26.5877|DEBUG|EDOKA| +2024-09-29 09:42:26.5877|DEBUG|EDOKA| +2024-09-29 09:42:27.7154|DEBUG|EDOKA| +2024-09-29 09:42:48.2636|DEBUG|EDOKA| +2024-09-29 09:42:48.2747|DEBUG|EDOKA| +2024-09-29 09:42:52.2372|DEBUG|EDOKA| +2024-09-29 09:42:52.2738|DEBUG|EDOKA| +2024-09-29 09:42:54.1571|DEBUG|EDOKA| +2024-09-29 09:42:54.1791|DEBUG|EDOKA| +2024-09-29 09:42:54.1931|DEBUG|EDOKA| +2024-09-29 09:42:54.2209|DEBUG|EDOKA| +2024-09-29 09:42:55.8428|DEBUG|EDOKA| +2024-09-29 09:42:55.8556|DEBUG|EDOKA| +2024-09-29 09:42:55.8556|DEBUG|EDOKA| +2024-09-29 09:42:55.8556|DEBUG|EDOKA| +2024-09-29 09:42:55.8676|DEBUG|EDOKA| +2024-09-29 09:42:55.8846|DEBUG|EDOKA| +2024-09-29 09:42:56.9787|DEBUG|EDOKA| +2024-09-29 09:42:58.8660|DEBUG|EDOKA| +2024-09-29 09:42:58.8770|DEBUG|EDOKA| +2024-09-29 09:42:58.8770|DEBUG|EDOKA| +2024-09-29 09:42:58.8982|DEBUG|EDOKA| +2024-09-29 09:42:58.9013|DEBUG|EDOKA| +2024-09-29 09:42:58.9013|DEBUG|EDOKA| +2024-09-29 09:42:58.9013|DEBUG|EDOKA| +2024-09-29 09:42:59.2009|DEBUG|EDOKA| +2024-09-29 09:43:07.3213|DEBUG|EDOKA| +2024-09-29 09:44:43.7941|DEBUG|EDOKA|Start +2024-09-29 09:44:43.8581|DEBUG|EDOKA| +2024-09-29 09:44:43.8581|DEBUG|EDOKA| +2024-09-29 09:44:43.9431|DEBUG|EDOKA| +2024-09-29 09:44:48.3475|DEBUG|EDOKA| +2024-09-29 09:44:48.3895|DEBUG|EDOKA| +2024-09-29 09:44:48.3895|DEBUG|EDOKA| +2024-09-29 09:44:48.4715|DEBUG|EDOKA| +2024-09-29 09:44:48.4825|DEBUG|EDOKA|Start - Ende +2024-09-29 09:44:50.9117|DEBUG|EDOKA| +2024-09-29 09:44:50.9208|DEBUG|EDOKA| +2024-09-29 09:44:55.0055|DEBUG|EDOKA| +2024-09-29 09:44:55.0426|DEBUG|EDOKA| +2024-09-29 09:45:00.8358|DEBUG|EDOKA| +2024-09-29 09:45:00.8892|DEBUG|EDOKA| +2024-09-29 09:45:00.9025|DEBUG|EDOKA| +2024-09-29 09:45:00.9330|DEBUG|EDOKA| +2024-09-29 09:45:04.1805|DEBUG|EDOKA| +2024-09-29 09:45:04.2276|DEBUG|EDOKA| +2024-09-29 09:45:06.9504|DEBUG|EDOKA| +2024-09-29 09:45:06.9624|DEBUG|EDOKA| +2024-09-29 09:45:06.9624|DEBUG|EDOKA| +2024-09-29 09:45:06.9624|DEBUG|EDOKA| +2024-09-29 09:45:06.9624|DEBUG|EDOKA| +2024-09-29 09:45:06.9919|DEBUG|EDOKA| +2024-09-29 09:45:08.2846|DEBUG|EDOKA| +2024-09-29 09:45:10.1645|DEBUG|EDOKA| +2024-09-29 09:45:10.1895|DEBUG|EDOKA| +2024-09-29 09:45:10.1895|DEBUG|EDOKA| +2024-09-29 09:45:10.2142|DEBUG|EDOKA| +2024-09-29 09:45:10.2142|DEBUG|EDOKA| +2024-09-29 09:45:10.2324|DEBUG|EDOKA| +2024-09-29 09:45:10.2324|DEBUG|EDOKA| +2024-09-29 09:45:11.1340|DEBUG|EDOKA| +2024-09-29 09:45:44.9359|DEBUG|EDOKA|Start +2024-09-29 09:45:45.0013|DEBUG|EDOKA| +2024-09-29 09:45:45.0013|DEBUG|EDOKA| +2024-09-29 09:45:45.0960|DEBUG|EDOKA| +2024-09-29 09:45:48.8490|DEBUG|EDOKA| +2024-09-29 09:45:48.8911|DEBUG|EDOKA| +2024-09-29 09:45:48.8994|DEBUG|EDOKA| +2024-09-29 09:45:48.9667|DEBUG|EDOKA| +2024-09-29 09:45:48.9667|DEBUG|EDOKA|Start - Ende +2024-09-29 09:45:50.5987|DEBUG|EDOKA| +2024-09-29 09:45:50.6077|DEBUG|EDOKA| +2024-09-29 09:45:53.4982|DEBUG|EDOKA| +2024-09-29 09:45:53.5092|DEBUG|EDOKA| +2024-09-29 09:45:55.5464|DEBUG|EDOKA| +2024-09-29 09:45:55.5725|DEBUG|EDOKA| +2024-09-29 09:45:55.5871|DEBUG|EDOKA| +2024-09-29 09:45:55.6186|DEBUG|EDOKA| +2024-09-29 09:46:00.1399|DEBUG|EDOKA| +2024-09-29 09:46:00.1840|DEBUG|EDOKA| +2024-09-29 09:46:01.7823|DEBUG|EDOKA| +2024-09-29 09:46:01.7927|DEBUG|EDOKA| +2024-09-29 09:46:01.7927|DEBUG|EDOKA| +2024-09-29 09:46:01.7927|DEBUG|EDOKA| +2024-09-29 09:46:01.7927|DEBUG|EDOKA| +2024-09-29 09:46:01.8245|DEBUG|EDOKA| +2024-09-29 09:46:03.0415|DEBUG|EDOKA| +2024-09-29 09:46:05.2342|DEBUG|EDOKA| +2024-09-29 09:46:05.2682|DEBUG|EDOKA| +2024-09-29 09:46:05.2682|DEBUG|EDOKA| +2024-09-29 09:46:05.2917|DEBUG|EDOKA| +2024-09-29 09:46:05.2917|DEBUG|EDOKA| +2024-09-29 09:46:05.3148|DEBUG|EDOKA| +2024-09-29 09:46:05.3207|DEBUG|EDOKA| +2024-09-29 09:46:06.1786|DEBUG|EDOKA| +2024-09-29 09:46:14.8183|DEBUG|EDOKA| +2024-09-29 09:47:26.7002|DEBUG|EDOKA|Start +2024-09-29 09:47:26.7664|DEBUG|EDOKA| +2024-09-29 09:47:26.7664|DEBUG|EDOKA| +2024-09-29 09:47:26.8535|DEBUG|EDOKA| +2024-09-29 09:47:30.5900|DEBUG|EDOKA| +2024-09-29 09:47:30.6321|DEBUG|EDOKA| +2024-09-29 09:47:30.6411|DEBUG|EDOKA| +2024-09-29 09:47:30.7120|DEBUG|EDOKA| +2024-09-29 09:47:30.7120|DEBUG|EDOKA|Start - Ende +2024-09-29 09:47:34.3141|DEBUG|EDOKA| +2024-09-29 09:47:34.3511|DEBUG|EDOKA| +2024-09-29 09:47:38.4669|DEBUG|EDOKA| +2024-09-29 09:47:38.5034|DEBUG|EDOKA| +2024-09-29 09:47:41.5196|DEBUG|EDOKA| +2024-09-29 09:47:41.5460|DEBUG|EDOKA| +2024-09-29 09:47:41.5704|DEBUG|EDOKA| +2024-09-29 09:47:41.6009|DEBUG|EDOKA| +2024-09-29 09:47:44.9017|DEBUG|EDOKA| +2024-09-29 09:47:44.9457|DEBUG|EDOKA| +2024-09-29 09:47:47.0509|DEBUG|EDOKA| +2024-09-29 09:47:47.0620|DEBUG|EDOKA| +2024-09-29 09:47:47.0620|DEBUG|EDOKA| +2024-09-29 09:47:47.0620|DEBUG|EDOKA| +2024-09-29 09:47:47.0720|DEBUG|EDOKA| +2024-09-29 09:47:47.0970|DEBUG|EDOKA| +2024-09-29 09:47:52.2422|DEBUG|EDOKA| +2024-09-29 09:47:54.4797|DEBUG|EDOKA| +2024-09-29 09:47:54.4972|DEBUG|EDOKA| +2024-09-29 09:47:54.4972|DEBUG|EDOKA| +2024-09-29 09:47:54.5198|DEBUG|EDOKA| +2024-09-29 09:47:54.5198|DEBUG|EDOKA| +2024-09-29 09:47:54.5323|DEBUG|EDOKA| +2024-09-29 09:47:54.5323|DEBUG|EDOKA| +2024-09-29 09:47:55.3868|DEBUG|EDOKA| +2024-09-29 09:48:06.9911|DEBUG|EDOKA| +2024-09-29 09:48:30.7003|DEBUG|EDOKA| +2024-09-29 09:49:30.6965|DEBUG|EDOKA| +2024-09-29 09:50:30.6983|DEBUG|EDOKA| +2024-09-29 09:51:30.6983|DEBUG|EDOKA| +2024-09-29 09:52:30.6973|DEBUG|EDOKA| +2024-09-29 09:53:30.6968|DEBUG|EDOKA| +2024-09-29 09:54:30.6976|DEBUG|EDOKA| +2024-09-29 09:55:30.6996|DEBUG|EDOKA| +2024-09-29 09:56:30.6981|DEBUG|EDOKA| +2024-09-29 09:57:30.7000|DEBUG|EDOKA| +2024-09-29 09:58:30.6977|DEBUG|EDOKA| +2024-09-29 09:59:30.6989|DEBUG|EDOKA| +2024-09-29 10:00:30.7013|DEBUG|EDOKA| +2024-09-29 10:01:30.6991|DEBUG|EDOKA| +2024-09-29 10:02:30.6996|DEBUG|EDOKA| +2024-09-29 10:03:30.7009|DEBUG|EDOKA| +2024-09-29 10:04:30.6992|DEBUG|EDOKA| +2024-09-29 10:05:30.6986|DEBUG|EDOKA| +2024-09-29 10:06:30.7004|DEBUG|EDOKA| +2024-09-30 07:59:12.1308|DEBUG|EDOKA|Start +2024-09-30 07:59:12.1970|DEBUG|EDOKA| +2024-09-30 07:59:12.1970|DEBUG|EDOKA| +2024-09-30 07:59:12.2945|DEBUG|EDOKA| +2024-09-30 07:59:16.3173|DEBUG|EDOKA| +2024-09-30 07:59:16.3690|DEBUG|EDOKA| +2024-09-30 07:59:16.3690|DEBUG|EDOKA| +2024-09-30 07:59:16.4498|DEBUG|EDOKA| +2024-09-30 07:59:16.4614|DEBUG|EDOKA|Start - Ende +2024-09-30 07:59:20.7821|DEBUG|EDOKA| +2024-09-30 07:59:27.1248|DEBUG|EDOKA| +2024-09-30 07:59:29.4296|DEBUG|EDOKA| +2024-09-30 07:59:29.4296|DEBUG|EDOKA| +2024-09-30 07:59:29.4469|DEBUG|EDOKA| +2024-09-30 07:59:29.4469|DEBUG|EDOKA| +2024-09-30 07:59:29.4659|DEBUG|EDOKA| +2024-09-30 07:59:29.4969|DEBUG|EDOKA| +2024-09-30 07:59:29.4969|DEBUG|EDOKA| +2024-09-30 07:59:29.5466|DEBUG|EDOKA| +2024-09-30 07:59:29.5552|DEBUG|EDOKA| +2024-09-30 07:59:29.5732|DEBUG|EDOKA| +2024-09-30 07:59:29.5732|DEBUG|EDOKA| +2024-09-30 07:59:29.5872|DEBUG|EDOKA| +2024-09-30 07:59:29.5872|DEBUG|EDOKA| +2024-09-30 07:59:29.6057|DEBUG|EDOKA| +2024-09-30 07:59:41.2800|DEBUG|EDOKA| +2024-09-30 07:59:41.3152|DEBUG|EDOKA| +2024-09-30 07:59:44.6092|DEBUG|EDOKA| +2024-09-30 07:59:44.6460|DEBUG|EDOKA| +2024-09-30 07:59:46.8769|DEBUG|EDOKA| +2024-09-30 07:59:46.9091|DEBUG|EDOKA| +2024-09-30 07:59:46.9273|DEBUG|EDOKA| +2024-09-30 07:59:46.9542|DEBUG|EDOKA| +2024-09-30 07:59:52.9589|DEBUG|EDOKA| +2024-09-30 07:59:53.0039|DEBUG|EDOKA| +2024-09-30 07:59:55.4405|DEBUG|EDOKA| +2024-09-30 07:59:55.4559|DEBUG|EDOKA| +2024-09-30 07:59:55.4619|DEBUG|EDOKA| +2024-09-30 07:59:55.4619|DEBUG|EDOKA| +2024-09-30 07:59:55.4619|DEBUG|EDOKA| +2024-09-30 07:59:55.4874|DEBUG|EDOKA| +2024-09-30 07:59:57.0780|DEBUG|EDOKA| +2024-09-30 07:59:59.7201|DEBUG|EDOKA| +2024-09-30 07:59:59.7397|DEBUG|EDOKA| +2024-09-30 07:59:59.7397|DEBUG|EDOKA| +2024-09-30 07:59:59.7612|DEBUG|EDOKA| +2024-09-30 07:59:59.7612|DEBUG|EDOKA| +2024-09-30 07:59:59.7612|DEBUG|EDOKA| +2024-09-30 07:59:59.7747|DEBUG|EDOKA| +2024-09-30 08:00:00.7270|DEBUG|EDOKA| +2024-09-30 08:00:00.7963|DEBUG|EDOKA| +2024-09-30 08:00:04.1956|DEBUG|EDOKA| +2024-09-30 08:00:16.4504|DEBUG|EDOKA| +2024-09-30 08:00:41.1190|DEBUG|EDOKA|Start +2024-09-30 08:00:41.1841|DEBUG|EDOKA| +2024-09-30 08:00:41.1841|DEBUG|EDOKA| +2024-09-30 08:00:41.2766|DEBUG|EDOKA| +2024-09-30 08:00:45.0348|DEBUG|EDOKA| +2024-09-30 08:00:45.0774|DEBUG|EDOKA| +2024-09-30 08:00:45.0864|DEBUG|EDOKA| +2024-09-30 08:00:45.1570|DEBUG|EDOKA| +2024-09-30 08:00:45.1665|DEBUG|EDOKA|Start - Ende +2024-09-30 08:00:46.7795|DEBUG|EDOKA| +2024-09-30 08:00:46.7795|DEBUG|EDOKA| +2024-09-30 08:00:49.7350|DEBUG|EDOKA| +2024-09-30 08:00:49.7446|DEBUG|EDOKA| +2024-09-30 08:00:52.9542|DEBUG|EDOKA| +2024-09-30 08:00:53.0073|DEBUG|EDOKA| +2024-09-30 08:00:53.0332|DEBUG|EDOKA| +2024-09-30 08:00:53.0604|DEBUG|EDOKA| +2024-09-30 08:00:58.5417|DEBUG|EDOKA| +2024-09-30 08:00:58.5893|DEBUG|EDOKA| +2024-09-30 08:01:00.5152|DEBUG|EDOKA| +2024-09-30 08:01:00.5257|DEBUG|EDOKA| +2024-09-30 08:01:00.5257|DEBUG|EDOKA| +2024-09-30 08:01:00.5257|DEBUG|EDOKA| +2024-09-30 08:01:00.5257|DEBUG|EDOKA| +2024-09-30 08:01:00.5602|DEBUG|EDOKA| +2024-09-30 08:01:02.9171|DEBUG|EDOKA| +2024-09-30 08:01:05.0747|DEBUG|EDOKA| +2024-09-30 08:01:05.1032|DEBUG|EDOKA| +2024-09-30 08:01:05.1032|DEBUG|EDOKA| +2024-09-30 08:01:05.1511|DEBUG|EDOKA| +2024-09-30 08:01:05.1511|DEBUG|EDOKA| +2024-09-30 08:01:05.1690|DEBUG|EDOKA| +2024-09-30 08:01:05.1690|DEBUG|EDOKA| +2024-09-30 08:03:04.5913|DEBUG|EDOKA|Start +2024-09-30 08:03:04.6576|DEBUG|EDOKA| +2024-09-30 08:03:04.6576|DEBUG|EDOKA| +2024-09-30 08:03:04.6663|DEBUG|EDOKA| +2024-09-30 08:03:04.6663|DEBUG|EDOKA| +2024-09-30 08:03:04.6933|DEBUG|EDOKA| +2024-09-30 08:03:04.7594|DEBUG|EDOKA| +2024-09-30 08:03:04.7594|DEBUG|EDOKA|Start - Ende +2024-09-30 08:03:42.8699|DEBUG|EDOKA| +2024-09-30 08:03:42.9051|DEBUG|EDOKA| +2024-09-30 08:03:47.1036|DEBUG|EDOKA| +2024-09-30 08:03:47.1388|DEBUG|EDOKA| +2024-09-30 08:03:51.4767|DEBUG|EDOKA| +2024-09-30 08:03:51.5304|DEBUG|EDOKA| +2024-09-30 08:03:51.5532|DEBUG|EDOKA| +2024-09-30 08:03:51.5810|DEBUG|EDOKA| +2024-09-30 08:03:55.4748|DEBUG|EDOKA| +2024-09-30 08:03:55.5188|DEBUG|EDOKA| +2024-09-30 08:03:57.5022|DEBUG|EDOKA| +2024-09-30 08:03:57.5121|DEBUG|EDOKA| +2024-09-30 08:03:57.5121|DEBUG|EDOKA| +2024-09-30 08:03:57.5121|DEBUG|EDOKA| +2024-09-30 08:03:57.5121|DEBUG|EDOKA| +2024-09-30 08:03:57.5427|DEBUG|EDOKA| +2024-09-30 08:03:59.2717|DEBUG|EDOKA| +2024-09-30 08:04:02.2819|DEBUG|EDOKA| +2024-09-30 08:04:02.3044|DEBUG|EDOKA| +2024-09-30 08:04:02.3054|DEBUG|EDOKA| +2024-09-30 08:04:02.3334|DEBUG|EDOKA| +2024-09-30 08:04:02.3364|DEBUG|EDOKA| +2024-09-30 08:04:02.3364|DEBUG|EDOKA| +2024-09-30 08:04:02.3534|DEBUG|EDOKA| +2024-09-30 08:04:18.7921|DEBUG|EDOKA| +2024-09-30 08:04:18.8088|DEBUG|EDOKA| +2024-09-30 08:04:20.0107|DEBUG|EDOKA| +2024-09-30 08:04:21.5356|DEBUG|EDOKA| +2024-09-30 08:04:42.2278|DEBUG|EDOKA| +2024-09-30 08:05:02.0474|DEBUG|EDOKA|Start +2024-09-30 08:05:02.1095|DEBUG|EDOKA| +2024-09-30 08:05:02.1095|DEBUG|EDOKA| +2024-09-30 08:05:02.1095|DEBUG|EDOKA| +2024-09-30 08:05:02.1225|DEBUG|EDOKA| +2024-09-30 08:05:02.1408|DEBUG|EDOKA| +2024-09-30 08:05:02.2110|DEBUG|EDOKA| +2024-09-30 08:05:02.2110|DEBUG|EDOKA|Start - Ende +2024-09-30 08:05:05.0522|DEBUG|EDOKA| +2024-09-30 08:05:07.7347|DEBUG|EDOKA| +2024-09-30 08:05:11.8454|DEBUG|EDOKA|Start +2024-09-30 08:05:11.8819|DEBUG|EDOKA| +2024-09-30 08:05:11.8879|DEBUG|EDOKA| +2024-09-30 08:05:11.8879|DEBUG|EDOKA| +2024-09-30 08:05:11.9561|DEBUG|EDOKA| +2024-09-30 08:05:11.9816|DEBUG|EDOKA| +2024-09-30 08:05:12.0477|DEBUG|EDOKA| +2024-09-30 08:05:12.0477|DEBUG|EDOKA|Start - Ende +2024-09-30 08:05:17.5758|DEBUG|EDOKA| +2024-09-30 08:05:20.5644|DEBUG|EDOKA| +2024-09-30 08:05:22.8886|DEBUG|EDOKA| +2024-09-30 08:05:22.9051|DEBUG|EDOKA| +2024-09-30 08:05:22.9051|DEBUG|EDOKA| +2024-09-30 08:05:22.9051|DEBUG|EDOKA| +2024-09-30 08:05:22.9325|DEBUG|EDOKA| +2024-09-30 08:05:22.9590|DEBUG|EDOKA| +2024-09-30 08:05:22.9730|DEBUG|EDOKA| +2024-09-30 08:05:23.0076|DEBUG|EDOKA| +2024-09-30 08:05:23.0076|DEBUG|EDOKA| +2024-09-30 08:05:23.0332|DEBUG|EDOKA| +2024-09-30 08:05:23.0332|DEBUG|EDOKA| +2024-09-30 08:05:23.0452|DEBUG|EDOKA| +2024-09-30 08:05:23.0452|DEBUG|EDOKA| +2024-09-30 08:05:23.0637|DEBUG|EDOKA| +2024-09-30 08:05:34.8852|DEBUG|EDOKA| +2024-09-30 08:05:34.9212|DEBUG|EDOKA| +2024-09-30 08:05:39.4281|DEBUG|EDOKA| +2024-09-30 08:05:39.4647|DEBUG|EDOKA| +2024-09-30 08:05:45.7607|DEBUG|EDOKA| +2024-09-30 08:05:45.8233|DEBUG|EDOKA| +2024-09-30 08:05:45.8476|DEBUG|EDOKA| +2024-09-30 08:05:45.8784|DEBUG|EDOKA| +2024-09-30 08:05:51.8445|DEBUG|EDOKA| +2024-09-30 08:05:51.8900|DEBUG|EDOKA| +2024-09-30 08:05:53.7371|DEBUG|EDOKA| +2024-09-30 08:05:53.7496|DEBUG|EDOKA| +2024-09-30 08:05:53.7496|DEBUG|EDOKA| +2024-09-30 08:05:53.7496|DEBUG|EDOKA| +2024-09-30 08:05:53.7600|DEBUG|EDOKA| +2024-09-30 08:05:53.7801|DEBUG|EDOKA| +2024-09-30 08:05:55.3699|DEBUG|EDOKA| +2024-09-30 08:05:57.8505|DEBUG|EDOKA| +2024-09-30 08:05:57.8758|DEBUG|EDOKA| +2024-09-30 08:05:57.8904|DEBUG|EDOKA| +2024-09-30 08:05:57.9169|DEBUG|EDOKA| +2024-09-30 08:05:57.9169|DEBUG|EDOKA| +2024-09-30 08:05:57.9169|DEBUG|EDOKA| +2024-09-30 08:05:57.9304|DEBUG|EDOKA| +2024-09-30 08:06:01.0164|DEBUG|EDOKA| +2024-09-30 08:06:01.0321|DEBUG|EDOKA| +2024-09-30 08:06:12.0432|DEBUG|EDOKA| +2024-09-30 08:13:19.1428|DEBUG|EDOKA|Start +2024-09-30 08:13:19.2074|DEBUG|EDOKA| +2024-09-30 08:13:19.2131|DEBUG|EDOKA| +2024-09-30 08:13:19.2131|DEBUG|EDOKA| +2024-09-30 08:13:19.2131|DEBUG|EDOKA| +2024-09-30 08:13:19.2450|DEBUG|EDOKA| +2024-09-30 08:13:19.3113|DEBUG|EDOKA| +2024-09-30 08:13:19.3113|DEBUG|EDOKA|Start - Ende +2024-09-30 08:13:25.1760|DEBUG|EDOKA| +2024-09-30 08:13:25.2126|DEBUG|EDOKA| +2024-09-30 08:13:31.2300|DEBUG|EDOKA| +2024-09-30 08:13:31.2674|DEBUG|EDOKA| +2024-09-30 08:13:41.2316|DEBUG|EDOKA| +2024-09-30 08:13:41.2887|DEBUG|EDOKA| +2024-09-30 08:13:41.3309|DEBUG|EDOKA| +2024-09-30 08:13:41.3568|DEBUG|EDOKA| +2024-09-30 08:13:45.1493|DEBUG|EDOKA| +2024-09-30 08:13:45.1955|DEBUG|EDOKA| +2024-09-30 08:13:49.2601|DEBUG|EDOKA| +2024-09-30 08:13:49.2981|DEBUG|EDOKA| +2024-09-30 08:13:49.3082|DEBUG|EDOKA| +2024-09-30 08:13:49.3082|DEBUG|EDOKA| +2024-09-30 08:13:49.3082|DEBUG|EDOKA| +2024-09-30 08:13:49.3343|DEBUG|EDOKA| +2024-09-30 08:13:50.9327|DEBUG|EDOKA| +2024-09-30 08:13:53.8365|DEBUG|EDOKA| +2024-09-30 08:13:53.8657|DEBUG|EDOKA| +2024-09-30 08:13:53.8657|DEBUG|EDOKA| +2024-09-30 08:13:53.8870|DEBUG|EDOKA| +2024-09-30 08:13:53.8870|DEBUG|EDOKA| +2024-09-30 08:13:53.8870|DEBUG|EDOKA| +2024-09-30 08:13:53.9009|DEBUG|EDOKA| +2024-09-30 08:13:57.5694|DEBUG|EDOKA| +2024-09-30 08:13:57.5866|DEBUG|EDOKA| +2024-09-30 08:15:48.6368|DEBUG|EDOKA|Start +2024-09-30 08:15:48.7016|DEBUG|EDOKA| +2024-09-30 08:15:48.7016|DEBUG|EDOKA| +2024-09-30 08:15:48.7016|DEBUG|EDOKA| +2024-09-30 08:15:48.7497|DEBUG|EDOKA| +2024-09-30 08:15:48.7702|DEBUG|EDOKA| +2024-09-30 08:15:48.8399|DEBUG|EDOKA| +2024-09-30 08:15:48.8399|DEBUG|EDOKA|Start - Ende +2024-09-30 08:15:52.0952|DEBUG|EDOKA| +2024-09-30 08:15:52.1309|DEBUG|EDOKA| +2024-09-30 08:15:56.4996|DEBUG|EDOKA| +2024-09-30 08:15:56.5355|DEBUG|EDOKA| +2024-09-30 08:15:59.1541|DEBUG|EDOKA| +2024-09-30 08:15:59.1831|DEBUG|EDOKA| +2024-09-30 08:15:59.2153|DEBUG|EDOKA| +2024-09-30 08:15:59.2468|DEBUG|EDOKA| +2024-09-30 08:16:05.3623|DEBUG|EDOKA| +2024-09-30 08:16:05.4080|DEBUG|EDOKA| +2024-09-30 08:16:07.3911|DEBUG|EDOKA| +2024-09-30 08:16:07.4016|DEBUG|EDOKA| +2024-09-30 08:16:07.4016|DEBUG|EDOKA| +2024-09-30 08:16:07.4016|DEBUG|EDOKA| +2024-09-30 08:16:07.4016|DEBUG|EDOKA| +2024-09-30 08:16:07.4335|DEBUG|EDOKA| +2024-09-30 08:16:09.4144|DEBUG|EDOKA| +2024-09-30 08:16:11.4437|DEBUG|EDOKA| +2024-09-30 08:16:11.4640|DEBUG|EDOKA| +2024-09-30 08:16:11.4640|DEBUG|EDOKA| +2024-09-30 08:16:11.4870|DEBUG|EDOKA| +2024-09-30 08:16:11.4870|DEBUG|EDOKA| +2024-09-30 08:16:11.4976|DEBUG|EDOKA| +2024-09-30 08:16:11.4976|DEBUG|EDOKA| +2024-09-30 08:16:13.9993|DEBUG|EDOKA| +2024-09-30 08:16:14.0166|DEBUG|EDOKA| +2024-09-30 08:16:30.3061|DEBUG|EDOKA| +2024-09-30 08:16:30.3417|DEBUG|EDOKA| +2024-09-30 08:16:34.4238|DEBUG|EDOKA| +2024-09-30 08:16:34.4594|DEBUG|EDOKA| +2024-09-30 08:16:36.5230|DEBUG|EDOKA| +2024-09-30 08:16:36.5575|DEBUG|EDOKA| +2024-09-30 08:16:36.5765|DEBUG|EDOKA| +2024-09-30 08:16:36.6044|DEBUG|EDOKA| +2024-09-30 08:16:43.3101|DEBUG|EDOKA| +2024-09-30 08:16:43.3521|DEBUG|EDOKA| +2024-09-30 08:16:43.3521|DEBUG|EDOKA| +2024-09-30 08:16:43.3521|DEBUG|EDOKA| +2024-09-30 08:16:43.3521|DEBUG|EDOKA| +2024-09-30 08:16:43.3749|DEBUG|EDOKA| +2024-09-30 08:16:44.7329|DEBUG|EDOKA| +2024-09-30 08:16:48.6527|DEBUG|EDOKA| +2024-09-30 08:16:48.6823|DEBUG|EDOKA| +2024-09-30 08:16:48.6823|DEBUG|EDOKA| +2024-09-30 08:16:48.7044|DEBUG|EDOKA| +2024-09-30 08:16:48.7044|DEBUG|EDOKA| +2024-09-30 08:16:48.7125|DEBUG|EDOKA| +2024-09-30 08:16:48.7125|DEBUG|EDOKA| +2024-09-30 08:17:11.2232|DEBUG|EDOKA| +2024-09-30 08:17:11.2346|DEBUG|EDOKA| +2024-09-30 08:17:11.4327|DEBUG|EDOKA| +2024-09-30 08:18:02.2014|DEBUG|EDOKA|Start +2024-09-30 08:18:02.2646|DEBUG|EDOKA| +2024-09-30 08:18:02.2646|DEBUG|EDOKA| +2024-09-30 08:18:02.2646|DEBUG|EDOKA| +2024-09-30 08:18:02.2770|DEBUG|EDOKA| +2024-09-30 08:18:02.2961|DEBUG|EDOKA| +2024-09-30 08:18:02.3620|DEBUG|EDOKA| +2024-09-30 08:18:02.3620|DEBUG|EDOKA|Start - Ende +2024-09-30 08:18:05.0184|DEBUG|EDOKA| +2024-09-30 08:18:05.0289|DEBUG|EDOKA| +2024-09-30 08:18:08.0553|DEBUG|EDOKA| +2024-09-30 08:18:08.0553|DEBUG|EDOKA| +2024-09-30 08:18:10.9017|DEBUG|EDOKA| +2024-09-30 08:18:10.9336|DEBUG|EDOKA| +2024-09-30 08:18:10.9698|DEBUG|EDOKA| +2024-09-30 08:18:10.9990|DEBUG|EDOKA| +2024-09-30 08:18:15.0056|DEBUG|EDOKA| +2024-09-30 08:18:15.0229|DEBUG|EDOKA| +2024-09-30 08:18:18.5803|DEBUG|EDOKA| +2024-09-30 08:18:18.6174|DEBUG|EDOKA| +2024-09-30 08:18:18.6174|DEBUG|EDOKA| +2024-09-30 08:18:18.6174|DEBUG|EDOKA| +2024-09-30 08:18:18.6344|DEBUG|EDOKA| +2024-09-30 08:18:18.6595|DEBUG|EDOKA| +2024-09-30 08:18:20.1051|DEBUG|EDOKA| +2024-09-30 08:18:23.9904|DEBUG|EDOKA| +2024-09-30 08:18:24.0165|DEBUG|EDOKA| +2024-09-30 08:18:24.0240|DEBUG|EDOKA| +2024-09-30 08:18:24.0536|DEBUG|EDOKA| +2024-09-30 08:18:24.0566|DEBUG|EDOKA| +2024-09-30 08:18:24.0726|DEBUG|EDOKA| +2024-09-30 08:18:24.0726|DEBUG|EDOKA| +2024-09-30 08:18:29.0146|DEBUG|EDOKA| +2024-09-30 08:18:29.0456|DEBUG|EDOKA| +2024-09-30 08:19:02.3648|DEBUG|EDOKA| +2024-09-30 08:19:28.8634|DEBUG|EDOKA|Start +2024-09-30 08:19:28.9301|DEBUG|EDOKA| +2024-09-30 08:19:28.9301|DEBUG|EDOKA| +2024-09-30 08:19:28.9301|DEBUG|EDOKA| +2024-09-30 08:19:28.9301|DEBUG|EDOKA| +2024-09-30 08:19:28.9622|DEBUG|EDOKA| +2024-09-30 08:19:29.0279|DEBUG|EDOKA| +2024-09-30 08:19:29.0279|DEBUG|EDOKA|Start - Ende +2024-09-30 08:19:32.6702|DEBUG|EDOKA| +2024-09-30 08:19:32.7062|DEBUG|EDOKA| +2024-09-30 08:19:35.6305|DEBUG|EDOKA| +2024-09-30 08:19:35.6394|DEBUG|EDOKA| +2024-09-30 08:19:38.4453|DEBUG|EDOKA| +2024-09-30 08:19:38.4711|DEBUG|EDOKA| +2024-09-30 08:19:38.5016|DEBUG|EDOKA| +2024-09-30 08:19:38.5320|DEBUG|EDOKA| +2024-09-30 08:19:42.8526|DEBUG|EDOKA| +2024-09-30 08:19:42.8959|DEBUG|EDOKA| +2024-09-30 08:19:44.7945|DEBUG|EDOKA| +2024-09-30 08:19:44.8050|DEBUG|EDOKA| +2024-09-30 08:19:44.8050|DEBUG|EDOKA| +2024-09-30 08:19:44.8050|DEBUG|EDOKA| +2024-09-30 08:19:44.8050|DEBUG|EDOKA| +2024-09-30 08:19:44.8374|DEBUG|EDOKA| +2024-09-30 08:19:47.1258|DEBUG|EDOKA| +2024-09-30 08:19:49.2797|DEBUG|EDOKA| +2024-09-30 08:19:49.2987|DEBUG|EDOKA| +2024-09-30 08:19:49.2987|DEBUG|EDOKA| +2024-09-30 08:19:49.3213|DEBUG|EDOKA| +2024-09-30 08:19:49.3213|DEBUG|EDOKA| +2024-09-30 08:19:49.3213|DEBUG|EDOKA| +2024-09-30 08:19:49.3213|DEBUG|EDOKA| +2024-09-30 08:19:53.7701|DEBUG|EDOKA| +2024-09-30 08:19:53.7846|DEBUG|EDOKA| +2024-09-30 08:20:19.0610|DEBUG|EDOKA|Start +2024-09-30 08:20:19.1257|DEBUG|EDOKA| +2024-09-30 08:20:19.1257|DEBUG|EDOKA| +2024-09-30 08:20:19.1257|DEBUG|EDOKA| +2024-09-30 08:20:19.1387|DEBUG|EDOKA| +2024-09-30 08:20:19.1562|DEBUG|EDOKA| +2024-09-30 08:20:19.2217|DEBUG|EDOKA| +2024-09-30 08:20:19.2267|DEBUG|EDOKA|Start - Ende +2024-09-30 08:20:21.1527|DEBUG|EDOKA| +2024-09-30 08:20:21.1527|DEBUG|EDOKA| +2024-09-30 08:20:24.4526|DEBUG|EDOKA| +2024-09-30 08:20:24.4884|DEBUG|EDOKA| +2024-09-30 08:20:28.3454|DEBUG|EDOKA| +2024-09-30 08:20:38.2451|DEBUG|EDOKA| +2024-09-30 08:20:45.0158|DEBUG|EDOKA| +2024-09-30 08:20:45.0893|DEBUG|EDOKA| +2024-09-30 08:20:47.1016|DEBUG|EDOKA| +2024-09-30 08:20:47.1281|DEBUG|EDOKA| +2024-09-30 08:20:47.1589|DEBUG|EDOKA| +2024-09-30 08:20:47.1877|DEBUG|EDOKA| +2024-09-30 08:20:50.7859|DEBUG|EDOKA| +2024-09-30 08:20:50.8345|DEBUG|EDOKA| +2024-09-30 08:20:52.9867|DEBUG|EDOKA| +2024-09-30 08:20:52.9969|DEBUG|EDOKA| +2024-09-30 08:20:52.9969|DEBUG|EDOKA| +2024-09-30 08:20:52.9969|DEBUG|EDOKA| +2024-09-30 08:20:53.0101|DEBUG|EDOKA| +2024-09-30 08:20:53.0357|DEBUG|EDOKA| +2024-09-30 08:20:54.2820|DEBUG|EDOKA| +2024-09-30 08:20:57.9849|DEBUG|EDOKA| +2024-09-30 08:20:58.0025|DEBUG|EDOKA| +2024-09-30 08:20:58.0025|DEBUG|EDOKA| +2024-09-30 08:20:58.0232|DEBUG|EDOKA| +2024-09-30 08:20:58.0251|DEBUG|EDOKA| +2024-09-30 08:20:58.0251|DEBUG|EDOKA| +2024-09-30 08:20:58.0251|DEBUG|EDOKA| +2024-09-30 08:21:02.8532|DEBUG|EDOKA| +2024-09-30 08:21:02.8698|DEBUG|EDOKA| +2024-09-30 08:21:33.9845|DEBUG|EDOKA|Start +2024-09-30 08:21:34.0496|DEBUG|EDOKA| +2024-09-30 08:21:34.0496|DEBUG|EDOKA| +2024-09-30 08:21:34.0551|DEBUG|EDOKA| +2024-09-30 08:21:34.0551|DEBUG|EDOKA| +2024-09-30 08:21:34.0821|DEBUG|EDOKA| +2024-09-30 08:21:34.1487|DEBUG|EDOKA| +2024-09-30 08:21:34.1487|DEBUG|EDOKA|Start - Ende +2024-09-30 08:21:36.0955|DEBUG|EDOKA| +2024-09-30 08:21:36.1035|DEBUG|EDOKA| +2024-09-30 08:21:39.2474|DEBUG|EDOKA| +2024-09-30 08:21:41.3787|DEBUG|EDOKA| +2024-09-30 08:21:41.4063|DEBUG|EDOKA| +2024-09-30 08:21:41.4432|DEBUG|EDOKA| +2024-09-30 08:21:41.4699|DEBUG|EDOKA| +2024-09-30 08:21:45.0807|DEBUG|EDOKA| +2024-09-30 08:21:45.1258|DEBUG|EDOKA| +2024-09-30 08:21:47.2670|DEBUG|EDOKA| +2024-09-30 08:21:47.2767|DEBUG|EDOKA| +2024-09-30 08:21:47.2767|DEBUG|EDOKA| +2024-09-30 08:21:47.2767|DEBUG|EDOKA| +2024-09-30 08:21:47.2767|DEBUG|EDOKA| +2024-09-30 08:21:47.3142|DEBUG|EDOKA| +2024-09-30 08:21:48.5622|DEBUG|EDOKA| +2024-09-30 08:21:50.9661|DEBUG|EDOKA| +2024-09-30 08:21:50.9841|DEBUG|EDOKA| +2024-09-30 08:21:50.9841|DEBUG|EDOKA| +2024-09-30 08:21:51.0055|DEBUG|EDOKA| +2024-09-30 08:21:51.0085|DEBUG|EDOKA| +2024-09-30 08:21:51.0085|DEBUG|EDOKA| +2024-09-30 08:21:51.0085|DEBUG|EDOKA| +2024-09-30 08:21:54.9498|DEBUG|EDOKA| +2024-09-30 08:21:54.9683|DEBUG|EDOKA| +2024-09-30 08:22:09.5096|DEBUG|EDOKA|Start +2024-09-30 08:22:09.5737|DEBUG|EDOKA| +2024-09-30 08:22:09.5737|DEBUG|EDOKA| +2024-09-30 08:22:09.5737|DEBUG|EDOKA| +2024-09-30 08:22:09.5862|DEBUG|EDOKA| +2024-09-30 08:22:09.6072|DEBUG|EDOKA| +2024-09-30 08:22:09.6788|DEBUG|EDOKA| +2024-09-30 08:22:09.6893|DEBUG|EDOKA|Start - Ende +2024-09-30 08:22:12.4140|DEBUG|EDOKA| +2024-09-30 08:22:15.1550|DEBUG|EDOKA| +2024-09-30 08:22:17.0310|DEBUG|EDOKA| +2024-09-30 08:22:17.0522|DEBUG|EDOKA| +2024-09-30 08:22:17.0582|DEBUG|EDOKA| +2024-09-30 08:22:17.0582|DEBUG|EDOKA| +2024-09-30 08:22:17.1084|DEBUG|EDOKA| +2024-09-30 08:22:17.1375|DEBUG|EDOKA| +2024-09-30 08:22:17.1375|DEBUG|EDOKA| +2024-09-30 08:22:17.1750|DEBUG|EDOKA| +2024-09-30 08:22:17.1841|DEBUG|EDOKA| +2024-09-30 08:22:17.2011|DEBUG|EDOKA| +2024-09-30 08:22:17.2011|DEBUG|EDOKA| +2024-09-30 08:22:17.2151|DEBUG|EDOKA| +2024-09-30 08:22:17.2151|DEBUG|EDOKA| +2024-09-30 08:22:17.2303|DEBUG|EDOKA| +2024-09-30 08:22:26.4524|DEBUG|EDOKA| +2024-09-30 08:22:26.4887|DEBUG|EDOKA| +2024-09-30 08:22:29.2130|DEBUG|EDOKA| +2024-09-30 08:22:29.2130|DEBUG|EDOKA| +2024-09-30 08:22:31.7857|DEBUG|EDOKA| +2024-09-30 08:22:31.8138|DEBUG|EDOKA| +2024-09-30 08:22:31.8364|DEBUG|EDOKA| +2024-09-30 08:22:31.8659|DEBUG|EDOKA| +2024-09-30 08:22:35.6803|DEBUG|EDOKA| +2024-09-30 08:22:35.7252|DEBUG|EDOKA| +2024-09-30 08:22:37.7332|DEBUG|EDOKA| +2024-09-30 08:22:37.7437|DEBUG|EDOKA| +2024-09-30 08:22:37.7437|DEBUG|EDOKA| +2024-09-30 08:22:37.7437|DEBUG|EDOKA| +2024-09-30 08:22:37.7437|DEBUG|EDOKA| +2024-09-30 08:22:37.7776|DEBUG|EDOKA| +2024-09-30 08:22:38.8476|DEBUG|EDOKA| +2024-09-30 08:22:41.1213|DEBUG|EDOKA| +2024-09-30 08:22:41.1550|DEBUG|EDOKA| +2024-09-30 08:22:41.1550|DEBUG|EDOKA| +2024-09-30 08:22:41.1795|DEBUG|EDOKA| +2024-09-30 08:22:41.1795|DEBUG|EDOKA| +2024-09-30 08:22:41.2005|DEBUG|EDOKA| +2024-09-30 08:22:41.2005|DEBUG|EDOKA| +2024-09-30 08:22:44.9801|DEBUG|EDOKA| +2024-09-30 08:23:09.6730|DEBUG|EDOKA| +2024-09-30 08:23:18.4460|DEBUG|EDOKA| +2024-09-30 08:23:18.4818|DEBUG|EDOKA| +2024-09-30 08:23:22.3752|DEBUG|EDOKA| +2024-09-30 08:23:23.9831|DEBUG|EDOKA| +2024-09-30 08:23:24.0075|DEBUG|EDOKA| +2024-09-30 08:23:24.0305|DEBUG|EDOKA| +2024-09-30 08:23:24.0592|DEBUG|EDOKA| +2024-09-30 08:23:25.2973|DEBUG|EDOKA| +2024-09-30 08:23:25.3091|DEBUG|EDOKA| +2024-09-30 08:23:25.3091|DEBUG|EDOKA| +2024-09-30 08:23:25.3091|DEBUG|EDOKA| +2024-09-30 08:23:25.3091|DEBUG|EDOKA| +2024-09-30 08:23:25.3355|DEBUG|EDOKA| +2024-09-30 08:23:26.5208|DEBUG|EDOKA| +2024-09-30 08:23:29.1401|DEBUG|EDOKA| +2024-09-30 08:23:29.1642|DEBUG|EDOKA| +2024-09-30 08:23:29.1642|DEBUG|EDOKA| +2024-09-30 08:23:29.2012|DEBUG|EDOKA| +2024-09-30 08:23:29.2012|DEBUG|EDOKA| +2024-09-30 08:23:29.2136|DEBUG|EDOKA| +2024-09-30 08:23:29.2136|DEBUG|EDOKA| +2024-09-30 08:23:29.5510|DEBUG|EDOKA| +2024-09-30 08:24:09.6740|DEBUG|EDOKA| +2024-09-30 08:25:09.6662|DEBUG|EDOKA| +2024-09-30 08:25:48.6800|DEBUG|EDOKA| +2024-09-30 08:25:48.7157|DEBUG|EDOKA| +2024-09-30 08:25:51.5775|DEBUG|EDOKA| +2024-09-30 08:25:53.5462|DEBUG|EDOKA| +2024-09-30 08:25:53.5692|DEBUG|EDOKA| +2024-09-30 08:25:53.5895|DEBUG|EDOKA| +2024-09-30 08:25:53.6157|DEBUG|EDOKA| +2024-09-30 08:25:55.5680|DEBUG|EDOKA| +2024-09-30 08:25:55.5778|DEBUG|EDOKA| +2024-09-30 08:25:55.5778|DEBUG|EDOKA| +2024-09-30 08:25:55.5778|DEBUG|EDOKA| +2024-09-30 08:25:55.5873|DEBUG|EDOKA| +2024-09-30 08:25:55.6028|DEBUG|EDOKA| +2024-09-30 08:25:57.4052|DEBUG|EDOKA| +2024-09-30 08:25:59.8106|DEBUG|EDOKA| +2024-09-30 08:25:59.8276|DEBUG|EDOKA| +2024-09-30 08:25:59.8276|DEBUG|EDOKA| +2024-09-30 08:25:59.8650|DEBUG|EDOKA| +2024-09-30 08:25:59.8707|DEBUG|EDOKA| +2024-09-30 08:25:59.8867|DEBUG|EDOKA| +2024-09-30 08:25:59.8987|DEBUG|EDOKA| +2024-09-30 08:26:00.2385|DEBUG|EDOKA| +2024-09-30 08:26:09.6676|DEBUG|EDOKA| +2024-09-30 08:26:32.0756|DEBUG|EDOKA| +2024-09-30 08:26:33.8594|DEBUG|EDOKA| +2024-09-30 08:26:33.8875|DEBUG|EDOKA| +2024-09-30 08:26:33.9090|DEBUG|EDOKA| +2024-09-30 08:26:33.9390|DEBUG|EDOKA| +2024-09-30 08:26:35.1964|DEBUG|EDOKA| +2024-09-30 08:26:35.1964|DEBUG|EDOKA| +2024-09-30 08:26:35.2143|DEBUG|EDOKA| +2024-09-30 08:26:35.2143|DEBUG|EDOKA| +2024-09-30 08:26:35.2143|DEBUG|EDOKA| +2024-09-30 08:26:35.2329|DEBUG|EDOKA| +2024-09-30 08:26:36.3573|DEBUG|EDOKA| +2024-09-30 08:26:38.3104|DEBUG|EDOKA| +2024-09-30 08:26:38.3259|DEBUG|EDOKA| +2024-09-30 08:26:38.3259|DEBUG|EDOKA| +2024-09-30 08:26:38.3573|DEBUG|EDOKA| +2024-09-30 08:26:38.3573|DEBUG|EDOKA| +2024-09-30 08:26:38.3573|DEBUG|EDOKA| +2024-09-30 08:26:38.3698|DEBUG|EDOKA| +2024-09-30 08:26:38.7335|DEBUG|EDOKA| +2024-09-30 08:26:59.7885|DEBUG|EDOKA| +2024-09-30 08:26:59.8256|DEBUG|EDOKA| +2024-09-30 08:27:03.4501|DEBUG|EDOKA| +2024-09-30 08:27:06.0057|DEBUG|EDOKA| +2024-09-30 08:27:06.0326|DEBUG|EDOKA| +2024-09-30 08:27:06.0511|DEBUG|EDOKA| +2024-09-30 08:27:06.0806|DEBUG|EDOKA| +2024-09-30 08:27:07.7576|DEBUG|EDOKA| +2024-09-30 08:27:07.7687|DEBUG|EDOKA| +2024-09-30 08:27:07.7687|DEBUG|EDOKA| +2024-09-30 08:27:07.7748|DEBUG|EDOKA| +2024-09-30 08:27:07.7748|DEBUG|EDOKA| +2024-09-30 08:27:07.7938|DEBUG|EDOKA| +2024-09-30 08:27:09.0855|DEBUG|EDOKA| +2024-09-30 08:27:09.6784|DEBUG|EDOKA| +2024-09-30 08:27:11.4178|DEBUG|EDOKA| +2024-09-30 08:27:11.4335|DEBUG|EDOKA| +2024-09-30 08:27:11.4335|DEBUG|EDOKA| +2024-09-30 08:27:11.4715|DEBUG|EDOKA| +2024-09-30 08:27:11.4715|DEBUG|EDOKA| +2024-09-30 08:27:11.4854|DEBUG|EDOKA| +2024-09-30 08:27:11.4929|DEBUG|EDOKA| +2024-09-30 08:27:11.8654|DEBUG|EDOKA| +2024-09-30 08:27:48.2291|DEBUG|EDOKA| +2024-09-30 08:27:56.0562|DEBUG|EDOKA| +2024-09-30 08:28:09.6713|DEBUG|EDOKA| +2024-09-30 08:28:29.6431|DEBUG|EDOKA| +2024-09-30 08:28:32.5142|DEBUG|EDOKA| +2024-09-30 08:28:32.5415|DEBUG|EDOKA| +2024-09-30 08:28:32.5613|DEBUG|EDOKA| +2024-09-30 08:28:32.5897|DEBUG|EDOKA| +2024-09-30 08:28:34.0788|DEBUG|EDOKA| +2024-09-30 08:28:34.0893|DEBUG|EDOKA| +2024-09-30 08:28:34.0893|DEBUG|EDOKA| +2024-09-30 08:28:34.0893|DEBUG|EDOKA| +2024-09-30 08:28:34.0893|DEBUG|EDOKA| +2024-09-30 08:28:34.1190|DEBUG|EDOKA| +2024-09-30 08:28:35.5361|DEBUG|EDOKA| +2024-09-30 08:28:37.7503|DEBUG|EDOKA| +2024-09-30 08:28:37.7643|DEBUG|EDOKA| +2024-09-30 08:28:37.7643|DEBUG|EDOKA| +2024-09-30 08:28:37.7889|DEBUG|EDOKA| +2024-09-30 08:28:37.7889|DEBUG|EDOKA| +2024-09-30 08:28:37.7889|DEBUG|EDOKA| +2024-09-30 08:28:37.7889|DEBUG|EDOKA| +2024-09-30 08:28:38.1922|DEBUG|EDOKA| +2024-09-30 08:29:09.6786|DEBUG|EDOKA| +2024-09-30 08:29:28.3106|DEBUG|EDOKA| +2024-09-30 08:29:30.7747|DEBUG|EDOKA| +2024-09-30 08:29:30.8052|DEBUG|EDOKA| +2024-09-30 08:29:30.8324|DEBUG|EDOKA| +2024-09-30 08:29:30.8604|DEBUG|EDOKA| +2024-09-30 08:29:32.1430|DEBUG|EDOKA| +2024-09-30 08:29:32.1542|DEBUG|EDOKA| +2024-09-30 08:29:32.1542|DEBUG|EDOKA| +2024-09-30 08:29:32.1542|DEBUG|EDOKA| +2024-09-30 08:29:32.1652|DEBUG|EDOKA| +2024-09-30 08:29:32.1822|DEBUG|EDOKA| +2024-09-30 08:29:33.4840|DEBUG|EDOKA| +2024-09-30 08:29:36.9683|DEBUG|EDOKA| +2024-09-30 08:29:36.9884|DEBUG|EDOKA| +2024-09-30 08:29:36.9884|DEBUG|EDOKA| +2024-09-30 08:29:37.0170|DEBUG|EDOKA| +2024-09-30 08:29:37.0170|DEBUG|EDOKA| +2024-09-30 08:29:37.0288|DEBUG|EDOKA| +2024-09-30 08:29:37.0288|DEBUG|EDOKA| +2024-09-30 08:29:37.4422|DEBUG|EDOKA| +2024-09-30 08:32:16.6002|DEBUG|EDOKA|Start +2024-09-30 08:32:16.6641|DEBUG|EDOKA| +2024-09-30 08:32:16.6641|DEBUG|EDOKA| +2024-09-30 08:32:16.6641|DEBUG|EDOKA| +2024-09-30 08:32:16.6641|DEBUG|EDOKA| +2024-09-30 08:32:16.6972|DEBUG|EDOKA| +2024-09-30 08:32:16.7637|DEBUG|EDOKA| +2024-09-30 08:32:16.7637|DEBUG|EDOKA|Start - Ende +2024-09-30 08:32:20.7221|DEBUG|EDOKA| +2024-09-30 08:32:23.5378|DEBUG|EDOKA| +2024-09-30 08:32:23.5666|DEBUG|EDOKA| +2024-09-30 08:32:23.6002|DEBUG|EDOKA| +2024-09-30 08:32:23.6299|DEBUG|EDOKA| +2024-09-30 08:32:26.9627|DEBUG|EDOKA| +2024-09-30 08:32:27.0070|DEBUG|EDOKA| +2024-09-30 08:32:28.8817|DEBUG|EDOKA| +2024-09-30 08:32:28.8927|DEBUG|EDOKA| +2024-09-30 08:32:28.8994|DEBUG|EDOKA| +2024-09-30 08:32:28.8994|DEBUG|EDOKA| +2024-09-30 08:32:28.8994|DEBUG|EDOKA| +2024-09-30 08:32:28.9360|DEBUG|EDOKA| +2024-09-30 08:32:30.3136|DEBUG|EDOKA| +2024-09-30 08:32:32.3521|DEBUG|EDOKA| +2024-09-30 08:32:32.3876|DEBUG|EDOKA| +2024-09-30 08:32:32.3876|DEBUG|EDOKA| +2024-09-30 08:32:32.4230|DEBUG|EDOKA| +2024-09-30 08:32:32.4230|DEBUG|EDOKA| +2024-09-30 08:32:32.4381|DEBUG|EDOKA| +2024-09-30 08:32:32.4455|DEBUG|EDOKA| +2024-09-30 08:32:33.3071|DEBUG|EDOKA| +2024-09-30 08:33:07.4745|DEBUG|EDOKA|Start +2024-09-30 08:33:07.5395|DEBUG|EDOKA| +2024-09-30 08:33:07.5395|DEBUG|EDOKA| +2024-09-30 08:33:07.5395|DEBUG|EDOKA| +2024-09-30 08:33:07.5566|DEBUG|EDOKA| +2024-09-30 08:33:07.5759|DEBUG|EDOKA| +2024-09-30 08:33:07.6476|DEBUG|EDOKA| +2024-09-30 08:33:07.6578|DEBUG|EDOKA|Start - Ende +2024-09-30 08:33:09.4563|DEBUG|EDOKA| +2024-09-30 08:33:09.4668|DEBUG|EDOKA| +2024-09-30 08:33:11.6163|DEBUG|EDOKA| +2024-09-30 08:33:14.4418|DEBUG|EDOKA| +2024-09-30 08:33:14.4688|DEBUG|EDOKA| +2024-09-30 08:33:14.5024|DEBUG|EDOKA| +2024-09-30 08:33:14.5359|DEBUG|EDOKA| +2024-09-30 08:33:19.0298|DEBUG|EDOKA| +2024-09-30 08:33:19.0765|DEBUG|EDOKA| +2024-09-30 08:33:21.0371|DEBUG|EDOKA| +2024-09-30 08:33:21.0470|DEBUG|EDOKA| +2024-09-30 08:33:21.0470|DEBUG|EDOKA| +2024-09-30 08:33:21.0470|DEBUG|EDOKA| +2024-09-30 08:33:21.0575|DEBUG|EDOKA| +2024-09-30 08:33:21.0825|DEBUG|EDOKA| +2024-09-30 08:33:22.7170|DEBUG|EDOKA| +2024-09-30 08:33:25.4727|DEBUG|EDOKA| +2024-09-30 08:33:25.5011|DEBUG|EDOKA| +2024-09-30 08:33:25.5011|DEBUG|EDOKA| +2024-09-30 08:33:25.5346|DEBUG|EDOKA| +2024-09-30 08:33:25.5346|DEBUG|EDOKA| +2024-09-30 08:33:25.5524|DEBUG|EDOKA| +2024-09-30 08:33:25.5651|DEBUG|EDOKA| +2024-09-30 08:33:26.3966|DEBUG|EDOKA| +2024-09-30 08:33:43.2791|DEBUG|EDOKA| +2024-09-30 08:33:45.7307|DEBUG|EDOKA| +2024-09-30 08:33:45.7532|DEBUG|EDOKA| +2024-09-30 08:33:45.7685|DEBUG|EDOKA| +2024-09-30 08:33:45.7956|DEBUG|EDOKA| +2024-09-30 08:33:47.1441|DEBUG|EDOKA| +2024-09-30 08:33:47.1556|DEBUG|EDOKA| +2024-09-30 08:33:47.1556|DEBUG|EDOKA| +2024-09-30 08:33:47.1556|DEBUG|EDOKA| +2024-09-30 08:33:47.1661|DEBUG|EDOKA| +2024-09-30 08:33:47.1851|DEBUG|EDOKA| +2024-09-30 08:33:48.4697|DEBUG|EDOKA| +2024-09-30 08:33:50.5216|DEBUG|EDOKA| +2024-09-30 08:33:50.5396|DEBUG|EDOKA| +2024-09-30 08:33:50.5396|DEBUG|EDOKA| +2024-09-30 08:33:50.5671|DEBUG|EDOKA| +2024-09-30 08:33:50.5671|DEBUG|EDOKA| +2024-09-30 08:33:50.5761|DEBUG|EDOKA| +2024-09-30 08:33:50.5761|DEBUG|EDOKA| +2024-09-30 08:33:50.8664|DEBUG|EDOKA| +2024-09-30 08:33:58.5217|DEBUG|EDOKA| +2024-09-30 08:34:01.0733|DEBUG|EDOKA| +2024-09-30 08:34:03.4000|DEBUG|EDOKA| +2024-09-30 08:34:03.4000|DEBUG|EDOKA| +2024-09-30 08:34:03.4202|DEBUG|EDOKA| +2024-09-30 08:34:03.4202|DEBUG|EDOKA| +2024-09-30 08:34:03.4343|DEBUG|EDOKA| +2024-09-30 08:34:03.4590|DEBUG|EDOKA| +2024-09-30 08:34:03.4650|DEBUG|EDOKA| +2024-09-30 08:34:03.4915|DEBUG|EDOKA| +2024-09-30 08:34:03.5010|DEBUG|EDOKA| +2024-09-30 08:34:03.5160|DEBUG|EDOKA| +2024-09-30 08:34:03.5160|DEBUG|EDOKA| +2024-09-30 08:34:03.5311|DEBUG|EDOKA| +2024-09-30 08:34:03.5311|DEBUG|EDOKA| +2024-09-30 08:34:03.5481|DEBUG|EDOKA| +2024-09-30 08:34:07.6482|DEBUG|EDOKA| +2024-09-30 08:34:12.0162|DEBUG|EDOKA| +2024-09-30 08:34:13.9219|DEBUG|EDOKA| +2024-09-30 08:34:13.9445|DEBUG|EDOKA| +2024-09-30 08:34:13.9685|DEBUG|EDOKA| +2024-09-30 08:34:13.9977|DEBUG|EDOKA| +2024-09-30 08:34:15.9611|DEBUG|EDOKA| +2024-09-30 08:34:15.9611|DEBUG|EDOKA| +2024-09-30 08:34:15.9611|DEBUG|EDOKA| +2024-09-30 08:34:15.9611|DEBUG|EDOKA| +2024-09-30 08:34:15.9791|DEBUG|EDOKA| +2024-09-30 08:34:15.9987|DEBUG|EDOKA| +2024-09-30 08:34:17.5075|DEBUG|EDOKA| +2024-09-30 08:34:19.3730|DEBUG|EDOKA| +2024-09-30 08:34:19.3870|DEBUG|EDOKA| +2024-09-30 08:34:19.3870|DEBUG|EDOKA| +2024-09-30 08:34:19.4253|DEBUG|EDOKA| +2024-09-30 08:34:19.4253|DEBUG|EDOKA| +2024-09-30 08:34:19.4396|DEBUG|EDOKA| +2024-09-30 08:34:19.4482|DEBUG|EDOKA| +2024-09-30 08:34:21.6057|DEBUG|EDOKA| +2024-09-30 08:35:07.6410|DEBUG|EDOKA| +2024-09-30 08:36:07.6378|DEBUG|EDOKA| +2024-09-30 08:37:07.6457|DEBUG|EDOKA| +2024-09-30 08:38:07.6495|DEBUG|EDOKA| +2024-09-30 08:38:36.2394|DEBUG|EDOKA| +2024-09-30 08:38:38.7729|DEBUG|EDOKA| +2024-09-30 08:38:38.7962|DEBUG|EDOKA| +2024-09-30 08:38:38.8133|DEBUG|EDOKA| +2024-09-30 08:38:38.8405|DEBUG|EDOKA| +2024-09-30 08:38:40.0479|DEBUG|EDOKA| +2024-09-30 08:38:40.0582|DEBUG|EDOKA| +2024-09-30 08:38:40.0582|DEBUG|EDOKA| +2024-09-30 08:38:40.0582|DEBUG|EDOKA| +2024-09-30 08:38:40.0582|DEBUG|EDOKA| +2024-09-30 08:38:40.0825|DEBUG|EDOKA| +2024-09-30 08:38:41.7584|DEBUG|EDOKA| +2024-09-30 08:38:43.8093|DEBUG|EDOKA| +2024-09-30 08:38:43.8293|DEBUG|EDOKA| +2024-09-30 08:38:43.8293|DEBUG|EDOKA| +2024-09-30 08:38:43.8525|DEBUG|EDOKA| +2024-09-30 08:38:43.8525|DEBUG|EDOKA| +2024-09-30 08:38:43.8525|DEBUG|EDOKA| +2024-09-30 08:38:43.8525|DEBUG|EDOKA| +2024-09-30 08:38:44.2003|DEBUG|EDOKA| +2024-09-30 08:39:07.6410|DEBUG|EDOKA| +2024-09-30 08:39:23.1543|DEBUG|EDOKA| +2024-09-30 08:39:25.9154|DEBUG|EDOKA| +2024-09-30 08:39:25.9504|DEBUG|EDOKA| +2024-09-30 08:39:25.9749|DEBUG|EDOKA| +2024-09-30 08:39:26.0023|DEBUG|EDOKA| +2024-09-30 08:39:28.0271|DEBUG|EDOKA| +2024-09-30 08:39:28.0271|DEBUG|EDOKA| +2024-09-30 08:39:28.0411|DEBUG|EDOKA| +2024-09-30 08:39:28.0411|DEBUG|EDOKA| +2024-09-30 08:39:28.0411|DEBUG|EDOKA| +2024-09-30 08:39:28.0608|DEBUG|EDOKA| +2024-09-30 08:39:29.5109|DEBUG|EDOKA| +2024-09-30 08:39:31.6394|DEBUG|EDOKA| +2024-09-30 08:39:31.6586|DEBUG|EDOKA| +2024-09-30 08:39:31.6586|DEBUG|EDOKA| +2024-09-30 08:39:31.6951|DEBUG|EDOKA| +2024-09-30 08:39:31.6971|DEBUG|EDOKA| +2024-09-30 08:39:31.6971|DEBUG|EDOKA| +2024-09-30 08:39:31.7165|DEBUG|EDOKA| +2024-09-30 08:39:32.0895|DEBUG|EDOKA| +2024-09-30 08:39:58.1557|DEBUG|EDOKA| +2024-09-30 08:40:02.4159|DEBUG|EDOKA| +2024-09-30 08:40:02.4672|DEBUG|EDOKA| +2024-09-30 08:40:02.4872|DEBUG|EDOKA| +2024-09-30 08:40:02.5138|DEBUG|EDOKA| +2024-09-30 08:40:03.9624|DEBUG|EDOKA| +2024-09-30 08:40:03.9624|DEBUG|EDOKA| +2024-09-30 08:40:03.9790|DEBUG|EDOKA| +2024-09-30 08:40:03.9790|DEBUG|EDOKA| +2024-09-30 08:40:03.9790|DEBUG|EDOKA| +2024-09-30 08:40:04.0083|DEBUG|EDOKA| +2024-09-30 08:40:05.3650|DEBUG|EDOKA| +2024-09-30 08:40:07.2418|DEBUG|EDOKA| +2024-09-30 08:40:07.2594|DEBUG|EDOKA| +2024-09-30 08:40:07.2594|DEBUG|EDOKA| +2024-09-30 08:40:07.2933|DEBUG|EDOKA| +2024-09-30 08:40:07.2933|DEBUG|EDOKA| +2024-09-30 08:40:07.3058|DEBUG|EDOKA| +2024-09-30 08:40:07.3058|DEBUG|EDOKA| +2024-09-30 08:40:07.6834|DEBUG|EDOKA| +2024-09-30 08:40:07.7037|DEBUG|EDOKA| +2024-09-30 08:40:31.5450|DEBUG|EDOKA|Start +2024-09-30 08:40:31.6085|DEBUG|EDOKA| +2024-09-30 08:40:31.6085|DEBUG|EDOKA| +2024-09-30 08:40:31.6085|DEBUG|EDOKA| +2024-09-30 08:40:31.6239|DEBUG|EDOKA| +2024-09-30 08:40:31.6470|DEBUG|EDOKA| +2024-09-30 08:40:31.7155|DEBUG|EDOKA| +2024-09-30 08:40:31.7265|DEBUG|EDOKA|Start - Ende +2024-09-30 08:40:34.1542|DEBUG|EDOKA| +2024-09-30 08:40:35.7102|DEBUG|EDOKA| +2024-09-30 08:40:37.5134|DEBUG|EDOKA| +2024-09-30 08:40:37.5401|DEBUG|EDOKA| +2024-09-30 08:40:37.5714|DEBUG|EDOKA| +2024-09-30 08:40:37.6001|DEBUG|EDOKA| +2024-09-30 08:40:42.1504|DEBUG|EDOKA| +2024-09-30 08:40:42.1961|DEBUG|EDOKA| +2024-09-30 08:40:44.1510|DEBUG|EDOKA| +2024-09-30 08:40:44.1510|DEBUG|EDOKA| +2024-09-30 08:40:44.1668|DEBUG|EDOKA| +2024-09-30 08:40:44.1668|DEBUG|EDOKA| +2024-09-30 08:40:44.1668|DEBUG|EDOKA| +2024-09-30 08:40:44.2037|DEBUG|EDOKA| +2024-09-30 08:40:45.4712|DEBUG|EDOKA| +2024-09-30 08:40:47.7358|DEBUG|EDOKA| +2024-09-30 08:40:47.7623|DEBUG|EDOKA| +2024-09-30 08:40:47.7623|DEBUG|EDOKA| +2024-09-30 08:40:47.7838|DEBUG|EDOKA| +2024-09-30 08:40:47.7838|DEBUG|EDOKA| +2024-09-30 08:40:47.7934|DEBUG|EDOKA| +2024-09-30 08:40:47.7934|DEBUG|EDOKA| +2024-09-30 08:40:48.6749|DEBUG|EDOKA| +2024-09-30 08:41:07.2647|DEBUG|EDOKA| +2024-09-30 08:41:07.3010|DEBUG|EDOKA| +2024-09-30 08:41:10.1550|DEBUG|EDOKA| +2024-09-30 08:41:12.2015|DEBUG|EDOKA| +2024-09-30 08:41:12.2279|DEBUG|EDOKA| +2024-09-30 08:41:12.2524|DEBUG|EDOKA| +2024-09-30 08:41:12.2819|DEBUG|EDOKA| +2024-09-30 08:41:13.5445|DEBUG|EDOKA| +2024-09-30 08:41:13.5551|DEBUG|EDOKA| +2024-09-30 08:41:13.5551|DEBUG|EDOKA| +2024-09-30 08:41:13.5551|DEBUG|EDOKA| +2024-09-30 08:41:13.5551|DEBUG|EDOKA| +2024-09-30 08:41:13.5768|DEBUG|EDOKA| +2024-09-30 08:41:14.8928|DEBUG|EDOKA| +2024-09-30 08:41:17.1669|DEBUG|EDOKA| +2024-09-30 08:41:17.1925|DEBUG|EDOKA| +2024-09-30 08:41:17.1985|DEBUG|EDOKA| +2024-09-30 08:41:17.2289|DEBUG|EDOKA| +2024-09-30 08:41:17.2289|DEBUG|EDOKA| +2024-09-30 08:41:17.2453|DEBUG|EDOKA| +2024-09-30 08:41:17.2453|DEBUG|EDOKA| +2024-09-30 08:41:17.5923|DEBUG|EDOKA| +2024-09-30 08:41:36.8116|DEBUG|EDOKA|Start +2024-09-30 08:41:36.8747|DEBUG|EDOKA| +2024-09-30 08:41:36.8747|DEBUG|EDOKA| +2024-09-30 08:41:36.8747|DEBUG|EDOKA| +2024-09-30 08:41:36.8868|DEBUG|EDOKA| +2024-09-30 08:41:36.9043|DEBUG|EDOKA| +2024-09-30 08:41:36.9725|DEBUG|EDOKA| +2024-09-30 08:41:36.9825|DEBUG|EDOKA|Start - Ende +2024-09-30 08:41:39.6566|DEBUG|EDOKA| +2024-09-30 08:41:42.5551|DEBUG|EDOKA| +2024-09-30 08:41:42.5813|DEBUG|EDOKA| +2024-09-30 08:41:42.6126|DEBUG|EDOKA| +2024-09-30 08:41:42.6398|DEBUG|EDOKA| +2024-09-30 08:41:46.6327|DEBUG|EDOKA| +2024-09-30 08:41:46.6718|DEBUG|EDOKA| +2024-09-30 08:41:51.0654|DEBUG|EDOKA| +2024-09-30 08:41:51.1214|DEBUG|EDOKA| +2024-09-30 08:41:53.5855|DEBUG|EDOKA| +2024-09-30 08:41:53.5969|DEBUG|EDOKA| +2024-09-30 08:41:53.5969|DEBUG|EDOKA| +2024-09-30 08:41:53.6040|DEBUG|EDOKA| +2024-09-30 08:41:53.6040|DEBUG|EDOKA| +2024-09-30 08:41:53.6335|DEBUG|EDOKA| +2024-09-30 08:41:54.5885|DEBUG|EDOKA| +2024-09-30 08:41:56.5637|DEBUG|EDOKA| +2024-09-30 08:41:56.5832|DEBUG|EDOKA| +2024-09-30 08:41:56.5872|DEBUG|EDOKA| +2024-09-30 08:41:56.6082|DEBUG|EDOKA| +2024-09-30 08:41:56.6082|DEBUG|EDOKA| +2024-09-30 08:41:56.6082|DEBUG|EDOKA| +2024-09-30 08:41:56.6197|DEBUG|EDOKA| +2024-09-30 08:41:57.4873|DEBUG|EDOKA| +2024-09-30 08:42:15.0778|DEBUG|EDOKA|Start +2024-09-30 08:42:15.1408|DEBUG|EDOKA| +2024-09-30 08:42:15.1408|DEBUG|EDOKA| +2024-09-30 08:42:15.1408|DEBUG|EDOKA| +2024-09-30 08:42:15.1559|DEBUG|EDOKA| +2024-09-30 08:42:15.1759|DEBUG|EDOKA| +2024-09-30 08:42:15.2439|DEBUG|EDOKA| +2024-09-30 08:42:15.2439|DEBUG|EDOKA|Start - Ende +2024-09-30 08:42:17.5939|DEBUG|EDOKA| +2024-09-30 08:42:20.0490|DEBUG|EDOKA| +2024-09-30 08:42:20.0836|DEBUG|EDOKA| +2024-09-30 08:42:20.1216|DEBUG|EDOKA| +2024-09-30 08:42:20.1481|DEBUG|EDOKA| +2024-09-30 08:42:26.1036|DEBUG|EDOKA| +2024-09-30 08:42:26.1494|DEBUG|EDOKA| +2024-09-30 08:42:28.1875|DEBUG|EDOKA| +2024-09-30 08:42:28.1975|DEBUG|EDOKA| +2024-09-30 08:42:28.1975|DEBUG|EDOKA| +2024-09-30 08:42:28.1975|DEBUG|EDOKA| +2024-09-30 08:42:28.1975|DEBUG|EDOKA| +2024-09-30 08:42:28.2357|DEBUG|EDOKA| +2024-09-30 08:42:29.5398|DEBUG|EDOKA| +2024-09-30 08:42:32.0381|DEBUG|EDOKA| +2024-09-30 08:42:32.0679|DEBUG|EDOKA| +2024-09-30 08:42:32.0679|DEBUG|EDOKA| +2024-09-30 08:42:32.0964|DEBUG|EDOKA| +2024-09-30 08:42:32.0964|DEBUG|EDOKA| +2024-09-30 08:42:32.1143|DEBUG|EDOKA| +2024-09-30 08:42:32.1214|DEBUG|EDOKA| +2024-09-30 08:42:33.0178|DEBUG|EDOKA| +2024-09-30 08:42:53.5074|DEBUG|EDOKA| +2024-09-30 08:42:55.3239|DEBUG|EDOKA| +2024-09-30 08:42:55.3507|DEBUG|EDOKA| +2024-09-30 08:42:55.3713|DEBUG|EDOKA| +2024-09-30 08:42:55.3968|DEBUG|EDOKA| +2024-09-30 08:42:56.9736|DEBUG|EDOKA| +2024-09-30 08:42:56.9837|DEBUG|EDOKA| +2024-09-30 08:42:56.9837|DEBUG|EDOKA| +2024-09-30 08:42:56.9837|DEBUG|EDOKA| +2024-09-30 08:42:56.9938|DEBUG|EDOKA| +2024-09-30 08:42:57.0109|DEBUG|EDOKA| +2024-09-30 08:42:58.2773|DEBUG|EDOKA| +2024-09-30 08:43:00.3707|DEBUG|EDOKA| +2024-09-30 08:43:00.3707|DEBUG|EDOKA| +2024-09-30 08:43:00.3707|DEBUG|EDOKA| +2024-09-30 08:43:00.4017|DEBUG|EDOKA| +2024-09-30 08:43:00.4017|DEBUG|EDOKA| +2024-09-30 08:43:00.4017|DEBUG|EDOKA| +2024-09-30 08:43:00.4017|DEBUG|EDOKA| +2024-09-30 08:43:00.7717|DEBUG|EDOKA| +2024-09-30 08:43:13.0168|DEBUG|EDOKA| +2024-09-30 08:43:15.2493|DEBUG|EDOKA| +2024-09-30 08:43:19.9574|DEBUG|EDOKA| +2024-09-30 08:43:42.0177|DEBUG|EDOKA| +2024-09-30 08:43:45.0167|DEBUG|EDOKA| +2024-09-30 08:43:45.0419|DEBUG|EDOKA| +2024-09-30 08:43:45.0617|DEBUG|EDOKA| +2024-09-30 08:43:45.0865|DEBUG|EDOKA| +2024-09-30 08:43:46.7474|DEBUG|EDOKA| +2024-09-30 08:43:46.7474|DEBUG|EDOKA| +2024-09-30 08:43:46.7614|DEBUG|EDOKA| +2024-09-30 08:43:46.7614|DEBUG|EDOKA| +2024-09-30 08:43:46.7614|DEBUG|EDOKA| +2024-09-30 08:43:46.7829|DEBUG|EDOKA| +2024-09-30 08:43:49.3872|DEBUG|EDOKA| +2024-09-30 08:43:51.4337|DEBUG|EDOKA| +2024-09-30 08:43:51.4482|DEBUG|EDOKA| +2024-09-30 08:43:51.4482|DEBUG|EDOKA| +2024-09-30 08:43:51.4785|DEBUG|EDOKA| +2024-09-30 08:43:51.4785|DEBUG|EDOKA| +2024-09-30 08:43:51.4955|DEBUG|EDOKA| +2024-09-30 08:43:51.4955|DEBUG|EDOKA| +2024-09-30 08:43:51.8561|DEBUG|EDOKA| +2024-09-30 08:44:10.8302|DEBUG|EDOKA| +2024-09-30 08:44:12.7861|DEBUG|EDOKA| +2024-09-30 08:44:12.8154|DEBUG|EDOKA| +2024-09-30 08:44:12.8395|DEBUG|EDOKA| +2024-09-30 08:44:12.8679|DEBUG|EDOKA| +2024-09-30 08:44:14.2799|DEBUG|EDOKA| +2024-09-30 08:44:14.2896|DEBUG|EDOKA| +2024-09-30 08:44:14.2896|DEBUG|EDOKA| +2024-09-30 08:44:14.2896|DEBUG|EDOKA| +2024-09-30 08:44:14.2896|DEBUG|EDOKA| +2024-09-30 08:44:14.3182|DEBUG|EDOKA| +2024-09-30 08:44:15.2529|DEBUG|EDOKA| +2024-09-30 08:44:15.3837|DEBUG|EDOKA| +2024-09-30 08:44:18.5473|DEBUG|EDOKA| +2024-09-30 08:44:18.5693|DEBUG|EDOKA| +2024-09-30 08:44:18.5713|DEBUG|EDOKA| +2024-09-30 08:44:18.6030|DEBUG|EDOKA| +2024-09-30 08:44:18.6030|DEBUG|EDOKA| +2024-09-30 08:44:18.6175|DEBUG|EDOKA| +2024-09-30 08:44:18.6175|DEBUG|EDOKA| +2024-09-30 08:44:19.0124|DEBUG|EDOKA| +2024-09-30 08:44:46.8937|DEBUG|EDOKA| +2024-09-30 08:44:48.7444|DEBUG|EDOKA| +2024-09-30 08:44:48.7723|DEBUG|EDOKA| +2024-09-30 08:44:48.7913|DEBUG|EDOKA| +2024-09-30 08:44:48.8188|DEBUG|EDOKA| +2024-09-30 08:44:50.1157|DEBUG|EDOKA| +2024-09-30 08:44:50.1257|DEBUG|EDOKA| +2024-09-30 08:44:50.1257|DEBUG|EDOKA| +2024-09-30 08:44:50.1257|DEBUG|EDOKA| +2024-09-30 08:44:50.1257|DEBUG|EDOKA| +2024-09-30 08:44:50.1471|DEBUG|EDOKA| +2024-09-30 08:44:51.4140|DEBUG|EDOKA| +2024-09-30 08:44:53.4237|DEBUG|EDOKA| +2024-09-30 08:44:53.4392|DEBUG|EDOKA| +2024-09-30 08:44:53.4392|DEBUG|EDOKA| +2024-09-30 08:44:53.4673|DEBUG|EDOKA| +2024-09-30 08:44:53.4673|DEBUG|EDOKA| +2024-09-30 08:44:53.4673|DEBUG|EDOKA| +2024-09-30 08:44:53.4805|DEBUG|EDOKA| +2024-09-30 08:44:53.9273|DEBUG|EDOKA| +2024-09-30 08:45:05.7790|DEBUG|EDOKA| +2024-09-30 08:45:25.0789|DEBUG|EDOKA|Start +2024-09-30 08:45:25.1429|DEBUG|EDOKA| +2024-09-30 08:45:25.1484|DEBUG|EDOKA| +2024-09-30 08:45:25.1484|DEBUG|EDOKA| +2024-09-30 08:45:25.1484|DEBUG|EDOKA| +2024-09-30 08:45:25.1770|DEBUG|EDOKA| +2024-09-30 08:45:25.2431|DEBUG|EDOKA| +2024-09-30 08:45:25.2431|DEBUG|EDOKA|Start - Ende +2024-09-30 08:45:28.1176|DEBUG|EDOKA| +2024-09-30 08:45:29.9251|DEBUG|EDOKA| +2024-09-30 08:45:29.9515|DEBUG|EDOKA| +2024-09-30 08:45:29.9819|DEBUG|EDOKA| +2024-09-30 08:45:30.0094|DEBUG|EDOKA| +2024-09-30 08:45:33.9134|DEBUG|EDOKA| +2024-09-30 08:45:33.9566|DEBUG|EDOKA| +2024-09-30 08:45:35.5503|DEBUG|EDOKA| +2024-09-30 08:45:35.5613|DEBUG|EDOKA| +2024-09-30 08:45:35.5613|DEBUG|EDOKA| +2024-09-30 08:45:35.5613|DEBUG|EDOKA| +2024-09-30 08:45:35.5613|DEBUG|EDOKA| +2024-09-30 08:45:35.5907|DEBUG|EDOKA| +2024-09-30 08:45:36.7484|DEBUG|EDOKA| +2024-09-30 08:45:38.6235|DEBUG|EDOKA| +2024-09-30 08:45:38.6426|DEBUG|EDOKA| +2024-09-30 08:45:38.6426|DEBUG|EDOKA| +2024-09-30 08:45:38.6651|DEBUG|EDOKA| +2024-09-30 08:45:38.6651|DEBUG|EDOKA| +2024-09-30 08:45:38.6651|DEBUG|EDOKA| +2024-09-30 08:45:38.6651|DEBUG|EDOKA| +2024-09-30 08:45:39.5521|DEBUG|EDOKA| +2024-09-30 08:46:45.0923|DEBUG|EDOKA|Start +2024-09-30 08:46:45.1563|DEBUG|EDOKA| +2024-09-30 08:46:45.1563|DEBUG|EDOKA| +2024-09-30 08:46:45.1563|DEBUG|EDOKA| +2024-09-30 08:46:45.1683|DEBUG|EDOKA| +2024-09-30 08:46:45.1844|DEBUG|EDOKA| +2024-09-30 08:46:45.2491|DEBUG|EDOKA| +2024-09-30 08:46:45.2491|DEBUG|EDOKA|Start - Ende +2024-09-30 08:49:16.8874|DEBUG|EDOKA|Start +2024-09-30 08:49:16.9524|DEBUG|EDOKA| +2024-09-30 08:49:16.9524|DEBUG|EDOKA| +2024-09-30 08:49:16.9524|DEBUG|EDOKA| +2024-09-30 08:49:16.9659|DEBUG|EDOKA| +2024-09-30 08:49:16.9869|DEBUG|EDOKA| +2024-09-30 08:49:17.0510|DEBUG|EDOKA| +2024-09-30 08:49:17.0510|DEBUG|EDOKA|Start - Ende +2024-09-30 08:49:19.4735|DEBUG|EDOKA| +2024-09-30 08:49:23.6745|DEBUG|EDOKA| +2024-09-30 08:49:23.6821|DEBUG|EDOKA| +2024-09-30 08:49:23.6821|DEBUG|EDOKA| +2024-09-30 08:49:23.6821|DEBUG|EDOKA| +2024-09-30 08:49:23.7160|DEBUG|EDOKA| +2024-09-30 08:49:23.8490|DEBUG|EDOKA| +2024-09-30 08:49:23.8935|DEBUG|EDOKA| +2024-09-30 08:49:24.0223|DEBUG|EDOKA| +2024-09-30 08:49:24.0338|DEBUG|EDOKA| +2024-09-30 08:49:24.0468|DEBUG|EDOKA| +2024-09-30 08:49:24.0468|DEBUG|EDOKA| +2024-09-30 08:49:24.0759|DEBUG|EDOKA| +2024-09-30 08:49:24.1265|DEBUG|EDOKA| +2024-09-30 08:49:24.1616|DEBUG|EDOKA| +2024-09-30 08:50:50.5276|DEBUG|EDOKA|Start +2024-09-30 08:50:50.5897|DEBUG|EDOKA| +2024-09-30 08:50:50.5897|DEBUG|EDOKA| +2024-09-30 08:50:50.5897|DEBUG|EDOKA| +2024-09-30 08:50:50.6059|DEBUG|EDOKA| +2024-09-30 08:50:50.6245|DEBUG|EDOKA| +2024-09-30 08:50:50.6898|DEBUG|EDOKA| +2024-09-30 08:50:50.6898|DEBUG|EDOKA|Start - Ende +2024-09-30 08:50:58.5687|DEBUG|EDOKA| +2024-09-30 08:51:00.0432|DEBUG|EDOKA| +2024-09-30 08:51:00.0547|DEBUG|EDOKA| +2024-09-30 08:51:00.0547|DEBUG|EDOKA| +2024-09-30 08:51:00.0547|DEBUG|EDOKA| +2024-09-30 08:51:00.0983|DEBUG|EDOKA| +2024-09-30 08:51:00.1291|DEBUG|EDOKA| +2024-09-30 08:51:00.1371|DEBUG|EDOKA| +2024-09-30 08:51:00.1742|DEBUG|EDOKA| +2024-09-30 08:51:00.1742|DEBUG|EDOKA| +2024-09-30 08:51:00.1910|DEBUG|EDOKA| +2024-09-30 08:51:00.1910|DEBUG|EDOKA| +2024-09-30 08:51:00.2141|DEBUG|EDOKA| +2024-09-30 08:51:00.2330|DEBUG|EDOKA| +2024-09-30 08:51:00.2455|DEBUG|EDOKA| +2024-09-30 08:51:14.1303|DEBUG|EDOKA| +2024-09-30 08:51:14.1353|DEBUG|EDOKA| +2024-09-30 08:51:14.1638|DEBUG|EDOKA| +2024-09-30 08:51:50.6915|DEBUG|EDOKA| +2024-09-30 08:52:55.3807|DEBUG|EDOKA|Start +2024-09-30 08:52:55.4423|DEBUG|EDOKA| +2024-09-30 08:52:55.4463|DEBUG|EDOKA| +2024-09-30 08:52:55.4463|DEBUG|EDOKA| +2024-09-30 08:52:55.4463|DEBUG|EDOKA| +2024-09-30 08:52:55.4730|DEBUG|EDOKA| +2024-09-30 08:52:55.5419|DEBUG|EDOKA| +2024-09-30 08:52:55.5419|DEBUG|EDOKA|Start - Ende +2024-09-30 08:53:55.5432|DEBUG|EDOKA| +2024-09-30 08:54:38.1504|DEBUG|EDOKA|Start +2024-09-30 08:54:38.2143|DEBUG|EDOKA| +2024-09-30 08:54:38.2143|DEBUG|EDOKA| +2024-09-30 08:54:38.2143|DEBUG|EDOKA| +2024-09-30 08:54:38.2143|DEBUG|EDOKA| +2024-09-30 08:54:38.2424|DEBUG|EDOKA| +2024-09-30 08:54:38.3090|DEBUG|EDOKA| +2024-09-30 08:54:38.3090|DEBUG|EDOKA|Start - Ende +2024-09-30 08:54:40.9592|DEBUG|EDOKA| +2024-09-30 08:55:10.4812|DEBUG|EDOKA|Start +2024-09-30 08:55:10.5450|DEBUG|EDOKA| +2024-09-30 08:55:10.5450|DEBUG|EDOKA| +2024-09-30 08:55:10.5450|DEBUG|EDOKA| +2024-09-30 08:55:10.5589|DEBUG|EDOKA| +2024-09-30 08:55:10.5804|DEBUG|EDOKA| +2024-09-30 08:55:10.6557|DEBUG|EDOKA| +2024-09-30 08:55:10.6658|DEBUG|EDOKA|Start - Ende +2024-09-30 08:55:13.4155|DEBUG|EDOKA| +2024-09-30 08:55:17.2438|DEBUG|EDOKA| +2024-09-30 08:55:17.2880|DEBUG|EDOKA| +2024-09-30 08:55:17.2948|DEBUG|EDOKA| +2024-09-30 08:55:17.2948|DEBUG|EDOKA| +2024-09-30 08:55:17.3292|DEBUG|EDOKA| +2024-09-30 08:55:17.3594|DEBUG|EDOKA| +2024-09-30 08:55:17.3794|DEBUG|EDOKA| +2024-09-30 08:55:17.4129|DEBUG|EDOKA| +2024-09-30 08:55:17.4179|DEBUG|EDOKA| +2024-09-30 08:55:17.4362|DEBUG|EDOKA| +2024-09-30 08:55:17.4362|DEBUG|EDOKA| +2024-09-30 08:55:17.4546|DEBUG|EDOKA| +2024-09-30 08:55:17.4768|DEBUG|EDOKA| +2024-09-30 08:55:17.4768|DEBUG|EDOKA| +2024-09-30 08:55:53.0397|DEBUG|EDOKA| +2024-09-30 08:55:53.9860|DEBUG|EDOKA| +2024-09-30 08:55:54.0137|DEBUG|EDOKA| +2024-09-30 08:56:43.5686|DEBUG|EDOKA| +2024-09-30 08:56:51.0925|DEBUG|EDOKA| +2024-09-30 08:56:51.0925|DEBUG|EDOKA| +2024-09-30 08:56:51.1151|DEBUG|EDOKA| +2024-09-30 08:58:24.7197|DEBUG|EDOKA| +2024-09-30 08:59:10.6626|DEBUG|EDOKA| +2024-09-30 09:00:27.1327|DEBUG|EDOKA| +2024-09-30 09:02:09.3160|DEBUG|EDOKA|Start +2024-09-30 09:02:09.3801|DEBUG|EDOKA| +2024-09-30 09:02:09.3851|DEBUG|EDOKA| +2024-09-30 09:02:09.3851|DEBUG|EDOKA| +2024-09-30 09:02:09.3851|DEBUG|EDOKA| +2024-09-30 09:02:09.4135|DEBUG|EDOKA| +2024-09-30 09:02:09.4806|DEBUG|EDOKA| +2024-09-30 09:02:09.4806|DEBUG|EDOKA|Start - Ende +2024-09-30 09:02:13.1027|DEBUG|EDOKA| +2024-09-30 09:02:14.8089|DEBUG|EDOKA| +2024-09-30 09:02:14.8227|DEBUG|EDOKA| +2024-09-30 09:02:14.8227|DEBUG|EDOKA| +2024-09-30 09:02:14.8227|DEBUG|EDOKA| +2024-09-30 09:02:14.8646|DEBUG|EDOKA| +2024-09-30 09:02:14.8947|DEBUG|EDOKA| +2024-09-30 09:02:14.9107|DEBUG|EDOKA| +2024-09-30 09:02:14.9382|DEBUG|EDOKA| +2024-09-30 09:02:14.9382|DEBUG|EDOKA| +2024-09-30 09:02:14.9575|DEBUG|EDOKA| +2024-09-30 09:02:14.9575|DEBUG|EDOKA| +2024-09-30 09:02:14.9760|DEBUG|EDOKA| +2024-09-30 09:02:15.0047|DEBUG|EDOKA| +2024-09-30 09:02:15.0168|DEBUG|EDOKA| +2024-09-30 09:03:09.4844|DEBUG|EDOKA| +2024-09-30 09:04:09.4905|DEBUG|EDOKA| +2024-09-30 09:04:37.5993|DEBUG|EDOKA| +2024-09-30 09:04:43.8212|DEBUG|EDOKA| +2024-09-30 09:04:43.9068|DEBUG|EDOKA| +2024-09-30 09:04:51.8497|DEBUG|EDOKA| +2024-09-30 09:04:51.8621|DEBUG|EDOKA| +2024-09-30 09:04:51.9191|DEBUG|EDOKA| +2024-09-30 09:05:09.4842|DEBUG|EDOKA| +2024-09-30 09:06:09.4887|DEBUG|EDOKA| +2024-09-30 09:07:09.4888|DEBUG|EDOKA| +2024-09-30 09:07:41.2509|DEBUG|EDOKA| +2024-09-30 09:07:42.7064|DEBUG|EDOKA| +2024-09-30 09:07:42.7185|DEBUG|EDOKA| +2024-09-30 09:07:42.7185|DEBUG|EDOKA| +2024-09-30 09:07:42.7185|DEBUG|EDOKA| +2024-09-30 09:07:42.7406|DEBUG|EDOKA| +2024-09-30 09:07:42.7623|DEBUG|EDOKA| +2024-09-30 09:07:42.7623|DEBUG|EDOKA| +2024-09-30 09:07:42.8102|DEBUG|EDOKA| +2024-09-30 09:07:42.8102|DEBUG|EDOKA| +2024-09-30 09:07:42.8292|DEBUG|EDOKA| +2024-09-30 09:07:42.8292|DEBUG|EDOKA| +2024-09-30 09:07:42.8461|DEBUG|EDOKA| +2024-09-30 09:07:42.8658|DEBUG|EDOKA| +2024-09-30 09:07:42.8698|DEBUG|EDOKA| +2024-09-30 09:07:45.9903|DEBUG|EDOKA| +2024-09-30 09:07:45.9943|DEBUG|EDOKA| +2024-09-30 09:07:46.0258|DEBUG|EDOKA| +2024-09-30 09:08:09.4839|DEBUG|EDOKA| +2024-09-30 09:08:56.3505|DEBUG|EDOKA| +2024-09-30 09:08:58.3927|DEBUG|EDOKA| +2024-09-30 09:08:58.4078|DEBUG|EDOKA| +2024-09-30 09:08:58.4078|DEBUG|EDOKA| +2024-09-30 09:08:58.4158|DEBUG|EDOKA| +2024-09-30 09:08:58.4323|DEBUG|EDOKA| +2024-09-30 09:08:58.4554|DEBUG|EDOKA| +2024-09-30 09:08:58.4655|DEBUG|EDOKA| +2024-09-30 09:08:58.4964|DEBUG|EDOKA| +2024-09-30 09:08:58.4964|DEBUG|EDOKA| +2024-09-30 09:08:58.5154|DEBUG|EDOKA| +2024-09-30 09:08:58.5154|DEBUG|EDOKA| +2024-09-30 09:08:58.5329|DEBUG|EDOKA| +2024-09-30 09:08:58.5535|DEBUG|EDOKA| +2024-09-30 09:08:58.5575|DEBUG|EDOKA| +2024-09-30 09:09:00.2671|DEBUG|EDOKA| +2024-09-30 09:09:00.2827|DEBUG|EDOKA| +2024-09-30 09:09:00.2967|DEBUG|EDOKA| +2024-09-30 09:09:00.2967|DEBUG|EDOKA| +2024-09-30 09:09:00.3132|DEBUG|EDOKA| +2024-09-30 09:09:00.3335|DEBUG|EDOKA| +2024-09-30 09:09:00.3375|DEBUG|EDOKA| +2024-09-30 09:09:06.3637|DEBUG|EDOKA| +2024-09-30 09:09:06.3677|DEBUG|EDOKA| +2024-09-30 09:09:06.4040|DEBUG|EDOKA| +2024-09-30 09:09:09.4805|DEBUG|EDOKA| +2024-09-30 09:09:10.3893|DEBUG|EDOKA| +2024-09-30 09:09:10.3893|DEBUG|EDOKA| +2024-09-30 09:09:10.4272|DEBUG|EDOKA| +2024-09-30 09:10:09.4889|DEBUG|EDOKA| +2024-09-30 09:11:09.4866|DEBUG|EDOKA| +2024-09-30 09:12:09.4934|DEBUG|EDOKA| +2024-09-30 09:13:09.4860|DEBUG|EDOKA| +2024-09-30 09:14:09.4829|DEBUG|EDOKA| +2024-09-30 09:15:09.4810|DEBUG|EDOKA| +2024-09-30 09:16:09.4806|DEBUG|EDOKA| +2024-09-30 09:17:09.4798|DEBUG|EDOKA| +2024-09-30 09:18:09.4806|DEBUG|EDOKA| +2024-09-30 09:19:09.4809|DEBUG|EDOKA| +2024-09-30 09:20:09.4931|DEBUG|EDOKA| +2024-09-30 09:21:09.4900|DEBUG|EDOKA| +2024-09-30 09:22:09.4826|DEBUG|EDOKA| +2024-09-30 09:23:09.4830|DEBUG|EDOKA| +2024-09-30 09:24:09.4808|DEBUG|EDOKA| +2024-09-30 09:25:09.4855|DEBUG|EDOKA| +2024-09-30 09:26:09.4906|DEBUG|EDOKA| +2024-09-30 09:27:09.4800|DEBUG|EDOKA| +2024-09-30 09:28:09.4929|DEBUG|EDOKA| +2024-09-30 09:29:09.4919|DEBUG|EDOKA| +2024-09-30 09:30:09.4857|DEBUG|EDOKA| +2024-09-30 09:31:09.4795|DEBUG|EDOKA| +2024-09-30 09:32:09.4846|DEBUG|EDOKA| +2024-09-30 09:33:09.4825|DEBUG|EDOKA| +2024-09-30 09:34:09.4939|DEBUG|EDOKA| +2024-09-30 09:35:03.1405|DEBUG|EDOKA| +2024-09-30 09:35:09.4807|DEBUG|EDOKA| +2024-09-30 09:35:15.7164|DEBUG|EDOKA| +2024-09-30 09:35:16.3666|DEBUG|EDOKA| +2024-09-30 09:35:28.3263|DEBUG|EDOKA| +2024-09-30 09:35:32.8928|DEBUG|EDOKA| +2024-09-30 09:49:24.2801|DEBUG|EDOKA|Start +2024-09-30 09:49:24.3493|DEBUG|EDOKA| +2024-09-30 09:49:24.3493|DEBUG|EDOKA| +2024-09-30 09:49:24.3533|DEBUG|EDOKA| +2024-09-30 09:49:24.3533|DEBUG|EDOKA| +2024-09-30 09:49:24.3798|DEBUG|EDOKA| +2024-09-30 09:49:24.4399|DEBUG|EDOKA| +2024-09-30 09:49:24.4399|DEBUG|EDOKA|Start - Ende +2024-09-30 09:50:24.4366|DEBUG|EDOKA| +2024-09-30 09:51:24.4412|DEBUG|EDOKA| +2024-09-30 09:52:24.4399|DEBUG|EDOKA| +2024-09-30 09:53:24.4299|DEBUG|EDOKA| +2024-09-30 09:54:24.4467|DEBUG|EDOKA| +2024-09-30 09:55:06.4595|DEBUG|EDOKA| +2024-09-30 09:55:06.4966|DEBUG|EDOKA| +2024-09-30 09:55:08.5622|DEBUG|EDOKA| +2024-09-30 09:55:11.6480|DEBUG|EDOKA| +2024-09-30 09:55:11.7002|DEBUG|EDOKA| +2024-09-30 09:55:11.7235|DEBUG|EDOKA| +2024-09-30 09:55:11.7562|DEBUG|EDOKA| +2024-09-30 09:55:17.0613|DEBUG|EDOKA| +2024-09-30 09:55:17.1205|DEBUG|EDOKA| +2024-09-30 09:55:18.4000|DEBUG|EDOKA| +2024-09-30 09:55:18.4000|DEBUG|EDOKA| +2024-09-30 09:55:18.4000|DEBUG|EDOKA| +2024-09-30 09:55:18.4148|DEBUG|EDOKA| +2024-09-30 09:55:18.4465|DEBUG|EDOKA| +2024-09-30 09:55:18.4706|DEBUG|EDOKA| +2024-09-30 09:55:20.2672|DEBUG|EDOKA| +2024-09-30 09:55:43.4618|DEBUG|EDOKA|Start +2024-09-30 09:55:43.4979|DEBUG|EDOKA| +2024-09-30 09:55:43.4979|DEBUG|EDOKA| +2024-09-30 09:55:43.4979|DEBUG|EDOKA| +2024-09-30 09:55:43.5109|DEBUG|EDOKA| +2024-09-30 09:55:43.5285|DEBUG|EDOKA| +2024-09-30 09:55:43.5901|DEBUG|EDOKA| +2024-09-30 09:55:43.5901|DEBUG|EDOKA|Start - Ende +2024-09-30 09:55:47.5027|DEBUG|EDOKA| +2024-09-30 09:55:47.5376|DEBUG|EDOKA| +2024-09-30 09:55:52.2242|DEBUG|EDOKA| +2024-09-30 09:55:52.2604|DEBUG|EDOKA| +2024-09-30 09:55:55.5873|DEBUG|EDOKA| +2024-09-30 09:55:55.6401|DEBUG|EDOKA| +2024-09-30 09:55:55.6677|DEBUG|EDOKA| +2024-09-30 09:55:55.6999|DEBUG|EDOKA| +2024-09-30 09:55:59.1352|DEBUG|EDOKA| +2024-09-30 09:55:59.1986|DEBUG|EDOKA| +2024-09-30 09:56:01.5386|DEBUG|EDOKA| +2024-09-30 09:56:01.5490|DEBUG|EDOKA| +2024-09-30 09:56:01.5490|DEBUG|EDOKA| +2024-09-30 09:56:01.5490|DEBUG|EDOKA| +2024-09-30 09:56:01.5801|DEBUG|EDOKA| +2024-09-30 09:56:01.6038|DEBUG|EDOKA| +2024-09-30 09:56:04.1219|DEBUG|EDOKA| +2024-09-30 09:56:04.1584|DEBUG|EDOKA| +2024-09-30 09:56:04.1584|DEBUG|EDOKA| +2024-09-30 09:56:04.1739|DEBUG|EDOKA| +2024-09-30 09:56:04.1803|DEBUG|EDOKA| +2024-09-30 09:56:05.1185|DEBUG|EDOKA| +2024-09-30 09:56:05.1337|DEBUG|EDOKA| +2024-09-30 09:56:16.3507|DEBUG|EDOKA| +2024-09-30 09:56:19.5847|DEBUG|EDOKA| +2024-09-30 09:56:22.9059|DEBUG|EDOKA| +2024-09-30 09:56:22.9479|DEBUG|EDOKA| +2024-09-30 09:56:22.9479|DEBUG|EDOKA| +2024-09-30 09:56:22.9479|DEBUG|EDOKA| +2024-09-30 09:56:22.9675|DEBUG|EDOKA| +2024-09-30 09:56:22.9969|DEBUG|EDOKA| +2024-09-30 09:56:22.9969|DEBUG|EDOKA| +2024-09-30 09:56:23.0159|DEBUG|EDOKA| +2024-09-30 09:56:23.0159|DEBUG|EDOKA| +2024-09-30 09:56:23.0320|DEBUG|EDOKA| +2024-09-30 09:56:23.0320|DEBUG|EDOKA| +2024-09-30 09:56:23.0422|DEBUG|EDOKA| +2024-09-30 09:56:23.0730|DEBUG|EDOKA| +2024-09-30 09:56:23.0730|DEBUG|EDOKA| +2024-09-30 09:56:38.0171|DEBUG|EDOKA| +2024-09-30 09:56:38.0531|DEBUG|EDOKA| +2024-09-30 09:56:40.7840|DEBUG|EDOKA| +2024-09-30 09:56:40.7937|DEBUG|EDOKA| +2024-09-30 09:56:43.5954|DEBUG|EDOKA| +2024-09-30 09:56:50.4826|DEBUG|EDOKA| +2024-09-30 09:56:50.5187|DEBUG|EDOKA| +2024-09-30 09:56:53.8605|DEBUG|EDOKA| +2024-09-30 09:56:53.8968|DEBUG|EDOKA| +2024-09-30 09:56:56.8168|DEBUG|EDOKA| +2024-09-30 09:56:56.8403|DEBUG|EDOKA| +2024-09-30 09:56:56.8403|DEBUG|EDOKA| +2024-09-30 09:56:56.8794|DEBUG|EDOKA| +2024-09-30 09:56:58.1686|DEBUG|EDOKA| +2024-09-30 09:56:58.1802|DEBUG|EDOKA| +2024-09-30 09:56:58.1802|DEBUG|EDOKA| +2024-09-30 09:56:58.1802|DEBUG|EDOKA| +2024-09-30 09:56:58.1802|DEBUG|EDOKA| +2024-09-30 09:56:58.2038|DEBUG|EDOKA| +2024-09-30 09:56:59.7036|DEBUG|EDOKA| +2024-09-30 09:56:59.7462|DEBUG|EDOKA| +2024-09-30 09:56:59.7462|DEBUG|EDOKA| +2024-09-30 09:56:59.7602|DEBUG|EDOKA| +2024-09-30 09:56:59.7602|DEBUG|EDOKA| +2024-09-30 09:57:00.0806|DEBUG|EDOKA| +2024-09-30 09:57:18.9523|DEBUG|EDOKA| +2024-09-30 09:57:18.9887|DEBUG|EDOKA| +2024-09-30 09:57:27.9828|DEBUG|EDOKA| +2024-09-30 09:57:27.9925|DEBUG|EDOKA| +2024-09-30 09:57:31.3202|DEBUG|EDOKA| +2024-09-30 09:57:31.3570|DEBUG|EDOKA| +2024-09-30 09:57:34.2004|DEBUG|EDOKA| +2024-09-30 09:57:34.2214|DEBUG|EDOKA| +2024-09-30 09:57:34.2306|DEBUG|EDOKA| +2024-09-30 09:57:34.2604|DEBUG|EDOKA| +2024-09-30 09:57:37.6547|DEBUG|EDOKA| +2024-09-30 09:57:37.6922|DEBUG|EDOKA| +2024-09-30 09:57:37.6972|DEBUG|EDOKA| +2024-09-30 09:57:37.6972|DEBUG|EDOKA| +2024-09-30 09:57:37.6972|DEBUG|EDOKA| +2024-09-30 09:57:37.7147|DEBUG|EDOKA| +2024-09-30 09:57:39.1176|DEBUG|EDOKA| +2024-09-30 09:57:39.1515|DEBUG|EDOKA| +2024-09-30 09:57:39.1515|DEBUG|EDOKA| +2024-09-30 09:57:39.1667|DEBUG|EDOKA| +2024-09-30 09:57:39.1667|DEBUG|EDOKA| +2024-09-30 09:57:39.5059|DEBUG|EDOKA| +2024-09-30 09:57:43.5876|DEBUG|EDOKA| +2024-09-30 09:57:57.3749|DEBUG|EDOKA| +2024-09-30 09:57:57.3849|DEBUG|EDOKA| +2024-09-30 09:58:00.4126|DEBUG|EDOKA| +2024-09-30 09:58:00.4232|DEBUG|EDOKA| +2024-09-30 09:58:03.0983|DEBUG|EDOKA| +2024-09-30 09:58:03.1223|DEBUG|EDOKA| +2024-09-30 09:58:03.1223|DEBUG|EDOKA| +2024-09-30 09:58:03.1627|DEBUG|EDOKA| +2024-09-30 09:58:06.3513|DEBUG|EDOKA| +2024-09-30 09:58:06.3891|DEBUG|EDOKA| +2024-09-30 09:58:06.3891|DEBUG|EDOKA| +2024-09-30 09:58:06.3891|DEBUG|EDOKA| +2024-09-30 09:58:06.4016|DEBUG|EDOKA| +2024-09-30 09:58:06.4016|DEBUG|EDOKA| +2024-09-30 09:58:07.8334|DEBUG|EDOKA| +2024-09-30 09:58:07.8614|DEBUG|EDOKA| +2024-09-30 09:58:07.8614|DEBUG|EDOKA| +2024-09-30 09:58:07.8710|DEBUG|EDOKA| +2024-09-30 09:58:07.8710|DEBUG|EDOKA| +2024-09-30 09:58:08.2468|DEBUG|EDOKA| +2024-09-30 09:59:22.1463|DEBUG|EDOKA|Start +2024-09-30 09:59:22.2095|DEBUG|EDOKA| +2024-09-30 09:59:22.2159|DEBUG|EDOKA| +2024-09-30 09:59:22.2159|DEBUG|EDOKA| +2024-09-30 09:59:22.2270|DEBUG|EDOKA| +2024-09-30 09:59:22.2476|DEBUG|EDOKA| +2024-09-30 09:59:22.3106|DEBUG|EDOKA| +2024-09-30 09:59:22.3106|DEBUG|EDOKA|Start - Ende +2024-09-30 09:59:24.1744|DEBUG|EDOKA| +2024-09-30 09:59:24.2160|DEBUG|EDOKA| +2024-09-30 09:59:24.2160|DEBUG|EDOKA| +2024-09-30 09:59:26.9168|DEBUG|EDOKA| +2024-09-30 09:59:27.3366|DEBUG|EDOKA| +2024-09-30 09:59:34.4310|DEBUG|EDOKA| +2024-09-30 09:59:34.4310|DEBUG|EDOKA| +2024-09-30 09:59:34.4310|DEBUG|EDOKA| +2024-09-30 09:59:36.0291|DEBUG|EDOKA| +2024-09-30 09:59:39.8728|DEBUG|EDOKA| +2024-09-30 09:59:39.9314|DEBUG|EDOKA| +2024-09-30 09:59:39.9314|DEBUG|EDOKA| +2024-09-30 09:59:47.8442|DEBUG|EDOKA| +2024-09-30 09:59:54.8296|DEBUG|EDOKA|Start +2024-09-30 09:59:54.8926|DEBUG|EDOKA| +2024-09-30 09:59:54.8926|DEBUG|EDOKA| +2024-09-30 09:59:54.8926|DEBUG|EDOKA| +2024-09-30 09:59:54.9036|DEBUG|EDOKA| +2024-09-30 09:59:54.9226|DEBUG|EDOKA| +2024-09-30 09:59:54.9884|DEBUG|EDOKA| +2024-09-30 09:59:54.9936|DEBUG|EDOKA|Start - Ende +2024-09-30 09:59:58.1561|DEBUG|EDOKA| +2024-09-30 10:00:04.5968|DEBUG|EDOKA| +2024-09-30 10:00:27.1240|DEBUG|EDOKA| +2024-09-30 10:00:29.8881|DEBUG|EDOKA| +2024-09-30 10:00:54.9824|DEBUG|EDOKA| +2024-09-30 10:01:54.9820|DEBUG|EDOKA| +2024-09-30 10:02:54.9886|DEBUG|EDOKA| +2024-09-30 10:03:54.9812|DEBUG|EDOKA| +2024-09-30 10:04:45.9336|DEBUG|EDOKA| +2024-09-30 10:04:45.9696|DEBUG|EDOKA| +2024-09-30 10:04:50.8124|DEBUG|EDOKA| +2024-09-30 10:04:50.8487|DEBUG|EDOKA| +2024-09-30 10:04:54.9849|DEBUG|EDOKA| +2024-09-30 10:04:55.9534|DEBUG|EDOKA| +2024-09-30 10:04:55.9813|DEBUG|EDOKA| +2024-09-30 10:04:56.0041|DEBUG|EDOKA| +2024-09-30 10:04:56.0345|DEBUG|EDOKA| +2024-09-30 10:04:59.4176|DEBUG|EDOKA| +2024-09-30 10:04:59.4576|DEBUG|EDOKA| +2024-09-30 10:05:04.0786|DEBUG|EDOKA| +2024-09-30 10:05:04.1236|DEBUG|EDOKA| +2024-09-30 10:05:06.1940|DEBUG|EDOKA| +2024-09-30 10:05:06.2040|DEBUG|EDOKA| +2024-09-30 10:05:06.2141|DEBUG|EDOKA| +2024-09-30 10:05:06.2141|DEBUG|EDOKA| +2024-09-30 10:05:06.2141|DEBUG|EDOKA| +2024-09-30 10:05:06.2448|DEBUG|EDOKA| +2024-09-30 10:05:07.7628|DEBUG|EDOKA| +2024-09-30 10:05:10.4369|DEBUG|EDOKA| +2024-09-30 10:05:10.4770|DEBUG|EDOKA| +2024-09-30 10:05:10.4770|DEBUG|EDOKA| +2024-09-30 10:05:10.5105|DEBUG|EDOKA| +2024-09-30 10:05:10.5105|DEBUG|EDOKA| +2024-09-30 10:05:10.5270|DEBUG|EDOKA| +2024-09-30 10:05:10.5270|DEBUG|EDOKA| +2024-09-30 10:05:11.5542|DEBUG|EDOKA| +2024-09-30 10:05:17.1142|DEBUG|EDOKA| +2024-09-30 10:05:54.9781|DEBUG|EDOKA| +2024-09-30 10:06:54.9850|DEBUG|EDOKA| +2024-09-30 10:07:54.9832|DEBUG|EDOKA| +2024-09-30 10:08:54.9788|DEBUG|EDOKA| +2024-09-30 10:09:55.3436|DEBUG|EDOKA|Start +2024-09-30 10:09:55.4057|DEBUG|EDOKA| +2024-09-30 10:09:55.4057|DEBUG|EDOKA| +2024-09-30 10:09:55.4057|DEBUG|EDOKA| +2024-09-30 10:09:55.4160|DEBUG|EDOKA| +2024-09-30 10:09:55.4321|DEBUG|EDOKA| +2024-09-30 10:09:55.4986|DEBUG|EDOKA| +2024-09-30 10:09:55.4986|DEBUG|EDOKA|Start - Ende +2024-09-30 10:10:25.3167|DEBUG|EDOKA| +2024-09-30 10:10:31.6479|DEBUG|EDOKA| +2024-09-30 10:10:33.8223|DEBUG|EDOKA| +2024-09-30 10:10:33.8223|DEBUG|EDOKA| +2024-09-30 10:10:33.8396|DEBUG|EDOKA| +2024-09-30 10:10:33.8396|DEBUG|EDOKA| +2024-09-30 10:10:33.8697|DEBUG|EDOKA| +2024-09-30 10:10:33.8951|DEBUG|EDOKA| +2024-09-30 10:10:33.9021|DEBUG|EDOKA| +2024-09-30 10:10:33.9356|DEBUG|EDOKA| +2024-09-30 10:10:33.9356|DEBUG|EDOKA| +2024-09-30 10:10:33.9634|DEBUG|EDOKA| +2024-09-30 10:10:33.9634|DEBUG|EDOKA| +2024-09-30 10:10:33.9634|DEBUG|EDOKA| +2024-09-30 10:10:33.9634|DEBUG|EDOKA| +2024-09-30 10:10:33.9830|DEBUG|EDOKA| +2024-09-30 10:10:55.5005|DEBUG|EDOKA| +2024-09-30 10:11:55.5076|DEBUG|EDOKA| +2024-09-30 10:12:42.0866|DEBUG|EDOKA| +2024-09-30 10:12:42.0866|DEBUG|EDOKA| +2024-09-30 10:12:45.4693|DEBUG|EDOKA| +2024-09-30 10:12:48.0687|DEBUG|EDOKA| +2024-09-30 10:12:48.0961|DEBUG|EDOKA| +2024-09-30 10:12:48.1069|DEBUG|EDOKA| +2024-09-30 10:12:48.1386|DEBUG|EDOKA| +2024-09-30 10:12:51.1029|DEBUG|EDOKA| +2024-09-30 10:12:51.1205|DEBUG|EDOKA| +2024-09-30 10:12:54.4710|DEBUG|EDOKA| +2024-09-30 10:12:54.5081|DEBUG|EDOKA| +2024-09-30 10:12:54.5081|DEBUG|EDOKA| +2024-09-30 10:12:54.5081|DEBUG|EDOKA| +2024-09-30 10:12:54.5081|DEBUG|EDOKA| +2024-09-30 10:12:54.5351|DEBUG|EDOKA| +2024-09-30 10:12:55.4978|DEBUG|EDOKA| +2024-09-30 10:12:55.9681|DEBUG|EDOKA| +2024-09-30 10:12:59.3059|DEBUG|EDOKA| +2024-09-30 10:12:59.3299|DEBUG|EDOKA| +2024-09-30 10:12:59.3299|DEBUG|EDOKA| +2024-09-30 10:12:59.3526|DEBUG|EDOKA| +2024-09-30 10:12:59.3526|DEBUG|EDOKA| +2024-09-30 10:12:59.3526|DEBUG|EDOKA| +2024-09-30 10:12:59.3526|DEBUG|EDOKA| +2024-09-30 10:13:00.2529|DEBUG|EDOKA| +2024-09-30 10:13:55.5026|DEBUG|EDOKA| +2024-09-30 10:14:16.1124|DEBUG|EDOKA| +2024-09-30 10:14:17.7608|DEBUG|EDOKA| +2024-09-30 10:14:17.7886|DEBUG|EDOKA| +2024-09-30 10:14:17.8021|DEBUG|EDOKA| +2024-09-30 10:14:17.8402|DEBUG|EDOKA| +2024-09-30 10:14:22.7661|DEBUG|EDOKA| +2024-09-30 10:14:22.8142|DEBUG|EDOKA| +2024-09-30 10:14:22.8203|DEBUG|EDOKA| +2024-09-30 10:14:22.8203|DEBUG|EDOKA| +2024-09-30 10:14:22.8203|DEBUG|EDOKA| +2024-09-30 10:14:22.8588|DEBUG|EDOKA| +2024-09-30 10:14:31.3220|DEBUG|EDOKA| +2024-09-30 10:14:34.1433|DEBUG|EDOKA| +2024-09-30 10:14:34.1619|DEBUG|EDOKA| +2024-09-30 10:14:34.1650|DEBUG|EDOKA| +2024-09-30 10:14:34.1901|DEBUG|EDOKA| +2024-09-30 10:14:34.1901|DEBUG|EDOKA| +2024-09-30 10:14:34.2038|DEBUG|EDOKA| +2024-09-30 10:14:34.2038|DEBUG|EDOKA| +2024-09-30 10:14:34.4959|DEBUG|EDOKA| +2024-09-30 10:14:34.4959|DEBUG|EDOKA| +2024-09-30 10:14:47.6116|DEBUG|EDOKA| +2024-09-30 10:14:55.4931|DEBUG|EDOKA| +2024-09-30 10:14:57.7408|DEBUG|EDOKA| +2024-09-30 10:15:55.4938|DEBUG|EDOKA| +2024-09-30 10:16:55.4999|DEBUG|EDOKA| +2024-09-30 10:17:38.0917|DEBUG|EDOKA| +2024-09-30 10:17:38.1027|DEBUG|EDOKA| +2024-09-30 10:17:40.0867|DEBUG|EDOKA| +2024-09-30 10:17:40.0867|DEBUG|EDOKA| +2024-09-30 10:17:40.1618|DEBUG|EDOKA| +2024-09-30 10:17:40.1863|DEBUG|EDOKA| +2024-09-30 10:17:40.1960|DEBUG|EDOKA| +2024-09-30 10:17:40.1960|DEBUG|EDOKA| +2024-09-30 10:17:40.2213|DEBUG|EDOKA| +2024-09-30 10:17:40.2298|DEBUG|EDOKA| +2024-09-30 10:17:40.2996|DEBUG|EDOKA| +2024-09-30 10:17:40.3148|DEBUG|EDOKA| +2024-09-30 10:17:40.3323|DEBUG|EDOKA| +2024-09-30 10:17:40.3323|DEBUG|EDOKA| +2024-09-30 10:17:40.3568|DEBUG|EDOKA| +2024-09-30 10:17:40.3568|DEBUG|EDOKA| +2024-09-30 10:17:40.4375|DEBUG|EDOKA| +2024-09-30 10:17:40.4593|DEBUG|EDOKA| +2024-09-30 10:17:40.4694|DEBUG|EDOKA| +2024-09-30 10:17:40.4694|DEBUG|EDOKA| +2024-09-30 10:17:40.4929|DEBUG|EDOKA| +2024-09-30 10:17:40.4929|DEBUG|EDOKA| +2024-09-30 10:17:40.5708|DEBUG|EDOKA| +2024-09-30 10:17:40.5937|DEBUG|EDOKA| +2024-09-30 10:17:40.6139|DEBUG|EDOKA| +2024-09-30 10:17:40.6139|DEBUG|EDOKA| +2024-09-30 10:17:40.6379|DEBUG|EDOKA| +2024-09-30 10:17:40.6379|DEBUG|EDOKA| +2024-09-30 10:17:49.4616|DEBUG|EDOKA| +2024-09-30 10:17:49.4616|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:49.4790|DEBUG|EDOKA| +2024-09-30 10:17:53.7912|DEBUG|EDOKA| +2024-09-30 10:17:53.8289|DEBUG|EDOKA| +2024-09-30 10:17:53.8474|DEBUG|EDOKA| +2024-09-30 10:17:53.8648|DEBUG|EDOKA| +2024-09-30 10:17:53.8775|DEBUG|EDOKA| +2024-09-30 10:17:53.8775|DEBUG|EDOKA| +2024-09-30 10:17:53.8879|DEBUG|EDOKA| +2024-09-30 10:17:53.8879|DEBUG|EDOKA| +2024-09-30 10:17:53.9011|DEBUG|EDOKA| +2024-09-30 10:17:53.9011|DEBUG|EDOKA| +2024-09-30 10:17:53.9011|DEBUG|EDOKA| +2024-09-30 10:17:54.0844|DEBUG|EDOKA| +2024-09-30 10:17:54.0935|DEBUG|EDOKA| +2024-09-30 10:17:54.0935|DEBUG|EDOKA| +2024-09-30 10:17:54.1038|DEBUG|EDOKA| +2024-09-30 10:17:54.1038|DEBUG|EDOKA| +2024-09-30 10:17:54.1219|DEBUG|EDOKA| +2024-09-30 10:17:54.1219|DEBUG|EDOKA| +2024-09-30 10:17:54.1219|DEBUG|EDOKA| +2024-09-30 10:17:54.1219|DEBUG|EDOKA| +2024-09-30 10:17:59.9426|DEBUG|EDOKA| +2024-09-30 10:18:00.0005|DEBUG|EDOKA| +2024-09-30 10:18:00.0005|DEBUG|EDOKA| +2024-09-30 10:18:00.0005|DEBUG|EDOKA| +2024-09-30 10:18:00.0148|DEBUG|EDOKA| +2024-09-30 10:18:00.0323|DEBUG|EDOKA| +2024-09-30 10:18:00.0323|DEBUG|EDOKA| +2024-09-30 10:18:00.0453|DEBUG|EDOKA| +2024-09-30 10:18:00.0453|DEBUG|EDOKA| +2024-09-30 10:18:09.5126|DEBUG|EDOKA| +2024-09-30 10:18:09.5126|DEBUG|EDOKA| +2024-09-30 10:18:09.5126|DEBUG|EDOKA| +2024-09-30 10:18:09.5271|DEBUG|EDOKA| +2024-09-30 10:18:09.5435|DEBUG|EDOKA| +2024-09-30 10:18:09.5435|DEBUG|EDOKA| +2024-09-30 10:18:09.5435|DEBUG|EDOKA| +2024-09-30 10:18:09.5561|DEBUG|EDOKA| +2024-09-30 10:18:09.5916|DEBUG|EDOKA| +2024-09-30 10:18:55.4939|DEBUG|EDOKA| +2024-09-30 10:19:55.5039|DEBUG|EDOKA| +2024-09-30 10:20:51.2429|DEBUG|EDOKA| +2024-09-30 10:20:52.8213|DEBUG|EDOKA| +2024-09-30 10:20:52.8450|DEBUG|EDOKA| +2024-09-30 10:20:52.8550|DEBUG|EDOKA| +2024-09-30 10:20:52.8841|DEBUG|EDOKA| +2024-09-30 10:20:55.4839|DEBUG|EDOKA| +2024-09-30 10:20:55.4944|DEBUG|EDOKA| +2024-09-30 10:20:55.4944|DEBUG|EDOKA| +2024-09-30 10:20:55.4944|DEBUG|EDOKA| +2024-09-30 10:20:55.4944|DEBUG|EDOKA| +2024-09-30 10:20:55.5177|DEBUG|EDOKA| +2024-09-30 10:20:55.5746|DEBUG|EDOKA| +2024-09-30 10:20:56.7218|DEBUG|EDOKA| +2024-09-30 10:20:58.8558|DEBUG|EDOKA| +2024-09-30 10:20:58.8750|DEBUG|EDOKA| +2024-09-30 10:20:58.8750|DEBUG|EDOKA| +2024-09-30 10:20:58.8985|DEBUG|EDOKA| +2024-09-30 10:20:58.8985|DEBUG|EDOKA| +2024-09-30 10:20:58.8985|DEBUG|EDOKA| +2024-09-30 10:20:58.8985|DEBUG|EDOKA| +2024-09-30 10:20:59.2319|DEBUG|EDOKA| +2024-09-30 10:21:55.5023|DEBUG|EDOKA| +2024-09-30 10:22:55.5088|DEBUG|EDOKA| +2024-09-30 10:23:19.8733|DEBUG|EDOKA| +2024-09-30 10:23:26.3214|DEBUG|EDOKA| +2024-09-30 10:23:38.5208|DEBUG|EDOKA| +2024-09-30 10:23:39.7222|DEBUG|EDOKA| +2024-09-30 10:23:44.4713|DEBUG|EDOKA| +2024-09-30 10:23:49.3179|DEBUG|EDOKA| +2024-09-30 10:23:55.5099|DEBUG|EDOKA| +2024-09-30 10:23:59.9076|DEBUG|EDOKA| +2024-09-30 10:24:12.6653|DEBUG|EDOKA| +2024-09-30 10:24:12.7485|DEBUG|EDOKA| +2024-09-30 10:24:12.7896|DEBUG|EDOKA| +2024-09-30 10:24:15.0167|DEBUG|EDOKA| +2024-09-30 10:24:15.0340|DEBUG|EDOKA| +2024-09-30 10:24:15.0490|DEBUG|EDOKA| +2024-09-30 10:24:15.0490|DEBUG|EDOKA| +2024-09-30 10:24:55.5083|DEBUG|EDOKA| +2024-09-30 10:25:55.4990|DEBUG|EDOKA| +2024-09-30 10:26:55.4963|DEBUG|EDOKA| +2024-09-30 10:26:55.8466|DEBUG|EDOKA| +2024-09-30 10:27:00.6434|DEBUG|EDOKA| +2024-09-30 10:27:00.6837|DEBUG|EDOKA| +2024-09-30 10:27:00.6837|DEBUG|EDOKA| +2024-09-30 10:27:00.6837|DEBUG|EDOKA| +2024-09-30 10:27:00.6952|DEBUG|EDOKA| +2024-09-30 10:27:00.8035|DEBUG|EDOKA| +2024-09-30 10:27:00.8502|DEBUG|EDOKA| +2024-09-30 10:27:00.9723|DEBUG|EDOKA| +2024-09-30 10:27:00.9823|DEBUG|EDOKA| +2024-09-30 10:27:00.9950|DEBUG|EDOKA| +2024-09-30 10:27:00.9950|DEBUG|EDOKA| +2024-09-30 10:27:00.9950|DEBUG|EDOKA| +2024-09-30 10:27:01.0472|DEBUG|EDOKA| +2024-09-30 10:27:01.0763|DEBUG|EDOKA| +2024-09-30 10:27:01.2024|DEBUG|EDOKA| +2024-09-30 10:27:01.2135|DEBUG|EDOKA| +2024-09-30 10:27:01.2135|DEBUG|EDOKA| +2024-09-30 10:27:01.2270|DEBUG|EDOKA| +2024-09-30 10:27:01.2270|DEBUG|EDOKA| +2024-09-30 10:27:01.2833|DEBUG|EDOKA| +2024-09-30 10:27:01.3123|DEBUG|EDOKA| +2024-09-30 10:27:14.1275|DEBUG|EDOKA| +2024-09-30 10:27:14.1275|DEBUG|EDOKA| +2024-09-30 10:27:14.1859|DEBUG|EDOKA| +2024-09-30 10:27:55.4983|DEBUG|EDOKA| +2024-09-30 10:28:55.5010|DEBUG|EDOKA| +2024-09-30 10:29:15.6753|DEBUG|EDOKA| +2024-09-30 10:29:15.7113|DEBUG|EDOKA| +2024-09-30 10:29:17.7698|DEBUG|EDOKA| +2024-09-30 10:29:21.8466|DEBUG|EDOKA| +2024-09-30 10:29:21.9199|DEBUG|EDOKA| +2024-09-30 10:29:24.1069|DEBUG|EDOKA| +2024-09-30 10:29:24.1348|DEBUG|EDOKA| +2024-09-30 10:29:24.1348|DEBUG|EDOKA| +2024-09-30 10:29:24.1750|DEBUG|EDOKA| +2024-09-30 10:29:40.0424|DEBUG|EDOKA| +2024-09-30 10:29:40.0874|DEBUG|EDOKA| +2024-09-30 10:29:40.0874|DEBUG|EDOKA| +2024-09-30 10:29:40.0874|DEBUG|EDOKA| +2024-09-30 10:29:40.1094|DEBUG|EDOKA| +2024-09-30 10:29:40.1239|DEBUG|EDOKA| +2024-09-30 10:29:55.5026|DEBUG|EDOKA| +2024-09-30 10:30:55.4966|DEBUG|EDOKA| +2024-09-30 10:31:55.4946|DEBUG|EDOKA| +2024-09-30 10:32:55.4991|DEBUG|EDOKA| +2024-09-30 10:33:55.4985|DEBUG|EDOKA| +2024-09-30 10:33:59.6257|DEBUG|EDOKA| +2024-09-30 10:34:55.5041|DEBUG|EDOKA| +2024-09-30 10:35:55.4956|DEBUG|EDOKA| +2024-09-30 10:36:55.5038|DEBUG|EDOKA| +2024-09-30 10:37:55.4979|DEBUG|EDOKA| +2024-09-30 10:38:55.4968|DEBUG|EDOKA| +2024-09-30 10:39:55.4936|DEBUG|EDOKA| +2024-09-30 10:40:55.4960|DEBUG|EDOKA| +2024-09-30 10:41:55.5015|DEBUG|EDOKA| +2024-09-30 10:42:55.4949|DEBUG|EDOKA| +2024-09-30 10:43:55.4969|DEBUG|EDOKA| +2024-09-30 10:44:55.4942|DEBUG|EDOKA| +2024-09-30 10:45:55.4938|DEBUG|EDOKA| +2024-09-30 10:46:55.5011|DEBUG|EDOKA| +2024-09-30 10:47:55.4966|DEBUG|EDOKA| +2024-09-30 10:48:55.4950|DEBUG|EDOKA| +2024-09-30 10:49:55.4948|DEBUG|EDOKA| +2024-09-30 10:50:55.5009|DEBUG|EDOKA| +2024-09-30 10:51:55.4947|DEBUG|EDOKA| +2024-09-30 10:52:55.4936|DEBUG|EDOKA| +2024-09-30 10:53:55.5073|DEBUG|EDOKA| +2024-09-30 10:54:55.5001|DEBUG|EDOKA| +2024-09-30 10:55:55.4937|DEBUG|EDOKA| +2024-09-30 10:56:55.4945|DEBUG|EDOKA| +2024-09-30 10:57:55.5028|DEBUG|EDOKA| +2024-09-30 10:58:55.4998|DEBUG|EDOKA| +2024-09-30 10:59:55.4983|DEBUG|EDOKA| +2024-09-30 11:00:55.4962|DEBUG|EDOKA| +2024-09-30 11:01:55.4952|DEBUG|EDOKA| +2024-09-30 11:02:55.5036|DEBUG|EDOKA| +2024-09-30 11:03:55.5035|DEBUG|EDOKA| +2024-09-30 11:04:55.5008|DEBUG|EDOKA| +2024-09-30 11:05:55.4937|DEBUG|EDOKA| +2024-09-30 11:06:55.4946|DEBUG|EDOKA| +2024-09-30 11:07:55.4997|DEBUG|EDOKA| +2024-09-30 11:08:55.4969|DEBUG|EDOKA| +2024-09-30 11:09:55.4999|DEBUG|EDOKA| +2024-09-30 11:10:55.5012|DEBUG|EDOKA| +2024-09-30 11:11:55.4934|DEBUG|EDOKA| +2024-09-30 11:12:55.4971|DEBUG|EDOKA| +2024-09-30 11:13:55.4937|DEBUG|EDOKA| +2024-09-30 11:14:55.4971|DEBUG|EDOKA| +2024-09-30 11:15:55.4970|DEBUG|EDOKA| +2024-09-30 11:16:55.4958|DEBUG|EDOKA| +2024-09-30 11:17:55.5021|DEBUG|EDOKA| +2024-09-30 11:18:55.5032|DEBUG|EDOKA| +2024-09-30 11:19:55.4935|DEBUG|EDOKA| +2024-09-30 11:20:55.4958|DEBUG|EDOKA| +2024-09-30 11:21:55.4950|DEBUG|EDOKA| +2024-09-30 11:22:55.5018|DEBUG|EDOKA| +2024-09-30 11:23:55.5012|DEBUG|EDOKA| +2024-09-30 11:24:55.4956|DEBUG|EDOKA| +2024-09-30 11:25:55.4939|DEBUG|EDOKA| +2024-09-30 11:26:55.4957|DEBUG|EDOKA| +2024-09-30 11:27:55.4954|DEBUG|EDOKA| +2024-09-30 11:28:55.4932|DEBUG|EDOKA| +2024-09-30 11:29:55.4960|DEBUG|EDOKA| +2024-09-30 11:30:55.4979|DEBUG|EDOKA| +2024-09-30 11:31:55.4926|DEBUG|EDOKA| +2024-09-30 11:32:55.4958|DEBUG|EDOKA| +2024-09-30 11:33:55.4942|DEBUG|EDOKA| +2024-09-30 11:34:55.4953|DEBUG|EDOKA| +2024-09-30 11:35:55.4966|DEBUG|EDOKA| +2024-09-30 11:36:55.4967|DEBUG|EDOKA| +2024-09-30 11:37:55.4941|DEBUG|EDOKA| +2024-09-30 11:38:55.4941|DEBUG|EDOKA| +2024-09-30 11:39:55.4943|DEBUG|EDOKA| +2024-09-30 11:40:55.4954|DEBUG|EDOKA| +2024-09-30 11:41:55.4939|DEBUG|EDOKA| +2024-09-30 11:42:55.4963|DEBUG|EDOKA| +2024-09-30 11:43:55.4934|DEBUG|EDOKA| +2024-09-30 11:44:55.4940|DEBUG|EDOKA| +2024-09-30 11:45:55.4937|DEBUG|EDOKA| +2024-09-30 11:46:55.4943|DEBUG|EDOKA| +2024-09-30 11:47:55.4937|DEBUG|EDOKA| +2024-09-30 11:48:55.4948|DEBUG|EDOKA| +2024-09-30 11:49:55.4950|DEBUG|EDOKA| +2024-09-30 11:50:55.4943|DEBUG|EDOKA| +2024-09-30 11:51:55.4924|DEBUG|EDOKA| +2024-09-30 11:52:55.4949|DEBUG|EDOKA| +2024-09-30 11:53:55.4959|DEBUG|EDOKA| +2024-09-30 11:54:55.4938|DEBUG|EDOKA| +2024-09-30 11:55:55.4963|DEBUG|EDOKA| +2024-09-30 11:56:55.4944|DEBUG|EDOKA| +2024-09-30 11:57:55.4929|DEBUG|EDOKA| +2024-09-30 11:58:55.4954|DEBUG|EDOKA| +2024-09-30 11:59:55.4968|DEBUG|EDOKA| +2024-09-30 12:00:55.4927|DEBUG|EDOKA| +2024-09-30 12:01:55.4966|DEBUG|EDOKA| +2024-09-30 12:02:55.4945|DEBUG|EDOKA| +2024-09-30 12:03:55.4972|DEBUG|EDOKA| +2024-09-30 12:04:55.4969|DEBUG|EDOKA| +2024-09-30 12:05:55.4955|DEBUG|EDOKA| +2024-09-30 12:06:55.4964|DEBUG|EDOKA| +2024-09-30 12:07:55.4944|DEBUG|EDOKA| +2024-09-30 12:08:55.4933|DEBUG|EDOKA| +2024-09-30 12:09:55.4940|DEBUG|EDOKA| +2024-09-30 12:10:55.4932|DEBUG|EDOKA| +2024-09-30 12:15:34.4662|DEBUG|EDOKA|Start +2024-09-30 12:15:34.5309|DEBUG|EDOKA| +2024-09-30 12:15:34.5309|DEBUG|EDOKA| +2024-09-30 12:15:34.5309|DEBUG|EDOKA| +2024-09-30 12:15:34.5470|DEBUG|EDOKA| +2024-09-30 12:15:34.5660|DEBUG|EDOKA| +2024-09-30 12:15:34.6417|DEBUG|EDOKA| +2024-09-30 12:15:34.6531|DEBUG|EDOKA|Start - Ende +2024-09-30 12:15:38.7199|DEBUG|EDOKA| +2024-09-30 12:15:38.7558|DEBUG|EDOKA| +2024-09-30 12:15:40.8113|DEBUG|EDOKA| +2024-09-30 12:15:40.8113|DEBUG|EDOKA| +2024-09-30 12:15:40.9547|DEBUG|EDOKA| +2024-09-30 12:15:40.9812|DEBUG|EDOKA| +2024-09-30 12:15:41.0248|DEBUG|EDOKA| +2024-09-30 12:15:41.0248|DEBUG|EDOKA| +2024-09-30 12:15:41.0499|DEBUG|EDOKA| +2024-09-30 12:15:41.0664|DEBUG|EDOKA| +2024-09-30 12:15:41.1307|DEBUG|EDOKA| +2024-09-30 12:15:41.1489|DEBUG|EDOKA| +2024-09-30 12:15:41.1854|DEBUG|EDOKA| +2024-09-30 12:15:41.1854|DEBUG|EDOKA| +2024-09-30 12:15:41.2094|DEBUG|EDOKA| +2024-09-30 12:15:41.2324|DEBUG|EDOKA| +2024-09-30 12:15:41.2905|DEBUG|EDOKA| +2024-09-30 12:15:41.3050|DEBUG|EDOKA| +2024-09-30 12:15:41.5542|DEBUG|EDOKA| +2024-09-30 12:15:41.5624|DEBUG|EDOKA| +2024-09-30 12:15:41.5889|DEBUG|EDOKA| +2024-09-30 12:15:41.6029|DEBUG|EDOKA| +2024-09-30 12:15:41.6602|DEBUG|EDOKA| +2024-09-30 12:15:41.6740|DEBUG|EDOKA| +2024-09-30 12:15:41.6885|DEBUG|EDOKA| +2024-09-30 12:15:41.6885|DEBUG|EDOKA| +2024-09-30 12:15:41.7122|DEBUG|EDOKA| +2024-09-30 12:15:41.7122|DEBUG|EDOKA| +2024-09-30 12:15:44.5742|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:44.5864|DEBUG|EDOKA| +2024-09-30 12:15:52.4241|DEBUG|EDOKA| +2024-09-30 12:15:52.4594|DEBUG|EDOKA| +2024-09-30 12:15:52.4637|DEBUG|EDOKA| +2024-09-30 12:15:52.4924|DEBUG|EDOKA| +2024-09-30 12:15:52.5190|DEBUG|EDOKA| +2024-09-30 12:15:52.5190|DEBUG|EDOKA| +2024-09-30 12:15:52.5190|DEBUG|EDOKA| +2024-09-30 12:15:52.5190|DEBUG|EDOKA| +2024-09-30 12:15:52.5190|DEBUG|EDOKA| +2024-09-30 12:15:52.5190|DEBUG|EDOKA| +2024-09-30 12:15:52.5250|DEBUG|EDOKA| +2024-09-30 12:15:52.5250|DEBUG|EDOKA| +2024-09-30 12:15:52.5250|DEBUG|EDOKA| +2024-09-30 12:15:52.5250|DEBUG|EDOKA| +2024-09-30 12:15:52.5250|DEBUG|EDOKA| +2024-09-30 12:15:52.5250|DEBUG|EDOKA| +2024-09-30 12:15:52.5390|DEBUG|EDOKA| +2024-09-30 12:15:52.5390|DEBUG|EDOKA| +2024-09-30 12:15:52.5390|DEBUG|EDOKA| +2024-09-30 12:15:52.5698|DEBUG|EDOKA| +2024-09-30 12:15:52.5738|DEBUG|EDOKA| +2024-09-30 12:15:54.2223|DEBUG|EDOKA| +2024-09-30 12:15:54.2223|DEBUG|EDOKA| +2024-09-30 12:15:54.2223|DEBUG|EDOKA| +2024-09-30 12:15:54.2351|DEBUG|EDOKA| +2024-09-30 12:15:54.2446|DEBUG|EDOKA| +2024-09-30 12:15:54.2446|DEBUG|EDOKA| +2024-09-30 12:15:54.2446|DEBUG|EDOKA| +2024-09-30 12:15:54.2626|DEBUG|EDOKA| +2024-09-30 12:15:54.2626|DEBUG|EDOKA| +2024-09-30 12:15:54.2626|DEBUG|EDOKA| +2024-09-30 12:15:54.2626|DEBUG|EDOKA| +2024-09-30 12:15:54.7226|DEBUG|EDOKA| +2024-09-30 12:15:54.7226|DEBUG|EDOKA| +2024-09-30 12:15:54.7226|DEBUG|EDOKA| +2024-09-30 12:15:54.7367|DEBUG|EDOKA| +2024-09-30 12:15:54.7472|DEBUG|EDOKA| +2024-09-30 12:15:54.7472|DEBUG|EDOKA| +2024-09-30 12:15:54.7472|DEBUG|EDOKA| +2024-09-30 12:15:54.7603|DEBUG|EDOKA| +2024-09-30 12:15:54.7603|DEBUG|EDOKA| +2024-09-30 12:15:54.7953|DEBUG|EDOKA| +2024-09-30 12:15:54.7953|DEBUG|EDOKA| +2024-09-30 12:15:54.7953|DEBUG|EDOKA| +2024-09-30 12:15:54.8066|DEBUG|EDOKA| +2024-09-30 12:15:54.8225|DEBUG|EDOKA| +2024-09-30 12:15:54.8225|DEBUG|EDOKA| +2024-09-30 12:15:54.8225|DEBUG|EDOKA| +2024-09-30 12:15:54.8225|DEBUG|EDOKA| +2024-09-30 12:15:55.1024|DEBUG|EDOKA| +2024-09-30 12:15:58.4510|DEBUG|EDOKA| +2024-09-30 12:16:06.8564|DEBUG|EDOKA| +2024-09-30 12:16:15.6097|DEBUG|EDOKA| +2024-09-30 12:16:22.7575|DEBUG|EDOKA| +2024-09-30 12:16:34.6405|DEBUG|EDOKA| +2024-09-30 14:09:33.9093|DEBUG|EDOKA|Start +2024-09-30 14:09:33.9723|DEBUG|EDOKA| +2024-09-30 14:09:33.9723|DEBUG|EDOKA| +2024-09-30 14:09:33.9723|DEBUG|EDOKA| +2024-09-30 14:09:33.9823|DEBUG|EDOKA| +2024-09-30 14:09:33.9993|DEBUG|EDOKA| +2024-09-30 14:09:34.0633|DEBUG|EDOKA| +2024-09-30 14:09:34.0633|DEBUG|EDOKA|Start - Ende +2024-09-30 14:09:39.3110|DEBUG|EDOKA| +2024-09-30 14:09:39.3474|DEBUG|EDOKA| +2024-09-30 14:09:45.7806|DEBUG|EDOKA| +2024-09-30 14:09:45.8187|DEBUG|EDOKA| +2024-09-30 14:09:45.9756|DEBUG|EDOKA| +2024-09-30 14:09:46.0006|DEBUG|EDOKA| +2024-09-30 14:09:46.0236|DEBUG|EDOKA| +2024-09-30 14:09:46.0236|DEBUG|EDOKA| +2024-09-30 14:09:46.0546|DEBUG|EDOKA| +2024-09-30 14:09:46.1026|DEBUG|EDOKA| +2024-09-30 14:09:46.1716|DEBUG|EDOKA| +2024-09-30 14:09:46.1926|DEBUG|EDOKA| +2024-09-30 14:09:46.2026|DEBUG|EDOKA| +2024-09-30 14:09:46.2026|DEBUG|EDOKA| +2024-09-30 14:09:46.2276|DEBUG|EDOKA| +2024-09-30 14:09:46.2276|DEBUG|EDOKA| +2024-09-30 14:09:46.3086|DEBUG|EDOKA| +2024-09-30 14:09:46.3296|DEBUG|EDOKA| +2024-09-30 14:09:46.3776|DEBUG|EDOKA| +2024-09-30 14:09:46.3776|DEBUG|EDOKA| +2024-09-30 14:09:46.4026|DEBUG|EDOKA| +2024-09-30 14:09:46.4026|DEBUG|EDOKA| +2024-09-30 14:09:46.4826|DEBUG|EDOKA| +2024-09-30 14:09:46.5046|DEBUG|EDOKA| +2024-09-30 14:09:46.5136|DEBUG|EDOKA| +2024-09-30 14:09:46.5136|DEBUG|EDOKA| +2024-09-30 14:09:46.5376|DEBUG|EDOKA| +2024-09-30 14:09:46.5456|DEBUG|EDOKA| +2024-09-30 14:09:51.7344|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:09:51.7734|DEBUG|EDOKA| +2024-09-30 14:10:00.6530|DEBUG|EDOKA| +2024-09-30 14:10:02.8112|DEBUG|EDOKA| +2024-09-30 14:10:11.6844|DEBUG|EDOKA| +2024-09-30 14:30:10.5887|DEBUG|EDOKA|Start +2024-09-30 14:30:10.6517|DEBUG|EDOKA| +2024-09-30 14:30:10.6517|DEBUG|EDOKA| +2024-09-30 14:30:10.6517|DEBUG|EDOKA| +2024-09-30 14:30:10.6697|DEBUG|EDOKA| +2024-09-30 14:30:10.6867|DEBUG|EDOKA| +2024-09-30 14:30:10.7502|DEBUG|EDOKA| +2024-09-30 14:30:10.7502|DEBUG|EDOKA|Start - Ende +2024-09-30 15:07:45.7069|DEBUG|EDOKA|Start +2024-09-30 15:07:45.7724|DEBUG|EDOKA| +2024-09-30 15:07:45.7764|DEBUG|EDOKA| +2024-09-30 15:07:45.7764|DEBUG|EDOKA| +2024-09-30 15:07:45.7764|DEBUG|EDOKA| +2024-09-30 15:07:45.8029|DEBUG|EDOKA| +2024-09-30 15:07:45.8669|DEBUG|EDOKA| +2024-09-30 15:07:45.8729|DEBUG|EDOKA|Start - Ende +2024-10-01 10:29:10.4772|DEBUG|EDOKA|Start +2024-10-01 10:29:10.5483|DEBUG|EDOKA| +2024-10-01 10:29:10.5483|DEBUG|EDOKA| +2024-10-01 10:29:10.5543|DEBUG|EDOKA| +2024-10-01 10:29:10.5543|DEBUG|EDOKA| +2024-10-01 10:29:10.5858|DEBUG|EDOKA| +2024-10-01 10:29:10.6529|DEBUG|EDOKA| +2024-10-01 10:29:10.6529|DEBUG|EDOKA|Start - Ende +2024-10-01 10:30:10.6662|DEBUG|EDOKA| +2024-10-01 10:31:10.6533|DEBUG|EDOKA| +2024-10-01 10:32:10.6546|DEBUG|EDOKA| +2024-10-01 10:33:10.6576|DEBUG|EDOKA| +2024-10-01 10:34:10.6498|DEBUG|EDOKA| +2024-10-01 10:35:10.6493|DEBUG|EDOKA| +2024-10-01 10:36:10.6495|DEBUG|EDOKA| +2024-10-01 10:37:10.6542|DEBUG|EDOKA| +2024-10-01 10:38:10.6607|DEBUG|EDOKA| +2024-10-01 10:39:10.6502|DEBUG|EDOKA| +2024-10-01 10:40:10.6645|DEBUG|EDOKA| +2024-10-01 10:41:10.6707|DEBUG|EDOKA| +2024-10-01 10:42:10.6694|DEBUG|EDOKA| +2024-10-01 10:43:10.6647|DEBUG|EDOKA| +2024-10-01 10:44:10.6714|DEBUG|EDOKA| +2024-10-01 10:45:10.6812|DEBUG|EDOKA| +2024-10-01 10:46:10.6676|DEBUG|EDOKA| +2024-10-01 10:47:10.6762|DEBUG|EDOKA| +2024-10-01 10:48:10.6688|DEBUG|EDOKA| +2024-10-01 10:49:10.6735|DEBUG|EDOKA| +2024-10-01 10:50:10.6659|DEBUG|EDOKA| +2024-10-01 10:51:10.6669|DEBUG|EDOKA| +2024-10-01 10:52:10.6745|DEBUG|EDOKA| +2024-10-01 10:53:10.6659|DEBUG|EDOKA| +2024-10-01 10:54:10.6656|DEBUG|EDOKA| +2024-10-01 10:55:10.6748|DEBUG|EDOKA| +2024-10-01 10:56:10.6658|DEBUG|EDOKA| +2024-10-01 10:57:10.6663|DEBUG|EDOKA| +2024-10-01 10:58:10.6683|DEBUG|EDOKA| +2024-10-01 10:59:10.6707|DEBUG|EDOKA| +2024-10-01 11:00:10.6746|DEBUG|EDOKA| +2024-10-01 11:01:10.6638|DEBUG|EDOKA| +2024-10-01 11:02:10.6726|DEBUG|EDOKA| +2024-10-01 11:03:10.6694|DEBUG|EDOKA| +2024-10-01 11:04:10.6700|DEBUG|EDOKA| +2024-10-01 11:05:10.6689|DEBUG|EDOKA| +2024-10-01 11:06:10.6799|DEBUG|EDOKA| +2024-10-01 11:07:10.6656|DEBUG|EDOKA| +2024-10-01 11:08:10.6739|DEBUG|EDOKA| +2024-10-01 11:09:10.6731|DEBUG|EDOKA| +2024-10-01 11:10:10.6667|DEBUG|EDOKA| +2024-10-01 11:11:10.6716|DEBUG|EDOKA| +2024-10-01 11:12:10.6724|DEBUG|EDOKA| +2024-10-01 11:13:10.6696|DEBUG|EDOKA| +2024-10-01 11:14:10.6758|DEBUG|EDOKA| +2024-10-01 11:15:10.6694|DEBUG|EDOKA| +2024-10-01 11:16:10.6658|DEBUG|EDOKA| +2024-10-01 11:17:10.6678|DEBUG|EDOKA| +2024-10-01 11:18:10.6728|DEBUG|EDOKA| +2024-10-01 11:19:10.6678|DEBUG|EDOKA| +2024-10-01 11:20:10.6739|DEBUG|EDOKA| +2024-10-01 11:21:10.6666|DEBUG|EDOKA| +2024-10-01 11:22:10.6675|DEBUG|EDOKA| +2024-10-01 11:23:10.6785|DEBUG|EDOKA| +2024-10-01 11:24:10.6655|DEBUG|EDOKA| +2024-10-01 11:25:10.6805|DEBUG|EDOKA| +2024-10-01 11:26:10.6731|DEBUG|EDOKA| +2024-10-01 11:27:10.6800|DEBUG|EDOKA| +2024-10-01 11:28:10.6696|DEBUG|EDOKA| +2024-10-01 11:29:10.6804|DEBUG|EDOKA| +2024-10-01 11:30:10.6664|DEBUG|EDOKA| +2024-10-01 11:31:10.6649|DEBUG|EDOKA| +2024-10-01 11:32:10.6774|DEBUG|EDOKA| +2024-10-01 11:33:10.6659|DEBUG|EDOKA| +2024-10-01 11:34:10.6656|DEBUG|EDOKA| +2024-10-01 11:35:10.6808|DEBUG|EDOKA| +2024-10-01 11:36:10.6717|DEBUG|EDOKA| +2024-10-01 11:37:10.6666|DEBUG|EDOKA| +2024-10-01 11:38:10.6657|DEBUG|EDOKA| +2024-10-01 11:39:10.6681|DEBUG|EDOKA| +2024-10-01 11:40:10.6739|DEBUG|EDOKA| +2024-10-01 11:41:10.6676|DEBUG|EDOKA| +2024-10-01 11:42:10.6705|DEBUG|EDOKA| +2024-10-01 11:43:10.6810|DEBUG|EDOKA| +2024-10-01 11:44:10.6688|DEBUG|EDOKA| +2024-10-01 11:45:10.6660|DEBUG|EDOKA| +2024-10-01 11:46:10.6730|DEBUG|EDOKA| +2024-10-01 11:47:10.6787|DEBUG|EDOKA| +2024-10-01 11:48:10.6707|DEBUG|EDOKA| +2024-10-01 11:49:10.6667|DEBUG|EDOKA| +2024-10-01 11:50:10.6687|DEBUG|EDOKA| +2024-10-01 11:51:10.6665|DEBUG|EDOKA| +2024-10-01 11:52:10.6665|DEBUG|EDOKA| +2024-10-01 11:53:10.6793|DEBUG|EDOKA| +2024-10-01 11:54:10.6675|DEBUG|EDOKA| +2024-10-01 11:55:10.6691|DEBUG|EDOKA| +2024-10-01 11:56:10.6699|DEBUG|EDOKA| +2024-10-01 11:57:10.6715|DEBUG|EDOKA| +2024-10-01 11:58:10.6659|DEBUG|EDOKA| +2024-10-01 11:59:10.6676|DEBUG|EDOKA| +2024-10-01 12:00:10.6727|DEBUG|EDOKA| +2024-10-01 12:01:10.6802|DEBUG|EDOKA| +2024-10-01 12:02:10.6662|DEBUG|EDOKA| +2024-10-01 12:03:10.6702|DEBUG|EDOKA| +2024-10-01 12:04:10.6742|DEBUG|EDOKA| +2024-10-01 12:05:10.6744|DEBUG|EDOKA| +2024-10-01 12:06:10.6657|DEBUG|EDOKA| +2024-10-01 12:07:10.6714|DEBUG|EDOKA| +2024-10-01 12:08:10.6676|DEBUG|EDOKA| +2024-10-01 12:09:10.6663|DEBUG|EDOKA| +2024-10-01 12:10:10.6678|DEBUG|EDOKA| +2024-10-01 12:11:10.6663|DEBUG|EDOKA| +2024-10-01 12:12:10.6743|DEBUG|EDOKA| +2024-10-01 12:13:10.6746|DEBUG|EDOKA| +2024-10-01 12:14:10.6685|DEBUG|EDOKA| +2024-10-01 12:15:10.6693|DEBUG|EDOKA| +2024-10-01 12:16:10.6780|DEBUG|EDOKA| +2024-10-01 12:17:10.6692|DEBUG|EDOKA| +2024-10-01 12:18:10.6652|DEBUG|EDOKA| +2024-10-01 12:19:10.6746|DEBUG|EDOKA| +2024-10-01 12:20:10.6656|DEBUG|EDOKA| +2024-10-01 12:21:10.6769|DEBUG|EDOKA| +2024-10-01 12:22:10.6660|DEBUG|EDOKA| +2024-10-01 12:23:10.6744|DEBUG|EDOKA| +2024-10-01 12:24:10.6727|DEBUG|EDOKA| +2024-10-01 12:25:10.6660|DEBUG|EDOKA| +2024-10-01 12:26:10.6701|DEBUG|EDOKA| +2024-10-01 12:27:10.6645|DEBUG|EDOKA| +2024-10-01 12:28:10.6729|DEBUG|EDOKA| +2024-10-01 12:29:10.6665|DEBUG|EDOKA| +2024-10-01 12:30:10.6661|DEBUG|EDOKA| +2024-10-01 12:31:10.6677|DEBUG|EDOKA| +2024-10-01 12:32:10.6768|DEBUG|EDOKA| +2024-10-01 12:33:10.6664|DEBUG|EDOKA| +2024-10-01 12:34:10.6755|DEBUG|EDOKA| +2024-10-01 12:35:10.6753|DEBUG|EDOKA| +2024-10-01 12:36:10.6660|DEBUG|EDOKA| +2024-10-01 12:37:10.6737|DEBUG|EDOKA| +2024-10-01 12:38:10.6761|DEBUG|EDOKA| +2024-10-01 12:39:10.6677|DEBUG|EDOKA| +2024-10-01 12:40:10.6697|DEBUG|EDOKA| +2024-10-01 12:41:10.6680|DEBUG|EDOKA| +2024-10-01 12:42:10.6648|DEBUG|EDOKA| +2024-10-01 12:43:10.6757|DEBUG|EDOKA| +2024-10-01 12:44:10.6664|DEBUG|EDOKA| +2024-10-01 12:45:10.6672|DEBUG|EDOKA| +2024-10-01 12:46:10.6734|DEBUG|EDOKA| +2024-10-01 12:47:10.6739|DEBUG|EDOKA| +2024-10-01 12:48:10.6644|DEBUG|EDOKA| +2024-10-01 12:49:10.6682|DEBUG|EDOKA| +2024-10-01 12:50:10.6757|DEBUG|EDOKA| +2024-10-01 12:51:10.6754|DEBUG|EDOKA| +2024-10-01 12:52:10.6707|DEBUG|EDOKA| +2024-10-01 12:53:10.6715|DEBUG|EDOKA| +2024-10-01 12:54:10.6692|DEBUG|EDOKA| +2024-10-01 12:55:10.6658|DEBUG|EDOKA| +2024-10-01 12:56:10.6648|DEBUG|EDOKA| +2024-10-01 12:57:10.6703|DEBUG|EDOKA| +2024-10-01 12:58:10.6746|DEBUG|EDOKA| +2024-10-01 12:59:10.6684|DEBUG|EDOKA| +2024-10-01 13:00:10.6661|DEBUG|EDOKA| +2024-10-01 13:01:10.6758|DEBUG|EDOKA| +2024-10-01 13:02:10.6693|DEBUG|EDOKA| +2024-10-01 13:03:10.6746|DEBUG|EDOKA| +2024-10-01 13:04:10.6701|DEBUG|EDOKA| +2024-10-01 13:05:10.6799|DEBUG|EDOKA| +2024-10-01 13:06:10.6677|DEBUG|EDOKA| +2024-10-01 13:09:24.1243|DEBUG|EDOKA|Start +2024-10-01 13:09:24.1633|DEBUG|EDOKA| +2024-10-01 13:09:24.1683|DEBUG|EDOKA| +2024-10-01 13:09:24.1683|DEBUG|EDOKA| +2024-10-01 13:09:24.1683|DEBUG|EDOKA| +2024-10-01 13:09:24.2028|DEBUG|EDOKA| +2024-10-01 13:09:24.2679|DEBUG|EDOKA| +2024-10-01 13:09:24.2739|DEBUG|EDOKA|Start - Ende diff --git a/Client/obj/Debug/Client.csproj.AssemblyReference.cache b/Client/obj/Debug/Client.csproj.AssemblyReference.cache index c78595d5..45cca228 100644 Binary files a/Client/obj/Debug/Client.csproj.AssemblyReference.cache and b/Client/obj/Debug/Client.csproj.AssemblyReference.cache differ diff --git a/Client/obj/Debug/Client.csproj.GenerateResource.cache b/Client/obj/Debug/Client.csproj.GenerateResource.cache index 045f5089..06ee096e 100644 Binary files a/Client/obj/Debug/Client.csproj.GenerateResource.cache and b/Client/obj/Debug/Client.csproj.GenerateResource.cache differ diff --git a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache index e5ac01fe..897d52ad 100644 Binary files a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Client/obj/Debug/OnDoc.Diverses.valueselector.resources b/Client/obj/Debug/OnDoc.Diverses.valueselector.resources index 6c05a977..5b210d7b 100644 Binary files a/Client/obj/Debug/OnDoc.Diverses.valueselector.resources and b/Client/obj/Debug/OnDoc.Diverses.valueselector.resources differ diff --git a/Client/obj/Debug/OnDoc.exe b/Client/obj/Debug/OnDoc.exe index 70c02755..b6f039ba 100644 Binary files a/Client/obj/Debug/OnDoc.exe and b/Client/obj/Debug/OnDoc.exe differ diff --git a/Client/obj/Debug/OnDoc.pdb b/Client/obj/Debug/OnDoc.pdb index e81f85a9..6c87c676 100644 Binary files a/Client/obj/Debug/OnDoc.pdb and b/Client/obj/Debug/OnDoc.pdb differ diff --git a/Client/obj/Debug/de-DE/OnDoc.resources.dll b/Client/obj/Debug/de-DE/OnDoc.resources.dll index 9c6e248d..85045e3d 100644 Binary files a/Client/obj/Debug/de-DE/OnDoc.resources.dll and b/Client/obj/Debug/de-DE/OnDoc.resources.dll differ diff --git a/DOCGEN/Klassen/SyncFWord.cs b/DOCGEN/Klassen/SyncFWord.cs index 69582f23..bbc1a9cc 100644 --- a/DOCGEN/Klassen/SyncFWord.cs +++ b/DOCGEN/Klassen/SyncFWord.cs @@ -411,35 +411,17 @@ namespace DOCGEN.Klassen BarcodeLib.Barcode Barcode = new BarcodeLib.Barcode(); System.Drawing.Image barcodeimage = Barcode.Get_LinerBarcode(Barcoded.Symbology.I2of5C, docData.Dokumentid.Substring(9, 13), docData.Dokumentid.Substring(9, 13), "Below", "Arial", 8, 0); - //EDOKA_Barcode.EDOKABC bc = new EDOKA_Barcode.EDOKABC(); - //System.Drawing.Image barcodeimage = bc.getimg("Interleaved 2 of 5 Mod 10", docData.Dokumentid.Substring(9,13), 190, 120); - - // OFFEDK0002024002441185 - //BarcodeSettings bs = new BarcodeSettings(); - //bs.Type = BarCodeType.Interleaved25; - //bs.ShowBottomText = true; - //bs.ShowTopText = false; - //bs.BottomText = Documentid.Substring(9, 13); ; - //bs.Data = Documentid.Substring(9, 13); - ////bs.ImageWidth = 200; - ////bs.ImageHeight = 40; - //BarCodeGenerator bg = new BarCodeGenerator(bs); - - //bg.GenerateImage().Save(@"h:\edoka_work\bc.jpg"); - - // FileStream imageStream = new FileStream(@"h:\edoka_work\bc.jpg", FileMode.Open, FileAccess.Read); - - + foreach (WSection section in document.Sections) { - int bchor = 400; - int bcver = 700; + int bchor = 450; + int bcver = 720; WPicture picture = new WPicture(document); picture.LoadImage(barcodeimage); - picture.Height = 40; - picture.Width = 140; + picture.Height = 30; + picture.Width = 100; picture.VerticalPosition = bcver; picture.HorizontalPosition = bchor; picture.HorizontalOrigin = HorizontalOrigin.Page; @@ -448,8 +430,8 @@ namespace DOCGEN.Klassen WPicture picture2 = new WPicture(document); picture2.LoadImage(barcodeimage); - picture2.Height = 40; - picture2.Width = 140; + picture2.Height = 30; + picture2.Width = 100; picture2.VerticalPosition = bcver; picture2.HorizontalPosition = bchor; picture2.HorizontalOrigin = HorizontalOrigin.Page; @@ -458,10 +440,13 @@ namespace DOCGEN.Klassen //Insert image in Header and Footer of section section.HeadersFooters.Footer.AddParagraph().ChildEntities.Add(picture); - section.HeadersFooters.FirstPageFooter.AddParagraph().ChildEntities.Add(picture2); - - + //section.HeadersFooters.FirstPageFooter.AddParagraph().ChildEntities.Add(picture2); + if (section.HeadersFooters.FirstPageFooter.Paragraphs.Count < 1) + { + section.HeadersFooters.FirstPageFooter.AddParagraph(); + } + section.HeadersFooters.FirstPageFooter.Paragraphs[0].ChildEntities.Add(picture2); } } diff --git a/DOCGEN/bin/Debug/DOCGEN.dll b/DOCGEN/bin/Debug/DOCGEN.dll index c7b4f4f7..3cb8e3aa 100644 Binary files a/DOCGEN/bin/Debug/DOCGEN.dll and b/DOCGEN/bin/Debug/DOCGEN.dll differ diff --git a/DOCGEN/bin/Debug/DOCGEN.pdb b/DOCGEN/bin/Debug/DOCGEN.pdb index df40b23e..0fcd75b1 100644 Binary files a/DOCGEN/bin/Debug/DOCGEN.pdb and b/DOCGEN/bin/Debug/DOCGEN.pdb differ diff --git a/DOCGEN/obj/Debug/DOCGEN.dll b/DOCGEN/obj/Debug/DOCGEN.dll index c7b4f4f7..3cb8e3aa 100644 Binary files a/DOCGEN/obj/Debug/DOCGEN.dll and b/DOCGEN/obj/Debug/DOCGEN.dll differ diff --git a/DOCGEN/obj/Debug/DOCGEN.pdb b/DOCGEN/obj/Debug/DOCGEN.pdb index df40b23e..0fcd75b1 100644 Binary files a/DOCGEN/obj/Debug/DOCGEN.pdb and b/DOCGEN/obj/Debug/DOCGEN.pdb differ diff --git a/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache b/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache index c5405ca6..f340f4b5 100644 Binary files a/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache and b/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache differ diff --git a/Database/obj/Debug/Database.csproj.AssemblyReference.cache b/Database/obj/Debug/Database.csproj.AssemblyReference.cache index 60612d6a..fbd1ae91 100644 Binary files a/Database/obj/Debug/Database.csproj.AssemblyReference.cache and b/Database/obj/Debug/Database.csproj.AssemblyReference.cache differ diff --git a/Logging/obj/Debug/Logging.csproj.AssemblyReference.cache b/Logging/obj/Debug/Logging.csproj.AssemblyReference.cache index 49398131..8eb2b8be 100644 Binary files a/Logging/obj/Debug/Logging.csproj.AssemblyReference.cache and b/Logging/obj/Debug/Logging.csproj.AssemblyReference.cache differ diff --git a/Model/obj/Debug/Model.csproj.AssemblyReference.cache b/Model/obj/Debug/Model.csproj.AssemblyReference.cache index 19ab67de..e32cfc63 100644 Binary files a/Model/obj/Debug/Model.csproj.AssemblyReference.cache and b/Model/obj/Debug/Model.csproj.AssemblyReference.cache differ diff --git a/OnDoc.sln b/OnDoc.sln index 6b3f756f..621c07d5 100644 --- a/OnDoc.sln +++ b/OnDoc.sln @@ -37,6 +37,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NativVorlagen", "NativVorla EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OnDocOffice", "OnDocOffice\OnDocOffice.csproj", "{FF8F7808-3AF7-467C-947B-D8D3C6BF7BD7}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OnDocWeb", "OnDocWeb\OnDocWeb.csproj", "{EA7C978E-5E01-4377-912D-58F0DD9EDB4D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -99,6 +101,10 @@ Global {FF8F7808-3AF7-467C-947B-D8D3C6BF7BD7}.Debug|Any CPU.Build.0 = Debug|Any CPU {FF8F7808-3AF7-467C-947B-D8D3C6BF7BD7}.Release|Any CPU.ActiveCfg = Release|Any CPU {FF8F7808-3AF7-467C-947B-D8D3C6BF7BD7}.Release|Any CPU.Build.0 = Release|Any CPU + {EA7C978E-5E01-4377-912D-58F0DD9EDB4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EA7C978E-5E01-4377-912D-58F0DD9EDB4D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EA7C978E-5E01-4377-912D-58F0DD9EDB4D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EA7C978E-5E01-4377-912D-58F0DD9EDB4D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/OnDoc.sln.vsdoc b/OnDoc.sln.vsdoc new file mode 100644 index 00000000..8ce1cc6b --- /dev/null +++ b/OnDoc.sln.vsdoc @@ -0,0 +1,137 @@ + + + + default + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + showFormsSeparate + showInherited + pageFooterText + outputPath + templatePath + templateFolder + externalFilesFolder + templateLocale + fileNamingConvention + generateVbSyntax + generateCsharpSyntax + generateCppSyntax + generateJscriptSyntax + helpTitle + customTopics + ListNamespacesWithShortNames + emptyOutputFolder +]]> + VSdocman]]> + + + + + + + + + + + + + + + + + + + + + + + + normal + yes + SOLUTION-WIDE PROPERTIES Reference + solutionwide_properties_reference + vsdocman_escaped_]_]_> + + + + placeholder + no + + d9e613716d054abfa4986b9baff6c9f7 + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OnDocOffice/Class1.cs b/OnDocOffice/Class1.cs index cd8add51..1beb259b 100644 --- a/OnDocOffice/Class1.cs +++ b/OnDocOffice/Class1.cs @@ -100,6 +100,7 @@ namespace OnDocOffice try { word = new Microsoft.Office.Interop.Word.Application(); + word.Run("Autoexec"); return true; } catch @@ -124,7 +125,7 @@ namespace OnDocOffice { word.Run(dr[0].ToString()); } - catch { } + catch ( Exception e) { string a = e.Message;} } } //clsProcessWatch.AddToList(dokumentid, filename, "Word"); diff --git a/OnDocOffice/bin/Debug/OnDocOffice.dll b/OnDocOffice/bin/Debug/OnDocOffice.dll index 720e535e..da66295f 100644 Binary files a/OnDocOffice/bin/Debug/OnDocOffice.dll and b/OnDocOffice/bin/Debug/OnDocOffice.dll differ diff --git a/OnDocOffice/bin/Debug/OnDocOffice.pdb b/OnDocOffice/bin/Debug/OnDocOffice.pdb index 272dafdf..810bc012 100644 Binary files a/OnDocOffice/bin/Debug/OnDocOffice.pdb and b/OnDocOffice/bin/Debug/OnDocOffice.pdb differ diff --git a/OnDocOffice/obj/Debug/OnDocOffice.dll b/OnDocOffice/obj/Debug/OnDocOffice.dll index 720e535e..da66295f 100644 Binary files a/OnDocOffice/obj/Debug/OnDocOffice.dll and b/OnDocOffice/obj/Debug/OnDocOffice.dll differ diff --git a/OnDocOffice/obj/Debug/OnDocOffice.pdb b/OnDocOffice/obj/Debug/OnDocOffice.pdb index 272dafdf..810bc012 100644 Binary files a/OnDocOffice/obj/Debug/OnDocOffice.pdb and b/OnDocOffice/obj/Debug/OnDocOffice.pdb differ diff --git a/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfo.cs b/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfo.cs index c7a81ed9..d6ba572d 100644 --- a/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfo.cs +++ b/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("OnDocWPF")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9fcecb2c35db7f332de876ac9f19cb033fd93b63")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bbace0411f8ff29e9f2bf86bfade3afd90f2a117")] [assembly: System.Reflection.AssemblyProductAttribute("OnDocWPF")] [assembly: System.Reflection.AssemblyTitleAttribute("OnDocWPF")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfoInputs.cache b/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfoInputs.cache index 1eac730c..dc1f8c3e 100644 --- a/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfoInputs.cache +++ b/OnDocWPF/obj/Debug/net8.0-windows/OnDocWPF.AssemblyInfoInputs.cache @@ -1 +1 @@ -29d30d174f4f39a8dd9c4423f4f21f362f047a0420bfab387d31bf302233e8dd +7d11e8c02c1db0b6c4e8a6a18429abe5d619c7b12074605c6ac7af93d112871d diff --git a/OnDocWeb/App_Start/BundleConfig.cs b/OnDocWeb/App_Start/BundleConfig.cs new file mode 100644 index 00000000..6c6c497d --- /dev/null +++ b/OnDocWeb/App_Start/BundleConfig.cs @@ -0,0 +1,27 @@ +using System.Web; +using System.Web.Optimization; + +namespace OnDocWeb +{ + public class BundleConfig + { + // Weitere Informationen zur Bündelung finden Sie unter https://go.microsoft.com/fwlink/?LinkId=301862. + public static void RegisterBundles(BundleCollection bundles) + { + bundles.Add(new ScriptBundle("~/bundles/jquery").Include( + "~/Scripts/jquery-{version}.js")); + + // Verwenden Sie die Entwicklungsversion von Modernizr zum Entwickeln und Erweitern Ihrer Kenntnisse. Wenn Sie dann + // bereit ist für die Produktion, verwenden Sie das Buildtool unter https://modernizr.com, um nur die benötigten Tests auszuwählen. + bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( + "~/Scripts/modernizr-*")); + + bundles.Add(new Bundle("~/bundles/bootstrap").Include( + "~/Scripts/bootstrap.js")); + + bundles.Add(new StyleBundle("~/Content/css").Include( + "~/Content/bootstrap.css", + "~/Content/site.css")); + } + } +} diff --git a/OnDocWeb/App_Start/FilterConfig.cs b/OnDocWeb/App_Start/FilterConfig.cs new file mode 100644 index 00000000..d1c7b9f8 --- /dev/null +++ b/OnDocWeb/App_Start/FilterConfig.cs @@ -0,0 +1,13 @@ +using System.Web; +using System.Web.Mvc; + +namespace OnDocWeb +{ + public class FilterConfig + { + public static void RegisterGlobalFilters(GlobalFilterCollection filters) + { + filters.Add(new HandleErrorAttribute()); + } + } +} diff --git a/OnDocWeb/App_Start/RouteConfig.cs b/OnDocWeb/App_Start/RouteConfig.cs new file mode 100644 index 00000000..b79f1a65 --- /dev/null +++ b/OnDocWeb/App_Start/RouteConfig.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using System.Web.Routing; + +namespace OnDocWeb +{ + public class RouteConfig + { + public static void RegisterRoutes(RouteCollection routes) + { + routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); + + routes.MapRoute( + name: "Default", + url: "{controller}/{action}/{id}", + defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } + ); + } + } +} diff --git a/OnDocWeb/App_Start/WebApiConfig.cs b/OnDocWeb/App_Start/WebApiConfig.cs new file mode 100644 index 00000000..8f791c0e --- /dev/null +++ b/OnDocWeb/App_Start/WebApiConfig.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web.Http; + +namespace OnDocWeb +{ + public static class WebApiConfig + { + public static void Register(HttpConfiguration config) + { + // Web-API-Konfiguration und -Dienste + + // Web-API-Routen + config.MapHttpAttributeRoutes(); + + config.Routes.MapHttpRoute( + name: "DefaultApi", + routeTemplate: "api/{controller}/{id}", + defaults: new { id = RouteParameter.Optional } + ); + } + } +} diff --git a/OnDocWeb/Areas/HelpPage/ApiDescriptionExtensions.cs b/OnDocWeb/Areas/HelpPage/ApiDescriptionExtensions.cs new file mode 100644 index 00000000..f18767ce --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ApiDescriptionExtensions.cs @@ -0,0 +1,39 @@ +using System; +using System.Text; +using System.Web; +using System.Web.Http.Description; + +namespace OnDocWeb.Areas.HelpPage +{ + public static class ApiDescriptionExtensions + { + /// + /// Generates an URI-friendly ID for the . E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" + /// + /// The . + /// The ID as a string. + public static string GetFriendlyId(this ApiDescription description) + { + string path = description.RelativePath; + string[] urlParts = path.Split('?'); + string localPath = urlParts[0]; + string queryKeyString = null; + if (urlParts.Length > 1) + { + string query = urlParts[1]; + string[] queryKeys = HttpUtility.ParseQueryString(query).AllKeys; + queryKeyString = String.Join("_", queryKeys); + } + + StringBuilder friendlyPath = new StringBuilder(); + friendlyPath.AppendFormat("{0}-{1}", + description.HttpMethod.Method, + localPath.Replace("/", "-").Replace("{", String.Empty).Replace("}", String.Empty)); + if (queryKeyString != null) + { + friendlyPath.AppendFormat("_{0}", queryKeyString.Replace('.', '-')); + } + return friendlyPath.ToString(); + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/App_Start/HelpPageConfig.cs b/OnDocWeb/Areas/HelpPage/App_Start/HelpPageConfig.cs new file mode 100644 index 00000000..1a6af600 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/App_Start/HelpPageConfig.cs @@ -0,0 +1,113 @@ +// Uncomment the following to provide samples for PageResult. Must also add the Microsoft.AspNet.WebApi.OData +// package to your project. +////#define Handle_PageResultOfT + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Net.Http.Headers; +using System.Reflection; +using System.Web; +using System.Web.Http; +#if Handle_PageResultOfT +using System.Web.Http.OData; +#endif + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// Use this class to customize the Help Page. + /// For example you can set a custom to supply the documentation + /// or you can provide the samples for the requests/responses. + /// + public static class HelpPageConfig + { + [SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as localized parameters", + MessageId = "OnDocWeb.Areas.HelpPage.TextSample.#ctor(System.String)", + Justification = "End users may choose to merge this string with existing localized resources.")] + [SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly", + MessageId = "bsonspec", + Justification = "Part of a URI.")] + public static void Register(HttpConfiguration config) + { + //// Uncomment the following to use the documentation from XML documentation file. + //config.SetDocumentationProvider(new XmlDocumentationProvider(HttpContext.Current.Server.MapPath("~/App_Data/XmlDocument.xml"))); + + //// Uncomment the following to use "sample string" as the sample for all actions that have string as the body parameter or return type. + //// Also, the string arrays will be used for IEnumerable. The sample objects will be serialized into different media type + //// formats by the available formatters. + //config.SetSampleObjects(new Dictionary + //{ + // {typeof(string), "sample string"}, + // {typeof(IEnumerable), new string[]{"sample 1", "sample 2"}} + //}); + + // Extend the following to provide factories for types not handled automatically (those lacking parameterless + // constructors) or for which you prefer to use non-default property values. Line below provides a fallback + // since automatic handling will fail and GeneratePageResult handles only a single type. +#if Handle_PageResultOfT + config.GetHelpPageSampleGenerator().SampleObjectFactories.Add(GeneratePageResult); +#endif + + // Extend the following to use a preset object directly as the sample for all actions that support a media + // type, regardless of the body parameter or return type. The lines below avoid display of binary content. + // The BsonMediaTypeFormatter (if available) is not used to serialize the TextSample object. + config.SetSampleForMediaType( + new TextSample("Binary JSON content. See http://bsonspec.org for details."), + new MediaTypeHeaderValue("application/bson")); + + //// Uncomment the following to use "[0]=foo&[1]=bar" directly as the sample for all actions that support form URL encoded format + //// and have IEnumerable as the body parameter or return type. + //config.SetSampleForType("[0]=foo&[1]=bar", new MediaTypeHeaderValue("application/x-www-form-urlencoded"), typeof(IEnumerable)); + + //// Uncomment the following to use "1234" directly as the request sample for media type "text/plain" on the controller named "Values" + //// and action named "Put". + //config.SetSampleRequest("1234", new MediaTypeHeaderValue("text/plain"), "Values", "Put"); + + //// Uncomment the following to use the image on "../images/aspNetHome.png" directly as the response sample for media type "image/png" + //// on the controller named "Values" and action named "Get" with parameter "id". + //config.SetSampleResponse(new ImageSample("../images/aspNetHome.png"), new MediaTypeHeaderValue("image/png"), "Values", "Get", "id"); + + //// Uncomment the following to correct the sample request when the action expects an HttpRequestMessage with ObjectContent. + //// The sample will be generated as if the controller named "Values" and action named "Get" were having string as the body parameter. + //config.SetActualRequestType(typeof(string), "Values", "Get"); + + //// Uncomment the following to correct the sample response when the action returns an HttpResponseMessage with ObjectContent. + //// The sample will be generated as if the controller named "Values" and action named "Post" were returning a string. + //config.SetActualResponseType(typeof(string), "Values", "Post"); + } + +#if Handle_PageResultOfT + private static object GeneratePageResult(HelpPageSampleGenerator sampleGenerator, Type type) + { + if (type.IsGenericType) + { + Type openGenericType = type.GetGenericTypeDefinition(); + if (openGenericType == typeof(PageResult<>)) + { + // Get the T in PageResult + Type[] typeParameters = type.GetGenericArguments(); + Debug.Assert(typeParameters.Length == 1); + + // Create an enumeration to pass as the first parameter to the PageResult constuctor + Type itemsType = typeof(List<>).MakeGenericType(typeParameters); + object items = sampleGenerator.GetSampleObject(itemsType); + + // Fill in the other information needed to invoke the PageResult constuctor + Type[] parameterTypes = new Type[] { itemsType, typeof(Uri), typeof(long?), }; + object[] parameters = new object[] { items, null, (long)ObjectGenerator.DefaultCollectionSize, }; + + // Call PageResult(IEnumerable items, Uri nextPageLink, long? count) constructor + ConstructorInfo constructor = type.GetConstructor(parameterTypes); + return constructor.Invoke(parameters); + } + } + + return null; + } +#endif + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Controllers/HelpController.cs b/OnDocWeb/Areas/HelpPage/Controllers/HelpController.cs new file mode 100644 index 00000000..6e83655e --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Controllers/HelpController.cs @@ -0,0 +1,63 @@ +using System; +using System.Web.Http; +using System.Web.Mvc; +using OnDocWeb.Areas.HelpPage.ModelDescriptions; +using OnDocWeb.Areas.HelpPage.Models; + +namespace OnDocWeb.Areas.HelpPage.Controllers +{ + /// + /// The controller that will handle requests for the help page. + /// + public class HelpController : Controller + { + private const string ErrorViewName = "Error"; + + public HelpController() + : this(GlobalConfiguration.Configuration) + { + } + + public HelpController(HttpConfiguration config) + { + Configuration = config; + } + + public HttpConfiguration Configuration { get; private set; } + + public ActionResult Index() + { + ViewBag.DocumentationProvider = Configuration.Services.GetDocumentationProvider(); + return View(Configuration.Services.GetApiExplorer().ApiDescriptions); + } + + public ActionResult Api(string apiId) + { + if (!String.IsNullOrEmpty(apiId)) + { + HelpPageApiModel apiModel = Configuration.GetHelpPageApiModel(apiId); + if (apiModel != null) + { + return View(apiModel); + } + } + + return View(ErrorViewName); + } + + public ActionResult ResourceModel(string modelName) + { + if (!String.IsNullOrEmpty(modelName)) + { + ModelDescriptionGenerator modelDescriptionGenerator = Configuration.GetModelDescriptionGenerator(); + ModelDescription modelDescription; + if (modelDescriptionGenerator.GeneratedModels.TryGetValue(modelName, out modelDescription)) + { + return View(modelDescription); + } + } + + return View(ErrorViewName); + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/HelpPage.css b/OnDocWeb/Areas/HelpPage/HelpPage.css new file mode 100644 index 00000000..aff22303 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/HelpPage.css @@ -0,0 +1,134 @@ +.help-page h1, +.help-page .h1, +.help-page h2, +.help-page .h2, +.help-page h3, +.help-page .h3, +#body.help-page, +.help-page-table th, +.help-page-table pre, +.help-page-table p { + font-family: "Segoe UI Light", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; +} + +.help-page pre.wrapped { + white-space: -moz-pre-wrap; + white-space: -pre-wrap; + white-space: -o-pre-wrap; + white-space: pre-wrap; +} + +.help-page .warning-message-container { + margin-top: 20px; + padding: 0 10px; + color: #525252; + background: #EFDCA9; + border: 1px solid #CCCCCC; +} + +.help-page-table { + width: 100%; + border-collapse: collapse; + text-align: left; + margin: 0px 0px 20px 0px; + border-top: 1px solid #D4D4D4; +} + +.help-page-table th { + text-align: left; + font-weight: bold; + border-bottom: 1px solid #D4D4D4; + padding: 5px 6px 5px 6px; +} + +.help-page-table td { + border-bottom: 1px solid #D4D4D4; + padding: 10px 8px 10px 8px; + vertical-align: top; +} + +.help-page-table pre, +.help-page-table p { + margin: 0px; + padding: 0px; + font-family: inherit; + font-size: 100%; +} + +.help-page-table tbody tr:hover td { + background-color: #F3F3F3; +} + +.help-page a:hover { + background-color: transparent; +} + +.help-page .sample-header { + border: 2px solid #D4D4D4; + background: #00497E; + color: #FFFFFF; + padding: 8px 15px; + border-bottom: none; + display: inline-block; + margin: 10px 0px 0px 0px; +} + +.help-page .sample-content { + display: block; + border-width: 0; + padding: 15px 20px; + background: #FFFFFF; + border: 2px solid #D4D4D4; + margin: 0px 0px 10px 0px; +} + +.help-page .api-name { + width: 40%; +} + +.help-page .api-documentation { + width: 60%; +} + +.help-page .parameter-name { + width: 20%; +} + +.help-page .parameter-documentation { + width: 40%; +} + +.help-page .parameter-type { + width: 20%; +} + +.help-page .parameter-annotations { + width: 20%; +} + +.help-page h1, +.help-page .h1 { + font-size: 36px; + line-height: normal; +} + +.help-page h2, +.help-page .h2 { + font-size: 24px; +} + +.help-page h3, +.help-page .h3 { + font-size: 20px; +} + +#body.help-page { + font-size: 14px; + line-height: 143%; + color: #333; +} + +.help-page a { + color: #0000EE; + text-decoration: none; +} diff --git a/OnDocWeb/Areas/HelpPage/HelpPageAreaRegistration.cs b/OnDocWeb/Areas/HelpPage/HelpPageAreaRegistration.cs new file mode 100644 index 00000000..d29ac4d5 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/HelpPageAreaRegistration.cs @@ -0,0 +1,26 @@ +using System.Web.Http; +using System.Web.Mvc; + +namespace OnDocWeb.Areas.HelpPage +{ + public class HelpPageAreaRegistration : AreaRegistration + { + public override string AreaName + { + get + { + return "HelpPage"; + } + } + + public override void RegisterArea(AreaRegistrationContext context) + { + context.MapRoute( + "HelpPage_Default", + "Help/{action}/{apiId}", + new { controller = "Help", action = "Index", apiId = UrlParameter.Optional }); + + HelpPageConfig.Register(GlobalConfiguration.Configuration); + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/HelpPageConfigurationExtensions.cs b/OnDocWeb/Areas/HelpPage/HelpPageConfigurationExtensions.cs new file mode 100644 index 00000000..f9cabb4c --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/HelpPageConfigurationExtensions.cs @@ -0,0 +1,467 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Diagnostics; +using System.Diagnostics.CodeAnalysis; +using System.Globalization; +using System.Linq; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Web.Http; +using System.Web.Http.Controllers; +using System.Web.Http.Description; +using OnDocWeb.Areas.HelpPage.ModelDescriptions; +using OnDocWeb.Areas.HelpPage.Models; + +namespace OnDocWeb.Areas.HelpPage +{ + public static class HelpPageConfigurationExtensions + { + private const string ApiModelPrefix = "MS_HelpPageApiModel_"; + + /// + /// Sets the documentation provider for help page. + /// + /// The . + /// The documentation provider. + public static void SetDocumentationProvider(this HttpConfiguration config, IDocumentationProvider documentationProvider) + { + config.Services.Replace(typeof(IDocumentationProvider), documentationProvider); + } + + /// + /// Sets the objects that will be used by the formatters to produce sample requests/responses. + /// + /// The . + /// The sample objects. + public static void SetSampleObjects(this HttpConfiguration config, IDictionary sampleObjects) + { + config.GetHelpPageSampleGenerator().SampleObjects = sampleObjects; + } + + /// + /// Sets the sample request directly for the specified media type and action. + /// + /// The . + /// The sample request. + /// The media type. + /// Name of the controller. + /// Name of the action. + public static void SetSampleRequest(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName) + { + config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType, SampleDirection.Request, controllerName, actionName, new[] { "*" }), sample); + } + + /// + /// Sets the sample request directly for the specified media type and action with parameters. + /// + /// The . + /// The sample request. + /// The media type. + /// Name of the controller. + /// Name of the action. + /// The parameter names. + public static void SetSampleRequest(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName, params string[] parameterNames) + { + config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType, SampleDirection.Request, controllerName, actionName, parameterNames), sample); + } + + /// + /// Sets the sample request directly for the specified media type of the action. + /// + /// The . + /// The sample response. + /// The media type. + /// Name of the controller. + /// Name of the action. + public static void SetSampleResponse(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName) + { + config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType, SampleDirection.Response, controllerName, actionName, new[] { "*" }), sample); + } + + /// + /// Sets the sample response directly for the specified media type of the action with specific parameters. + /// + /// The . + /// The sample response. + /// The media type. + /// Name of the controller. + /// Name of the action. + /// The parameter names. + public static void SetSampleResponse(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName, params string[] parameterNames) + { + config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType, SampleDirection.Response, controllerName, actionName, parameterNames), sample); + } + + /// + /// Sets the sample directly for all actions with the specified media type. + /// + /// The . + /// The sample. + /// The media type. + public static void SetSampleForMediaType(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType) + { + config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType), sample); + } + + /// + /// Sets the sample directly for all actions with the specified type and media type. + /// + /// The . + /// The sample. + /// The media type. + /// The parameter type or return type of an action. + public static void SetSampleForType(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType, Type type) + { + config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType, type), sample); + } + + /// + /// Specifies the actual type of passed to the in an action. + /// The help page will use this information to produce more accurate request samples. + /// + /// The . + /// The type. + /// Name of the controller. + /// Name of the action. + public static void SetActualRequestType(this HttpConfiguration config, Type type, string controllerName, string actionName) + { + config.GetHelpPageSampleGenerator().ActualHttpMessageTypes.Add(new HelpPageSampleKey(SampleDirection.Request, controllerName, actionName, new[] { "*" }), type); + } + + /// + /// Specifies the actual type of passed to the in an action. + /// The help page will use this information to produce more accurate request samples. + /// + /// The . + /// The type. + /// Name of the controller. + /// Name of the action. + /// The parameter names. + public static void SetActualRequestType(this HttpConfiguration config, Type type, string controllerName, string actionName, params string[] parameterNames) + { + config.GetHelpPageSampleGenerator().ActualHttpMessageTypes.Add(new HelpPageSampleKey(SampleDirection.Request, controllerName, actionName, parameterNames), type); + } + + /// + /// Specifies the actual type of returned as part of the in an action. + /// The help page will use this information to produce more accurate response samples. + /// + /// The . + /// The type. + /// Name of the controller. + /// Name of the action. + public static void SetActualResponseType(this HttpConfiguration config, Type type, string controllerName, string actionName) + { + config.GetHelpPageSampleGenerator().ActualHttpMessageTypes.Add(new HelpPageSampleKey(SampleDirection.Response, controllerName, actionName, new[] { "*" }), type); + } + + /// + /// Specifies the actual type of returned as part of the in an action. + /// The help page will use this information to produce more accurate response samples. + /// + /// The . + /// The type. + /// Name of the controller. + /// Name of the action. + /// The parameter names. + public static void SetActualResponseType(this HttpConfiguration config, Type type, string controllerName, string actionName, params string[] parameterNames) + { + config.GetHelpPageSampleGenerator().ActualHttpMessageTypes.Add(new HelpPageSampleKey(SampleDirection.Response, controllerName, actionName, parameterNames), type); + } + + /// + /// Gets the help page sample generator. + /// + /// The . + /// The help page sample generator. + public static HelpPageSampleGenerator GetHelpPageSampleGenerator(this HttpConfiguration config) + { + return (HelpPageSampleGenerator)config.Properties.GetOrAdd( + typeof(HelpPageSampleGenerator), + k => new HelpPageSampleGenerator()); + } + + /// + /// Sets the help page sample generator. + /// + /// The . + /// The help page sample generator. + public static void SetHelpPageSampleGenerator(this HttpConfiguration config, HelpPageSampleGenerator sampleGenerator) + { + config.Properties.AddOrUpdate( + typeof(HelpPageSampleGenerator), + k => sampleGenerator, + (k, o) => sampleGenerator); + } + + /// + /// Gets the model description generator. + /// + /// The configuration. + /// The + public static ModelDescriptionGenerator GetModelDescriptionGenerator(this HttpConfiguration config) + { + return (ModelDescriptionGenerator)config.Properties.GetOrAdd( + typeof(ModelDescriptionGenerator), + k => InitializeModelDescriptionGenerator(config)); + } + + /// + /// 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. + /// + /// The . + /// The ID. + /// + /// An + /// + public static HelpPageApiModel GetHelpPageApiModel(this HttpConfiguration config, string apiDescriptionId) + { + object model; + string modelId = ApiModelPrefix + apiDescriptionId; + if (!config.Properties.TryGetValue(modelId, out model)) + { + Collection apiDescriptions = config.Services.GetApiExplorer().ApiDescriptions; + ApiDescription apiDescription = apiDescriptions.FirstOrDefault(api => String.Equals(api.GetFriendlyId(), apiDescriptionId, StringComparison.OrdinalIgnoreCase)); + if (apiDescription != null) + { + model = GenerateApiModel(apiDescription, config); + config.Properties.TryAdd(modelId, model); + } + } + + return (HelpPageApiModel)model; + } + + private static HelpPageApiModel GenerateApiModel(ApiDescription apiDescription, HttpConfiguration config) + { + HelpPageApiModel apiModel = new HelpPageApiModel() + { + ApiDescription = apiDescription, + }; + + ModelDescriptionGenerator modelGenerator = config.GetModelDescriptionGenerator(); + HelpPageSampleGenerator sampleGenerator = config.GetHelpPageSampleGenerator(); + GenerateUriParameters(apiModel, modelGenerator); + GenerateRequestModelDescription(apiModel, modelGenerator, sampleGenerator); + GenerateResourceDescription(apiModel, modelGenerator); + GenerateSamples(apiModel, sampleGenerator); + + return apiModel; + } + + private static void GenerateUriParameters(HelpPageApiModel apiModel, ModelDescriptionGenerator modelGenerator) + { + ApiDescription apiDescription = apiModel.ApiDescription; + foreach (ApiParameterDescription apiParameter in apiDescription.ParameterDescriptions) + { + if (apiParameter.Source == ApiParameterSource.FromUri) + { + HttpParameterDescriptor parameterDescriptor = apiParameter.ParameterDescriptor; + Type parameterType = null; + ModelDescription typeDescription = null; + ComplexTypeModelDescription complexTypeDescription = null; + if (parameterDescriptor != null) + { + parameterType = parameterDescriptor.ParameterType; + typeDescription = modelGenerator.GetOrCreateModelDescription(parameterType); + complexTypeDescription = typeDescription as ComplexTypeModelDescription; + } + + // Example: + // [TypeConverter(typeof(PointConverter))] + // public class Point + // { + // public Point(int x, int y) + // { + // X = x; + // Y = y; + // } + // public int X { get; set; } + // public int Y { get; set; } + // } + // Class Point is bindable with a TypeConverter, so Point will be added to UriParameters collection. + // + // public class Point + // { + // public int X { get; set; } + // public int Y { get; set; } + // } + // Regular complex class Point will have properties X and Y added to UriParameters collection. + if (complexTypeDescription != null + && !IsBindableWithTypeConverter(parameterType)) + { + foreach (ParameterDescription uriParameter in complexTypeDescription.Properties) + { + apiModel.UriParameters.Add(uriParameter); + } + } + else if (parameterDescriptor != null) + { + ParameterDescription uriParameter = + AddParameterDescription(apiModel, apiParameter, typeDescription); + + if (!parameterDescriptor.IsOptional) + { + uriParameter.Annotations.Add(new ParameterAnnotation() { Documentation = "Required" }); + } + + object defaultValue = parameterDescriptor.DefaultValue; + if (defaultValue != null) + { + uriParameter.Annotations.Add(new ParameterAnnotation() { Documentation = "Default value is " + Convert.ToString(defaultValue, CultureInfo.InvariantCulture) }); + } + } + else + { + Debug.Assert(parameterDescriptor == null); + + // If parameterDescriptor is null, this is an undeclared route parameter which only occurs + // when source is FromUri. Ignored in request model and among resource parameters but listed + // as a simple string here. + ModelDescription modelDescription = modelGenerator.GetOrCreateModelDescription(typeof(string)); + AddParameterDescription(apiModel, apiParameter, modelDescription); + } + } + } + } + + private static bool IsBindableWithTypeConverter(Type parameterType) + { + if (parameterType == null) + { + return false; + } + + return TypeDescriptor.GetConverter(parameterType).CanConvertFrom(typeof(string)); + } + + private static ParameterDescription AddParameterDescription(HelpPageApiModel apiModel, + ApiParameterDescription apiParameter, ModelDescription typeDescription) + { + ParameterDescription parameterDescription = new ParameterDescription + { + Name = apiParameter.Name, + Documentation = apiParameter.Documentation, + TypeDescription = typeDescription, + }; + + apiModel.UriParameters.Add(parameterDescription); + return parameterDescription; + } + + private static void GenerateRequestModelDescription(HelpPageApiModel apiModel, ModelDescriptionGenerator modelGenerator, HelpPageSampleGenerator sampleGenerator) + { + ApiDescription apiDescription = apiModel.ApiDescription; + foreach (ApiParameterDescription apiParameter in apiDescription.ParameterDescriptions) + { + if (apiParameter.Source == ApiParameterSource.FromBody) + { + Type parameterType = apiParameter.ParameterDescriptor.ParameterType; + apiModel.RequestModelDescription = modelGenerator.GetOrCreateModelDescription(parameterType); + apiModel.RequestDocumentation = apiParameter.Documentation; + } + else if (apiParameter.ParameterDescriptor != null && + apiParameter.ParameterDescriptor.ParameterType == typeof(HttpRequestMessage)) + { + Type parameterType = sampleGenerator.ResolveHttpRequestMessageType(apiDescription); + + if (parameterType != null) + { + apiModel.RequestModelDescription = modelGenerator.GetOrCreateModelDescription(parameterType); + } + } + } + } + + private static void GenerateResourceDescription(HelpPageApiModel apiModel, ModelDescriptionGenerator modelGenerator) + { + ResponseDescription response = apiModel.ApiDescription.ResponseDescription; + Type responseType = response.ResponseType ?? response.DeclaredType; + if (responseType != null && responseType != typeof(void)) + { + apiModel.ResourceDescription = modelGenerator.GetOrCreateModelDescription(responseType); + } + } + + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "The exception is recorded as ErrorMessages.")] + private static void GenerateSamples(HelpPageApiModel apiModel, HelpPageSampleGenerator sampleGenerator) + { + try + { + foreach (var item in sampleGenerator.GetSampleRequests(apiModel.ApiDescription)) + { + apiModel.SampleRequests.Add(item.Key, item.Value); + LogInvalidSampleAsError(apiModel, item.Value); + } + + foreach (var item in sampleGenerator.GetSampleResponses(apiModel.ApiDescription)) + { + apiModel.SampleResponses.Add(item.Key, item.Value); + LogInvalidSampleAsError(apiModel, item.Value); + } + } + catch (Exception e) + { + apiModel.ErrorMessages.Add(String.Format(CultureInfo.CurrentCulture, + "An exception has occurred while generating the sample. Exception message: {0}", + HelpPageSampleGenerator.UnwrapException(e).Message)); + } + } + + private static bool TryGetResourceParameter(ApiDescription apiDescription, HttpConfiguration config, out ApiParameterDescription parameterDescription, out Type resourceType) + { + parameterDescription = apiDescription.ParameterDescriptions.FirstOrDefault( + p => p.Source == ApiParameterSource.FromBody || + (p.ParameterDescriptor != null && p.ParameterDescriptor.ParameterType == typeof(HttpRequestMessage))); + + if (parameterDescription == null) + { + resourceType = null; + return false; + } + + resourceType = parameterDescription.ParameterDescriptor.ParameterType; + + if (resourceType == typeof(HttpRequestMessage)) + { + HelpPageSampleGenerator sampleGenerator = config.GetHelpPageSampleGenerator(); + resourceType = sampleGenerator.ResolveHttpRequestMessageType(apiDescription); + } + + if (resourceType == null) + { + parameterDescription = null; + return false; + } + + return true; + } + + private static ModelDescriptionGenerator InitializeModelDescriptionGenerator(HttpConfiguration config) + { + ModelDescriptionGenerator modelGenerator = new ModelDescriptionGenerator(config); + Collection apis = config.Services.GetApiExplorer().ApiDescriptions; + foreach (ApiDescription api in apis) + { + ApiParameterDescription parameterDescription; + Type parameterType; + if (TryGetResourceParameter(api, config, out parameterDescription, out parameterType)) + { + modelGenerator.GetOrCreateModelDescription(parameterType); + } + } + return modelGenerator; + } + + private static void LogInvalidSampleAsError(HelpPageApiModel apiModel, object sample) + { + InvalidSample invalidSample = sample as InvalidSample; + if (invalidSample != null) + { + apiModel.ErrorMessages.Add(invalidSample.ErrorMessage); + } + } + } +} diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs new file mode 100644 index 00000000..f2a95341 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs @@ -0,0 +1,7 @@ +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class CollectionModelDescription : ModelDescription + { + public ModelDescription ElementDescription { get; set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs new file mode 100644 index 00000000..c63d7d8e --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs @@ -0,0 +1,14 @@ +using System.Collections.ObjectModel; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class ComplexTypeModelDescription : ModelDescription + { + public ComplexTypeModelDescription() + { + Properties = new Collection(); + } + + public Collection Properties { get; private set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs new file mode 100644 index 00000000..312ca8e9 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs @@ -0,0 +1,6 @@ +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class DictionaryModelDescription : KeyValuePairModelDescription + { + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs new file mode 100644 index 00000000..3396b68e --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs @@ -0,0 +1,15 @@ +using System.Collections.Generic; +using System.Collections.ObjectModel; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class EnumTypeModelDescription : ModelDescription + { + public EnumTypeModelDescription() + { + Values = new Collection(); + } + + public Collection Values { get; private set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs new file mode 100644 index 00000000..f48815c1 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs @@ -0,0 +1,11 @@ +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class EnumValueDescription + { + public string Documentation { get; set; } + + public string Name { get; set; } + + public string Value { get; set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs new file mode 100644 index 00000000..77c3c5ec --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs @@ -0,0 +1,12 @@ +using System; +using System.Reflection; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public interface IModelDocumentationProvider + { + string GetDocumentation(MemberInfo member); + + string GetDocumentation(Type type); + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs new file mode 100644 index 00000000..1299e7c3 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs @@ -0,0 +1,9 @@ +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class KeyValuePairModelDescription : ModelDescription + { + public ModelDescription KeyModelDescription { get; set; } + + public ModelDescription ValueModelDescription { get; set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelDescription.cs new file mode 100644 index 00000000..569ff5e1 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelDescription.cs @@ -0,0 +1,16 @@ +using System; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + /// + /// Describes a type model. + /// + public abstract class ModelDescription + { + public string Documentation { get; set; } + + public Type ModelType { get; set; } + + public string Name { get; set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs new file mode 100644 index 00000000..6e4ecdd8 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs @@ -0,0 +1,451 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Collections.Specialized; +using System.ComponentModel.DataAnnotations; +using System.Globalization; +using System.Reflection; +using System.Runtime.Serialization; +using System.Web.Http; +using System.Web.Http.Description; +using System.Xml.Serialization; +using Newtonsoft.Json; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + /// + /// Generates model descriptions for given types. + /// + public class ModelDescriptionGenerator + { + // Modify this to support more data annotation attributes. + private readonly IDictionary> AnnotationTextGenerator = new Dictionary> + { + { typeof(RequiredAttribute), a => "Required" }, + { typeof(RangeAttribute), a => + { + RangeAttribute range = (RangeAttribute)a; + return String.Format(CultureInfo.CurrentCulture, "Range: inclusive between {0} and {1}", range.Minimum, range.Maximum); + } + }, + { typeof(MaxLengthAttribute), a => + { + MaxLengthAttribute maxLength = (MaxLengthAttribute)a; + return String.Format(CultureInfo.CurrentCulture, "Max length: {0}", maxLength.Length); + } + }, + { typeof(MinLengthAttribute), a => + { + MinLengthAttribute minLength = (MinLengthAttribute)a; + return String.Format(CultureInfo.CurrentCulture, "Min length: {0}", minLength.Length); + } + }, + { typeof(StringLengthAttribute), a => + { + StringLengthAttribute strLength = (StringLengthAttribute)a; + return String.Format(CultureInfo.CurrentCulture, "String length: inclusive between {0} and {1}", strLength.MinimumLength, strLength.MaximumLength); + } + }, + { typeof(DataTypeAttribute), a => + { + DataTypeAttribute dataType = (DataTypeAttribute)a; + return String.Format(CultureInfo.CurrentCulture, "Data type: {0}", dataType.CustomDataType ?? dataType.DataType.ToString()); + } + }, + { typeof(RegularExpressionAttribute), a => + { + RegularExpressionAttribute regularExpression = (RegularExpressionAttribute)a; + return String.Format(CultureInfo.CurrentCulture, "Matching regular expression pattern: {0}", regularExpression.Pattern); + } + }, + }; + + // Modify this to add more default documentations. + private readonly IDictionary DefaultTypeDocumentation = new Dictionary + { + { typeof(Int16), "integer" }, + { typeof(Int32), "integer" }, + { typeof(Int64), "integer" }, + { typeof(UInt16), "unsigned integer" }, + { typeof(UInt32), "unsigned integer" }, + { typeof(UInt64), "unsigned integer" }, + { typeof(Byte), "byte" }, + { typeof(Char), "character" }, + { typeof(SByte), "signed byte" }, + { typeof(Uri), "URI" }, + { typeof(Single), "decimal number" }, + { typeof(Double), "decimal number" }, + { typeof(Decimal), "decimal number" }, + { typeof(String), "string" }, + { typeof(Guid), "globally unique identifier" }, + { typeof(TimeSpan), "time interval" }, + { typeof(DateTime), "date" }, + { typeof(DateTimeOffset), "date" }, + { typeof(Boolean), "boolean" }, + }; + + private Lazy _documentationProvider; + + public ModelDescriptionGenerator(HttpConfiguration config) + { + if (config == null) + { + throw new ArgumentNullException("config"); + } + + _documentationProvider = new Lazy(() => config.Services.GetDocumentationProvider() as IModelDocumentationProvider); + GeneratedModels = new Dictionary(StringComparer.OrdinalIgnoreCase); + } + + public Dictionary GeneratedModels { get; private set; } + + private IModelDocumentationProvider DocumentationProvider + { + get + { + return _documentationProvider.Value; + } + } + + public ModelDescription GetOrCreateModelDescription(Type modelType) + { + if (modelType == null) + { + throw new ArgumentNullException("modelType"); + } + + Type underlyingType = Nullable.GetUnderlyingType(modelType); + if (underlyingType != null) + { + modelType = underlyingType; + } + + ModelDescription modelDescription; + string modelName = ModelNameHelper.GetModelName(modelType); + if (GeneratedModels.TryGetValue(modelName, out modelDescription)) + { + if (modelType != modelDescription.ModelType) + { + throw new InvalidOperationException( + String.Format( + CultureInfo.CurrentCulture, + "A model description could not be created. Duplicate model name '{0}' was found for types '{1}' and '{2}'. " + + "Use the [ModelName] attribute to change the model name for at least one of the types so that it has a unique name.", + modelName, + modelDescription.ModelType.FullName, + modelType.FullName)); + } + + return modelDescription; + } + + if (DefaultTypeDocumentation.ContainsKey(modelType)) + { + return GenerateSimpleTypeModelDescription(modelType); + } + + if (modelType.IsEnum) + { + return GenerateEnumTypeModelDescription(modelType); + } + + if (modelType.IsGenericType) + { + Type[] genericArguments = modelType.GetGenericArguments(); + + if (genericArguments.Length == 1) + { + Type enumerableType = typeof(IEnumerable<>).MakeGenericType(genericArguments); + if (enumerableType.IsAssignableFrom(modelType)) + { + return GenerateCollectionModelDescription(modelType, genericArguments[0]); + } + } + if (genericArguments.Length == 2) + { + Type dictionaryType = typeof(IDictionary<,>).MakeGenericType(genericArguments); + if (dictionaryType.IsAssignableFrom(modelType)) + { + return GenerateDictionaryModelDescription(modelType, genericArguments[0], genericArguments[1]); + } + + Type keyValuePairType = typeof(KeyValuePair<,>).MakeGenericType(genericArguments); + if (keyValuePairType.IsAssignableFrom(modelType)) + { + return GenerateKeyValuePairModelDescription(modelType, genericArguments[0], genericArguments[1]); + } + } + } + + if (modelType.IsArray) + { + Type elementType = modelType.GetElementType(); + return GenerateCollectionModelDescription(modelType, elementType); + } + + if (modelType == typeof(NameValueCollection)) + { + return GenerateDictionaryModelDescription(modelType, typeof(string), typeof(string)); + } + + if (typeof(IDictionary).IsAssignableFrom(modelType)) + { + return GenerateDictionaryModelDescription(modelType, typeof(object), typeof(object)); + } + + if (typeof(IEnumerable).IsAssignableFrom(modelType)) + { + return GenerateCollectionModelDescription(modelType, typeof(object)); + } + + return GenerateComplexTypeModelDescription(modelType); + } + + // Change this to provide different name for the member. + private static string GetMemberName(MemberInfo member, bool hasDataContractAttribute) + { + JsonPropertyAttribute jsonProperty = member.GetCustomAttribute(); + if (jsonProperty != null && !String.IsNullOrEmpty(jsonProperty.PropertyName)) + { + return jsonProperty.PropertyName; + } + + if (hasDataContractAttribute) + { + DataMemberAttribute dataMember = member.GetCustomAttribute(); + if (dataMember != null && !String.IsNullOrEmpty(dataMember.Name)) + { + return dataMember.Name; + } + } + + return member.Name; + } + + private static bool ShouldDisplayMember(MemberInfo member, bool hasDataContractAttribute) + { + JsonIgnoreAttribute jsonIgnore = member.GetCustomAttribute(); + XmlIgnoreAttribute xmlIgnore = member.GetCustomAttribute(); + IgnoreDataMemberAttribute ignoreDataMember = member.GetCustomAttribute(); + NonSerializedAttribute nonSerialized = member.GetCustomAttribute(); + ApiExplorerSettingsAttribute apiExplorerSetting = member.GetCustomAttribute(); + + bool hasMemberAttribute = member.DeclaringType.IsEnum ? + member.GetCustomAttribute() != null : + member.GetCustomAttribute() != null; + + // Display member only if all the followings are true: + // no JsonIgnoreAttribute + // no XmlIgnoreAttribute + // no IgnoreDataMemberAttribute + // no NonSerializedAttribute + // no ApiExplorerSettingsAttribute with IgnoreApi set to true + // no DataContractAttribute without DataMemberAttribute or EnumMemberAttribute + return jsonIgnore == null && + xmlIgnore == null && + ignoreDataMember == null && + nonSerialized == null && + (apiExplorerSetting == null || !apiExplorerSetting.IgnoreApi) && + (!hasDataContractAttribute || hasMemberAttribute); + } + + private string CreateDefaultDocumentation(Type type) + { + string documentation; + if (DefaultTypeDocumentation.TryGetValue(type, out documentation)) + { + return documentation; + } + if (DocumentationProvider != null) + { + documentation = DocumentationProvider.GetDocumentation(type); + } + + return documentation; + } + + private void GenerateAnnotations(MemberInfo property, ParameterDescription propertyModel) + { + List annotations = new List(); + + IEnumerable attributes = property.GetCustomAttributes(); + foreach (Attribute attribute in attributes) + { + Func textGenerator; + if (AnnotationTextGenerator.TryGetValue(attribute.GetType(), out textGenerator)) + { + annotations.Add( + new ParameterAnnotation + { + AnnotationAttribute = attribute, + Documentation = textGenerator(attribute) + }); + } + } + + // Rearrange the annotations + annotations.Sort((x, y) => + { + // Special-case RequiredAttribute so that it shows up on top + if (x.AnnotationAttribute is RequiredAttribute) + { + return -1; + } + if (y.AnnotationAttribute is RequiredAttribute) + { + return 1; + } + + // Sort the rest based on alphabetic order of the documentation + return String.Compare(x.Documentation, y.Documentation, StringComparison.OrdinalIgnoreCase); + }); + + foreach (ParameterAnnotation annotation in annotations) + { + propertyModel.Annotations.Add(annotation); + } + } + + private CollectionModelDescription GenerateCollectionModelDescription(Type modelType, Type elementType) + { + ModelDescription collectionModelDescription = GetOrCreateModelDescription(elementType); + if (collectionModelDescription != null) + { + return new CollectionModelDescription + { + Name = ModelNameHelper.GetModelName(modelType), + ModelType = modelType, + ElementDescription = collectionModelDescription + }; + } + + return null; + } + + private ModelDescription GenerateComplexTypeModelDescription(Type modelType) + { + ComplexTypeModelDescription complexModelDescription = new ComplexTypeModelDescription + { + Name = ModelNameHelper.GetModelName(modelType), + ModelType = modelType, + Documentation = CreateDefaultDocumentation(modelType) + }; + + GeneratedModels.Add(complexModelDescription.Name, complexModelDescription); + bool hasDataContractAttribute = modelType.GetCustomAttribute() != null; + PropertyInfo[] properties = modelType.GetProperties(BindingFlags.Public | BindingFlags.Instance); + foreach (PropertyInfo property in properties) + { + if (ShouldDisplayMember(property, hasDataContractAttribute)) + { + ParameterDescription propertyModel = new ParameterDescription + { + Name = GetMemberName(property, hasDataContractAttribute) + }; + + if (DocumentationProvider != null) + { + propertyModel.Documentation = DocumentationProvider.GetDocumentation(property); + } + + GenerateAnnotations(property, propertyModel); + complexModelDescription.Properties.Add(propertyModel); + propertyModel.TypeDescription = GetOrCreateModelDescription(property.PropertyType); + } + } + + FieldInfo[] fields = modelType.GetFields(BindingFlags.Public | BindingFlags.Instance); + foreach (FieldInfo field in fields) + { + if (ShouldDisplayMember(field, hasDataContractAttribute)) + { + ParameterDescription propertyModel = new ParameterDescription + { + Name = GetMemberName(field, hasDataContractAttribute) + }; + + if (DocumentationProvider != null) + { + propertyModel.Documentation = DocumentationProvider.GetDocumentation(field); + } + + complexModelDescription.Properties.Add(propertyModel); + propertyModel.TypeDescription = GetOrCreateModelDescription(field.FieldType); + } + } + + return complexModelDescription; + } + + private DictionaryModelDescription GenerateDictionaryModelDescription(Type modelType, Type keyType, Type valueType) + { + ModelDescription keyModelDescription = GetOrCreateModelDescription(keyType); + ModelDescription valueModelDescription = GetOrCreateModelDescription(valueType); + + return new DictionaryModelDescription + { + Name = ModelNameHelper.GetModelName(modelType), + ModelType = modelType, + KeyModelDescription = keyModelDescription, + ValueModelDescription = valueModelDescription + }; + } + + private EnumTypeModelDescription GenerateEnumTypeModelDescription(Type modelType) + { + EnumTypeModelDescription enumDescription = new EnumTypeModelDescription + { + Name = ModelNameHelper.GetModelName(modelType), + ModelType = modelType, + Documentation = CreateDefaultDocumentation(modelType) + }; + bool hasDataContractAttribute = modelType.GetCustomAttribute() != null; + foreach (FieldInfo field in modelType.GetFields(BindingFlags.Public | BindingFlags.Static)) + { + if (ShouldDisplayMember(field, hasDataContractAttribute)) + { + EnumValueDescription enumValue = new EnumValueDescription + { + Name = field.Name, + Value = field.GetRawConstantValue().ToString() + }; + if (DocumentationProvider != null) + { + enumValue.Documentation = DocumentationProvider.GetDocumentation(field); + } + enumDescription.Values.Add(enumValue); + } + } + GeneratedModels.Add(enumDescription.Name, enumDescription); + + return enumDescription; + } + + private KeyValuePairModelDescription GenerateKeyValuePairModelDescription(Type modelType, Type keyType, Type valueType) + { + ModelDescription keyModelDescription = GetOrCreateModelDescription(keyType); + ModelDescription valueModelDescription = GetOrCreateModelDescription(valueType); + + return new KeyValuePairModelDescription + { + Name = ModelNameHelper.GetModelName(modelType), + ModelType = modelType, + KeyModelDescription = keyModelDescription, + ValueModelDescription = valueModelDescription + }; + } + + private ModelDescription GenerateSimpleTypeModelDescription(Type modelType) + { + SimpleTypeModelDescription simpleModelDescription = new SimpleTypeModelDescription + { + Name = ModelNameHelper.GetModelName(modelType), + ModelType = modelType, + Documentation = CreateDefaultDocumentation(modelType) + }; + GeneratedModels.Add(simpleModelDescription.Name, simpleModelDescription); + + return simpleModelDescription; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs new file mode 100644 index 00000000..d471d437 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs @@ -0,0 +1,18 @@ +using System; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + /// + /// Use this attribute to change the name of the generated for a type. + /// + [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum, AllowMultiple = false, Inherited = false)] + public sealed class ModelNameAttribute : Attribute + { + public ModelNameAttribute(string name) + { + Name = name; + } + + public string Name { get; private set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs new file mode 100644 index 00000000..008167f2 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs @@ -0,0 +1,36 @@ +using System; +using System.Globalization; +using System.Linq; +using System.Reflection; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + internal static class ModelNameHelper + { + // Modify this to provide custom model name mapping. + public static string GetModelName(Type type) + { + ModelNameAttribute modelNameAttribute = type.GetCustomAttribute(); + if (modelNameAttribute != null && !String.IsNullOrEmpty(modelNameAttribute.Name)) + { + return modelNameAttribute.Name; + } + + string modelName = type.Name; + if (type.IsGenericType) + { + // Format the generic type name to something like: GenericOfAgurment1AndArgument2 + Type genericType = type.GetGenericTypeDefinition(); + Type[] genericArguments = type.GetGenericArguments(); + string genericTypeName = genericType.Name; + + // Trim the generic parameter counts from the name + genericTypeName = genericTypeName.Substring(0, genericTypeName.IndexOf('`')); + string[] argumentTypeNames = genericArguments.Select(t => GetModelName(t)).ToArray(); + modelName = String.Format(CultureInfo.InvariantCulture, "{0}Of{1}", genericTypeName, String.Join("And", argumentTypeNames)); + } + + return modelName; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs new file mode 100644 index 00000000..2778c69e --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs @@ -0,0 +1,11 @@ +using System; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class ParameterAnnotation + { + public Attribute AnnotationAttribute { get; set; } + + public string Documentation { get; set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs new file mode 100644 index 00000000..67a3c7ac --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using System.Collections.ObjectModel; + +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class ParameterDescription + { + public ParameterDescription() + { + Annotations = new Collection(); + } + + public Collection Annotations { get; private set; } + + public string Documentation { get; set; } + + public string Name { get; set; } + + public ModelDescription TypeDescription { get; set; } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs b/OnDocWeb/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs new file mode 100644 index 00000000..4835458c --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs @@ -0,0 +1,6 @@ +namespace OnDocWeb.Areas.HelpPage.ModelDescriptions +{ + public class SimpleTypeModelDescription : ModelDescription + { + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Models/HelpPageApiModel.cs b/OnDocWeb/Areas/HelpPage/Models/HelpPageApiModel.cs new file mode 100644 index 00000000..03a2fada --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Models/HelpPageApiModel.cs @@ -0,0 +1,108 @@ +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Net.Http.Headers; +using System.Web.Http.Description; +using OnDocWeb.Areas.HelpPage.ModelDescriptions; + +namespace OnDocWeb.Areas.HelpPage.Models +{ + /// + /// The model that represents an API displayed on the help page. + /// + public class HelpPageApiModel + { + /// + /// Initializes a new instance of the class. + /// + public HelpPageApiModel() + { + UriParameters = new Collection(); + SampleRequests = new Dictionary(); + SampleResponses = new Dictionary(); + ErrorMessages = new Collection(); + } + + /// + /// Gets or sets the that describes the API. + /// + public ApiDescription ApiDescription { get; set; } + + /// + /// Gets or sets the collection that describes the URI parameters for the API. + /// + public Collection UriParameters { get; private set; } + + /// + /// Gets or sets the documentation for the request. + /// + public string RequestDocumentation { get; set; } + + /// + /// Gets or sets the that describes the request body. + /// + public ModelDescription RequestModelDescription { get; set; } + + /// + /// Gets the request body parameter descriptions. + /// + public IList RequestBodyParameters + { + get + { + return GetParameterDescriptions(RequestModelDescription); + } + } + + /// + /// Gets or sets the that describes the resource. + /// + public ModelDescription ResourceDescription { get; set; } + + /// + /// Gets the resource property descriptions. + /// + public IList ResourceProperties + { + get + { + return GetParameterDescriptions(ResourceDescription); + } + } + + /// + /// Gets the sample requests associated with the API. + /// + public IDictionary SampleRequests { get; private set; } + + /// + /// Gets the sample responses associated with the API. + /// + public IDictionary SampleResponses { get; private set; } + + /// + /// Gets the error messages associated with this model. + /// + public Collection ErrorMessages { get; private set; } + + private static IList GetParameterDescriptions(ModelDescription modelDescription) + { + ComplexTypeModelDescription complexTypeModelDescription = modelDescription as ComplexTypeModelDescription; + if (complexTypeModelDescription != null) + { + return complexTypeModelDescription.Properties; + } + + CollectionModelDescription collectionModelDescription = modelDescription as CollectionModelDescription; + if (collectionModelDescription != null) + { + complexTypeModelDescription = collectionModelDescription.ElementDescription as ComplexTypeModelDescription; + if (complexTypeModelDescription != null) + { + return complexTypeModelDescription.Properties; + } + } + + return null; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs new file mode 100644 index 00000000..142c7fc3 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs @@ -0,0 +1,444 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Net.Http; +using System.Net.Http.Formatting; +using System.Net.Http.Headers; +using System.Web.Http.Description; +using System.Xml.Linq; +using Newtonsoft.Json; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// This class will generate the samples for the help page. + /// + public class HelpPageSampleGenerator + { + /// + /// Initializes a new instance of the class. + /// + public HelpPageSampleGenerator() + { + ActualHttpMessageTypes = new Dictionary(); + ActionSamples = new Dictionary(); + SampleObjects = new Dictionary(); + SampleObjectFactories = new List> + { + DefaultSampleObjectFactory, + }; + } + + /// + /// Gets CLR types that are used as the content of or . + /// + public IDictionary ActualHttpMessageTypes { get; internal set; } + + /// + /// Gets the objects that are used directly as samples for certain actions. + /// + public IDictionary ActionSamples { get; internal set; } + + /// + /// Gets the objects that are serialized as samples by the supported formatters. + /// + public IDictionary SampleObjects { get; internal set; } + + /// + /// Gets factories for the objects that the supported formatters will serialize as samples. Processed in order, + /// stopping when the factory successfully returns a non- object. + /// + /// + /// Collection includes just initially. Use + /// SampleObjectFactories.Insert(0, func) to provide an override and + /// SampleObjectFactories.Add(func) to provide a fallback. + [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", + Justification = "This is an appropriate nesting of generic types")] + public IList> SampleObjectFactories { get; private set; } + + /// + /// Gets the request body samples for a given . + /// + /// The . + /// The samples keyed by media type. + public IDictionary GetSampleRequests(ApiDescription api) + { + return GetSample(api, SampleDirection.Request); + } + + /// + /// Gets the response body samples for a given . + /// + /// The . + /// The samples keyed by media type. + public IDictionary GetSampleResponses(ApiDescription api) + { + return GetSample(api, SampleDirection.Response); + } + + /// + /// Gets the request or response body samples. + /// + /// The . + /// The value indicating whether the sample is for a request or for a response. + /// The samples keyed by media type. + public virtual IDictionary GetSample(ApiDescription api, SampleDirection sampleDirection) + { + if (api == null) + { + throw new ArgumentNullException("api"); + } + string controllerName = api.ActionDescriptor.ControllerDescriptor.ControllerName; + string actionName = api.ActionDescriptor.ActionName; + IEnumerable parameterNames = api.ParameterDescriptions.Select(p => p.Name); + Collection formatters; + Type type = ResolveType(api, controllerName, actionName, parameterNames, sampleDirection, out formatters); + var samples = new Dictionary(); + + // Use the samples provided directly for actions + var actionSamples = GetAllActionSamples(controllerName, actionName, parameterNames, sampleDirection); + foreach (var actionSample in actionSamples) + { + samples.Add(actionSample.Key.MediaType, WrapSampleIfString(actionSample.Value)); + } + + // Do the sample generation based on formatters only if an action doesn't return an HttpResponseMessage. + // Here we cannot rely on formatters because we don't know what's in the HttpResponseMessage, it might not even use formatters. + if (type != null && !typeof(HttpResponseMessage).IsAssignableFrom(type)) + { + object sampleObject = GetSampleObject(type); + foreach (var formatter in formatters) + { + foreach (MediaTypeHeaderValue mediaType in formatter.SupportedMediaTypes) + { + if (!samples.ContainsKey(mediaType)) + { + object sample = GetActionSample(controllerName, actionName, parameterNames, type, formatter, mediaType, sampleDirection); + + // If no sample found, try generate sample using formatter and sample object + if (sample == null && sampleObject != null) + { + sample = WriteSampleObjectUsingFormatter(formatter, sampleObject, type, mediaType); + } + + samples.Add(mediaType, WrapSampleIfString(sample)); + } + } + } + } + + return samples; + } + + /// + /// Search for samples that are provided directly through . + /// + /// Name of the controller. + /// Name of the action. + /// The parameter names. + /// The CLR type. + /// The formatter. + /// The media type. + /// The value indicating whether the sample is for a request or for a response. + /// The sample that matches the parameters. + public virtual object GetActionSample(string controllerName, string actionName, IEnumerable parameterNames, Type type, MediaTypeFormatter formatter, MediaTypeHeaderValue mediaType, SampleDirection sampleDirection) + { + object sample; + + // First, try to get the sample provided for the specified mediaType, sampleDirection, controllerName, actionName and parameterNames. + // If not found, try to get the sample provided for the specified mediaType, sampleDirection, controllerName and actionName regardless of the parameterNames. + // If still not found, try to get the sample provided for the specified mediaType and type. + // Finally, try to get the sample provided for the specified mediaType. + if (ActionSamples.TryGetValue(new HelpPageSampleKey(mediaType, sampleDirection, controllerName, actionName, parameterNames), out sample) || + ActionSamples.TryGetValue(new HelpPageSampleKey(mediaType, sampleDirection, controllerName, actionName, new[] { "*" }), out sample) || + ActionSamples.TryGetValue(new HelpPageSampleKey(mediaType, type), out sample) || + ActionSamples.TryGetValue(new HelpPageSampleKey(mediaType), out sample)) + { + return sample; + } + + return null; + } + + /// + /// Gets the sample object that will be serialized by the formatters. + /// First, it will look at the . If no sample object is found, it will try to create + /// one using (which wraps an ) and other + /// factories in . + /// + /// The type. + /// The sample object. + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", + Justification = "Even if all items in SampleObjectFactories throw, problem will be visible as missing sample.")] + public virtual object GetSampleObject(Type type) + { + object sampleObject; + + if (!SampleObjects.TryGetValue(type, out sampleObject)) + { + // No specific object available, try our factories. + foreach (Func factory in SampleObjectFactories) + { + if (factory == null) + { + continue; + } + + try + { + sampleObject = factory(this, type); + if (sampleObject != null) + { + break; + } + } + catch + { + // Ignore any problems encountered in the factory; go on to the next one (if any). + } + } + } + + return sampleObject; + } + + /// + /// Resolves the actual type of passed to the in an action. + /// + /// The . + /// The type. + public virtual Type ResolveHttpRequestMessageType(ApiDescription api) + { + string controllerName = api.ActionDescriptor.ControllerDescriptor.ControllerName; + string actionName = api.ActionDescriptor.ActionName; + IEnumerable parameterNames = api.ParameterDescriptions.Select(p => p.Name); + Collection formatters; + return ResolveType(api, controllerName, actionName, parameterNames, SampleDirection.Request, out formatters); + } + + /// + /// Resolves the type of the action parameter or return value when or is used. + /// + /// The . + /// Name of the controller. + /// Name of the action. + /// The parameter names. + /// The value indicating whether the sample is for a request or a response. + /// The formatters. + [SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", Justification = "This is only used in advanced scenarios.")] + public virtual Type ResolveType(ApiDescription api, string controllerName, string actionName, IEnumerable parameterNames, SampleDirection sampleDirection, out Collection formatters) + { + if (!Enum.IsDefined(typeof(SampleDirection), sampleDirection)) + { + throw new InvalidEnumArgumentException("sampleDirection", (int)sampleDirection, typeof(SampleDirection)); + } + if (api == null) + { + throw new ArgumentNullException("api"); + } + Type type; + if (ActualHttpMessageTypes.TryGetValue(new HelpPageSampleKey(sampleDirection, controllerName, actionName, parameterNames), out type) || + ActualHttpMessageTypes.TryGetValue(new HelpPageSampleKey(sampleDirection, controllerName, actionName, new[] { "*" }), out type)) + { + // Re-compute the supported formatters based on type + Collection newFormatters = new Collection(); + foreach (var formatter in api.ActionDescriptor.Configuration.Formatters) + { + if (IsFormatSupported(sampleDirection, formatter, type)) + { + newFormatters.Add(formatter); + } + } + formatters = newFormatters; + } + else + { + switch (sampleDirection) + { + case SampleDirection.Request: + ApiParameterDescription requestBodyParameter = api.ParameterDescriptions.FirstOrDefault(p => p.Source == ApiParameterSource.FromBody); + type = requestBodyParameter == null ? null : requestBodyParameter.ParameterDescriptor.ParameterType; + formatters = api.SupportedRequestBodyFormatters; + break; + case SampleDirection.Response: + default: + type = api.ResponseDescription.ResponseType ?? api.ResponseDescription.DeclaredType; + formatters = api.SupportedResponseFormatters; + break; + } + } + + return type; + } + + /// + /// Writes the sample object using formatter. + /// + /// The formatter. + /// The value. + /// The type. + /// Type of the media. + /// + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "The exception is recorded as InvalidSample.")] + public virtual object WriteSampleObjectUsingFormatter(MediaTypeFormatter formatter, object value, Type type, MediaTypeHeaderValue mediaType) + { + if (formatter == null) + { + throw new ArgumentNullException("formatter"); + } + if (mediaType == null) + { + throw new ArgumentNullException("mediaType"); + } + + object sample = String.Empty; + MemoryStream ms = null; + HttpContent content = null; + try + { + if (formatter.CanWriteType(type)) + { + ms = new MemoryStream(); + content = new ObjectContent(type, value, formatter, mediaType); + formatter.WriteToStreamAsync(type, value, ms, content, null).Wait(); + ms.Position = 0; + StreamReader reader = new StreamReader(ms); + string serializedSampleString = reader.ReadToEnd(); + if (mediaType.MediaType.ToUpperInvariant().Contains("XML")) + { + serializedSampleString = TryFormatXml(serializedSampleString); + } + else if (mediaType.MediaType.ToUpperInvariant().Contains("JSON")) + { + serializedSampleString = TryFormatJson(serializedSampleString); + } + + sample = new TextSample(serializedSampleString); + } + else + { + sample = new InvalidSample(String.Format( + CultureInfo.CurrentCulture, + "Failed to generate the sample for media type '{0}'. Cannot use formatter '{1}' to write type '{2}'.", + mediaType, + formatter.GetType().Name, + type.Name)); + } + } + catch (Exception e) + { + sample = new InvalidSample(String.Format( + CultureInfo.CurrentCulture, + "An exception has occurred while using the formatter '{0}' to generate sample for media type '{1}'. Exception message: {2}", + formatter.GetType().Name, + mediaType.MediaType, + UnwrapException(e).Message)); + } + finally + { + if (ms != null) + { + ms.Dispose(); + } + if (content != null) + { + content.Dispose(); + } + } + + return sample; + } + + internal static Exception UnwrapException(Exception exception) + { + AggregateException aggregateException = exception as AggregateException; + if (aggregateException != null) + { + return aggregateException.Flatten().InnerException; + } + return exception; + } + + // Default factory for sample objects + private static object DefaultSampleObjectFactory(HelpPageSampleGenerator sampleGenerator, Type type) + { + // Try to create a default sample object + ObjectGenerator objectGenerator = new ObjectGenerator(); + return objectGenerator.GenerateObject(type); + } + + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Handling the failure by returning the original string.")] + private static string TryFormatJson(string str) + { + try + { + object parsedJson = JsonConvert.DeserializeObject(str); + return JsonConvert.SerializeObject(parsedJson, Formatting.Indented); + } + catch + { + // can't parse JSON, return the original string + return str; + } + } + + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Handling the failure by returning the original string.")] + private static string TryFormatXml(string str) + { + try + { + XDocument xml = XDocument.Parse(str); + return xml.ToString(); + } + catch + { + // can't parse XML, return the original string + return str; + } + } + + private static bool IsFormatSupported(SampleDirection sampleDirection, MediaTypeFormatter formatter, Type type) + { + switch (sampleDirection) + { + case SampleDirection.Request: + return formatter.CanReadType(type); + case SampleDirection.Response: + return formatter.CanWriteType(type); + } + return false; + } + + private IEnumerable> GetAllActionSamples(string controllerName, string actionName, IEnumerable parameterNames, SampleDirection sampleDirection) + { + HashSet parameterNamesSet = new HashSet(parameterNames, StringComparer.OrdinalIgnoreCase); + foreach (var sample in ActionSamples) + { + HelpPageSampleKey sampleKey = sample.Key; + if (String.Equals(controllerName, sampleKey.ControllerName, StringComparison.OrdinalIgnoreCase) && + String.Equals(actionName, sampleKey.ActionName, StringComparison.OrdinalIgnoreCase) && + (sampleKey.ParameterNames.SetEquals(new[] { "*" }) || parameterNamesSet.SetEquals(sampleKey.ParameterNames)) && + sampleDirection == sampleKey.SampleDirection) + { + yield return sample; + } + } + } + + private static object WrapSampleIfString(object sample) + { + string stringSample = sample as string; + if (stringSample != null) + { + return new TextSample(stringSample); + } + + return sample; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs new file mode 100644 index 00000000..bf7e0292 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs @@ -0,0 +1,172 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Net.Http.Headers; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// This is used to identify the place where the sample should be applied. + /// + public class HelpPageSampleKey + { + /// + /// Creates a new based on media type. + /// + /// The media type. + public HelpPageSampleKey(MediaTypeHeaderValue mediaType) + { + if (mediaType == null) + { + throw new ArgumentNullException("mediaType"); + } + + ActionName = String.Empty; + ControllerName = String.Empty; + MediaType = mediaType; + ParameterNames = new HashSet(StringComparer.OrdinalIgnoreCase); + } + + /// + /// Creates a new based on media type and CLR type. + /// + /// The media type. + /// The CLR type. + public HelpPageSampleKey(MediaTypeHeaderValue mediaType, Type type) + : this(mediaType) + { + if (type == null) + { + throw new ArgumentNullException("type"); + } + + ParameterType = type; + } + + /// + /// Creates a new based on , controller name, action name and parameter names. + /// + /// The . + /// Name of the controller. + /// Name of the action. + /// The parameter names. + public HelpPageSampleKey(SampleDirection sampleDirection, string controllerName, string actionName, IEnumerable parameterNames) + { + if (!Enum.IsDefined(typeof(SampleDirection), sampleDirection)) + { + throw new InvalidEnumArgumentException("sampleDirection", (int)sampleDirection, typeof(SampleDirection)); + } + if (controllerName == null) + { + throw new ArgumentNullException("controllerName"); + } + if (actionName == null) + { + throw new ArgumentNullException("actionName"); + } + if (parameterNames == null) + { + throw new ArgumentNullException("parameterNames"); + } + + ControllerName = controllerName; + ActionName = actionName; + ParameterNames = new HashSet(parameterNames, StringComparer.OrdinalIgnoreCase); + SampleDirection = sampleDirection; + } + + /// + /// Creates a new based on media type, , controller name, action name and parameter names. + /// + /// The media type. + /// The . + /// Name of the controller. + /// Name of the action. + /// The parameter names. + public HelpPageSampleKey(MediaTypeHeaderValue mediaType, SampleDirection sampleDirection, string controllerName, string actionName, IEnumerable parameterNames) + : this(sampleDirection, controllerName, actionName, parameterNames) + { + if (mediaType == null) + { + throw new ArgumentNullException("mediaType"); + } + + MediaType = mediaType; + } + + /// + /// Gets the name of the controller. + /// + /// + /// The name of the controller. + /// + public string ControllerName { get; private set; } + + /// + /// Gets the name of the action. + /// + /// + /// The name of the action. + /// + public string ActionName { get; private set; } + + /// + /// Gets the media type. + /// + /// + /// The media type. + /// + public MediaTypeHeaderValue MediaType { get; private set; } + + /// + /// Gets the parameter names. + /// + public HashSet ParameterNames { get; private set; } + + public Type ParameterType { get; private set; } + + /// + /// Gets the . + /// + public SampleDirection? SampleDirection { get; private set; } + + public override bool Equals(object obj) + { + HelpPageSampleKey otherKey = obj as HelpPageSampleKey; + if (otherKey == null) + { + return false; + } + + return String.Equals(ControllerName, otherKey.ControllerName, StringComparison.OrdinalIgnoreCase) && + String.Equals(ActionName, otherKey.ActionName, StringComparison.OrdinalIgnoreCase) && + (MediaType == otherKey.MediaType || (MediaType != null && MediaType.Equals(otherKey.MediaType))) && + ParameterType == otherKey.ParameterType && + SampleDirection == otherKey.SampleDirection && + ParameterNames.SetEquals(otherKey.ParameterNames); + } + + public override int GetHashCode() + { + int hashCode = ControllerName.ToUpperInvariant().GetHashCode() ^ ActionName.ToUpperInvariant().GetHashCode(); + if (MediaType != null) + { + hashCode ^= MediaType.GetHashCode(); + } + if (SampleDirection != null) + { + hashCode ^= SampleDirection.GetHashCode(); + } + if (ParameterType != null) + { + hashCode ^= ParameterType.GetHashCode(); + } + foreach (string parameterName in ParameterNames) + { + hashCode ^= parameterName.ToUpperInvariant().GetHashCode(); + } + + return hashCode; + } + } +} diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/ImageSample.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/ImageSample.cs new file mode 100644 index 00000000..a4dda5cd --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/ImageSample.cs @@ -0,0 +1,41 @@ +using System; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// This represents an image sample on the help page. There's a display template named ImageSample associated with this class. + /// + public class ImageSample + { + /// + /// Initializes a new instance of the class. + /// + /// The URL of an image. + public ImageSample(string src) + { + if (src == null) + { + throw new ArgumentNullException("src"); + } + Src = src; + } + + public string Src { get; private set; } + + public override bool Equals(object obj) + { + ImageSample other = obj as ImageSample; + return other != null && Src == other.Src; + } + + public override int GetHashCode() + { + return Src.GetHashCode(); + } + + public override string ToString() + { + return Src; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/InvalidSample.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/InvalidSample.cs new file mode 100644 index 00000000..8087d450 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/InvalidSample.cs @@ -0,0 +1,37 @@ +using System; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. + /// + public class InvalidSample + { + public InvalidSample(string errorMessage) + { + if (errorMessage == null) + { + throw new ArgumentNullException("errorMessage"); + } + ErrorMessage = errorMessage; + } + + public string ErrorMessage { get; private set; } + + public override bool Equals(object obj) + { + InvalidSample other = obj as InvalidSample; + return other != null && ErrorMessage == other.ErrorMessage; + } + + public override int GetHashCode() + { + return ErrorMessage.GetHashCode(); + } + + public override string ToString() + { + return ErrorMessage; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs new file mode 100644 index 00000000..3ba110bf --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs @@ -0,0 +1,456 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.Globalization; +using System.Linq; +using System.Reflection; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// This class will create an object of a given type and populate it with sample data. + /// + public class ObjectGenerator + { + internal const int DefaultCollectionSize = 2; + private readonly SimpleTypeObjectGenerator SimpleObjectGenerator = new SimpleTypeObjectGenerator(); + + /// + /// 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: , , , , , etc. + /// Complex types: POCO types. + /// Nullables: . + /// Arrays: arrays of simple types or complex types. + /// Key value pairs: + /// Tuples: , , etc + /// Dictionaries: or anything deriving from . + /// Collections: , , , , , or anything deriving from or . + /// Queryables: , . + /// + /// The type. + /// An object of the given type. + public object GenerateObject(Type type) + { + return GenerateObject(type, new Dictionary()); + } + + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Here we just want to return null if anything goes wrong.")] + private object GenerateObject(Type type, Dictionary createdObjectReferences) + { + try + { + if (SimpleTypeObjectGenerator.CanGenerateObject(type)) + { + return SimpleObjectGenerator.GenerateObject(type); + } + + if (type.IsArray) + { + return GenerateArray(type, DefaultCollectionSize, createdObjectReferences); + } + + if (type.IsGenericType) + { + return GenerateGenericType(type, DefaultCollectionSize, createdObjectReferences); + } + + if (type == typeof(IDictionary)) + { + return GenerateDictionary(typeof(Hashtable), DefaultCollectionSize, createdObjectReferences); + } + + if (typeof(IDictionary).IsAssignableFrom(type)) + { + return GenerateDictionary(type, DefaultCollectionSize, createdObjectReferences); + } + + if (type == typeof(IList) || + type == typeof(IEnumerable) || + type == typeof(ICollection)) + { + return GenerateCollection(typeof(ArrayList), DefaultCollectionSize, createdObjectReferences); + } + + if (typeof(IList).IsAssignableFrom(type)) + { + return GenerateCollection(type, DefaultCollectionSize, createdObjectReferences); + } + + if (type == typeof(IQueryable)) + { + return GenerateQueryable(type, DefaultCollectionSize, createdObjectReferences); + } + + if (type.IsEnum) + { + return GenerateEnum(type); + } + + if (type.IsPublic || type.IsNestedPublic) + { + return GenerateComplexObject(type, createdObjectReferences); + } + } + catch + { + // Returns null if anything fails + return null; + } + + return null; + } + + private static object GenerateGenericType(Type type, int collectionSize, Dictionary createdObjectReferences) + { + Type genericTypeDefinition = type.GetGenericTypeDefinition(); + if (genericTypeDefinition == typeof(Nullable<>)) + { + return GenerateNullable(type, createdObjectReferences); + } + + if (genericTypeDefinition == typeof(KeyValuePair<,>)) + { + return GenerateKeyValuePair(type, createdObjectReferences); + } + + if (IsTuple(genericTypeDefinition)) + { + return GenerateTuple(type, createdObjectReferences); + } + + Type[] genericArguments = type.GetGenericArguments(); + if (genericArguments.Length == 1) + { + if (genericTypeDefinition == typeof(IList<>) || + genericTypeDefinition == typeof(IEnumerable<>) || + genericTypeDefinition == typeof(ICollection<>)) + { + Type collectionType = typeof(List<>).MakeGenericType(genericArguments); + return GenerateCollection(collectionType, collectionSize, createdObjectReferences); + } + + if (genericTypeDefinition == typeof(IQueryable<>)) + { + return GenerateQueryable(type, collectionSize, createdObjectReferences); + } + + Type closedCollectionType = typeof(ICollection<>).MakeGenericType(genericArguments[0]); + if (closedCollectionType.IsAssignableFrom(type)) + { + return GenerateCollection(type, collectionSize, createdObjectReferences); + } + } + + if (genericArguments.Length == 2) + { + if (genericTypeDefinition == typeof(IDictionary<,>)) + { + Type dictionaryType = typeof(Dictionary<,>).MakeGenericType(genericArguments); + return GenerateDictionary(dictionaryType, collectionSize, createdObjectReferences); + } + + Type closedDictionaryType = typeof(IDictionary<,>).MakeGenericType(genericArguments[0], genericArguments[1]); + if (closedDictionaryType.IsAssignableFrom(type)) + { + return GenerateDictionary(type, collectionSize, createdObjectReferences); + } + } + + if (type.IsPublic || type.IsNestedPublic) + { + return GenerateComplexObject(type, createdObjectReferences); + } + + return null; + } + + private static object GenerateTuple(Type type, Dictionary createdObjectReferences) + { + Type[] genericArgs = type.GetGenericArguments(); + object[] parameterValues = new object[genericArgs.Length]; + bool failedToCreateTuple = true; + ObjectGenerator objectGenerator = new ObjectGenerator(); + for (int i = 0; i < genericArgs.Length; i++) + { + parameterValues[i] = objectGenerator.GenerateObject(genericArgs[i], createdObjectReferences); + failedToCreateTuple &= parameterValues[i] == null; + } + if (failedToCreateTuple) + { + return null; + } + object result = Activator.CreateInstance(type, parameterValues); + return result; + } + + private static bool IsTuple(Type genericTypeDefinition) + { + return genericTypeDefinition == typeof(Tuple<>) || + genericTypeDefinition == typeof(Tuple<,>) || + genericTypeDefinition == typeof(Tuple<,,>) || + genericTypeDefinition == typeof(Tuple<,,,>) || + genericTypeDefinition == typeof(Tuple<,,,,>) || + genericTypeDefinition == typeof(Tuple<,,,,,>) || + genericTypeDefinition == typeof(Tuple<,,,,,,>) || + genericTypeDefinition == typeof(Tuple<,,,,,,,>); + } + + private static object GenerateKeyValuePair(Type keyValuePairType, Dictionary createdObjectReferences) + { + Type[] genericArgs = keyValuePairType.GetGenericArguments(); + Type typeK = genericArgs[0]; + Type typeV = genericArgs[1]; + ObjectGenerator objectGenerator = new ObjectGenerator(); + object keyObject = objectGenerator.GenerateObject(typeK, createdObjectReferences); + object valueObject = objectGenerator.GenerateObject(typeV, createdObjectReferences); + if (keyObject == null && valueObject == null) + { + // Failed to create key and values + return null; + } + object result = Activator.CreateInstance(keyValuePairType, keyObject, valueObject); + return result; + } + + private static object GenerateArray(Type arrayType, int size, Dictionary createdObjectReferences) + { + Type type = arrayType.GetElementType(); + Array result = Array.CreateInstance(type, size); + bool areAllElementsNull = true; + ObjectGenerator objectGenerator = new ObjectGenerator(); + for (int i = 0; i < size; i++) + { + object element = objectGenerator.GenerateObject(type, createdObjectReferences); + result.SetValue(element, i); + areAllElementsNull &= element == null; + } + + if (areAllElementsNull) + { + return null; + } + + return result; + } + + private static object GenerateDictionary(Type dictionaryType, int size, Dictionary createdObjectReferences) + { + Type typeK = typeof(object); + Type typeV = typeof(object); + if (dictionaryType.IsGenericType) + { + Type[] genericArgs = dictionaryType.GetGenericArguments(); + typeK = genericArgs[0]; + typeV = genericArgs[1]; + } + + object result = Activator.CreateInstance(dictionaryType); + MethodInfo addMethod = dictionaryType.GetMethod("Add") ?? dictionaryType.GetMethod("TryAdd"); + MethodInfo containsMethod = dictionaryType.GetMethod("Contains") ?? dictionaryType.GetMethod("ContainsKey"); + ObjectGenerator objectGenerator = new ObjectGenerator(); + for (int i = 0; i < size; i++) + { + object newKey = objectGenerator.GenerateObject(typeK, createdObjectReferences); + if (newKey == null) + { + // Cannot generate a valid key + return null; + } + + bool containsKey = (bool)containsMethod.Invoke(result, new object[] { newKey }); + if (!containsKey) + { + object newValue = objectGenerator.GenerateObject(typeV, createdObjectReferences); + addMethod.Invoke(result, new object[] { newKey, newValue }); + } + } + + return result; + } + + private static object GenerateEnum(Type enumType) + { + Array possibleValues = Enum.GetValues(enumType); + if (possibleValues.Length > 0) + { + return possibleValues.GetValue(0); + } + return null; + } + + private static object GenerateQueryable(Type queryableType, int size, Dictionary createdObjectReferences) + { + bool isGeneric = queryableType.IsGenericType; + object list; + if (isGeneric) + { + Type listType = typeof(List<>).MakeGenericType(queryableType.GetGenericArguments()); + list = GenerateCollection(listType, size, createdObjectReferences); + } + else + { + list = GenerateArray(typeof(object[]), size, createdObjectReferences); + } + if (list == null) + { + return null; + } + if (isGeneric) + { + Type argumentType = typeof(IEnumerable<>).MakeGenericType(queryableType.GetGenericArguments()); + MethodInfo asQueryableMethod = typeof(Queryable).GetMethod("AsQueryable", new[] { argumentType }); + return asQueryableMethod.Invoke(null, new[] { list }); + } + + return Queryable.AsQueryable((IEnumerable)list); + } + + private static object GenerateCollection(Type collectionType, int size, Dictionary createdObjectReferences) + { + Type type = collectionType.IsGenericType ? + collectionType.GetGenericArguments()[0] : + typeof(object); + object result = Activator.CreateInstance(collectionType); + MethodInfo addMethod = collectionType.GetMethod("Add"); + bool areAllElementsNull = true; + ObjectGenerator objectGenerator = new ObjectGenerator(); + for (int i = 0; i < size; i++) + { + object element = objectGenerator.GenerateObject(type, createdObjectReferences); + addMethod.Invoke(result, new object[] { element }); + areAllElementsNull &= element == null; + } + + if (areAllElementsNull) + { + return null; + } + + return result; + } + + private static object GenerateNullable(Type nullableType, Dictionary createdObjectReferences) + { + Type type = nullableType.GetGenericArguments()[0]; + ObjectGenerator objectGenerator = new ObjectGenerator(); + return objectGenerator.GenerateObject(type, createdObjectReferences); + } + + private static object GenerateComplexObject(Type type, Dictionary createdObjectReferences) + { + object result = null; + + if (createdObjectReferences.TryGetValue(type, out result)) + { + // The object has been created already, just return it. This will handle the circular reference case. + return result; + } + + if (type.IsValueType) + { + result = Activator.CreateInstance(type); + } + else + { + ConstructorInfo defaultCtor = type.GetConstructor(Type.EmptyTypes); + if (defaultCtor == null) + { + // Cannot instantiate the type because it doesn't have a default constructor + return null; + } + + result = defaultCtor.Invoke(new object[0]); + } + createdObjectReferences.Add(type, result); + SetPublicProperties(type, result, createdObjectReferences); + SetPublicFields(type, result, createdObjectReferences); + return result; + } + + private static void SetPublicProperties(Type type, object obj, Dictionary createdObjectReferences) + { + PropertyInfo[] properties = type.GetProperties(BindingFlags.Public | BindingFlags.Instance); + ObjectGenerator objectGenerator = new ObjectGenerator(); + foreach (PropertyInfo property in properties) + { + if (property.CanWrite) + { + object propertyValue = objectGenerator.GenerateObject(property.PropertyType, createdObjectReferences); + property.SetValue(obj, propertyValue, null); + } + } + } + + private static void SetPublicFields(Type type, object obj, Dictionary createdObjectReferences) + { + FieldInfo[] fields = type.GetFields(BindingFlags.Public | BindingFlags.Instance); + ObjectGenerator objectGenerator = new ObjectGenerator(); + foreach (FieldInfo field in fields) + { + object fieldValue = objectGenerator.GenerateObject(field.FieldType, createdObjectReferences); + field.SetValue(obj, fieldValue); + } + } + + private class SimpleTypeObjectGenerator + { + private long _index = 0; + private static readonly Dictionary> DefaultGenerators = InitializeGenerators(); + + [SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification = "These are simple type factories and cannot be split up.")] + private static Dictionary> InitializeGenerators() + { + return new Dictionary> + { + { typeof(Boolean), index => true }, + { typeof(Byte), index => (Byte)64 }, + { typeof(Char), index => (Char)65 }, + { typeof(DateTime), index => DateTime.Now }, + { typeof(DateTimeOffset), index => new DateTimeOffset(DateTime.Now) }, + { typeof(DBNull), index => DBNull.Value }, + { typeof(Decimal), index => (Decimal)index }, + { typeof(Double), index => (Double)(index + 0.1) }, + { typeof(Guid), index => Guid.NewGuid() }, + { typeof(Int16), index => (Int16)(index % Int16.MaxValue) }, + { typeof(Int32), index => (Int32)(index % Int32.MaxValue) }, + { typeof(Int64), index => (Int64)index }, + { typeof(Object), index => new object() }, + { typeof(SByte), index => (SByte)64 }, + { typeof(Single), index => (Single)(index + 0.1) }, + { + typeof(String), index => + { + return String.Format(CultureInfo.CurrentCulture, "sample string {0}", index); + } + }, + { + typeof(TimeSpan), index => + { + return TimeSpan.FromTicks(1234567); + } + }, + { typeof(UInt16), index => (UInt16)(index % UInt16.MaxValue) }, + { typeof(UInt32), index => (UInt32)(index % UInt32.MaxValue) }, + { typeof(UInt64), index => (UInt64)index }, + { + typeof(Uri), index => + { + return new Uri(String.Format(CultureInfo.CurrentCulture, "http://webapihelppage{0}.com", index)); + } + }, + }; + } + + public static bool CanGenerateObject(Type type) + { + return DefaultGenerators.ContainsKey(type); + } + + public object GenerateObject(Type type) + { + return DefaultGenerators[type](++_index); + } + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/SampleDirection.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/SampleDirection.cs new file mode 100644 index 00000000..8b890f1a --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/SampleDirection.cs @@ -0,0 +1,11 @@ +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// Indicates whether the sample is used for request or response + /// + public enum SampleDirection + { + Request = 0, + Response + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/SampleGeneration/TextSample.cs b/OnDocWeb/Areas/HelpPage/SampleGeneration/TextSample.cs new file mode 100644 index 00000000..6f64c9ac --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/SampleGeneration/TextSample.cs @@ -0,0 +1,37 @@ +using System; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. + /// + public class TextSample + { + public TextSample(string text) + { + if (text == null) + { + throw new ArgumentNullException("text"); + } + Text = text; + } + + public string Text { get; private set; } + + public override bool Equals(object obj) + { + TextSample other = obj as TextSample; + return other != null && Text == other.Text; + } + + public override int GetHashCode() + { + return Text.GetHashCode(); + } + + public override string ToString() + { + return Text; + } + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/Api.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/Api.cshtml new file mode 100644 index 00000000..7387d060 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/Api.cshtml @@ -0,0 +1,22 @@ +@using System.Web.Http +@using OnDocWeb.Areas.HelpPage.Models +@model HelpPageApiModel + +@{ + var description = Model.ApiDescription; + ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath; +} + + +
+ +
+ @Html.DisplayForModel() +
+
diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml new file mode 100644 index 00000000..f3fc2d46 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml @@ -0,0 +1,41 @@ +@using System.Web.Http +@using System.Web.Http.Controllers +@using System.Web.Http.Description +@using OnDocWeb.Areas.HelpPage +@using OnDocWeb.Areas.HelpPage.Models +@model IGrouping + +@{ + var controllerDocumentation = ViewBag.DocumentationProvider != null ? + ViewBag.DocumentationProvider.GetDocumentation(Model.Key) : + null; +} + +

@Model.Key.ControllerName

+@if (!String.IsNullOrEmpty(controllerDocumentation)) +{ +

@controllerDocumentation

+} + + + + + + @foreach (var api in Model) + { + + + + + } + +
APIDescription
@api.HttpMethod.Method @api.RelativePath + @if (api.Documentation != null) + { +

@api.Documentation

+ } + else + { +

No documentation available.

+ } +
\ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml new file mode 100644 index 00000000..02374385 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml @@ -0,0 +1,6 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model CollectionModelDescription +@if (Model.ElementDescription is ComplexTypeModelDescription) +{ + @Html.DisplayFor(m => m.ElementDescription) +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml new file mode 100644 index 00000000..22df2622 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml @@ -0,0 +1,3 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model ComplexTypeModelDescription +@Html.DisplayFor(m => m.Properties, "Parameters") \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml new file mode 100644 index 00000000..4e031654 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml @@ -0,0 +1,4 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model DictionaryModelDescription +Dictionary of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key] +and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value] \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml new file mode 100644 index 00000000..9cda1318 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml @@ -0,0 +1,24 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model EnumTypeModelDescription + +

Possible enumeration values:

+ + + + + + + @foreach (EnumValueDescription value in Model.Values) + { + + + + + + } + +
NameValueDescription
@value.Name +

@value.Value

+
+

@value.Documentation

+
\ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml new file mode 100644 index 00000000..d525a52a --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml @@ -0,0 +1,67 @@ +@using System.Web.Http +@using System.Web.Http.Description +@using OnDocWeb.Areas.HelpPage.Models +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model HelpPageApiModel + +@{ + ApiDescription description = Model.ApiDescription; +} +

@description.HttpMethod.Method @description.RelativePath

+
+

@description.Documentation

+ +

Request Information

+ +

URI Parameters

+ @Html.DisplayFor(m => m.UriParameters, "Parameters") + +

Body Parameters

+ +

@Model.RequestDocumentation

+ + @if (Model.RequestModelDescription != null) + { + @Html.DisplayFor(m => m.RequestModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.RequestModelDescription }) + if (Model.RequestBodyParameters != null) + { + @Html.DisplayFor(m => m.RequestBodyParameters, "Parameters") + } + } + else + { +

None.

+ } + + @if (Model.SampleRequests.Count > 0) + { +

Request Formats

+ @Html.DisplayFor(m => m.SampleRequests, "Samples") + } + +

Response Information

+ +

Resource Description

+ +

@description.ResponseDescription.Documentation

+ + @if (Model.ResourceDescription != null) + { + @Html.DisplayFor(m => m.ResourceDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ResourceDescription }) + if (Model.ResourceProperties != null) + { + @Html.DisplayFor(m => m.ResourceProperties, "Parameters") + } + } + else + { +

None.

+ } + + @if (Model.SampleResponses.Count > 0) + { +

Response Formats

+ @Html.DisplayFor(m => m.SampleResponses, "Samples") + } + +
\ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml new file mode 100644 index 00000000..de7011cb --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml @@ -0,0 +1,4 @@ +@using OnDocWeb.Areas.HelpPage +@model ImageSample + + \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml new file mode 100644 index 00000000..bc7217cc --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml @@ -0,0 +1,13 @@ +@using OnDocWeb.Areas.HelpPage +@model InvalidSample + +@if (HttpContext.Current.IsDebuggingEnabled) +{ +
+

@Model.ErrorMessage

+
+} +else +{ +

Sample not available.

+} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml new file mode 100644 index 00000000..fdecb9bf --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml @@ -0,0 +1,4 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model KeyValuePairModelDescription +Pair of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key] +and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value] \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml new file mode 100644 index 00000000..1652b3d9 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml @@ -0,0 +1,26 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model Type +@{ + ModelDescription modelDescription = ViewBag.modelDescription; + if (modelDescription is ComplexTypeModelDescription || modelDescription is EnumTypeModelDescription) + { + if (Model == typeof(Object)) + { + @:Object + } + else + { + @Html.ActionLink(modelDescription.Name, "ResourceModel", "Help", new { modelName = modelDescription.Name }, null) + } + } + else if (modelDescription is CollectionModelDescription) + { + var collectionDescription = modelDescription as CollectionModelDescription; + var elementDescription = collectionDescription.ElementDescription; + @:Collection of @Html.DisplayFor(m => elementDescription.ModelType, "ModelDescriptionLink", new { modelDescription = elementDescription }) + } + else + { + @Html.DisplayFor(m => modelDescription) + } +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml new file mode 100644 index 00000000..9e55ea0a --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml @@ -0,0 +1,48 @@ +@using System.Collections.Generic +@using System.Collections.ObjectModel +@using System.Web.Http.Description +@using System.Threading +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model IList + +@if (Model.Count > 0) +{ + + + + + + @foreach (ParameterDescription parameter in Model) + { + ModelDescription modelDescription = parameter.TypeDescription; + + + + + + + } + +
NameDescriptionTypeAdditional information
@parameter.Name +

@parameter.Documentation

+
+ @Html.DisplayFor(m => modelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = modelDescription }) + + @if (parameter.Annotations.Count > 0) + { + foreach (var annotation in parameter.Annotations) + { +

@annotation.Documentation

+ } + } + else + { +

None.

+ } +
+} +else +{ +

None.

+} + diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml new file mode 100644 index 00000000..c19596fb --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml @@ -0,0 +1,30 @@ +@using System.Net.Http.Headers +@model Dictionary + +@{ + // Group the samples into a single tab if they are the same. + Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( + pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), + pair => pair.Key); + var mediaTypes = samples.Keys; +} +
+ @foreach (var mediaType in mediaTypes) + { +

@mediaType

+
+ Sample: + @{ + var sample = samples[mediaType]; + if (sample == null) + { +

Sample not available.

+ } + else + { + @Html.DisplayFor(s => sample); + } + } +
+ } +
\ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml new file mode 100644 index 00000000..09194137 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml @@ -0,0 +1,3 @@ +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model SimpleTypeModelDescription +@Model.Documentation \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml new file mode 100644 index 00000000..7d087cca --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml @@ -0,0 +1,6 @@ +@using OnDocWeb.Areas.HelpPage +@model TextSample + +
+@Model.Text
+
\ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/Index.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/Index.cshtml new file mode 100644 index 00000000..ec65b359 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/Index.cshtml @@ -0,0 +1,38 @@ +@using System.Web.Http +@using System.Web.Http.Controllers +@using System.Web.Http.Description +@using System.Collections.ObjectModel +@using OnDocWeb.Areas.HelpPage.Models +@model Collection + +@{ + ViewBag.Title = "ASP.NET Web API Help Page"; + + // Group APIs by controller + ILookup apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor); +} + + +
+
+
+

@ViewBag.Title

+
+
+
+
+ +
+ @foreach (var group in apiGroups) + { + @Html.DisplayFor(m => group, "ApiGroup") + } +
+
diff --git a/OnDocWeb/Areas/HelpPage/Views/Help/ResourceModel.cshtml b/OnDocWeb/Areas/HelpPage/Views/Help/ResourceModel.cshtml new file mode 100644 index 00000000..0ec7c65a --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Help/ResourceModel.cshtml @@ -0,0 +1,19 @@ +@using System.Web.Http +@using OnDocWeb.Areas.HelpPage.ModelDescriptions +@model ModelDescription + + +
+ +

@Model.Name

+

@Model.Documentation

+
+ @Html.DisplayFor(m => Model) +
+
diff --git a/OnDocWeb/Areas/HelpPage/Views/Shared/_Layout.cshtml b/OnDocWeb/Areas/HelpPage/Views/Shared/_Layout.cshtml new file mode 100644 index 00000000..896c833a --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Shared/_Layout.cshtml @@ -0,0 +1,12 @@ + + + + + + @ViewBag.Title + @RenderSection("scripts", required: false) + + + @RenderBody() + + \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/Views/Web.config b/OnDocWeb/Areas/HelpPage/Views/Web.config new file mode 100644 index 00000000..c9f6f08c --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/Web.config @@ -0,0 +1,41 @@ + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OnDocWeb/Areas/HelpPage/Views/_ViewStart.cshtml b/OnDocWeb/Areas/HelpPage/Views/_ViewStart.cshtml new file mode 100644 index 00000000..d735b1cb --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/Views/_ViewStart.cshtml @@ -0,0 +1,4 @@ +@{ + // Change the Layout path below to blend the look and feel of the help page with your existing web pages + Layout = "~/Views/Shared/_Layout.cshtml"; +} \ No newline at end of file diff --git a/OnDocWeb/Areas/HelpPage/XmlDocumentationProvider.cs b/OnDocWeb/Areas/HelpPage/XmlDocumentationProvider.cs new file mode 100644 index 00000000..8a299299 --- /dev/null +++ b/OnDocWeb/Areas/HelpPage/XmlDocumentationProvider.cs @@ -0,0 +1,161 @@ +using System; +using System.Globalization; +using System.Linq; +using System.Reflection; +using System.Web.Http.Controllers; +using System.Web.Http.Description; +using System.Xml.XPath; +using OnDocWeb.Areas.HelpPage.ModelDescriptions; + +namespace OnDocWeb.Areas.HelpPage +{ + /// + /// A custom that reads the API documentation from an XML documentation file. + /// + public class XmlDocumentationProvider : IDocumentationProvider, IModelDocumentationProvider + { + private XPathNavigator _documentNavigator; + private const string TypeExpression = "/doc/members/member[@name='T:{0}']"; + private const string MethodExpression = "/doc/members/member[@name='M:{0}']"; + private const string PropertyExpression = "/doc/members/member[@name='P:{0}']"; + private const string FieldExpression = "/doc/members/member[@name='F:{0}']"; + private const string ParameterExpression = "param[@name='{0}']"; + + /// + /// Initializes a new instance of the class. + /// + /// The physical path to XML document. + public XmlDocumentationProvider(string documentPath) + { + if (documentPath == null) + { + throw new ArgumentNullException("documentPath"); + } + XPathDocument xpath = new XPathDocument(documentPath); + _documentNavigator = xpath.CreateNavigator(); + } + + public string GetDocumentation(HttpControllerDescriptor controllerDescriptor) + { + XPathNavigator typeNode = GetTypeNode(controllerDescriptor.ControllerType); + return GetTagValue(typeNode, "summary"); + } + + public virtual string GetDocumentation(HttpActionDescriptor actionDescriptor) + { + XPathNavigator methodNode = GetMethodNode(actionDescriptor); + return GetTagValue(methodNode, "summary"); + } + + public virtual string GetDocumentation(HttpParameterDescriptor parameterDescriptor) + { + ReflectedHttpParameterDescriptor reflectedParameterDescriptor = parameterDescriptor as ReflectedHttpParameterDescriptor; + if (reflectedParameterDescriptor != null) + { + XPathNavigator methodNode = GetMethodNode(reflectedParameterDescriptor.ActionDescriptor); + if (methodNode != null) + { + string parameterName = reflectedParameterDescriptor.ParameterInfo.Name; + XPathNavigator parameterNode = methodNode.SelectSingleNode(String.Format(CultureInfo.InvariantCulture, ParameterExpression, parameterName)); + if (parameterNode != null) + { + return parameterNode.Value.Trim(); + } + } + } + + return null; + } + + public string GetResponseDocumentation(HttpActionDescriptor actionDescriptor) + { + XPathNavigator methodNode = GetMethodNode(actionDescriptor); + return GetTagValue(methodNode, "returns"); + } + + public string GetDocumentation(MemberInfo member) + { + string memberName = String.Format(CultureInfo.InvariantCulture, "{0}.{1}", GetTypeName(member.DeclaringType), member.Name); + string expression = member.MemberType == MemberTypes.Field ? FieldExpression : PropertyExpression; + string selectExpression = String.Format(CultureInfo.InvariantCulture, expression, memberName); + XPathNavigator propertyNode = _documentNavigator.SelectSingleNode(selectExpression); + return GetTagValue(propertyNode, "summary"); + } + + public string GetDocumentation(Type type) + { + XPathNavigator typeNode = GetTypeNode(type); + return GetTagValue(typeNode, "summary"); + } + + private XPathNavigator GetMethodNode(HttpActionDescriptor actionDescriptor) + { + ReflectedHttpActionDescriptor reflectedActionDescriptor = actionDescriptor as ReflectedHttpActionDescriptor; + if (reflectedActionDescriptor != null) + { + string selectExpression = String.Format(CultureInfo.InvariantCulture, MethodExpression, GetMemberName(reflectedActionDescriptor.MethodInfo)); + return _documentNavigator.SelectSingleNode(selectExpression); + } + + return null; + } + + private static string GetMemberName(MethodInfo method) + { + string name = String.Format(CultureInfo.InvariantCulture, "{0}.{1}", GetTypeName(method.DeclaringType), method.Name); + ParameterInfo[] parameters = method.GetParameters(); + if (parameters.Length != 0) + { + string[] parameterTypeNames = parameters.Select(param => GetTypeName(param.ParameterType)).ToArray(); + name += String.Format(CultureInfo.InvariantCulture, "({0})", String.Join(",", parameterTypeNames)); + } + + return name; + } + + private static string GetTagValue(XPathNavigator parentNode, string tagName) + { + if (parentNode != null) + { + XPathNavigator node = parentNode.SelectSingleNode(tagName); + if (node != null) + { + return node.Value.Trim(); + } + } + + return null; + } + + private XPathNavigator GetTypeNode(Type type) + { + string controllerTypeName = GetTypeName(type); + string selectExpression = String.Format(CultureInfo.InvariantCulture, TypeExpression, controllerTypeName); + return _documentNavigator.SelectSingleNode(selectExpression); + } + + private static string GetTypeName(Type type) + { + string name = type.FullName; + if (type.IsGenericType) + { + // Format the generic type name to something like: Generic{System.Int32,System.String} + Type genericType = type.GetGenericTypeDefinition(); + Type[] genericArguments = type.GetGenericArguments(); + string genericTypeName = genericType.FullName; + + // Trim the generic parameter counts from the name + genericTypeName = genericTypeName.Substring(0, genericTypeName.IndexOf('`')); + string[] argumentTypeNames = genericArguments.Select(t => GetTypeName(t)).ToArray(); + name = String.Format(CultureInfo.InvariantCulture, "{0}{{{1}}}", genericTypeName, String.Join(",", argumentTypeNames)); + } + if (type.IsNested) + { + // Changing the nested type name from OuterType+InnerType to OuterType.InnerType to match the XML documentation syntax. + name = name.Replace("+", "."); + } + + return name; + } + } +} diff --git a/OnDocWeb/Content/Site.css b/OnDocWeb/Content/Site.css new file mode 100644 index 00000000..8b2ae4b5 --- /dev/null +++ b/OnDocWeb/Content/Site.css @@ -0,0 +1,13 @@ +/* Set padding to keep content from hitting the edges */ +.body-content { + margin-top: 15px; + padding-left: 15px; + padding-right: 15px; +} + +/* Set width on the form input elements since they're 100% wide by default */ +input, +select, +textarea { + max-width: 280px; +} diff --git a/OnDocWeb/Content/bootstrap-grid.css b/OnDocWeb/Content/bootstrap-grid.css new file mode 100644 index 00000000..4691f792 --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.css @@ -0,0 +1,4124 @@ +/*! + * Bootstrap Grid v5.2.3 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg-rgb: 255, 255, 255; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-bg: #fff; + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #dee2e6; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 0.375rem; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-2xl: 2rem; + --bs-border-radius-pill: 50rem; + --bs-link-color: #0d6efd; + --bs-link-hover-color: #0a58ca; + --bs-code-color: #d63384; + --bs-highlight-bg: #fff3cd; +} + +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + box-sizing: border-box; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-left: 8.33333333%; +} + +.offset-2 { + margin-left: 16.66666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.33333333%; +} + +.offset-5 { + margin-left: 41.66666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.33333333%; +} + +.offset-8 { + margin-left: 66.66666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.33333333%; +} + +.offset-11 { + margin-left: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333333%; + } + .offset-sm-2 { + margin-left: 16.66666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333333%; + } + .offset-sm-5 { + margin-left: 41.66666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333333%; + } + .offset-sm-8 { + margin-left: 66.66666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333333%; + } + .offset-sm-11 { + margin-left: 91.66666667%; + } + .g-sm-0, +.gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, +.gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, +.gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, +.gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, +.gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, +.gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, +.gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, +.gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, +.gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, +.gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, +.gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, +.gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333333%; + } + .offset-md-2 { + margin-left: 16.66666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333333%; + } + .offset-md-5 { + margin-left: 41.66666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333333%; + } + .offset-md-8 { + margin-left: 66.66666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333333%; + } + .offset-md-11 { + margin-left: 91.66666667%; + } + .g-md-0, +.gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, +.gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, +.gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, +.gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, +.gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, +.gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, +.gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, +.gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, +.gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, +.gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, +.gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, +.gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333333%; + } + .offset-lg-2 { + margin-left: 16.66666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333333%; + } + .offset-lg-5 { + margin-left: 41.66666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333333%; + } + .offset-lg-8 { + margin-left: 66.66666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333333%; + } + .offset-lg-11 { + margin-left: 91.66666667%; + } + .g-lg-0, +.gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, +.gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, +.gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, +.gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, +.gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, +.gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, +.gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, +.gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, +.gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, +.gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, +.gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, +.gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333333%; + } + .offset-xl-2 { + margin-left: 16.66666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333333%; + } + .offset-xl-5 { + margin-left: 41.66666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333333%; + } + .offset-xl-8 { + margin-left: 66.66666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333333%; + } + .offset-xl-11 { + margin-left: 91.66666667%; + } + .g-xl-0, +.gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, +.gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, +.gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, +.gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, +.gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, +.gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, +.gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, +.gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, +.gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, +.gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, +.gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, +.gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.33333333%; + } + .offset-xxl-2 { + margin-left: 16.66666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.33333333%; + } + .offset-xxl-5 { + margin-left: 41.66666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.33333333%; + } + .offset-xxl-8 { + margin-left: 66.66666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.33333333%; + } + .offset-xxl-11 { + margin-left: 91.66666667%; + } + .g-xxl-0, +.gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, +.gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, +.gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, +.gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, +.gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, +.gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, +.gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, +.gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, +.gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, +.gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, +.gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, +.gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} + +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} + +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-right: 0 !important; +} + +.me-1 { + margin-right: 0.25rem !important; +} + +.me-2 { + margin-right: 0.5rem !important; +} + +.me-3 { + margin-right: 1rem !important; +} + +.me-4 { + margin-right: 1.5rem !important; +} + +.me-5 { + margin-right: 3rem !important; +} + +.me-auto { + margin-right: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-left: 0 !important; +} + +.ms-1 { + margin-left: 0.25rem !important; +} + +.ms-2 { + margin-left: 0.5rem !important; +} + +.ms-3 { + margin-left: 1rem !important; +} + +.ms-4 { + margin-left: 1.5rem !important; +} + +.ms-5 { + margin-left: 3rem !important; +} + +.ms-auto { + margin-left: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} + +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} + +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} + +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} + +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-right: 0 !important; +} + +.pe-1 { + padding-right: 0.25rem !important; +} + +.pe-2 { + padding-right: 0.5rem !important; +} + +.pe-3 { + padding-right: 1rem !important; +} + +.pe-4 { + padding-right: 1.5rem !important; +} + +.pe-5 { + padding-right: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-left: 0 !important; +} + +.ps-1 { + padding-left: 0.25rem !important; +} + +.ps-2 { + padding-left: 0.5rem !important; +} + +.ps-3 { + padding-left: 1rem !important; +} + +.ps-4 { + padding-left: 1.5rem !important; +} + +.ps-5 { + padding-left: 3rem !important; +} + +@media (min-width: 576px) { + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-right: 0 !important; + } + .me-sm-1 { + margin-right: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.5rem !important; + } + .me-sm-3 { + margin-right: 1rem !important; + } + .me-sm-4 { + margin-right: 1.5rem !important; + } + .me-sm-5 { + margin-right: 3rem !important; + } + .me-sm-auto { + margin-right: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-left: 0 !important; + } + .ms-sm-1 { + margin-left: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.5rem !important; + } + .ms-sm-3 { + margin-left: 1rem !important; + } + .ms-sm-4 { + margin-left: 1.5rem !important; + } + .ms-sm-5 { + margin-left: 3rem !important; + } + .ms-sm-auto { + margin-left: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-right: 0 !important; + } + .pe-sm-1 { + padding-right: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.5rem !important; + } + .pe-sm-3 { + padding-right: 1rem !important; + } + .pe-sm-4 { + padding-right: 1.5rem !important; + } + .pe-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-left: 0 !important; + } + .ps-sm-1 { + padding-left: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 768px) { + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-right: 0 !important; + } + .me-md-1 { + margin-right: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.5rem !important; + } + .me-md-3 { + margin-right: 1rem !important; + } + .me-md-4 { + margin-right: 1.5rem !important; + } + .me-md-5 { + margin-right: 3rem !important; + } + .me-md-auto { + margin-right: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-left: 0 !important; + } + .ms-md-1 { + margin-left: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.5rem !important; + } + .ms-md-3 { + margin-left: 1rem !important; + } + .ms-md-4 { + margin-left: 1.5rem !important; + } + .ms-md-5 { + margin-left: 3rem !important; + } + .ms-md-auto { + margin-left: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-right: 0 !important; + } + .pe-md-1 { + padding-right: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.5rem !important; + } + .pe-md-3 { + padding-right: 1rem !important; + } + .pe-md-4 { + padding-right: 1.5rem !important; + } + .pe-md-5 { + padding-right: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-left: 0 !important; + } + .ps-md-1 { + padding-left: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 992px) { + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-right: 0 !important; + } + .me-lg-1 { + margin-right: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.5rem !important; + } + .me-lg-3 { + margin-right: 1rem !important; + } + .me-lg-4 { + margin-right: 1.5rem !important; + } + .me-lg-5 { + margin-right: 3rem !important; + } + .me-lg-auto { + margin-right: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-left: 0 !important; + } + .ms-lg-1 { + margin-left: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.5rem !important; + } + .ms-lg-3 { + margin-left: 1rem !important; + } + .ms-lg-4 { + margin-left: 1.5rem !important; + } + .ms-lg-5 { + margin-left: 3rem !important; + } + .ms-lg-auto { + margin-left: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-right: 0 !important; + } + .pe-lg-1 { + padding-right: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.5rem !important; + } + .pe-lg-3 { + padding-right: 1rem !important; + } + .pe-lg-4 { + padding-right: 1.5rem !important; + } + .pe-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-left: 0 !important; + } + .ps-lg-1 { + padding-left: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 1200px) { + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-right: 0 !important; + } + .me-xl-1 { + margin-right: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.5rem !important; + } + .me-xl-3 { + margin-right: 1rem !important; + } + .me-xl-4 { + margin-right: 1.5rem !important; + } + .me-xl-5 { + margin-right: 3rem !important; + } + .me-xl-auto { + margin-right: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-left: 0 !important; + } + .ms-xl-1 { + margin-left: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.5rem !important; + } + .ms-xl-3 { + margin-left: 1rem !important; + } + .ms-xl-4 { + margin-left: 1.5rem !important; + } + .ms-xl-5 { + margin-left: 3rem !important; + } + .ms-xl-auto { + margin-left: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-right: 0 !important; + } + .pe-xl-1 { + padding-right: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.5rem !important; + } + .pe-xl-3 { + padding-right: 1rem !important; + } + .pe-xl-4 { + padding-right: 1.5rem !important; + } + .pe-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-left: 0 !important; + } + .ps-xl-1 { + padding-left: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 1400px) { + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-right: 0 !important; + } + .me-xxl-1 { + margin-right: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.5rem !important; + } + .me-xxl-3 { + margin-right: 1rem !important; + } + .me-xxl-4 { + margin-right: 1.5rem !important; + } + .me-xxl-5 { + margin-right: 3rem !important; + } + .me-xxl-auto { + margin-right: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-left: 0 !important; + } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } + .ms-xxl-3 { + margin-left: 1rem !important; + } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } + .ms-xxl-5 { + margin-left: 3rem !important; + } + .ms-xxl-auto { + margin-left: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-right: 0 !important; + } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } + .pe-xxl-3 { + padding-right: 1rem !important; + } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } + .pe-xxl-5 { + padding-right: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-left: 0 !important; + } + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} + +/*# sourceMappingURL=bootstrap-grid.css.map */ \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.css.map b/OnDocWeb/Content/bootstrap-grid.css.map new file mode 100644 index 00000000..ab69ccdd --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","bootstrap-grid.css","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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IGI;IAOI,0BAAA;EPwrDV;EO/rDM;IAOI,gCAAA;EP2rDV;EOlsDM;IAOI,yBAAA;EP8rDV;EOrsDM;IAOI,wBAAA;EPisDV;EOxsDM;IAOI,yBAAA;EPosDV;EO3sDM;IAOI,6BAAA;EPusDV;EO9sDM;IAOI,8BAAA;EP0sDV;EOjtDM;IAOI,wBAAA;EP6sDV;EOptDM;IAOI,+BAAA;EPgtDV;EOvtDM;IAOI,wBAAA;EPmtDV;EO1tDM;IAOI,yBAAA;EPstDV;EO7tDM;IAOI,8BAAA;EPytDV;EOhuDM;IAOI,iCAAA;EP4tDV;EOnuDM;IAOI,sCAAA;EP+tDV;EOtuDM;IAOI,yCAAA;EPkuDV;EOzuDM;IAOI,uBAAA;EPquDV;EO5uDM;IAOI,uBAAA;EPwuDV;EO/uDM;IAOI,yBAAA;EP2uDV;EOlvDM;IAOI,yBAAA;EP8uDV;EOrvDM;IAOI,0BAAA;EPivDV;EOxvDM;IAOI,4BAAA;EPovDV;EO3vDM;IAOI,kCAAA;EPuvDV;EO9vDM;IAOI,sCAAA;EP0vDV;EOjwDM;IAOI,oCAAA;EP6vDV;EOpwDM;IAOI,kCAAA;EPgwDV;EOvwDM;IAOI,yCAAA;EPmwDV;EO1wDM;IAOI,wCAAA;EPswDV;EO7wDM;IAOI,wCAAA;EPywDV;EOhxDM;IAOI,kCAAA;EP4wDV;EOnxDM;IAOI,gCAAA;EP+wDV;EOtxDM;IAOI,8BAAA;EPkxDV;EOzxDM;IAOI,gCAAA;EPqxDV;EO5xDM;IAOI,+BAAA;EPwxDV;EO/xDM;IAOI,oCAAA;EP2xDV;EOlyDM;IAOI,kCAAA;EP8xDV;EOryDM;IAOI,gCAAA;EPiyDV;EOxyDM;IAOI,uCAAA;EPoyDV;EO3yDM;IAOI,sCAAA;EPuyDV;EO9yDM;IAOI,iCAAA;EP0yDV;EOjzDM;IAOI,2BAAA;EP6yDV;EOpzDM;IAOI,iCAAA;EPgzDV;EOvzDM;IAOI,+BAAA;EPmzDV;EO1zDM;IAOI,6BAAA;EPszDV;EO7zDM;IAOI,+BAAA;EPyzDV;EOh0DM;IAOI,8BAAA;EP4zDV;EOn0DM;IAOI,oBAAA;EP+zDV;EOt0DM;IAOI,mBAAA;EPk0DV;EOz0DM;IAOI,mBAAA;EPq0DV;EO5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;EP8lEV;EOrmEM;IAOI,kCAAA;EPimEV;EOxmEM;IAOI,iCAAA;EPomEV;EO3mEM;IAOI,+BAAA;EPumEV;EO9mEM;IAOI,iCAAA;EP0mEV;EOjnEM;IAOI,+BAAA;EP6mEV;EOpnEM;IAOI,0BAAA;EPgnEV;EOvnEM;IAOI,gCAAA;EPmnEV;EO1nEM;IAOI,+BAAA;EPsnEV;EO7nEM;IAOI,6BAAA;EPynEV;EOhoEM;IAOI,+BAAA;EP4nEV;EOnoEM;IAOI,6BAAA;EP+nEV;AACF;AG1oEI;EIGI;IAOI,0BAAA;EPooEV;EO3oEM;IAOI,gCAAA;EPuoEV;EO9oEM;IAOI,yBAAA;EP0oEV;EOjpEM;IAOI,wBAAA;EP6oEV;EOppEM;IAOI,yBAAA;EPgpEV;EOvpEM;IAOI,6BAAA;EPmpEV;EO1pEM;IAOI,8BAAA;EPspEV;EO7pEM;IAOI,wBAAA;EPypEV;EOhqEM;IAOI,+BAAA;EP4pEV;EOnqEM;IAOI,wBAAA;EP+pEV;EOtqEM;IAOI,yBAAA;EPkqEV;EOzqEM;IAOI,8BAAA;EPqqEV;EO5qEM;IAOI,iCAAA;EPwqEV;EO/qEM;IAOI,sCAAA;EP2qEV;EOlrEM;IAOI,yCAAA;EP8qEV;EOrrEM;IAOI,uBAAA;EPirEV;EOxrEM;IAOI,uBAAA;EPorEV;EO3rEM;IAOI,yBAAA;EPurEV;EO9rEM;IAOI,yBAAA;EP0rEV;EOjsEM;IAOI,0BAAA;EP6rEV;EOpsEM;IAOI,4BAAA;EPgsEV;EOvsEM;IAOI,kCAAA;EPmsEV;EO1sEM;IAOI,sCAAA;EPssEV;EO7sEM;IAOI,oCAAA;EPysEV;EOhtEM;IAOI,kCAAA;EP4sEV;EOntEM;IAOI,yCAAA;EP+sEV;EOttEM;IAOI,wCAAA;EPktEV;EOztEM;IAOI,wCAAA;EPqtEV;EO5tEM;IAOI,kCAAA;EPwtEV;EO/tEM;IAOI,gCAAA;EP2tEV;EOluEM;IAOI,8BAAA;EP8tEV;EOruEM;IAOI,gCAAA;EPiuEV;EOxuEM;IAOI,+BAAA;EPouEV;EO3uEM;IAOI,oCAAA;EPuuEV;EO9uEM;IAOI,kCAAA;EP0uEV;EOjvEM;IAOI,gCAAA;EP6uEV;EOpvEM;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gFV;EO7gFM;IAOI,+BAAA;EPygFV;EOhhFM;IAOI,8BAAA;EP4gFV;EOnhFM;IAOI,4BAAA;EP+gFV;EOthFM;IAOI,8BAAA;EPkhFV;EOzhFM;IAOI,4BAAA;EPqhFV;EO5hFM;IAOI,2BAAA;EPwhFV;EO/hFM;IAOI,iCAAA;EP2hFV;EOliFM;IAOI,gCAAA;EP8hFV;EOriFM;IAOI,8BAAA;EPiiFV;EOxiFM;IAOI,gCAAA;EPoiFV;EO3iFM;IAOI,8BAAA;EPuiFV;EO9iFM;IAOI,4BAAA;EP0iFV;EOjjFM;IAOI,kCAAA;EP6iFV;EOpjFM;IAOI,iCAAA;EPgjFV;EOvjFM;IAOI,+BAAA;EPmjFV;EO1jFM;IAOI,iCAAA;EPsjFV;EO7jFM;IAOI,+BAAA;EPyjFV;EOhkFM;IAOI,0BAAA;EP4jFV;EOnkFM;IAOI,gCAAA;EP+jFV;EOtkFM;IAOI,+BAAA;EPkkFV;EOzkFM;IAOI,6BAAA;EPqkFV;EO5kFM;IAOI,+BAAA;EPwkFV;EO/kFM;IAOI,6BAAA;EP2kFV;AACF;AGtlFI;EIGI;IAOI,0BAAA;EPglFV;EOvlFM;IAOI,gCAAA;EPmlFV;EO1lFM;IAOI,yBAAA;EPslFV;EO7lFM;IAOI,wBAAA;EPylFV;EOhmFM;IAOI,yBAAA;EP4lFV;EOnmFM;IAOI,6BAAA;EP+lFV;EOtmFM;IAOI,8BAAA;EPkmFV;EOzmFM;IAOI,wBAAA;EPqmFV;EO5mFM;IAOI,+BAAA;EPwmFV;EO/mFM;IAOI,wBAAA;EP2mFV;EOlnFM;IAOI,yBAAA;EP8mFV;EOrnFM;IAOI,8BAAA;EPinFV;EOxnFM;IAOI,iCAAA;EPonFV;EO3nFM;IAOI,sCAAA;EPunFV;EO9nFM;IAOI,yCAAA;EP0nFV;EOjoFM;IAOI,uBAAA;EP6nFV;EOpoFM;IAOI,uBAAA;EPgoFV;EOvoFM;IAOI,yBAAA;EPmoFV;EO1oFM;IAOI,yBAAA;EPsoFV;EO7oFM;IAOI,0BAAA;EPyoFV;EOhpFM;IAOI,4BAAA;EP4oFV;EOnpFM;IAOI,kCAAA;EP+oFV;EOtpFM;IAOI,sCAAA;EPkpFV;EOzpFM;IAOI,oCAAA;EPqpFV;EO5pFM;IAOI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AA;EPgkGV;EOvkGM;IAOI,sCAAA;EPmkGV;EO1kGM;IAOI,yCAAA;EPskGV;EO7kGM;IAOI,uBAAA;EPykGV;EOhlGM;IAOI,uBAAA;EP4kGV;EOnlGM;IAOI,yBAAA;EP+kGV;EOtlGM;IAOI,yBAAA;EPklGV;EOzlGM;IAOI,0BAAA;EPqlGV;EO5lGM;IAOI,4BAAA;EPwlGV;EO/lGM;IAOI,kCAAA;EP2lGV;EOlmGM;IAOI,sCAAA;EP8lGV;EOrmGM;IAOI,oCAAA;EPimGV;EOxmGM;IAOI,kCAAA;EPomGV;EO3mGM;IAOI,yCAAA;EPumGV;EO9mGM;IAOI,wCAAA;EP0mGV;EOjnGM;IAOI,wCAAA;EP6mGV;EOpnGM;IAOI,kCAAA;EPgnGV;EOvnGM;IAOI,gCAAA;EPmnGV;EO1nGM;IAOI,8BAAA;EPsnGV;EO7nGM;IAOI,gCAAA;EPynGV;EOhoGM;IAOI,+BAAA;EP4nGV;EOnoGM;IAOI,oCAAA;EP+nGV;EOtoGM;IAOI,kCAAA;EPkoGV;EOzoGM;IAOI,gCAAA;EPqoGV;EO5oGM;IAOI,uCAAA;EPwoGV;EO/oGM;IAOI,sCAAA;EP2oGV;EOlpGM;IAOI,iCAAA;EP8oGV;EOrpGM;IAOI,2BAAA;EPipGV;EOxpGM;IAOI,iCAAA;EPopGV;EO3pGM;IAOI,+BAAA;EPupGV;EO9pGM;IAOI,6BAAA;EP0pGV;EOjqGM;IAOI,+BAAA;EP6pGV;EOpqGM;IAOI,8BAAA;EPgqGV;EOvqGM;IAOI,oBAAA;EPmqGV;EO1qGM;IAOI,mBAAA;EPsqGV;EO7qGM;IAOI,mBAAA;EPyqGV;EOhrGM;IAOI,mBAAA;EP4qGV;EOnrGM;IAOI,mBAAA;EP+qGV;EOtrGM;IAOI,mBAAA;EPkrGV;EOzrGM;IAOI,mBAAA;EPqrGV;EO5rGM;IAOI,mBAAA;EPwrGV;EO/rGM;IAOI,oBAAA;EP2rGV;EOlsGM;IAOI,0BAAA;EP8rGV;EOrsGM;IAOI,yBAAA;EPisGV;EOxsGM;IAOI,uBAAA;EPosGV;EO3sGM;IAOI,yBAAA;EPusGV;EO9sGM;IAOI,uBAAA;EP0sGV;EOjtGM;IAOI,uBAAA;EP6sGV;EOptGM;IAOI,0BA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Pw+GV;EO/+GM;IAOI,gCAAA;EP2+GV;EOl/GM;IAOI,yBAAA;EP8+GV;EOr/GM;IAOI,wBAAA;EPi/GV;EOx/GM;IAOI,yBAAA;EPo/GV;EO3/GM;IAOI,6BAAA;EPu/GV;EO9/GM;IAOI,8BAAA;EP0/GV;EOjgHM;IAOI,wBAAA;EP6/GV;EOpgHM;IAOI,+BAAA;EPggHV;EOvgHM;IAOI,wBAAA;EPmgHV;EO1gHM;IAOI,yBAAA;EPsgHV;EO7gHM;IAOI,8BAAA;EPygHV;EOhhHM;IAOI,iCAAA;EP4gHV;EOnhHM;IAOI,sCAAA;EP+gHV;EOthHM;IAOI,yCAAA;EPkhHV;EOzhHM;IAOI,uBAAA;EPqhHV;EO5hHM;IAOI,uBAAA;EPwhHV;EO/hHM;IAOI,yBAAA;EP2hHV;EOliHM;IAOI,yBAAA;EP8hHV;EOriHM;IAOI,0BAAA;EPiiHV;EOxiHM;IAOI,4BAAA;EPoiHV;EO3iHM;IAOI,kCAAA;EPuiHV;EO9iHM;IAOI,sCAAA;EP0iHV;EOjjHM;IAOI,oCAAA;EP6iHV;EOpjHM;IAOI,kCAAA;EPgjHV;EOvjHM;IAOI,yCAAA;EPmjHV;EO1jHM;IAOI,wCAAA;EPsjHV;EO7jHM;IAOI,wCAAA;EPyjHV;EOhkHM;IAOI,kCAAA;EP4jHV;EOnkHM;IAOI,gCAAA;EP+jHV;EOtkHM;IAOI,8BAAA;EPkkHV;EOzkHM;IAOI,gCAAA;EPqkHV;EO5kHM;IAOI,+BAAA;EPwkHV;EO/kHM;IAOI,oCAAA;EP2kHV;EOllHM;IAOI,kCAAA;EP8kHV;EOrlHM;IAOI,gCAAA;EPilHV;EOxlHM;IAOI,uCAAA;EPolHV;EO3lHM;IAOI,sCAAA;EPulHV;EO9lHM;IAOI,iCAAA;EP0lHV;EOjmHM;IAOI,2BAAA;EP6lHV;EOpmHM;IAOI,iCAAA;EPgmHV;EOvmHM;IAOI,+BAAA;EPmmHV;EO1mHM;IAOI,6BAAA;EPsmHV;EO7mHM;IAOI,+BAAA;EPymHV;EOhnHM;IAOI,8BAAA;EP4mHV;EOnnHM;IAOI,oBAAA;EP+mHV;EOtnHM;IAOI,mBAAA;EPknHV;EOznHM;IAOI,mBAAA;EPqnHV;EO5nHM;IAOI,mBAAA;E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","file":"bootstrap-grid.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{$font-family-base};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-hover-color: #{$link-hover-color};\n\n --#{$prefix}code-color: #{$code-color};\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-link-color: #0d6efd;\n --bs-link-hover-color: #0a58ca;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"black\": $black,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-100,\n \"purple-200\": $purple-200,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-container-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`\n$prefix: $variable-prefix !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n$body-text-align: null !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n\n$border-style: solid !default;\n$border-color: $gray-300 !default;\n$border-color-translucent: rgba($black, .175) !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .375rem !default;\n$border-radius-sm: .25rem !default;\n$border-radius-lg: .5rem !default;\n$border-radius-xl: 1rem !default;\n$border-radius-2xl: 2rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: null !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-family: null !default;\n$display-font-style: null !default;\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n$text-muted: $gray-600 !default;\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n\n// fusv-disable\n$hr-bg-color: null !default; // Deprecated in v5.2.0\n$hr-height: null !default; // Deprecated in v5.2.0\n// fusv-enable\n\n$hr-border-color: null !default; // Allows for inherited colors\n$hr-border-width: $border-width !default;\n$hr-opacity: .25 !default;\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-padding: .1875em !default;\n$mark-bg: $yellow-100 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: var(--#{$prefix}body-color) !default;\n$table-bg: transparent !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba($black, $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba($black, $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba($black, $table-hover-bg-factor) !default;\n\n$table-border-factor: .1 !default;\n$table-border-width: $border-width !default;\n$table-border-color: var(--#{$prefix}border-color) !default;\n\n$table-striped-order: odd !default;\n$table-striped-columns-order: even !default;\n\n$table-group-separator-color: currentcolor !default;\n\n$table-caption-color: $text-muted !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .25rem !default;\n$input-btn-focus-color-opacity: .25 !default;\n$input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;\n$input-btn-focus-blur: 0 !default;\n$input-btn-focus-box-shadow: 0 0 $input-btn-focus-blur $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: $border-width !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: var(--#{$prefix}link-color) !default;\n$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$btn-link-disabled-color: $gray-600 !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: $text-muted !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: $body-bg !default;\n$input-disabled-color: null !default;\n$input-disabled-bg: $gray-200 !default;\n$input-disabled-border-color: null !default;\n\n$input-color: $body-color !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: $box-shadow-inset !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-sm: $border-radius-sm !default;\n$input-border-radius-lg: $border-radius-lg !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: 1px solid rgba($black, .25) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba($black, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $gray-200 !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml,\") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $input-border-radius !default;\n$form-select-box-shadow: $box-shadow-inset !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n$form-select-border-radius-sm: $input-border-radius-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n$form-select-border-radius-lg: $input-border-radius-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: $gray-300 !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: $box-shadow-inset !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: $gray-500 !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: $input-group-addon-bg !default;\n$form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": $form-feedback-valid-color,\n \"icon\": $form-feedback-icon-valid\n ),\n \"invalid\": (\n \"color\": $form-feedback-invalid-color,\n \"icon\": $form-feedback-icon-invalid\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n$zindex-toast: 1090 !default;\n// scss-docs-end zindex-stack\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: var(--#{$prefix}link-color) !default;\n$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n\n$navbar-light-color: rgba($black, .55) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-dark-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-dark-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: $body-color !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: $box-shadow !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;\n$dropdown-link-hover-bg: $gray-200 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-500 !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding-x: $dropdown-item-padding-x !default;\n$dropdown-header-padding-y: $dropdown-padding-y !default;\n// fusv-disable\n$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0\n// fusv-enable\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-font-size: $font-size-base !default;\n\n$pagination-color: var(--#{$prefix}link-color) !default;\n$pagination-bg: $white !default;\n$pagination-border-radius: $border-radius !default;\n$pagination-border-width: $border-width !default;\n$pagination-margin-start: ($pagination-border-width * -1) !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-focus-bg: $gray-200 !default;\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: $border-radius-sm !default;\n$pagination-border-radius-lg: $border-radius-lg !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-border-width: $border-width !default;\n$card-border-color: var(--#{$prefix}border-color-translucent) !default;\n$card-border-radius: $border-radius !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: $white !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: $body-color !default; // Sass variable because of $accordion-button-icon\n$accordion-bg: $body-bg !default;\n$accordion-border-width: $border-width !default;\n$accordion-border-color: var(--#{$prefix}border-color) !default;\n$accordion-border-radius: $border-radius !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: $accordion-color !default;\n$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;\n$accordion-button-active-color: shade-color($primary, 10%) !default;\n\n$accordion-button-focus-border-color: $input-focus-border-color !default;\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $accordion-button-color !default;\n$accordion-icon-active-color: $accordion-button-active-color !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml,\") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: null !default; // TODO: remove this in v6\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n// fusv-disable\n$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables\n// fusv-enable\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: var(--#{$prefix}border-color-translucent) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;\n$popover-box-shadow: $box-shadow !default;\n\n$popover-header-font-size: $font-size-base !default;\n$popover-header-bg: shade-color($popover-bg, 6%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n// scss-docs-end popover-variables\n\n// fusv-disable\n// Deprecated in Bootstrap 5.2.0 for CSS variables\n$popover-arrow-color: $popover-bg !default;\n$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;\n// fusv-enable\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba($white, .85) !default;\n$toast-border-width: $border-width !default;\n$toast-border-color: var(--#{$prefix}border-color-translucent) !default;\n$toast-border-radius: $border-radius !default;\n$toast-box-shadow: $box-shadow !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: $gray-600 !default;\n$toast-header-background-color: rgba($white, .85) !default;\n$toast-header-border-color: rgba($black, .05) !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: $border-radius !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: $white !default;\n$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: $box-shadow-sm !default;\n$modal-content-box-shadow-sm-up: $box-shadow !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n\n$modal-header-border-color: var(--#{$prefix}border-color) !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-footer-bg: null !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n$alert-bg-scale: -80% !default;\n$alert-border-scale: -70% !default;\n$alert-color-scale: 40% !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: $box-shadow-inset !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: $gray-900 !default;\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n$list-group-item-bg-scale: -80% !default;\n$list-group-item-color-scale: 40% !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: var(--#{$prefix}border-color) !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: $box-shadow-sm !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: $gray-600 !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n// scss-docs-end carousel-variables\n\n// scss-docs-start carousel-dark-variables\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-dark-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml,\") !default;\n$btn-close-focus-shadow: $input-btn-focus-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: $modal-content-bg !default;\n$offcanvas-color: $modal-content-color !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .1875rem !default;\n$kbd-padding-x: .375rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: var(--#{$prefix}body-bg) !default;\n$kbd-bg: var(--#{$prefix}body-color) !default;\n$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6\n\n$pre-color: null !default;\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.min.css b/OnDocWeb/Content/bootstrap-grid.min.css new file mode 100644 index 00000000..5a0a77ed --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap Grid v5.2.3 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.min.css.map b/OnDocWeb/Content/bootstrap-grid.min.css.map new file mode 100644 index 00000000..63cfa34e --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{$font-family-base};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-hover-color: #{$link-hover-color};\n\n --#{$prefix}code-color: #{$code-color};\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-link-color: #0d6efd;\n --bs-link-hover-color: #0a58ca;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.rtl.css b/OnDocWeb/Content/bootstrap-grid.rtl.css new file mode 100644 index 00000000..d8613e8d --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.rtl.css @@ -0,0 +1,4123 @@ +/*! + * Bootstrap Grid v5.2.3 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg-rgb: 255, 255, 255; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-bg: #fff; + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #dee2e6; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 0.375rem; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-2xl: 2rem; + --bs-border-radius-pill: 50rem; + --bs-link-color: #0d6efd; + --bs-link-hover-color: #0a58ca; + --bs-code-color: #d63384; + --bs-highlight-bg: #fff3cd; +} + +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-left: calc(var(--bs-gutter-x) * 0.5); + padding-right: calc(var(--bs-gutter-x) * 0.5); + margin-left: auto; + margin-right: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + box-sizing: border-box; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-left: calc(var(--bs-gutter-x) * 0.5); + padding-right: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-right: 8.33333333%; +} + +.offset-2 { + margin-right: 16.66666667%; +} + +.offset-3 { + margin-right: 25%; +} + +.offset-4 { + margin-right: 33.33333333%; +} + +.offset-5 { + margin-right: 41.66666667%; +} + +.offset-6 { + margin-right: 50%; +} + +.offset-7 { + margin-right: 58.33333333%; +} + +.offset-8 { + margin-right: 66.66666667%; +} + +.offset-9 { + margin-right: 75%; +} + +.offset-10 { + margin-right: 83.33333333%; +} + +.offset-11 { + margin-right: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-right: 0; + } + .offset-sm-1 { + margin-right: 8.33333333%; + } + .offset-sm-2 { + margin-right: 16.66666667%; + } + .offset-sm-3 { + margin-right: 25%; + } + .offset-sm-4 { + margin-right: 33.33333333%; + } + .offset-sm-5 { + margin-right: 41.66666667%; + } + .offset-sm-6 { + margin-right: 50%; + } + .offset-sm-7 { + margin-right: 58.33333333%; + } + .offset-sm-8 { + margin-right: 66.66666667%; + } + .offset-sm-9 { + margin-right: 75%; + } + .offset-sm-10 { + margin-right: 83.33333333%; + } + .offset-sm-11 { + margin-right: 91.66666667%; + } + .g-sm-0, +.gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, +.gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, +.gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, +.gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, +.gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, +.gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, +.gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, +.gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, +.gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, +.gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, +.gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, +.gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-right: 0; + } + .offset-md-1 { + margin-right: 8.33333333%; + } + .offset-md-2 { + margin-right: 16.66666667%; + } + .offset-md-3 { + margin-right: 25%; + } + .offset-md-4 { + margin-right: 33.33333333%; + } + .offset-md-5 { + margin-right: 41.66666667%; + } + .offset-md-6 { + margin-right: 50%; + } + .offset-md-7 { + margin-right: 58.33333333%; + } + .offset-md-8 { + margin-right: 66.66666667%; + } + .offset-md-9 { + margin-right: 75%; + } + .offset-md-10 { + margin-right: 83.33333333%; + } + .offset-md-11 { + margin-right: 91.66666667%; + } + .g-md-0, +.gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, +.gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, +.gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, +.gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, +.gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, +.gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, +.gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, +.gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, +.gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, +.gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, +.gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, +.gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-right: 0; + } + .offset-lg-1 { + margin-right: 8.33333333%; + } + .offset-lg-2 { + margin-right: 16.66666667%; + } + .offset-lg-3 { + margin-right: 25%; + } + .offset-lg-4 { + margin-right: 33.33333333%; + } + .offset-lg-5 { + margin-right: 41.66666667%; + } + .offset-lg-6 { + margin-right: 50%; + } + .offset-lg-7 { + margin-right: 58.33333333%; + } + .offset-lg-8 { + margin-right: 66.66666667%; + } + .offset-lg-9 { + margin-right: 75%; + } + .offset-lg-10 { + margin-right: 83.33333333%; + } + .offset-lg-11 { + margin-right: 91.66666667%; + } + .g-lg-0, +.gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, +.gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, +.gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, +.gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, +.gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, +.gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, +.gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, +.gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, +.gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, +.gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, +.gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, +.gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-right: 0; + } + .offset-xl-1 { + margin-right: 8.33333333%; + } + .offset-xl-2 { + margin-right: 16.66666667%; + } + .offset-xl-3 { + margin-right: 25%; + } + .offset-xl-4 { + margin-right: 33.33333333%; + } + .offset-xl-5 { + margin-right: 41.66666667%; + } + .offset-xl-6 { + margin-right: 50%; + } + .offset-xl-7 { + margin-right: 58.33333333%; + } + .offset-xl-8 { + margin-right: 66.66666667%; + } + .offset-xl-9 { + margin-right: 75%; + } + .offset-xl-10 { + margin-right: 83.33333333%; + } + .offset-xl-11 { + margin-right: 91.66666667%; + } + .g-xl-0, +.gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, +.gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, +.gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, +.gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, +.gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, +.gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, +.gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, +.gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, +.gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, +.gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, +.gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, +.gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-right: 0; + } + .offset-xxl-1 { + margin-right: 8.33333333%; + } + .offset-xxl-2 { + margin-right: 16.66666667%; + } + .offset-xxl-3 { + margin-right: 25%; + } + .offset-xxl-4 { + margin-right: 33.33333333%; + } + .offset-xxl-5 { + margin-right: 41.66666667%; + } + .offset-xxl-6 { + margin-right: 50%; + } + .offset-xxl-7 { + margin-right: 58.33333333%; + } + .offset-xxl-8 { + margin-right: 66.66666667%; + } + .offset-xxl-9 { + margin-right: 75%; + } + .offset-xxl-10 { + margin-right: 83.33333333%; + } + .offset-xxl-11 { + margin-right: 91.66666667%; + } + .g-xxl-0, +.gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, +.gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, +.gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, +.gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, +.gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, +.gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, +.gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, +.gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, +.gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, +.gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, +.gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, +.gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; +} + +.mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; +} + +.mx-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; +} + +.mx-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; +} + +.mx-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; +} + +.mx-auto { + margin-left: auto !important; + margin-right: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-left: 0 !important; +} + +.me-1 { + margin-left: 0.25rem !important; +} + +.me-2 { + margin-left: 0.5rem !important; +} + +.me-3 { + margin-left: 1rem !important; +} + +.me-4 { + margin-left: 1.5rem !important; +} + +.me-5 { + margin-left: 3rem !important; +} + +.me-auto { + margin-left: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-right: 0 !important; +} + +.ms-1 { + margin-right: 0.25rem !important; +} + +.ms-2 { + margin-right: 0.5rem !important; +} + +.ms-3 { + margin-right: 1rem !important; +} + +.ms-4 { + margin-right: 1.5rem !important; +} + +.ms-5 { + margin-right: 3rem !important; +} + +.ms-auto { + margin-right: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; +} + +.px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; +} + +.px-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; +} + +.px-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; +} + +.px-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-left: 0 !important; +} + +.pe-1 { + padding-left: 0.25rem !important; +} + +.pe-2 { + padding-left: 0.5rem !important; +} + +.pe-3 { + padding-left: 1rem !important; +} + +.pe-4 { + padding-left: 1.5rem !important; +} + +.pe-5 { + padding-left: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-right: 0 !important; +} + +.ps-1 { + padding-right: 0.25rem !important; +} + +.ps-2 { + padding-right: 0.5rem !important; +} + +.ps-3 { + padding-right: 1rem !important; +} + +.ps-4 { + padding-right: 1.5rem !important; +} + +.ps-5 { + padding-right: 3rem !important; +} + +@media (min-width: 576px) { + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-sm-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-sm-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-sm-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-sm-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-sm-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-sm-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-left: 0 !important; + } + .me-sm-1 { + margin-left: 0.25rem !important; + } + .me-sm-2 { + margin-left: 0.5rem !important; + } + .me-sm-3 { + margin-left: 1rem !important; + } + .me-sm-4 { + margin-left: 1.5rem !important; + } + .me-sm-5 { + margin-left: 3rem !important; + } + .me-sm-auto { + margin-left: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-right: 0 !important; + } + .ms-sm-1 { + margin-right: 0.25rem !important; + } + .ms-sm-2 { + margin-right: 0.5rem !important; + } + .ms-sm-3 { + margin-right: 1rem !important; + } + .ms-sm-4 { + margin-right: 1.5rem !important; + } + .ms-sm-5 { + margin-right: 3rem !important; + } + .ms-sm-auto { + margin-right: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-sm-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-sm-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-sm-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-sm-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-sm-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-left: 0 !important; + } + .pe-sm-1 { + padding-left: 0.25rem !important; + } + .pe-sm-2 { + padding-left: 0.5rem !important; + } + .pe-sm-3 { + padding-left: 1rem !important; + } + .pe-sm-4 { + padding-left: 1.5rem !important; + } + .pe-sm-5 { + padding-left: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-right: 0 !important; + } + .ps-sm-1 { + padding-right: 0.25rem !important; + } + .ps-sm-2 { + padding-right: 0.5rem !important; + } + .ps-sm-3 { + padding-right: 1rem !important; + } + .ps-sm-4 { + padding-right: 1.5rem !important; + } + .ps-sm-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 768px) { + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-md-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-md-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-md-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-md-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-md-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-md-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-left: 0 !important; + } + .me-md-1 { + margin-left: 0.25rem !important; + } + .me-md-2 { + margin-left: 0.5rem !important; + } + .me-md-3 { + margin-left: 1rem !important; + } + .me-md-4 { + margin-left: 1.5rem !important; + } + .me-md-5 { + margin-left: 3rem !important; + } + .me-md-auto { + margin-left: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-right: 0 !important; + } + .ms-md-1 { + margin-right: 0.25rem !important; + } + .ms-md-2 { + margin-right: 0.5rem !important; + } + .ms-md-3 { + margin-right: 1rem !important; + } + .ms-md-4 { + margin-right: 1.5rem !important; + } + .ms-md-5 { + margin-right: 3rem !important; + } + .ms-md-auto { + margin-right: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-md-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-md-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-md-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-md-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-md-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-left: 0 !important; + } + .pe-md-1 { + padding-left: 0.25rem !important; + } + .pe-md-2 { + padding-left: 0.5rem !important; + } + .pe-md-3 { + padding-left: 1rem !important; + } + .pe-md-4 { + padding-left: 1.5rem !important; + } + .pe-md-5 { + padding-left: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-right: 0 !important; + } + .ps-md-1 { + padding-right: 0.25rem !important; + } + .ps-md-2 { + padding-right: 0.5rem !important; + } + .ps-md-3 { + padding-right: 1rem !important; + } + .ps-md-4 { + padding-right: 1.5rem !important; + } + .ps-md-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 992px) { + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-lg-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-lg-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-lg-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-lg-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-lg-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-lg-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-left: 0 !important; + } + .me-lg-1 { + margin-left: 0.25rem !important; + } + .me-lg-2 { + margin-left: 0.5rem !important; + } + .me-lg-3 { + margin-left: 1rem !important; + } + .me-lg-4 { + margin-left: 1.5rem !important; + } + .me-lg-5 { + margin-left: 3rem !important; + } + .me-lg-auto { + margin-left: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-right: 0 !important; + } + .ms-lg-1 { + margin-right: 0.25rem !important; + } + .ms-lg-2 { + margin-right: 0.5rem !important; + } + .ms-lg-3 { + margin-right: 1rem !important; + } + .ms-lg-4 { + margin-right: 1.5rem !important; + } + .ms-lg-5 { + margin-right: 3rem !important; + } + .ms-lg-auto { + margin-right: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-lg-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-lg-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-lg-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-lg-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-lg-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-left: 0 !important; + } + .pe-lg-1 { + padding-left: 0.25rem !important; + } + .pe-lg-2 { + padding-left: 0.5rem !important; + } + .pe-lg-3 { + padding-left: 1rem !important; + } + .pe-lg-4 { + padding-left: 1.5rem !important; + } + .pe-lg-5 { + padding-left: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-right: 0 !important; + } + .ps-lg-1 { + padding-right: 0.25rem !important; + } + .ps-lg-2 { + padding-right: 0.5rem !important; + } + .ps-lg-3 { + padding-right: 1rem !important; + } + .ps-lg-4 { + padding-right: 1.5rem !important; + } + .ps-lg-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 1200px) { + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xl-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-xl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-left: 0 !important; + } + .me-xl-1 { + margin-left: 0.25rem !important; + } + .me-xl-2 { + margin-left: 0.5rem !important; + } + .me-xl-3 { + margin-left: 1rem !important; + } + .me-xl-4 { + margin-left: 1.5rem !important; + } + .me-xl-5 { + margin-left: 3rem !important; + } + .me-xl-auto { + margin-left: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-right: 0 !important; + } + .ms-xl-1 { + margin-right: 0.25rem !important; + } + .ms-xl-2 { + margin-right: 0.5rem !important; + } + .ms-xl-3 { + margin-right: 1rem !important; + } + .ms-xl-4 { + margin-right: 1.5rem !important; + } + .ms-xl-5 { + margin-right: 3rem !important; + } + .ms-xl-auto { + margin-right: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xl-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-xl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-left: 0 !important; + } + .pe-xl-1 { + padding-left: 0.25rem !important; + } + .pe-xl-2 { + padding-left: 0.5rem !important; + } + .pe-xl-3 { + padding-left: 1rem !important; + } + .pe-xl-4 { + padding-left: 1.5rem !important; + } + .pe-xl-5 { + padding-left: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-right: 0 !important; + } + .ps-xl-1 { + padding-right: 0.25rem !important; + } + .ps-xl-2 { + padding-right: 0.5rem !important; + } + .ps-xl-3 { + padding-right: 1rem !important; + } + .ps-xl-4 { + padding-right: 1.5rem !important; + } + .ps-xl-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 1400px) { + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xxl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xxl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xxl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xxl-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-xxl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xxl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-left: 0 !important; + } + .me-xxl-1 { + margin-left: 0.25rem !important; + } + .me-xxl-2 { + margin-left: 0.5rem !important; + } + .me-xxl-3 { + margin-left: 1rem !important; + } + .me-xxl-4 { + margin-left: 1.5rem !important; + } + .me-xxl-5 { + margin-left: 3rem !important; + } + .me-xxl-auto { + margin-left: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-right: 0 !important; + } + .ms-xxl-1 { + margin-right: 0.25rem !important; + } + .ms-xxl-2 { + margin-right: 0.5rem !important; + } + .ms-xxl-3 { + margin-right: 1rem !important; + } + .ms-xxl-4 { + margin-right: 1.5rem !important; + } + .ms-xxl-5 { + margin-right: 3rem !important; + } + .ms-xxl-auto { + margin-right: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xxl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xxl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xxl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xxl-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-xxl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-left: 0 !important; + } + .pe-xxl-1 { + padding-left: 0.25rem !important; + } + .pe-xxl-2 { + padding-left: 0.5rem !important; + } + .pe-xxl-3 { + padding-left: 1rem !important; + } + .pe-xxl-4 { + padding-left: 1.5rem !important; + } + .pe-xxl-5 { + padding-left: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-right: 0 !important; + } + .ps-xxl-1 { + padding-right: 0.25rem !important; + } + .ps-xxl-2 { + padding-right: 0.5rem !important; + } + .ps-xxl-3 { + padding-right: 1rem !important; + } + .ps-xxl-4 { + padding-right: 1.5rem !important; + } + .ps-xxl-5 { + padding-right: 3rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap-grid.rtl.css.map */ \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.rtl.css.map b/OnDocWeb/Content/bootstrap-grid.rtl.css.map new file mode 100644 index 00000000..f479a7da --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.rtl.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","bootstrap-grid.css","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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IGI;IAOI,0BAAA;EPwrDV;EO/rDM;IAOI,gCAAA;EP2rDV;EOlsDM;IAOI,yBAAA;EP8rDV;EOrsDM;IAOI,wBAAA;EPisDV;EOxsDM;IAOI,yBAAA;EPosDV;EO3sDM;IAOI,6BAAA;EPusDV;EO9sDM;IAOI,8BAAA;EP0sDV;EOjtDM;IAOI,wBAAA;EP6sDV;EOptDM;IAOI,+BAAA;EPgtDV;EOvtDM;IAOI,wBAAA;EPmtDV;EO1tDM;IAOI,yBAAA;EPstDV;EO7tDM;IAOI,8BAAA;EPytDV;EOhuDM;IAOI,iCAAA;EP4tDV;EOnuDM;IAOI,sCAAA;EP+tDV;EOtuDM;IAOI,yCAAA;EPkuDV;EOzuDM;IAOI,uBAAA;EPquDV;EO5uDM;IAOI,uBAAA;EPwuDV;EO/uDM;IAOI,yBAAA;EP2uDV;EOlvDM;IAOI,yBAAA;EP8uDV;EOrvDM;IAOI,0BAAA;EPivDV;EOxvDM;IAOI,4BAAA;EPovDV;EO3vDM;IAOI,kCAAA;EPuvDV;EO9vDM;IAOI,sCAAA;EP0vDV;EOjwDM;IAOI,oCAAA;EP6vDV;EOpwDM;IAOI,kCAAA;EPgwDV;EOvwDM;IAOI,yCAAA;EPmwDV;EO1wDM;IAOI,wCAAA;EPswDV;EO7wDM;IAOI,wCAAA;EPywDV;EOhxDM;IAOI,kCAAA;EP4wDV;EOnxDM;IAOI,gCAAA;EP+wDV;EOtxDM;IAOI,8BAAA;EPkxDV;EOzxDM;IAOI,gCAAA;EPqxDV;EO5xDM;IAOI,+BAAA;EPwxDV;EO/xDM;IAOI,oCAAA;EP2xDV;EOlyDM;IAOI,kCAAA;EP8xDV;EOryDM;IAOI,gCAAA;EPiyDV;EOxyDM;IAOI,uCAAA;EPoyDV;EO3yDM;IAOI,sCAAA;EPuyDV;EO9yDM;IAOI,iCAAA;EP0yDV;EOjzDM;IAOI,2BAAA;EP6yDV;EOpzDM;IAOI,iCAAA;EPgzDV;EOvzDM;IAOI,+BAAA;EPmzDV;EO1zDM;IAOI,6BAAA;EPszDV;EO7zDM;IAOI,+BAAA;EPyzDV;EOh0DM;IAOI,8BAAA;EP4zDV;EOn0DM;IAOI,oBAAA;EP+zDV;EOt0DM;IAOI,mBAAA;EPk0DV;EOz0DM;IAOI,mBAAA;EPq0DV;EO5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;EP8lEV;EOrmEM;IAOI,kCAAA;EPimEV;EOxmEM;IAOI,iCAAA;EPomEV;EO3mEM;IAOI,+BAAA;EPumEV;EO9mEM;IAOI,iCAAA;EP0mEV;EOjnEM;IAOI,+BAAA;EP6mEV;EOpnEM;IAOI,2BAAA;EPgnEV;EOvnEM;IAOI,iCAAA;EPmnEV;EO1nEM;IAOI,gCAAA;EPsnEV;EO7nEM;IAOI,8BAAA;EPynEV;EOhoEM;IAOI,gCAAA;EP4nEV;EOnoEM;IAOI,8BAAA;EP+nEV;AACF;AG1oEI;EIGI;IAOI,0BAAA;EPooEV;EO3oEM;IAOI,gCAAA;EPuoEV;EO9oEM;IAOI,yBAAA;EP0oEV;EOjpEM;IAOI,wBAAA;EP6oEV;EOppEM;IAOI,yBAAA;EPgpEV;EOvpEM;IAOI,6BAAA;EPmpEV;EO1pEM;IAOI,8BAAA;EPspEV;EO7pEM;IAOI,wBAAA;EPypEV;EOhqEM;IAOI,+BAAA;EP4pEV;EOnqEM;IAOI,wBAAA;EP+pEV;EOtqEM;IAOI,yBAAA;EPkqEV;EOzqEM;IAOI,8BAAA;EPqqEV;EO5qEM;IAOI,iCAAA;EPwqEV;EO/qEM;IAOI,sCAAA;EP2qEV;EOlrEM;IAOI,yCAAA;EP8qEV;EOrrEM;IAOI,uBAAA;EPirEV;EOxrEM;IAOI,uBAAA;EPorEV;EO3rEM;IAOI,yBAAA;EPurEV;EO9rEM;IAOI,yBAAA;EP0rEV;EOjsEM;IAOI,0BAAA;EP6rEV;EOpsEM;IAOI,4BAAA;EPgsEV;EOvsEM;IAOI,kCAAA;EPmsEV;EO1sEM;IAOI,sCAAA;EPssEV;EO7sEM;IAOI,oCAAA;EPysEV;EOhtEM;IAOI,kCAAA;EP4sEV;EOntEM;IAOI,yCAAA;EP+sEV;EOttEM;IAOI,wCAAA;EPktEV;EOztEM;IAOI,wCAAA;EPqtEV;EO5tEM;IAOI,kCAAA;EPwtEV;EO/tEM;IAOI,gCAAA;EP2tEV;EOluEM;IAOI,8BAAA;EP8tEV;EOruEM;IAOI,gCAAA;EPiuEV;EOxuEM;IAOI,+BAAA;EPouEV;EO3uEM;IAOI,oCAAA;EPuuEV;EO9uEM;IAOI,kCAAA;EP0uEV;EOjvEM;IAOI,gCAAA;EP6uEV;EOpvEM;IAOI,uCAAA;EPgvEV;EOvvEM;IAOI,sCAAA;EPmvEV;EO1vEM;IAOI,iCAAA;EPsvEV;EO7vEM;IAOI,2BAAA;EPyvEV;EOhwEM;IAOI,iCAAA;EP4vEV;EOnwEM;IAOI,+BAAA;EP+vEV;EOtwEM;IAOI,6BAAA;EPkwEV;EOzwEM;IAOI,+BAAA;EPqwEV;EO5wEM;IAOI,8BAAA;EPwwEV;EO/wEM;IAOI,oBAAA;EP2wEV;EOlxEM;IAOI,mBAAA;EP8wEV;EOrxEM;IAOI,mBAAA;EPixEV;EOxxEM;IAOI,mBAAA;EPoxEV;EO3xEM;IAOI,mBAAA;EPuxEV;EO9xEM;IAOI,mBAAA;EP0xEV;EOjyEM;IAOI,mBAAA;EP6xEV;EOpyEM;IAOI,mBAAA;EPgyEV;EOvyEM;IAOI,oBAAA;EPmyEV;EO1yEM;IAOI,0BAAA;EPsyEV;EO7yEM;IAOI,yBAAA;EPyyEV;EOhzEM;IAOI,uBAAA;EP4yEV;EOnzEM;IAOI,yBAAA;EP+yEV;EOtzEM;IAOI,uBAAA;EPkzEV;EOzzEM;IAOI,uBAAA;EPqzEV;EO5zEM;IAOI,yBAAA;IAAA,0BAAA;EPyzEV;EOh0EM;IAOI,+BAAA;IAAA,gCAAA;EP6zEV;EOp0EM;IAOI,8BAAA;IAAA,+BAAA;EPi0EV;EOx0EM;IAOI,4BAAA;IAAA,6BAAA;EPq0EV;EO50EM;IAOI,8BAAA;IAAA,+BAAA;EPy0EV;EOh1EM;IAOI,4BAAA;IAAA,6BAAA;EP60EV;EOp1EM;IAOI,4BAAA;IAAA,6BAAA;EPi1EV;EOx1EM;IAOI,wBAAA;IAAA,2BAAA;EPq1EV;EO51EM;IAOI,8BAAA;IAAA,iCAAA;EPy1EV;EOh2EM;IAOI,6BAAA;IAAA,gCAAA;EP61EV;EOp2EM;IAOI,2BAAA;IAAA,8BAAA;EPi2EV;EOx2EM;IAOI,6BAAA;IAAA,gCAAA;EPq2EV;EO52EM;IAOI,2BAAA;IAAA,8BAAA;EPy2EV;EOh3EM;IAOI,2BAAA;IAAA,8BAAA;EP62EV;EOp3EM;IAOI,wBAAA;EPg3EV;EOv3EM;IAOI,8BAAA;EPm3EV;EO13EM;IAOI,6BAAA;EPs3EV;EO73EM;IAOI,2BAAA;EPy3EV;EOh4EM;IAOI,6BAAA;EP43EV;EOn4EM;IAOI,2BAAA;EP+3EV;EOt4EM;IAOI,2BAAA;EPk4EV;EOz4EM;IAOI,yBAAA;EPq4EV;EO54EM;IAOI,+BAAA;EPw4EV;EO/4EM;IAOI,8BAAA;EP24EV;EOl5EM;IAOI,4BAAA;EP84EV;EOr5EM;IAOI,8BAAA;EPi5EV;EOx5EM;IAOI,4BAAA;EPo5EV;EO35EM;IAOI,4BAAA;EPu5EV;EO95EM;IAOI,2BAAA;EP05EV;EOj6EM;IAOI,iCAAA;EP65EV;EOp6EM;IAOI,gCAAA;EPg6EV;EOv6EM;IAOI,8BAAA;EPm6EV;EO16EM;IAOI,gCAAA;EPs6EV;EO76EM;IAOI,8BAAA;EPy6EV;EOh7EM;IAOI,8BAAA;EP46EV;EOn7EM;IAOI,0BAAA;EP+6EV;EOt7EM;IAOI,gCAAA;EPk7EV;EOz7EM;IAOI,+BAAA;EPq7EV;EO57EM;IAOI,6BAAA;EPw7EV;EO/7EM;IAOI,+BAAA;EP27EV;EOl8EM;IAOI,6BAAA;EP87EV;EOr8EM;IAOI,6BAAA;EPi8EV;EOx8EM;IAOI,qBAAA;EPo8EV;EO38EM;IAOI,2BAAA;EPu8EV;EO98EM;IAOI,0BAAA;EP08EV;EOj9EM;IAOI,wBAAA;EP68EV;EOp9EM;IAOI,0BAAA;EPg9EV;EOv9EM;IAOI,wBAAA;EPm9EV;EO19EM;IAOI,0BAAA;IAAA,2BAAA;EPu9EV;EO99EM;IAOI,gCAAA;IAAA,iCAAA;EP29EV;EOl+EM;IAOI,+BAAA;IAAA,gCAAA;EP+9EV;EOt+EM;IAOI,6BAAA;IAAA,8BAAA;EPm+EV;EO1+EM;IAOI,+BAAA;IAAA,gCAAA;EPu+EV;EO9+EM;IAOI,6BAAA;IAAA,8BAAA;EP2+EV;EOl/EM;IAOI,yBAAA;IAAA,4BAAA;EP++EV;EOt/EM;IAOI,+BAAA;IAAA,kCAAA;EPm/EV;EO1/EM;IAOI,8BAAA;IAAA,iCAAA;EPu/EV;EO9/EM;IAOI,4BAAA;IAAA,+BAAA;EP2/EV;EOlgFM;IAOI,8BAAA;IAAA,iCAAA;EP+/EV;EOtgFM;IAOI,4BAAA;IAAA,+BAAA;EPmgFV;EO1gFM;IAOI,yBAAA;EPsgFV;EO7gFM;IAOI,+BAAA;EPygFV;EOhhFM;IAOI,8BAAA;EP4gFV;EOnhFM;IAOI,4BAAA;EP+gFV;EOthFM;IAOI,8BAAA;EPkhFV;EOzhFM;IAOI,4BAAA;EPqhFV;EO5hFM;IAOI,0BAAA;EPwhFV;EO/hFM;IAOI,gCAAA;EP2hFV;EOliFM;IAOI,+BAAA;EP8hFV;EOriFM;IAOI,6BAAA;EPiiFV;EOxiFM;IAOI,+BAAA;EPoiFV;EO3iFM;IAOI,6BAAA;EPuiFV;EO9iFM;IAOI,4BAAA;EP0iFV;EOjjFM;IAOI,kCAAA;EP6iFV;EOpjFM;IAOI,iCAAA;EPgjFV;EOvjFM;IAOI,+BAAA;EPmjFV;EO1jFM;IAOI,iCAAA;EPsjFV;EO7jFM;IAOI,+BAAA;EPyjFV;EOhkFM;IAOI,2BAAA;EP4jFV;EOnkFM;IAOI,iCAAA;EP+jFV;EOtkFM;IAOI,gCAAA;EPkkFV;EOzkFM;IAOI,8BAAA;EPqkFV;EO5kFM;IAOI,gCAAA;EPwkFV;EO/kFM;IAOI,8BAAA;EP2kFV;AACF;AGtlFI;EIGI;IAOI,0BAAA;EPglFV;EOvlFM;IAOI,gCAAA;EPmlFV;EO1lFM;IAOI,yBAAA;EPslFV;EO7lFM;IAOI,wBAAA;EPylFV;EOhmFM;IAOI,yBAAA;EP4lFV;EOnmFM;IAOI,6BAAA;EP+lFV;EOtmFM;IAOI,8BAAA;EPkmFV;EOzmFM;IAOI,wBAAA;EPqmFV;EO5mFM;IAOI,+BAAA;EPwmFV;EO/mFM;IAOI,wBAAA;EP2mFV;EOlnFM;IAOI,yBAAA;EP8mFV;EOrnFM;IAOI,8BAAA;EPinFV;EOxnFM;IAOI,iCAAA;EPonFV;EO3nFM;IAOI,sCAAA;EPunFV;EO9nFM;IAOI,yCAAA;EP0nFV;EOjoFM;IAOI,uBAAA;EP6nFV;EOpoFM;IAOI,uBAAA;EPgoFV;EOvoFM;IAOI,yBAAA;EPmoFV;EO1oFM;IAOI,yBAAA;EPsoFV;EO7oFM;IAOI,0BAAA;EPyoFV;EOhpFM;IAOI,4BAAA;EP4oFV;EOnpFM;IAOI,kCAAA;EP+oFV;EOtpFM;IAOI,sCAAA;EPkpFV;EOzpFM;IAOI,oCAAA;EPqpFV;EO5pFM;IAOI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AA;EPgkGV;EOvkGM;IAOI,sCAAA;EPmkGV;EO1kGM;IAOI,yCAAA;EPskGV;EO7kGM;IAOI,uBAAA;EPykGV;EOhlGM;IAOI,uBAAA;EP4kGV;EOnlGM;IAOI,yBAAA;EP+kGV;EOtlGM;IAOI,yBAAA;EPklGV;EOzlGM;IAOI,0BAAA;EPqlGV;EO5lGM;IAOI,4BAAA;EPwlGV;EO/lGM;IAOI,kCAAA;EP2lGV;EOlmGM;IAOI,sCAAA;EP8lGV;EOrmGM;IAOI,oCAAA;EPimGV;EOxmGM;IAOI,kCAAA;EPomGV;EO3mGM;IAOI,yCAAA;EPumGV;EO9mGM;IAOI,wCAAA;EP0mGV;EOjnGM;IAOI,wCAAA;EP6mGV;EOpnGM;IAOI,kCAAA;EPgnGV;EOvnGM;IAOI,gCAAA;EPmnGV;EO1nGM;IAOI,8BAAA;EPsnGV;EO7nGM;IAOI,gCAAA;EPynGV;EOhoGM;IAOI,+BAAA;EP4nGV;EOnoGM;IAOI,oCAAA;EP+nGV;EOtoGM;IAOI,kCAAA;EPkoGV;EOzoGM;IAOI,gCAAA;EPqoGV;EO5oGM;IAOI,uCAAA;EPwoGV;EO/oGM;IAOI,sCAAA;EP2oGV;EOlpGM;IAOI,iCAAA;EP8oGV;EOrpGM;IAOI,2BAAA;EPipGV;EOxpGM;IAOI,iCAAA;EPopGV;EO3pGM;IAOI,+BAAA;EPupGV;EO9pGM;IAOI,6BAAA;EP0pGV;EOjqGM;IAOI,+BAAA;EP6pGV;EOpqGM;IAOI,8BAAA;EPgqGV;EOvqGM;IAOI,oBAAA;EPmqGV;EO1qGM;IAOI,mBAAA;EPsqGV;EO7qGM;IAOI,mBAAA;EPyqGV;EOhrGM;IAOI,mBAAA;EP4qGV;EOnrGM;IAOI,mBAAA;EP+qGV;EOtrGM;IAOI,mBAAA;EPkrGV;EOzrGM;IAOI,mBAAA;EPqrGV;EO5rGM;IAOI,mBAAA;EPwrGV;EO/rGM;IAOI,oBAAA;EP2rGV;EOlsGM;IAOI,0BAAA;EP8rGV;EOrsGM;IAOI,yBAAA;EPisGV;EOxsGM;IAOI,uBAAA;EPosGV;EO3sGM;IAOI,yBAAA;EPusGV;EO9sGM;IAOI,uBAAA;EP0sGV;EOjtGM;IAOI,uBAAA;EP6sGV;EOptGM;IAOI,yBA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Pw+GV;EO/+GM;IAOI,gCAAA;EP2+GV;EOl/GM;IAOI,yBAAA;EP8+GV;EOr/GM;IAOI,wBAAA;EPi/GV;EOx/GM;IAOI,yBAAA;EPo/GV;EO3/GM;IAOI,6BAAA;EPu/GV;EO9/GM;IAOI,8BAAA;EP0/GV;EOjgHM;IAOI,wBAAA;EP6/GV;EOpgHM;IAOI,+BAAA;EPggHV;EOvgHM;IAOI,wBAAA;EPmgHV;EO1gHM;IAOI,yBAAA;EPsgHV;EO7gHM;IAOI,8BAAA;EPygHV;EOhhHM;IAOI,iCAAA;EP4gHV;EOnhHM;IAOI,sCAAA;EP+gHV;EOthHM;IAOI,yCAAA;EPkhHV;EOzhHM;IAOI,uBAAA;EPqhHV;EO5hHM;IAOI,uBAAA;EPwhHV;EO/hHM;IAOI,yBAAA;EP2hHV;EOliHM;IAOI,yBAAA;EP8hHV;EOriHM;IAOI,0BAAA;EPiiHV;EOxiHM;IAOI,4BAAA;EPoiHV;EO3iHM;IAOI,kCAAA;EPuiHV;EO9iHM;IAOI,sCAAA;EP0iHV;EOjjHM;IAOI,oCAAA;EP6iHV;EOpjHM;IAOI,kCAAA;EPgjHV;EOvjHM;IAOI,yCAAA;EPmjHV;EO1jHM;IAOI,wCAAA;EPsjHV;EO7jHM;IAOI,wCAAA;EPyjHV;EOhkHM;IAOI,kCAAA;EP4jHV;EOnkHM;IAOI,gCAAA;EP+jHV;EOtkHM;IAOI,8BAAA;EPkkHV;EOzkHM;IAOI,gCAAA;EPqkHV;EO5kHM;IAOI,+BAAA;EPwkHV;EO/kHM;IAOI,oCAAA;EP2kHV;EOllHM;IAOI,kCAAA;EP8kHV;EOrlHM;IAOI,gCAAA;EPilHV;EOxlHM;IAOI,uCAAA;EPolHV;EO3lHM;IAOI,sCAAA;EPulHV;EO9lHM;IAOI,iCAAA;EP0lHV;EOjmHM;IAOI,2BAAA;EP6lHV;EOpmHM;IAOI,iCAAA;EPgmHV;EOvmHM;IAOI,+BAAA;EPmmHV;EO1mHM;IAOI,6BAAA;EPsmHV;EO7mHM;IAOI,+BAAA;EPymHV;EOhnHM;IAOI,8BAAA;EP4mHV;EOnnHM;IAOI,oBAAA;EP+mHV;EOtnHM;IAOI,mBAAA;EPknHV;EOznHM;IAOI,mBAAA;EPqnHV;EO5nHM;IAOI,mBAAA;E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","file":"bootstrap-grid.rtl.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{$font-family-base};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-hover-color: #{$link-hover-color};\n\n --#{$prefix}code-color: #{$code-color};\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-link-color: #0d6efd;\n --bs-link-hover-color: #0a58ca;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"black\": $black,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-100,\n \"purple-200\": $purple-200,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-container-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`\n$prefix: $variable-prefix !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n$body-text-align: null !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n\n$border-style: solid !default;\n$border-color: $gray-300 !default;\n$border-color-translucent: rgba($black, .175) !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .375rem !default;\n$border-radius-sm: .25rem !default;\n$border-radius-lg: .5rem !default;\n$border-radius-xl: 1rem !default;\n$border-radius-2xl: 2rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: null !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-family: null !default;\n$display-font-style: null !default;\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n$text-muted: $gray-600 !default;\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n\n// fusv-disable\n$hr-bg-color: null !default; // Deprecated in v5.2.0\n$hr-height: null !default; // Deprecated in v5.2.0\n// fusv-enable\n\n$hr-border-color: null !default; // Allows for inherited colors\n$hr-border-width: $border-width !default;\n$hr-opacity: .25 !default;\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-padding: .1875em !default;\n$mark-bg: $yellow-100 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: var(--#{$prefix}body-color) !default;\n$table-bg: transparent !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba($black, $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba($black, $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba($black, $table-hover-bg-factor) !default;\n\n$table-border-factor: .1 !default;\n$table-border-width: $border-width !default;\n$table-border-color: var(--#{$prefix}border-color) !default;\n\n$table-striped-order: odd !default;\n$table-striped-columns-order: even !default;\n\n$table-group-separator-color: currentcolor !default;\n\n$table-caption-color: $text-muted !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .25rem !default;\n$input-btn-focus-color-opacity: .25 !default;\n$input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;\n$input-btn-focus-blur: 0 !default;\n$input-btn-focus-box-shadow: 0 0 $input-btn-focus-blur $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: $border-width !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: var(--#{$prefix}link-color) !default;\n$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$btn-link-disabled-color: $gray-600 !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: $text-muted !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: $body-bg !default;\n$input-disabled-color: null !default;\n$input-disabled-bg: $gray-200 !default;\n$input-disabled-border-color: null !default;\n\n$input-color: $body-color !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: $box-shadow-inset !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-sm: $border-radius-sm !default;\n$input-border-radius-lg: $border-radius-lg !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: 1px solid rgba($black, .25) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba($black, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $gray-200 !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml,\") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $input-border-radius !default;\n$form-select-box-shadow: $box-shadow-inset !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n$form-select-border-radius-sm: $input-border-radius-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n$form-select-border-radius-lg: $input-border-radius-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: $gray-300 !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: $box-shadow-inset !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: $gray-500 !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: $input-group-addon-bg !default;\n$form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": $form-feedback-valid-color,\n \"icon\": $form-feedback-icon-valid\n ),\n \"invalid\": (\n \"color\": $form-feedback-invalid-color,\n \"icon\": $form-feedback-icon-invalid\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n$zindex-toast: 1090 !default;\n// scss-docs-end zindex-stack\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: var(--#{$prefix}link-color) !default;\n$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n\n$navbar-light-color: rgba($black, .55) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-dark-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-dark-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: $body-color !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: $box-shadow !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;\n$dropdown-link-hover-bg: $gray-200 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-500 !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding-x: $dropdown-item-padding-x !default;\n$dropdown-header-padding-y: $dropdown-padding-y !default;\n// fusv-disable\n$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0\n// fusv-enable\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-font-size: $font-size-base !default;\n\n$pagination-color: var(--#{$prefix}link-color) !default;\n$pagination-bg: $white !default;\n$pagination-border-radius: $border-radius !default;\n$pagination-border-width: $border-width !default;\n$pagination-margin-start: ($pagination-border-width * -1) !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-focus-bg: $gray-200 !default;\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: $border-radius-sm !default;\n$pagination-border-radius-lg: $border-radius-lg !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-border-width: $border-width !default;\n$card-border-color: var(--#{$prefix}border-color-translucent) !default;\n$card-border-radius: $border-radius !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: $white !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: $body-color !default; // Sass variable because of $accordion-button-icon\n$accordion-bg: $body-bg !default;\n$accordion-border-width: $border-width !default;\n$accordion-border-color: var(--#{$prefix}border-color) !default;\n$accordion-border-radius: $border-radius !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: $accordion-color !default;\n$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;\n$accordion-button-active-color: shade-color($primary, 10%) !default;\n\n$accordion-button-focus-border-color: $input-focus-border-color !default;\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $accordion-button-color !default;\n$accordion-icon-active-color: $accordion-button-active-color !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml,\") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: null !default; // TODO: remove this in v6\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n// fusv-disable\n$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables\n// fusv-enable\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: var(--#{$prefix}border-color-translucent) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;\n$popover-box-shadow: $box-shadow !default;\n\n$popover-header-font-size: $font-size-base !default;\n$popover-header-bg: shade-color($popover-bg, 6%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n// scss-docs-end popover-variables\n\n// fusv-disable\n// Deprecated in Bootstrap 5.2.0 for CSS variables\n$popover-arrow-color: $popover-bg !default;\n$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;\n// fusv-enable\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba($white, .85) !default;\n$toast-border-width: $border-width !default;\n$toast-border-color: var(--#{$prefix}border-color-translucent) !default;\n$toast-border-radius: $border-radius !default;\n$toast-box-shadow: $box-shadow !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: $gray-600 !default;\n$toast-header-background-color: rgba($white, .85) !default;\n$toast-header-border-color: rgba($black, .05) !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: $border-radius !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: $white !default;\n$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: $box-shadow-sm !default;\n$modal-content-box-shadow-sm-up: $box-shadow !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n\n$modal-header-border-color: var(--#{$prefix}border-color) !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-footer-bg: null !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n$alert-bg-scale: -80% !default;\n$alert-border-scale: -70% !default;\n$alert-color-scale: 40% !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: $box-shadow-inset !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: $gray-900 !default;\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n$list-group-item-bg-scale: -80% !default;\n$list-group-item-color-scale: 40% !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: var(--#{$prefix}border-color) !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: $box-shadow-sm !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: $gray-600 !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n// scss-docs-end carousel-variables\n\n// scss-docs-start carousel-dark-variables\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-dark-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml,\") !default;\n$btn-close-focus-shadow: $input-btn-focus-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: $modal-content-bg !default;\n$offcanvas-color: $modal-content-color !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .1875rem !default;\n$kbd-padding-x: .375rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: var(--#{$prefix}body-bg) !default;\n$kbd-bg: var(--#{$prefix}body-color) !default;\n$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6\n\n$pre-color: null !default;\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.rtl.min.css b/OnDocWeb/Content/bootstrap-grid.rtl.min.css new file mode 100644 index 00000000..2330c372 --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.rtl.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap Grid v5.2.3 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-left:calc(-.5 * var(--bs-gutter-x));margin-right:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap-grid.rtl.min.css.map */ \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-grid.rtl.min.css.map b/OnDocWeb/Content/bootstrap-grid.rtl.min.css.map new file mode 100644 index 00000000..89689aa6 --- /dev/null +++ b/OnDocWeb/Content/bootstrap-grid.rtl.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.rtl.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{$font-family-base};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-hover-color: #{$link-hover-color};\n\n --#{$prefix}code-color: #{$code-color};\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-link-color: #0d6efd;\n --bs-link-hover-color: #0a58ca;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-left: auto;\n margin-right: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-right: 8.33333333%;\n}\n\n.offset-2 {\n margin-right: 16.66666667%;\n}\n\n.offset-3 {\n margin-right: 25%;\n}\n\n.offset-4 {\n margin-right: 33.33333333%;\n}\n\n.offset-5 {\n margin-right: 41.66666667%;\n}\n\n.offset-6 {\n margin-right: 50%;\n}\n\n.offset-7 {\n margin-right: 58.33333333%;\n}\n\n.offset-8 {\n margin-right: 66.66666667%;\n}\n\n.offset-9 {\n margin-right: 75%;\n}\n\n.offset-10 {\n margin-right: 83.33333333%;\n}\n\n.offset-11 {\n margin-right: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-right: 0;\n }\n .offset-sm-1 {\n margin-right: 8.33333333%;\n }\n .offset-sm-2 {\n margin-right: 16.66666667%;\n }\n .offset-sm-3 {\n margin-right: 25%;\n }\n .offset-sm-4 {\n margin-right: 33.33333333%;\n }\n .offset-sm-5 {\n margin-right: 41.66666667%;\n }\n .offset-sm-6 {\n margin-right: 50%;\n }\n .offset-sm-7 {\n margin-right: 58.33333333%;\n }\n .offset-sm-8 {\n margin-right: 66.66666667%;\n }\n .offset-sm-9 {\n margin-right: 75%;\n }\n .offset-sm-10 {\n margin-right: 83.33333333%;\n }\n .offset-sm-11 {\n margin-right: 91.66666667%;\n }\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-right: 0;\n }\n .offset-md-1 {\n margin-right: 8.33333333%;\n }\n .offset-md-2 {\n margin-right: 16.66666667%;\n }\n .offset-md-3 {\n margin-right: 25%;\n }\n .offset-md-4 {\n margin-right: 33.33333333%;\n }\n .offset-md-5 {\n margin-right: 41.66666667%;\n }\n .offset-md-6 {\n margin-right: 50%;\n }\n .offset-md-7 {\n margin-right: 58.33333333%;\n }\n .offset-md-8 {\n margin-right: 66.66666667%;\n }\n .offset-md-9 {\n margin-right: 75%;\n }\n .offset-md-10 {\n margin-right: 83.33333333%;\n }\n .offset-md-11 {\n margin-right: 91.66666667%;\n }\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-right: 0;\n }\n .offset-lg-1 {\n margin-right: 8.33333333%;\n }\n .offset-lg-2 {\n margin-right: 16.66666667%;\n }\n .offset-lg-3 {\n margin-right: 25%;\n }\n .offset-lg-4 {\n margin-right: 33.33333333%;\n }\n .offset-lg-5 {\n margin-right: 41.66666667%;\n }\n .offset-lg-6 {\n margin-right: 50%;\n }\n .offset-lg-7 {\n margin-right: 58.33333333%;\n }\n .offset-lg-8 {\n margin-right: 66.66666667%;\n }\n .offset-lg-9 {\n margin-right: 75%;\n }\n .offset-lg-10 {\n margin-right: 83.33333333%;\n }\n .offset-lg-11 {\n margin-right: 91.66666667%;\n }\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-right: 0;\n }\n .offset-xl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xl-3 {\n margin-right: 25%;\n }\n .offset-xl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xl-6 {\n margin-right: 50%;\n }\n .offset-xl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xl-9 {\n margin-right: 75%;\n }\n .offset-xl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xl-11 {\n margin-right: 91.66666667%;\n }\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-right: 0;\n }\n .offset-xxl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-right: 25%;\n }\n .offset-xxl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-right: 50%;\n }\n .offset-xxl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-right: 75%;\n }\n .offset-xxl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-right: 91.66666667%;\n }\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n}\n\n.mx-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n}\n\n.mx-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n}\n\n.mx-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n}\n\n.mx-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n}\n\n.mx-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n}\n\n.mx-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-left: 0 !important;\n}\n\n.me-1 {\n margin-left: 0.25rem !important;\n}\n\n.me-2 {\n margin-left: 0.5rem !important;\n}\n\n.me-3 {\n margin-left: 1rem !important;\n}\n\n.me-4 {\n margin-left: 1.5rem !important;\n}\n\n.me-5 {\n margin-left: 3rem !important;\n}\n\n.me-auto {\n margin-left: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-right: 0 !important;\n}\n\n.ms-1 {\n margin-right: 0.25rem !important;\n}\n\n.ms-2 {\n margin-right: 0.5rem !important;\n}\n\n.ms-3 {\n margin-right: 1rem !important;\n}\n\n.ms-4 {\n margin-right: 1.5rem !important;\n}\n\n.ms-5 {\n margin-right: 3rem !important;\n}\n\n.ms-auto {\n margin-right: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n}\n\n.px-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n}\n\n.px-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n}\n\n.px-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n\n.px-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n}\n\n.px-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-left: 0 !important;\n}\n\n.pe-1 {\n padding-left: 0.25rem !important;\n}\n\n.pe-2 {\n padding-left: 0.5rem !important;\n}\n\n.pe-3 {\n padding-left: 1rem !important;\n}\n\n.pe-4 {\n padding-left: 1.5rem !important;\n}\n\n.pe-5 {\n padding-left: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-right: 0 !important;\n}\n\n.ps-1 {\n padding-right: 0.25rem !important;\n}\n\n.ps-2 {\n padding-right: 0.5rem !important;\n}\n\n.ps-3 {\n padding-right: 1rem !important;\n}\n\n.ps-4 {\n padding-right: 1.5rem !important;\n}\n\n.ps-5 {\n padding-right: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-sm-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-left: 0 !important;\n }\n .me-sm-1 {\n margin-left: 0.25rem !important;\n }\n .me-sm-2 {\n margin-left: 0.5rem !important;\n }\n .me-sm-3 {\n margin-left: 1rem !important;\n }\n .me-sm-4 {\n margin-left: 1.5rem !important;\n }\n .me-sm-5 {\n margin-left: 3rem !important;\n }\n .me-sm-auto {\n margin-left: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-right: 0 !important;\n }\n .ms-sm-1 {\n margin-right: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-right: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-right: 1rem !important;\n }\n .ms-sm-4 {\n margin-right: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-right: 3rem !important;\n }\n .ms-sm-auto {\n margin-right: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-sm-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-sm-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-sm-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-sm-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-sm-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-left: 0 !important;\n }\n .pe-sm-1 {\n padding-left: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-left: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-left: 1rem !important;\n }\n .pe-sm-4 {\n padding-left: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-left: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-right: 0 !important;\n }\n .ps-sm-1 {\n padding-right: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-right: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-right: 1rem !important;\n }\n .ps-sm-4 {\n padding-right: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-md-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-md-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-md-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-md-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-md-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-md-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-left: 0 !important;\n }\n .me-md-1 {\n margin-left: 0.25rem !important;\n }\n .me-md-2 {\n margin-left: 0.5rem !important;\n }\n .me-md-3 {\n margin-left: 1rem !important;\n }\n .me-md-4 {\n margin-left: 1.5rem !important;\n }\n .me-md-5 {\n margin-left: 3rem !important;\n }\n .me-md-auto {\n margin-left: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-right: 0 !important;\n }\n .ms-md-1 {\n margin-right: 0.25rem !important;\n }\n .ms-md-2 {\n margin-right: 0.5rem !important;\n }\n .ms-md-3 {\n margin-right: 1rem !important;\n }\n .ms-md-4 {\n margin-right: 1.5rem !important;\n }\n .ms-md-5 {\n margin-right: 3rem !important;\n }\n .ms-md-auto {\n margin-right: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-md-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-md-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-md-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-md-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-md-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-left: 0 !important;\n }\n .pe-md-1 {\n padding-left: 0.25rem !important;\n }\n .pe-md-2 {\n padding-left: 0.5rem !important;\n }\n .pe-md-3 {\n padding-left: 1rem !important;\n }\n .pe-md-4 {\n padding-left: 1.5rem !important;\n }\n .pe-md-5 {\n padding-left: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-right: 0 !important;\n }\n .ps-md-1 {\n padding-right: 0.25rem !important;\n }\n .ps-md-2 {\n padding-right: 0.5rem !important;\n }\n .ps-md-3 {\n padding-right: 1rem !important;\n }\n .ps-md-4 {\n padding-right: 1.5rem !important;\n }\n .ps-md-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-lg-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-left: 0 !important;\n }\n .me-lg-1 {\n margin-left: 0.25rem !important;\n }\n .me-lg-2 {\n margin-left: 0.5rem !important;\n }\n .me-lg-3 {\n margin-left: 1rem !important;\n }\n .me-lg-4 {\n margin-left: 1.5rem !important;\n }\n .me-lg-5 {\n margin-left: 3rem !important;\n }\n .me-lg-auto {\n margin-left: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-right: 0 !important;\n }\n .ms-lg-1 {\n margin-right: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-right: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-right: 1rem !important;\n }\n .ms-lg-4 {\n margin-right: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-right: 3rem !important;\n }\n .ms-lg-auto {\n margin-right: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-lg-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-lg-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-lg-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-lg-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-lg-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-left: 0 !important;\n }\n .pe-lg-1 {\n padding-left: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-left: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-left: 1rem !important;\n }\n .pe-lg-4 {\n padding-left: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-left: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-right: 0 !important;\n }\n .ps-lg-1 {\n padding-right: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-right: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-right: 1rem !important;\n }\n .ps-lg-4 {\n padding-right: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-xl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-left: 0 !important;\n }\n .me-xl-1 {\n margin-left: 0.25rem !important;\n }\n .me-xl-2 {\n margin-left: 0.5rem !important;\n }\n .me-xl-3 {\n margin-left: 1rem !important;\n }\n .me-xl-4 {\n margin-left: 1.5rem !important;\n }\n .me-xl-5 {\n margin-left: 3rem !important;\n }\n .me-xl-auto {\n margin-left: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-right: 0 !important;\n }\n .ms-xl-1 {\n margin-right: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-right: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-right: 1rem !important;\n }\n .ms-xl-4 {\n margin-right: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-right: 3rem !important;\n }\n .ms-xl-auto {\n margin-right: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-xl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-xl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-xl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-xl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-xl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-left: 0 !important;\n }\n .pe-xl-1 {\n padding-left: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-left: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-left: 1rem !important;\n }\n .pe-xl-4 {\n padding-left: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-left: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-right: 0 !important;\n }\n .ps-xl-1 {\n padding-right: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-right: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-right: 1rem !important;\n }\n .ps-xl-4 {\n padding-right: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-xxl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-xxl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-xxl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-left: 0 !important;\n }\n .me-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-left: 1rem !important;\n }\n .me-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-left: 3rem !important;\n }\n .me-xxl-auto {\n margin-left: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-right: 0 !important;\n }\n .ms-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-right: 1rem !important;\n }\n .ms-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-right: 3rem !important;\n }\n .ms-xxl-auto {\n margin-right: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-xxl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-xxl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-left: 0 !important;\n }\n .pe-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-left: 1rem !important;\n }\n .pe-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-left: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-right: 0 !important;\n }\n .ps-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-right: 1rem !important;\n }\n .ps-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-right: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap-grid.rtl.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-reboot.css b/OnDocWeb/Content/bootstrap-reboot.css new file mode 100644 index 00000000..ccf96286 --- /dev/null +++ b/OnDocWeb/Content/bootstrap-reboot.css @@ -0,0 +1,488 @@ +/*! + * Bootstrap Reboot v5.2.3 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg-rgb: 255, 255, 255; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-bg: #fff; + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #dee2e6; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 0.375rem; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-2xl: 2rem; + --bs-border-radius-pill: 50rem; + --bs-link-color: #0d6efd; + --bs-link-hover-color: #0a58ca; + --bs-code-color: #d63384; + --bs-highlight-bg: #fff3cd; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} + +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +hr { + margin: 1rem 0; + color: inherit; + border: 0; + border-top: 1px solid; + opacity: 0.25; +} + +h6, h5, h4, h3, h2, h1 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +h1 { + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + h1 { + font-size: 2.5rem; + } +} + +h2 { + font-size: calc(1.325rem + 0.9vw); +} +@media (min-width: 1200px) { + h2 { + font-size: 2rem; + } +} + +h3 { + font-size: calc(1.3rem + 0.6vw); +} +@media (min-width: 1200px) { + h3 { + font-size: 1.75rem; + } +} + +h4 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + h4 { + font-size: 1.5rem; + } +} + +h5 { + font-size: 1.25rem; +} + +h6 { + font-size: 1rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul { + padding-left: 2rem; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 0.875em; +} + +mark { + padding: 0.1875em; + background-color: var(--bs-highlight-bg); +} + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: var(--bs-link-color); + text-decoration: underline; +} +a:hover { + color: var(--bs-link-hover-color); +} + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +code { + font-size: 0.875em; + color: var(--bs-code-color); + word-wrap: break-word; +} +a > code { + color: inherit; +} + +kbd { + padding: 0.1875rem 0.375rem; + font-size: 0.875em; + color: var(--bs-body-bg); + background-color: var(--bs-body-color); + border-radius: 0.25rem; +} +kbd kbd { + padding: 0; + font-size: 1em; +} + +figure { + margin: 0 0 1rem; +} + +img, +svg { + vertical-align: middle; +} + +table { + caption-side: bottom; + border-collapse: collapse; +} + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: #6c757d; + text-align: left; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} + +label { + display: inline-block; +} + +button { + border-radius: 0; +} + +button:focus:not(:focus-visible) { + outline: 0; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +select { + text-transform: none; +} + +[role=button] { + cursor: pointer; +} + +select { + word-wrap: normal; +} +select:disabled { + opacity: 1; +} + +[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { + display: none !important; +} + +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} +button:not(:disabled), +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled) { + cursor: pointer; +} + +::-moz-focus-inner { + padding: 0; + border-style: none; +} + +textarea { + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + float: left; + width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; +} +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} + +::-webkit-inner-spin-button { + height: auto; +} + +[type=search] { + outline-offset: -2px; + -webkit-appearance: textfield; +} + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +::file-selector-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +iframe { + border: 0; +} + +summary { + display: list-item; + cursor: pointer; +} + +progress { + vertical-align: baseline; +} + +[hidden] { + display: none !important; +} + +/*# sourceMappingURL=bootstrap-reboot.css.map */ \ No newline at end of file diff --git a/OnDocWeb/Content/bootstrap-reboot.css.map b/OnDocWeb/Content/bootstrap-reboot.css.map new file mode 100644 index 00000000..d52609ea --- /dev/null +++ b/OnDocWeb/Content/bootstrap-reboot.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","bootstrap-reboot.css","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_border-radius.scss"],"names":[],"mappings":"AACE;;;;;EAAA;ACDF;EAQI,kBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,kBAAA;EAAA,iBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,mBAAA;EAAA,kBAAA;EAAA,kBAAA;EAAA,gBAAA;EAAA,gBAAA;EAAA,kBAAA;EAAA,uBAAA;EAIA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAIA,qBAAA;EAAA,uBAAA;EAAA,qBAAA;EAAA,kBAAA;EAAA,qBAAA;EAAA,oBAAA;EAAA,mBAAA;EAAA,kBAAA;EAIA,8BAAA;EAAA,iCAAA;EAAA,6BAAA;EAAA,2BAAA;EAAA,6BAAA;EAAA,4BAAA;EAAA,6BAAA;EAAA,yBAAA;EAGF,6BAAA;EACA,uBAAA;EACA,+BAAA;EACA,+BAAA;EAMA,qNAAA;EACA,yGAAA;EACA,yFAAA;EAOA,gDAAA;EC4PI,yBALI;EDrPR,0BAAA;EACA,0BAAA;EACA,wBAAA;EAIA,kBAAA;EAIA,sBAAA;EACA,wBAAA;EACA,0BAAA;EACA,mDAAA;EAEA,4BAAA;EACA,8BAAA;EACA,6BAAA;EACA,2BAAA;EACA,4BAAA;EACA,8BAAA;EAGA,wBAAA;EACA,8BAAA;EAEA,wBAAA;EAEA,0BAAA;AEEF;;AC1DA;;;EAGE,sBAAA;AD6DF;;AC9CI;EANJ;IAOM,uBAAA;EDkDJ;AACF;;ACrCA;EACE,SAAA;EACA,uCAAA;EFmPI,mCALI;EE5OR,uCAAA;EACA,uCAAA;EACA,2BAAA;EACA,qCAAA;EACA,mCAAA;EACA,8BAAA;EACA,6CAAA;ADwCF;;AC/BA;EACE,cAAA;EACA,cCijB4B;EDhjB5B,SAAA;EACA,qBAAA;EACA,aCujB4B;AFrhB9B;;ACxBA;EACE,aAAA;EACA,qBCwf4B;EDrf5B,gBCwf4B;EDvf5B,gBCwf4B;AF/d9B;;ACrBA;EF6MQ,iCAAA;ACpLR;ADkBI;EE3CJ;IFoNQ,iBAAA;ECvLN;AACF;;ACzBA;EFwMQ,iCAAA;AC3KR;ADSI;EEtCJ;IF+MQ,eAAA;EC9KN;AACF;;AC7BA;EFmMQ,+BAAA;AClKR;ADAI;EEjCJ;IF0MQ,kBAAA;ECrKN;AACF;;ACjCA;EF8LQ,iCAAA;ACzJR;ADTI;EE5BJ;IFqMQ,iBAAA;EC5JN;AACF;;ACrCA;EFqLM,kBALI;ACvIV;;ACpCA;EFgLM,eALI;ACnIV;;AC7BA;EACE,aAAA;EACA,mBCmS0B;AFnQ5B;;ACtBA;EACE,yCAAA;EAAA,iCAAA;EACA,YAAA;EACA,sCAAA;EAAA,8BAAA;ADyBF;;ACnBA;EACE,mBAAA;EACA,kBAAA;EACA,oBAAA;ADsBF;;AChBA;;EAEE,kBAAA;ADmBF;;AChBA;;;EAGE,aAAA;EACA,mBAAA;ADmBF;;AChBA;;;;EAIE,gBAAA;ADmBF;;AChBA;EACE,gBC6X4B;AF1W9B;;ACdA;EACE,qBAAA;EACA,cAAA;ADiBF;;ACXA;EACE,gBAAA;ADcF;;ACNA;;EAEE,mBCsW4B;AF7V9B;;ACDA;EFmFM,kBALI;ACzEV;;ACEA;EACE,iBC+a4B;ED9a5B,wCAAA;ADCF;;ACQA;;EAEE,kBAAA;EF+DI,iBALI;EExDR,cAAA;EACA,wBAAA;ADLF;;ACQA;EAAM,eAAA;ADJN;;ACKA;EAAM,WAAA;ADDN;;ACMA;EACE,2BAAA;EACA,0BCqKwC;AFxK1C;ACKE;EACE,iCAAA;ADHJ;;ACcE;EAEE,cAAA;EACA,qBAAA;ADZJ;;ACmBA;;;;EAIE,qCCkR4B;EH7PxB,cALI;AC/BV;;ACuBA;EACE,cAAA;EACA,aAAA;EACA,mBAAA;EACA,cAAA;EFSI,kBALI;ACvBV;ACwBE;EFII,kBALI;EEGN,cAAA;EACA,kBAAA;ADtBJ;;AC0BA;EFHM,kBALI;EEUR,2BAAA;EACA,qBAAA;ADvBF;AC0BE;EACE,cAAA;ADxBJ;;AC4BA;EACE,2BAAA;EFfI,kBALI;EEsBR,wBCuyCkC;EDtyClC,sCCuyCkC;EC3kDhC,sBAAA;AH4QJ;AC2BE;EACE,UAAA;EFtBE,cALI;ACGV;;ACmCA;EACE,gBAAA;ADhCF;;ACsCA;;EAEE,sBAAA;ADnCF;;AC2CA;EACE,oBAAA;EACA,yBAAA;ADxCF;;AC2CA;EACE,mBCsT4B;EDrT5B,sBCqT4B;EDpT5B,cCjVS;EDkVT,gBAAA;ADxCF;;AC+CA;EAEE,mBAAA;EACA,gCAAA;AD7CF;;ACgDA;;;;;;EAME,qBAAA;EACA,mBAAA;EACA,eAAA;AD7CF;;ACqDA;EACE,qBAAA;ADlDF;;ACwDA;EAEE,gBAAA;ADtDF;;AC8DA;EACE,UAAA;AD3DF;;ACgEA;;;;;EAKE,SAAA;EACA,oBAAA;EFrHI,kBALI;EE4HR,oBAAA;AD7DF;;ACiEA;;EAEE,oBAAA;AD9DF;;ACmEA;EACE,eAAA;ADhEF;;ACmEA;EAGE,iBAAA;ADlEF;ACqEE;EACE,UAAA;ADnEJ;;AC0EA;EACE,wBAAA;ADvEF;;AC+EA;;;;EAIE,0BAAA;AD5EF;AC+EI;;;;EACE,eAAA;AD1EN;;ACiFA;EACE,UAAA;EACA,kBAAA;AD9EF;;ACmFA;EACE,gBAAA;ADhFF;;AC0FA;EACE,YAAA;EACA,UAAA;EACA,SAAA;EACA,SAAA;ADvFF;;AC+FA;EACE,WAAA;EACA,WAAA;EACA,UAAA;EACA,qBC8I4B;EHxVtB,iCAAA;EE6MN,oBAAA;AD7FF;ADlRI;EEwWJ;IF/LQ,iBAAA;EC6GN;AACF;AC0FE;EACE,WAAA;ADxFJ;;AC+FA;;;;;;;EAOE,UAAA;AD5FF;;AC+FA;EACE,YAAA;AD5FF;;ACqGA;EACE,oBAAA;EACA,6BAAA;ADlGF;;AC0GA;;;;;;;CAAA;AAWA;EACE,wBAAA;AD1GF;;AC+GA;EACE,UAAA;AD5GF;;ACmHA;EACE,aAAA;EACA,0BAAA;ADhHF;;AC8GA;EACE,aAAA;EACA,0BAAA;ADhHF;;ACqHA;EACE,qBAAA;ADlHF;;ACuHA;EACE,SAAA;ADpHF;;AC2HA;EACE,kBAAA;EACA,eAAA;ADxHF;;ACgIA;EACE,wBAAA;AD7HF;;ACqIA;EACE,wBAAA;ADlIF","file":"bootstrap-reboot.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{$font-family-base};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n --#{$prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n --#{$prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-2xl: #{$border-radius-2xl};\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-hover-color: #{$link-hover-color};\n\n --#{$prefix}code-color: #{$code-color};\n\n --#{$prefix}highlight-bg: #{$mark-bg};\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Reboot v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-2xl: 2rem;\n --bs-border-radius-pill: 50rem;\n --bs-link-color: #0d6efd;\n --bs-link-hover-color: #0a58ca;\n --bs-code-color: #d63384;\n --bs-highlight-bg: #fff3cd;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: 1px solid;\n opacity: 0.25;\n}\n\nh6, h5, h4, h3, h2, h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n}\n\nh1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1 {\n font-size: 2.5rem;\n }\n}\n\nh2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2 {\n font-size: 2rem;\n }\n}\n\nh3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3 {\n font-size: 1.75rem;\n }\n}\n\nh4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4 {\n font-size: 1.5rem;\n }\n}\n\nh5 {\n font-size: 1.25rem;\n}\n\nh6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 0.875em;\n}\n\nmark {\n padding: 0.1875em;\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: var(--bs-link-color);\n text-decoration: underline;\n}\na:hover {\n color: var(--bs-link-hover-color);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: #6c757d;\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n @include font-size(var(--#{$prefix}root-font-size));\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$prefix}body-font-family);\n @include font-size(var(--#{$prefix}body-font-size));\n font-weight: var(--#{$prefix}body-font-weight);\n line-height: var(--#{$prefix}body-line-height);\n color: var(--#{$prefix}body-color);\n text-align: var(--#{$prefix}body-text-align);\n background-color: var(--#{$prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n opacity: $hr-opacity;\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 2. Add explicit cursor to indicate changed behavior.\n// 3. Prevent the text-decoration to be skipped.\n\nabbr[title] {\n text-decoration: underline dotted; // 1\n cursor: help; // 2\n text-decoration-skip-ink: none; // 3\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: var(--#{$prefix}highlight-bg);\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: var(--#{$prefix}link-color);\n text-decoration: $link-decoration;\n\n &:hover {\n color: var(--#{$prefix}link-hover-color);\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: var(--#{$prefix}code-color);\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`