update 20250326

master
Stefan Hutter 9 months ago
parent c767e2ed82
commit e0d3dbbbff

@ -59,8 +59,8 @@
<Reference Include="Microsoft.AspNetCore.WebUtilities, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNetCore.WebUtilities.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.9.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\lib\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
@ -111,6 +111,9 @@
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Pipelines, Version=9.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.Pipelines.9.0.3\lib\net462\System.IO.Pipelines.dll</HintPath>
</Reference>
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
</Reference>
@ -125,8 +128,11 @@
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Security" />
<Reference Include="System.Text.Encodings.Web, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Text.Encodings.Web.4.5.0\lib\netstandard2.0\System.Text.Encodings.Web.dll</HintPath>
<Reference Include="System.Text.Encodings.Web, Version=9.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Text.Encodings.Web.9.0.3\lib\net462\System.Text.Encodings.Web.dll</HintPath>
</Reference>
<Reference Include="System.Text.Json, Version=9.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Text.Json.9.0.3\lib\net462\System.Text.Json.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>

@ -21,6 +21,7 @@ using System.Text.RegularExpressions;
using System.Text;
using Newtonsoft.Json.Linq;
using System.Web.Helpers;
using System.Text.Json;
namespace API_NetFramework.Controllers
{
@ -52,12 +53,22 @@ namespace API_NetFramework.Controllers
Database.DB db = new Database.DB(connectionstring);
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 == "JSON") { SQL = SQL + " for json path"; }
//if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
db.Get_Tabledata(SQL, false, true);
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAll", LogLevelType.Debug);
return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
var data = db.dsdaten.Tables[0].Rows.OfType<DataRow>()
.Select(row => db.dsdaten.Tables[0].Columns.OfType<DataColumn>()
.ToDictionary(col => col.ColumnName, c => row[c]));
return Ok(JToken.Parse(System.Text.Json.JsonSerializer.Serialize(data)));
//string JSONresult = JsonConvert.SerializeObject(db.dsdaten.Tables[0]);
//return Ok(JSONresult);
//return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
}
catch (Exception e)
{
@ -91,10 +102,10 @@ namespace API_NetFramework.Controllers
//if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
//db.Get_Tabledata(SQL, false, true);
SQL = "Select * from Antowrtadresse where id=@id for @format path";
SQL = "Select * from Antwortadresse where id=@ID";
db.clear_parameter();
db.add_parameter("@id", ID);
db.add_parameter("@format", OutFormat.ToLower());
db.add_parameter("@ID", ID);
//db.add_parameter("@format", OutFormat.ToLower());
db.Get_Tabledata_Addvar(SQL, false, true);
if (db.dsdaten.Tables[0].Rows.Count == 0) {
@ -104,7 +115,10 @@ namespace API_NetFramework.Controllers
} else {
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetByID ID:" + ID, LogLevelType.Debug);
return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
var data = db.dsdaten.Tables[0].Rows.OfType<DataRow>()
.Select(row => db.dsdaten.Tables[0].Columns.OfType<DataColumn>()
.ToDictionary(col => col.ColumnName, c => row[c]));
return Ok(JToken.Parse(System.Text.Json.JsonSerializer.Serialize(data)));
};
}
catch (Exception e)
@ -140,10 +154,10 @@ namespace API_NetFramework.Controllers
//if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
//db.Get_Tabledata(SQL, false, true);
SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and tgnummer=@tgnummer order by bezeichnung ";
SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and tgnummer=@TGNR order by bezeichnung ";
db.clear_parameter();
db.add_parameter("@tgnummer", tgnummer);
db.add_parameter("@format", OutFormat.ToLower());
db.add_parameter("@TGNR", tgnummer);
//db.add_parameter("@format", OutFormat.ToLower());
db.Get_Tabledata_Addvar(SQL, false, true);
@ -154,7 +168,10 @@ namespace API_NetFramework.Controllers
} else {
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAllMitarbeiterByTGNummer", LogLevelType.Debug);
return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
var data = db.dsdaten.Tables[0].Rows.OfType<DataRow>()
.Select(row => db.dsdaten.Tables[0].Columns.OfType<DataColumn>()
.ToDictionary(col => col.ColumnName, c => row[c]));
return Ok(JToken.Parse(System.Text.Json.JsonSerializer.Serialize(data)));
};
}
catch (Exception e)
@ -189,10 +206,10 @@ namespace API_NetFramework.Controllers
//if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
//db.Get_Tabledata(SQL, false, true);
SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and and Mitarbeiternr=@mitarbeiternr order by bezeichnung ";
SQL = "Select * from Antwortadresse_Mitarbeiter where aktiv=1 and Mitarbeiternr=@MANR order by bezeichnung ";
db.clear_parameter();
db.add_parameter("@mitarbeiternr", Mitarbeiternr);
db.add_parameter("@format", OutFormat.ToLower());
db.add_parameter("@MANR", Mitarbeiternr);
//db.add_parameter("@format", OutFormat.ToLower());
db.Get_Tabledata_Addvar(SQL, false, true);
@ -201,7 +218,10 @@ namespace API_NetFramework.Controllers
return Ok();
} else {
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:" + Mitarbeiternr, LogLevelType.Debug);
return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
var data = db.dsdaten.Tables[0].Rows.OfType<DataRow>()
.Select(row => db.dsdaten.Tables[0].Columns.OfType<DataColumn>()
.ToDictionary(col => col.ColumnName, c => row[c]));
return Ok(JToken.Parse(System.Text.Json.JsonSerializer.Serialize(data)));
};
}
catch (Exception e)
@ -231,7 +251,7 @@ namespace API_NetFramework.Controllers
}
try
{
APILogging.Log((HttpRequestMessage)Request, "Start GetMitarbeiterByID ID: "+ID, LogLevelType.Debug);
APILogging.Log((HttpRequestMessage)Request, "Start GetMitarbeiterByID ID: " + ID, LogLevelType.Debug);
Database.DB db = new Database.DB(connectionstring);
string SQL = "Select * from AntwortAdresse_Mitarbeiter where id=" + ID;
@ -245,12 +265,19 @@ namespace API_NetFramework.Controllers
db.add_parameter("@format", OutFormat.ToLower());
db.Get_Tabledata_Addvar(SQL, false, true);
if (db.dsdaten.Tables[0].Rows.Count == 0) {
if (db.dsdaten.Tables[0].Rows.Count == 0)
{
APILogging.Log((HttpRequestMessage)Request, "Ende GetMitarbeiterByID ID: " + ID, LogLevelType.Debug);
return Ok();
} else {
return Ok();
}
else
{
APILogging.Log((HttpRequestMessage)Request, "Ende GetMitarbeiterByID ID: " + ID, LogLevelType.Debug);
return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString())); };
var data = db.dsdaten.Tables[0].Rows.OfType<DataRow>()
.Select(row => db.dsdaten.Tables[0].Columns.OfType<DataColumn>()
.ToDictionary(col => col.ColumnName, c => row[c]));
return Ok(JToken.Parse(System.Text.Json.JsonSerializer.Serialize(data)));
}
}
catch (Exception e)
{
@ -297,8 +324,11 @@ namespace API_NetFramework.Controllers
// adressen.Add(new adressresponse() {adresse = dr[0].ToString()});
//}
//var token = JToken.Parse(Newtonsoft.Json.JsonConvert.SerializeObject(adressen));
return Content(HttpStatusCode.OK, JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
var data = db.dsdaten.Tables[0].Rows.OfType<DataRow>()
.Select(row => db.dsdaten.Tables[0].Columns.OfType<DataColumn>()
.ToDictionary(col => col.ColumnName, c => row[c]));
return Ok(JToken.Parse(System.Text.Json.JsonSerializer.Serialize(data)));
//return Content(HttpStatusCode.OK, JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
};
}
catch (Exception e)

@ -26,6 +26,7 @@ using System.Data;
using Helper;
using System.Runtime.CompilerServices;
using System.Web.UI.WebControls;
using edoka_dms;
namespace API_NetFramework.Controllers
@ -309,7 +310,7 @@ namespace API_NetFramework.Controllers
onbasedoc.dokumentDatei = dok.dokument;
if(pdfdoc != ""){
onbasedoc.dokumentDatum=pdfdoc;
onbasedoc.dokumentDatei =pdfdoc;
}
db = null;
ILResponse ilr = new ILResponse();
@ -534,6 +535,7 @@ namespace API_NetFramework.Controllers
ilr.StatusCode = 0;
ilr.senderror = 0;
ilr.response = response;
APILogging.Log((HttpRequestMessage)Request, "Ende Transfer to OnBase", LogLevelType.Debug);
return Content(HttpStatusCode.OK, ilr);
}
@ -546,6 +548,48 @@ namespace API_NetFramework.Controllers
}
}
private string archiv_sb_doc(string dokumentid, string partnernr, string serienbriefnr, string dokument, string inteintragnr)
{
OnBaseDocUpload.OnBaseDokument onbasedoc = new OnBaseDocUpload.OnBaseDokument();
DB db = new DB(connectionstring);
db.clear_parameter();
db.add_parameter("@serienbriefnr", serienbriefnr);
db.add_parameter("@intEintragnr", inteintragnr);
db.add_parameter("@partnernr", partnernr);
db.add_parameter("@dokumentid", dokumentid);
db.Get_Tabledata("sp_get_onbase_parameters_sb", true, false);
if (db.dsdaten.Tables[0].Rows[0]["BpNummer"].ToString() == "")
{
onbasedoc.personNummer = db.dsdaten.Tables[0].Rows[0]["PersonNummer"].ToString();
onbasedoc.bpNummer = "";
}
else
{
onbasedoc.bpNummer = db.dsdaten.Tables[0].Rows[0]["BpNummer"].ToString();
onbasedoc.personNummer = "";
}
onbasedoc.dokumentDatum = db.dsdaten.Tables[0].Rows[0]["DokumentDatum"].ToString();
onbasedoc.dokumentTyp = db.dsdaten.Tables[0].Rows[0]["dokumenttyp"].ToString();
onbasedoc.dateiTyp = db.dsdaten.Tables[0].Rows[0]["dateityp"].ToString();
onbasedoc.attributes = new List<Model.OnBaseDocUpload.attribute>();
foreach (System.Data.DataRow rw in db.dsdaten.Tables[1].Rows)
{
OnBaseDocUpload.attribute p = new OnBaseDocUpload.attribute(rw["fieldname"].ToString(), rw["fieldvalue"].ToString());
onbasedoc.attributes.Add(p);
}
onbasedoc.dokumentDatei = dokument;
string URL = "";
string response = "";
string jsonstring = Newtonsoft.Json.JsonConvert.SerializeObject(onbasedoc);
ILResponse ilr = new ILResponse();
Transfer_OnBase(uploadtype.fast, ref jsonstring, ref ilr);
Update_IL_Log(ref ilr, serienbriefnr.ToString() + "_" + inteintragnr.ToString());
return ilr.response;
}
[HttpPost]
[Route("API/Send_Versandstrasse")]
@ -582,41 +626,70 @@ namespace API_NetFramework.Controllers
oba.Returnaddress = versandpaket.GASAdresse;
oba.O2ODochandle = "";
oba.Status = "";
//if (oba.GASCouvert == "") { oba.GASCouvert = "false"; } else { oba.GASCouvert = "true"; }
foreach (Versanddokument vd in versandpaket.Dokument)
{
IHttpActionResult res = ArchivDocFromDatabase(vd.DokumentID, "");
}
}
else
{
oba.BPNummer = versandpaket.partnernr.ToString();
oba.DocumentHandle = "";
oba.DistributionOption = versandpaket.Versandoption.ToString();
oba.GASCouvert = versandpaket.GAS;
oba.Returnaddress = versandpaket.GASAdresse;
oba.O2ODochandle = "";
oba.Status = "";
foreach (Versanddokument vd in versandpaket.Dokument)
{
IHttpActionResult res = ArchivDocFromDatabase(vd.DokumentID, vd.dokument);
DB db = new DB(connectionstring);
db.clear_parameter();
db.add_parameter("@dokumentid", vd.DokumentID);
db.Get_Tabledata("sp_get_handle", true, false);
if (db.dsdaten.Tables[0].Rows.Count > 0)
{
if (versandpaket.isSerienbrief)
{
string result = "";
inthandle = archiv_sb_doc(vd.DokumentID, vd.Partnernr, versandpaket.sb.serienbriefnr.ToString(), vd.dokument, vd.inteintragnr.ToString()); }
else
{
inthandle = db.dsdaten.Tables[0].Rows[0][0].ToString();
oba.DocumentHandle = inthandle;
versandpaket.finaldoc = "";
IHttpActionResult res = ArchivDocFromDatabase(vd.DokumentID, vd.dokument);
DB db = new DB(connectionstring);
db.clear_parameter();
db.add_parameter("@dokumentid", vd.DokumentID);
db.Get_Tabledata("sp_get_handle", true, false);
if (db.dsdaten.Tables[0].Rows.Count > 0)
{
inthandle = db.dsdaten.Tables[0].Rows[0][0].ToString();
oba.DocumentHandle = inthandle;
DOCGEN.DocGen dg = new DOCGEN.DocGen();
versandpaket.finaldoc=dg.geneate_dummy_pdf("Versandstrasse - DummyDokument - " + DateTime.Now.ToString("dd.MM.yyyy hh:mm:ss"));
//versandpaket.finaldoc = "";
dg = null;
}
db = null;
}
db = null;
}
}
OnBaseDocUpload.OnBaseDokument onbasedoc = new OnBaseDocUpload.OnBaseDokument();
onbasedoc.bpNummer = oba.BPNummer;
onbasedoc.dokumentTyp = "Tech Versandstrasse SendDoc";
onbasedoc.personNummer = "";
onbasedoc.dokumentDatum = DateTime.Now.ToString("dd.MM.yyyy");
onbasedoc.dokumentDatei = versandpaket.finaldoc;
onbasedoc.dateiTyp = "PDF";
onbasedoc.attributes = new List<OnBaseDocUpload.attribute>();
if (oba.GASCouvert=="") { oba.GASCouvert = "false"; } else { oba.GASCouvert = "true"; }
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("Document Handle",oba.DocumentHandle.ToString()));
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("O2O DistributionOption",oba.DistributionOption.ToString()));
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("O2O GasCouvert", oba.GASCouvert.ToString()));
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("O2O Returnaddress", oba.Returnaddress.ToString()));
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("O2O Dochandle", oba.O2ODochandle.ToString()));
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("O2O Dochandle", oba.DocumentHandle.ToString()));
onbasedoc.attributes.Add(new OnBaseDocUpload.attribute("O2O Status", oba.Status.ToString()));
ILResponse ilr = new ILResponse();
@ -652,7 +725,7 @@ namespace API_NetFramework.Controllers
}
else
{
update_dokumentstatus(debugfilename);
// update_dokumentstatus(debugfilename);
return Content(HttpStatusCode.OK, oba.BPNummer.ToString() + " *archiviert*");
}
}

@ -57,10 +57,10 @@ namespace API_NetFramework.Controllers
int defaultwidth = 0;
APILogging.Log((HttpRequestMessage)Request, "Image-Bezug: " + imageid.ToString(), LogLevelType.Info);
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
{
return Content(HttpStatusCode.Unauthorized, "Invalid Token or API-Key");
}
//if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
//{
// return Content(HttpStatusCode.Unauthorized, "Invalid Token or API-Key");
//}
System.Data.DataSet ds = new System.Data.DataSet();
ds.ReadXml(path + "imageids.xml");
filename = "";
@ -104,15 +104,17 @@ namespace API_NetFramework.Controllers
}
using (MemoryStream m = new MemoryStream())
{
string newfilename = path + Guid.NewGuid().ToString() + ".tmp";
string newfilename = path + Guid.NewGuid().ToString() + ".jpg";
imgnew.Save(newfilename);
imgnew = System.Drawing.Image.FromFile(newfilename);
imgnew.Save(m, imgnew.RawFormat);
byte[] imageBytes = m.ToArray();
imgnew.Dispose();
m.Dispose();
System.IO.File.Delete(newfilename);
iimg.Dispose();
iimg = null;
imgnew = null;
return Ok(Convert.ToBase64String(imageBytes));
}
}

@ -5,12 +5,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Project>
<PropertyGroup>
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
<History>True|2025-02-27T18:20:43.3755758Z||;True|2025-02-27T18:15:21.2843332+01:00||;True|2025-02-25T19:05:51.2823294+01:00||;True|2025-02-25T19:04:29.0810473+01:00||;True|2025-02-21T10:28:09.2279895+01:00||;True|2025-02-21T09:59:33.3258979+01:00||;True|2025-02-12T12:49:01.5618262+01:00||;True|2025-02-09T14:47:25.8660147+01:00||;True|2025-02-09T12:40:23.8730229+01:00||;True|2025-02-05T14:41:27.6196364+01:00||;True|2025-02-04T22:19:44.0470841+01:00||;True|2025-02-04T21:33:03.4165210+01:00||;True|2025-02-02T20:06:51.6815543+01:00||;True|2025-01-20T10:17:24.5425008+01:00||;True|2025-01-19T16:20:16.1036874+01:00||;True|2025-01-19T16:19:11.5720999+01:00||;True|2025-01-12T14:24:46.2550852+01:00||;True|2025-01-12T14:00:23.9205001+01:00||;True|2025-01-07T15:08:24.2722613+01:00||;True|2025-01-06T09:25:16.5522864+01:00||;True|2024-12-22T16:49:54.0855447+01:00||;True|2024-12-08T09:59:39.7127943+01:00||;True|2024-12-08T09:26:52.1924006+01:00||;True|2024-12-02T09:50:13.5426444+01:00||;True|2024-12-01T18:53:55.8128003+01:00||;True|2024-11-26T19:32:44.7379810+01:00||;True|2024-11-25T16:02:25.7013060+01:00||;True|2024-11-24T18:56:32.4321643+01:00||;True|2024-11-24T18:48:11.3494435+01:00||;True|2024-11-24T17:50:10.7679996+01:00||;True|2024-11-22T08:35:58.1296657+01:00||;True|2024-11-13T17:47:13.0183160+01:00||;True|2024-11-13T17:46:36.5183689+01:00||;True|2024-11-11T13:42:23.6578245+01:00||;True|2024-11-09T12:11:00.0777236+01:00||;True|2024-11-09T11:54:51.8503924+01:00||;</History>
<History>True|2025-03-26T18:03:04.7550972Z||;True|2025-02-27T19:20:43.3755758+01:00||;True|2025-02-27T18:15:21.2843332+01:00||;True|2025-02-25T19:05:51.2823294+01:00||;True|2025-02-25T19:04:29.0810473+01:00||;True|2025-02-21T10:28:09.2279895+01:00||;True|2025-02-21T09:59:33.3258979+01:00||;True|2025-02-12T12:49:01.5618262+01:00||;True|2025-02-09T14:47:25.8660147+01:00||;True|2025-02-09T12:40:23.8730229+01:00||;True|2025-02-05T14:41:27.6196364+01:00||;True|2025-02-04T22:19:44.0470841+01:00||;True|2025-02-04T21:33:03.4165210+01:00||;True|2025-02-02T20:06:51.6815543+01:00||;True|2025-01-20T10:17:24.5425008+01:00||;True|2025-01-19T16:20:16.1036874+01:00||;True|2025-01-19T16:19:11.5720999+01:00||;True|2025-01-12T14:24:46.2550852+01:00||;True|2025-01-12T14:00:23.9205001+01:00||;True|2025-01-07T15:08:24.2722613+01:00||;True|2025-01-06T09:25:16.5522864+01:00||;True|2024-12-22T16:49:54.0855447+01:00||;True|2024-12-08T09:59:39.7127943+01:00||;True|2024-12-08T09:26:52.1924006+01:00||;True|2024-12-02T09:50:13.5426444+01:00||;True|2024-12-01T18:53:55.8128003+01:00||;True|2024-11-26T19:32:44.7379810+01:00||;True|2024-11-25T16:02:25.7013060+01:00||;True|2024-11-24T18:56:32.4321643+01:00||;True|2024-11-24T18:48:11.3494435+01:00||;True|2024-11-24T17:50:10.7679996+01:00||;True|2024-11-22T08:35:58.1296657+01:00||;True|2024-11-13T17:47:13.0183160+01:00||;True|2024-11-13T17:46:36.5183689+01:00||;True|2024-11-11T13:42:23.6578245+01:00||;True|2024-11-09T12:11:00.0777236+01:00||;True|2024-11-09T11:54:51.8503924+01:00||;</History>
<LastFailureDetails />
</PropertyGroup>
<ItemGroup>
<File Include="Areas/HelpPage/HelpPage.css">
<publishTime>06/03/2024 09:20:46</publishTime>
<publishTime>03/06/2024 09:20:46</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/Api.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
@ -49,7 +49,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml">
<publishTime>06/03/2024 09:20:41</publishTime>
<publishTime>03/06/2024 09:20:41</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
@ -64,40 +64,40 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Shared/_Layout.cshtml">
<publishTime>06/03/2024 09:20:40</publishTime>
<publishTime>03/06/2024 09:20:40</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Web.config">
<publishTime>06/03/2024 09:20:40</publishTime>
<publishTime>03/06/2024 09:20:40</publishTime>
</File>
<File Include="Areas/HelpPage/Views/_ViewStart.cshtml">
<publishTime>06/03/2024 09:20:40</publishTime>
<publishTime>03/06/2024 09:20:40</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.dll">
<publishTime>09/10/2013 17:29:20</publishTime>
<publishTime>10/09/2013 17:29:20</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.pdb">
<publishTime>09/10/2013 17:29:20</publishTime>
<publishTime>10/09/2013 17:29:20</publishTime>
</File>
<File Include="bin/arm64/libSkiaSharp.dll">
<publishTime>04/09/2024 19:25:14</publishTime>
<publishTime>09/04/2024 19:25:14</publishTime>
</File>
<File Include="bin/BarcodeLib.dll">
<publishTime>02/22/2025 07:07:32</publishTime>
<publishTime>03/26/2025 17:36:08</publishTime>
</File>
<File Include="bin/BarcodeLib.pdb">
<publishTime>02/22/2025 07:07:32</publishTime>
<publishTime>03/26/2025 17:36:08</publishTime>
</File>
<File Include="bin/CSVNET.dll">
<publishTime>02/21/2025 13:26:10</publishTime>
<publishTime>02/28/2025 10:40:17</publishTime>
</File>
<File Include="bin/CSVNET.pdb">
<publishTime>02/21/2025 13:26:10</publishTime>
<publishTime>02/28/2025 10:40:17</publishTime>
</File>
<File Include="bin/Database.dll">
<publishTime>02/27/2025 10:20:06</publishTime>
<publishTime>03/26/2025 16:38:55</publishTime>
</File>
<File Include="bin/Database.pdb">
<publishTime>02/27/2025 10:20:06</publishTime>
<publishTime>03/26/2025 16:38:55</publishTime>
</File>
<File Include="bin/de/System.Net.Http.Formatting.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
@ -115,7 +115,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Optimization.resources.dll">
<publishTime>02/11/2014 16:28:40</publishTime>
<publishTime>11/02/2014 16:28:40</publishTime>
</File>
<File Include="bin/de/System.Web.Razor.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
@ -130,22 +130,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:35:04</publishTime>
</File>
<File Include="bin/DOCGEN.dll">
<publishTime>02/27/2025 10:26:53</publishTime>
<publishTime>03/26/2025 19:03:02</publishTime>
</File>
<File Include="bin/DOCGEN.dll.config">
<publishTime>12/23/2024 22:17:43</publishTime>
</File>
<File Include="bin/DOCGEN.pdb">
<publishTime>02/27/2025 10:26:53</publishTime>
<publishTime>03/26/2025 19:03:02</publishTime>
</File>
<File Include="bin/FastReport.Bars.dll">
<publishTime>11/27/2023 09:49:58</publishTime>
</File>
<File Include="bin/FastReport.Compat.dll">
<publishTime>09/07/2023 11:54:46</publishTime>
<publishTime>07/09/2023 11:54:46</publishTime>
</File>
<File Include="bin/FastReport.DataVisualization.dll">
<publishTime>09/07/2023 12:19:34</publishTime>
<publishTime>07/09/2023 12:19:34</publishTime>
</File>
<File Include="bin/FastReport.dll">
<publishTime>11/27/2023 09:50:34</publishTime>
@ -154,37 +154,37 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/27/2023 09:50:04</publishTime>
</File>
<File Include="bin/Helper.dll">
<publishTime>02/19/2025 10:54:08</publishTime>
<publishTime>03/11/2025 13:52:16</publishTime>
</File>
<File Include="bin/Helper.pdb">
<publishTime>02/19/2025 10:54:08</publishTime>
<publishTime>03/11/2025 13:52:16</publishTime>
</File>
<File Include="bin/libSkiaSharp.dylib">
<publishTime>04/09/2024 18:58:02</publishTime>
<publishTime>09/04/2024 18:58:02</publishTime>
</File>
<File Include="bin/Logging.dll">
<publishTime>12/30/2024 08:48:57</publishTime>
<publishTime>03/11/2025 13:52:16</publishTime>
</File>
<File Include="bin/Logging.pdb">
<publishTime>12/30/2024 08:48:57</publishTime>
<publishTime>03/11/2025 13:52:16</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.Abstractions.dll">
<publishTime>11/12/2018 18:29:00</publishTime>
<publishTime>12/11/2018 18:29:00</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.dll">
<publishTime>01/25/2019 00:18:54</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.Features.dll">
<publishTime>11/12/2018 18:28:58</publishTime>
<publishTime>12/11/2018 18:28:58</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.WebUtilities.dll">
<publishTime>11/12/2018 18:29:00</publishTime>
<publishTime>12/11/2018 18:29:00</publishTime>
</File>
<File Include="bin/Microsoft.Bcl.AsyncInterfaces.dll">
<publishTime>10/31/2023 16:00:18</publishTime>
<publishTime>02/12/2025 00:12:14</publishTime>
</File>
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
<publishTime>03/05/2023 23:41:40</publishTime>
<publishTime>05/03/2023 23:41:40</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.Configuration.Abstractions.dll">
<publishTime>10/31/2023 16:04:06</publishTime>
@ -208,16 +208,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/31/2023 16:00:32</publishTime>
</File>
<File Include="bin/Microsoft.Net.Http.Headers.dll">
<publishTime>11/12/2018 18:28:58</publishTime>
<publishTime>12/11/2018 18:28:58</publishTime>
</File>
<File Include="bin/Microsoft.Web.Infrastructure.dll">
<publishTime>04/11/2022 19:09:46</publishTime>
<publishTime>11/04/2022 19:09:46</publishTime>
</File>
<File Include="bin/Model.dll">
<publishTime>02/02/2025 15:33:38</publishTime>
<publishTime>03/26/2025 13:06:37</publishTime>
</File>
<File Include="bin/Model.pdb">
<publishTime>02/02/2025 15:33:38</publishTime>
<publishTime>03/26/2025 13:06:37</publishTime>
</File>
<File Include="bin/MW6.SDK.dll">
<publishTime>08/19/2014 21:33:57</publishTime>
@ -229,7 +229,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/28/2018 00:07:54</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.dll">
<publishTime>03/08/2023 06:09:56</publishTime>
<publishTime>08/03/2023 06:09:56</publishTime>
</File>
<File Include="bin/NLog.Database.dll">
<publishTime>04/30/2024 21:58:56</publishTime>
@ -238,28 +238,28 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>04/30/2024 21:58:24</publishTime>
</File>
<File Include="bin/OfficePrinter.dll">
<publishTime>01/28/2025 08:37:54</publishTime>
<publishTime>03/11/2025 13:52:30</publishTime>
</File>
<File Include="bin/OfficePrinter.pdb">
<publishTime>01/28/2025 08:37:54</publishTime>
<publishTime>03/11/2025 13:52:30</publishTime>
</File>
<File Include="bin/OfficeToPDFConverter.dll">
<publishTime>02/21/2025 06:22:11</publishTime>
<publishTime>02/28/2025 10:40:16</publishTime>
</File>
<File Include="bin/OfficeToPDFConverter.pdb">
<publishTime>02/21/2025 06:22:11</publishTime>
<publishTime>02/28/2025 10:40:16</publishTime>
</File>
<File Include="bin/OnDocOffice.dll">
<publishTime>02/27/2025 10:26:53</publishTime>
<publishTime>03/26/2025 19:03:02</publishTime>
</File>
<File Include="bin/OnDocOffice.pdb">
<publishTime>02/27/2025 10:26:53</publishTime>
<publishTime>03/26/2025 19:03:02</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.dll">
<publishTime>02/27/2025 19:20:29</publishTime>
<publishTime>03/26/2025 19:03:03</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.pdb">
<publishTime>02/27/2025 19:20:29</publishTime>
<publishTime>03/26/2025 19:03:03</publishTime>
</File>
<File Include="bin/Owin.dll">
<publishTime>11/13/2012 13:19:34</publishTime>
@ -307,10 +307,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>02/15/2022 06:21:10</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
<publishTime>10/05/2021 02:47:54</publishTime>
<publishTime>05/10/2021 02:47:54</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
<publishTime>10/05/2021 02:49:46</publishTime>
<publishTime>05/10/2021 02:49:46</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Managed.Core.CurrentVersions.targets">
<publishTime>02/15/2022 06:33:08</publishTime>
@ -361,34 +361,34 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>02/15/2022 06:38:42</publishTime>
</File>
<File Include="bin/Swashbuckle.Core.dll">
<publishTime>07/08/2017 03:30:56</publishTime>
<publishTime>08/07/2017 03:30:56</publishTime>
</File>
<File Include="bin/Syncfusion.Compression.Base.dll">
<publishTime>09/12/2024 21:02:32</publishTime>
<publishTime>12/09/2024 21:02:32</publishTime>
</File>
<File Include="bin/Syncfusion.DocIO.Base.dll">
<publishTime>09/12/2024 21:21:22</publishTime>
<publishTime>12/09/2024 21:21:22</publishTime>
</File>
<File Include="bin/Syncfusion.DocToPDFConverter.Base.dll">
<publishTime>09/12/2024 21:25:18</publishTime>
<publishTime>12/09/2024 21:25:18</publishTime>
</File>
<File Include="bin/Syncfusion.ExcelToPDFConverter.Base.dll">
<publishTime>09/12/2024 21:34:20</publishTime>
<publishTime>12/09/2024 21:34:20</publishTime>
</File>
<File Include="bin/Syncfusion.Licensing.dll">
<publishTime>09/12/2024 21:33:50</publishTime>
<publishTime>12/09/2024 21:33:50</publishTime>
</File>
<File Include="bin/Syncfusion.OfficeChart.Base.dll">
<publishTime>09/12/2024 21:03:58</publishTime>
<publishTime>12/09/2024 21:03:58</publishTime>
</File>
<File Include="bin/Syncfusion.Pdf.Base.dll">
<publishTime>09/12/2024 21:23:26</publishTime>
<publishTime>12/09/2024 21:23:26</publishTime>
</File>
<File Include="bin/Syncfusion.Presentation.Base.dll">
<publishTime>09/12/2024 21:32:30</publishTime>
<publishTime>12/09/2024 21:32:30</publishTime>
</File>
<File Include="bin/Syncfusion.XlsIO.Base.dll">
<publishTime>09/12/2024 21:26:42</publishTime>
<publishTime>12/09/2024 21:26:42</publishTime>
</File>
<File Include="bin/System.Buffers.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
@ -396,8 +396,11 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<File Include="bin/System.ComponentModel.Annotations.dll">
<publishTime>05/15/2018 15:29:36</publishTime>
</File>
<File Include="bin/System.IO.Pipelines.dll">
<publishTime>02/12/2025 00:12:24</publishTime>
</File>
<File Include="bin/System.Memory.dll">
<publishTime>05/08/2022 05:31:02</publishTime>
<publishTime>08/05/2022 05:31:02</publishTime>
</File>
<File Include="bin/System.Net.Http.Formatting.dll">
<publishTime>10/20/2023 22:33:52</publishTime>
@ -409,7 +412,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/23/2021 01:40:18</publishTime>
</File>
<File Include="bin/System.Text.Encodings.Web.dll">
<publishTime>05/15/2018 15:29:52</publishTime>
<publishTime>02/12/2025 00:18:34</publishTime>
</File>
<File Include="bin/System.Text.Json.dll">
<publishTime>02/12/2025 00:18:50</publishTime>
</File>
<File Include="bin/System.Threading.Tasks.Extensions.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
@ -418,7 +424,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>05/15/2018 15:29:52</publishTime>
</File>
<File Include="bin/System.Web.Cors.dll">
<publishTime>10/01/2013 22:54:22</publishTime>
<publishTime>01/10/2013 22:54:22</publishTime>
</File>
<File Include="bin/System.Web.Helpers.dll">
<publishTime>10/20/2023 22:33:58</publishTime>
@ -433,7 +439,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>01/01/0001 00:00:00</publishTime>
</File>
<File Include="bin/System.Web.Optimization.dll">
<publishTime>02/11/2014 15:26:04</publishTime>
<publishTime>11/02/2014 15:26:04</publishTime>
</File>
<File Include="bin/System.Web.Razor.dll">
<publishTime>10/20/2023 22:33:48</publishTime>
@ -448,217 +454,217 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:33:58</publishTime>
</File>
<File Include="bin/vbBarcodes.dll">
<publishTime>02/23/2025 14:08:20</publishTime>
<publishTime>03/22/2025 11:39:59</publishTime>
</File>
<File Include="bin/vbBarcodes.pdb">
<publishTime>02/23/2025 14:08:20</publishTime>
<publishTime>03/22/2025 11:39:59</publishTime>
</File>
<File Include="bin/VBFileManagement.dll">
<publishTime>01/24/2025 09:01:41</publishTime>
<publishTime>03/11/2025 13:52:16</publishTime>
</File>
<File Include="bin/VBFileManagement.pdb">
<publishTime>01/24/2025 09:01:41</publishTime>
<publishTime>03/11/2025 13:52:16</publishTime>
</File>
<File Include="bin/VBOffice.dll">
<publishTime>02/04/2025 20:25:44</publishTime>
<publishTime>03/22/2025 11:39:59</publishTime>
</File>
<File Include="bin/VBOffice.pdb">
<publishTime>02/04/2025 20:25:44</publishTime>
<publishTime>03/22/2025 11:39:59</publishTime>
</File>
<File Include="bin/WebActivatorEx.dll">
<publishTime>10/05/2016 15:11:52</publishTime>
<publishTime>05/10/2016 15:11:52</publishTime>
</File>
<File Include="bin/WebGrease.dll">
<publishTime>01/23/2014 13:57:34</publishTime>
</File>
<File Include="bin/x64/libSkiaSharp.dll">
<publishTime>04/09/2024 19:24:38</publishTime>
<publishTime>09/04/2024 19:24:38</publishTime>
</File>
<File Include="bin/x86/libSkiaSharp.dll">
<publishTime>04/09/2024 19:24:38</publishTime>
<publishTime>09/04/2024 19:24:38</publishTime>
</File>
<File Include="Content/bootstrap-grid.css">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Content/bootstrap-grid.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.min.css">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.min.css.map">
<publishTime>06/03/2024 09:16:16</publishTime>
<publishTime>03/06/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-utilities.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.min.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.min.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.min.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.css.map">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.min.css">
<publishTime>06/03/2024 09:16:15</publishTime>
<publishTime>03/06/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.min.css.map">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Content/Site.css">
<publishTime>06/03/2024 08:11:55</publishTime>
<publishTime>03/06/2024 08:11:55</publishTime>
</File>
<File Include="favicon.ico">
<publishTime>06/03/2024 08:11:55</publishTime>
<publishTime>03/06/2024 08:11:55</publishTime>
</File>
<File Include="Global.asax">
<publishTime>07/19/2024 12:25:43</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.js">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.min.js">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.min.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.js">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.min.js">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.min.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.js">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.js.map">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js">
<publishTime>06/03/2024 09:16:14</publishTime>
<publishTime>03/06/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js.map">
<publishTime>06/03/2024 09:16:13</publishTime>
<publishTime>03/06/2024 09:16:13</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.js">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.min.js">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.min.map">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.js">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.min.js">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.min.map">
<publishTime>06/03/2024 09:16:17</publishTime>
<publishTime>03/06/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/modernizr-2.8.3.js">
<publishTime>06/03/2024 08:12:04</publishTime>
<publishTime>03/06/2024 08:12:04</publishTime>
</File>
<File Include="Views/Home/APIGenerator.cshtml">
<publishTime>10/01/2024 20:21:44</publishTime>
<publishTime>01/10/2024 20:21:44</publishTime>
</File>
<File Include="Views/Home/Index.cshtml">
<publishTime>06/03/2024 08:11:55</publishTime>
<publishTime>03/06/2024 08:11:55</publishTime>
</File>
<File Include="Views/Shared/Error.cshtml">
<publishTime>06/03/2024 08:11:55</publishTime>
<publishTime>03/06/2024 08:11:55</publishTime>
</File>
<File Include="Views/Shared/_Layout.cshtml">
<publishTime>06/03/2024 10:48:16</publishTime>
<publishTime>03/06/2024 10:48:16</publishTime>
</File>
<File Include="Views/Web.config">
<publishTime>07/19/2024 12:25:43</publishTime>
</File>
<File Include="Views/_ViewStart.cshtml">
<publishTime>06/03/2024 08:11:55</publishTime>
<publishTime>03/06/2024 08:11:55</publishTime>
</File>
<File Include="Web.config">
<publishTime>02/27/2025 18:15:20</publishTime>
<publishTime>03/26/2025 19:03:03</publishTime>
</File>
</ItemGroup>
</Project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -258,7 +258,7 @@
</member>
<member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
<summary>
Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
Indicates the user is supplying a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
</summary>
</member>
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
@ -392,7 +392,7 @@
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
<summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
<param name="returnValue">
The return value condition. If the method returns this value, the associated parameter will not be null.
The return value condition. If the method returns this value, the associated field or property member will not be null.
</param>
<param name="member">
The field or property member that is promised to be not-null.
@ -401,7 +401,7 @@
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
<summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
<param name="returnValue">
The return value condition. If the method returns this value, the associated parameter will not be null.
The return value condition. If the method returns this value, the associated field and property members will not be null.
</param>
<param name="members">
The list of field and property members that are promised to be not-null.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,391 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.IO.Pipelines</name>
</assembly>
<members>
<member name="T:System.IO.Pipelines.FlushResult">
<summary>Result returned by <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> call.</summary>
</member>
<member name="M:System.IO.Pipelines.FlushResult.#ctor(System.Boolean,System.Boolean)">
<summary>Initializes a new instance of <see cref="T:System.IO.Pipelines.FlushResult" /> struct setting the <see cref="P:System.IO.Pipelines.FlushResult.IsCanceled" /> and <see cref="P:System.IO.Pipelines.FlushResult.IsCompleted" /> flags.</summary>
<param name="isCanceled">
<see langword="true" /> to indicate the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.FlushResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</param>
<param name="isCompleted">
<see langword="true" /> to indicate the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</param>
</member>
<member name="P:System.IO.Pipelines.FlushResult.IsCanceled">
<summary>Gets a value that indicates whether the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />.</summary>
<returns>
<see langword="true" /> if the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.IO.Pipelines.FlushResult.IsCompleted">
<summary>Gets a value that indicates the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<returns>
<see langword="true" /> if the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:System.IO.Pipelines.IDuplexPipe">
<summary>Defines a class that provides a duplex pipe from which data can be read from and written to.</summary>
</member>
<member name="P:System.IO.Pipelines.IDuplexPipe.Input">
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeReader" /> half of the duplex pipe.</summary>
</member>
<member name="P:System.IO.Pipelines.IDuplexPipe.Output">
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeWriter" /> half of the duplex pipe.</summary>
</member>
<member name="T:System.IO.Pipelines.Pipe">
<summary>The default <see cref="T:System.IO.Pipelines.PipeWriter" /> and <see cref="T:System.IO.Pipelines.PipeReader" /> implementation.</summary>
</member>
<member name="M:System.IO.Pipelines.Pipe.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.Pipe" /> class using <see cref="P:System.IO.Pipelines.PipeOptions.Default" /> as options.</summary>
</member>
<member name="M:System.IO.Pipelines.Pipe.#ctor(System.IO.Pipelines.PipeOptions)">
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.Pipe" /> class with the specified options.</summary>
<param name="options">The set of options for this pipe.</param>
</member>
<member name="M:System.IO.Pipelines.Pipe.Reset">
<summary>Resets the pipe.</summary>
</member>
<member name="P:System.IO.Pipelines.Pipe.Reader">
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeReader" /> for this pipe.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeReader" /> instance for this pipe.</returns>
</member>
<member name="P:System.IO.Pipelines.Pipe.Writer">
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeWriter" /> for this pipe.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeWriter" /> instance for this pipe.</returns>
</member>
<member name="T:System.IO.Pipelines.PipeOptions">
<summary>Represents a set of <see cref="T:System.IO.Pipelines.Pipe" /> options.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.PipeOptions" /> class with the specified parameters.</summary>
<param name="pool">The pool of memory blocks to be used for buffer management.</param>
<param name="readerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> to be used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</param>
<param name="writerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</param>
<param name="pauseWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> before <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A value of zero prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</param>
<param name="resumeWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</param>
<param name="minimumSegmentSize">The minimum size of the segment requested from <paramref name="pool" />.</param>
<param name="useSynchronizationContext">
<see langword="true" /> if asynchronous continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on; <see langword="false" /> otherwise. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</param>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.Default">
<summary>Gets the default instance of <see cref="T:System.IO.Pipelines.PipeOptions" />.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeOptions" /> object initialized with default parameters.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.MinimumSegmentSize">
<summary>Gets the minimum size of the segment requested from the <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</summary>
<returns>The minimum size of the segment requested from the <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.PauseWriterThreshold">
<summary>Gets the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A value of zero prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</summary>
<returns>The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.Pool">
<summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> object used for buffer management.</summary>
<returns>A pool of memory blocks used for buffer management.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.ReaderScheduler">
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> that is used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.ResumeWriterThreshold">
<summary>Gets the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</summary>
<returns>The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.UseSynchronizationContext">
<summary>Gets a value that determines if asynchronous callbacks and continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</summary>
<returns>
<see langword="true" /> if asynchronous callbacks and continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeOptions.WriterScheduler">
<summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> object used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</returns>
</member>
<member name="T:System.IO.Pipelines.PipeReader">
<summary>Defines a class that provides access to a read side of pipe.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeReader.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.PipeReader" /> class.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition,System.SequencePosition)">
<summary>Moves forward the pipeline's read cursor to after the consumed data, marking the data as processed, read and examined.</summary>
<param name="consumed">Marks the extent of the data that has been successfully processed.</param>
<param name="examined">Marks the extent of the data that has been read and examined.</param>
</member>
<member name="M:System.IO.Pipelines.PipeReader.AdvanceTo(System.SequencePosition)">
<summary>Moves forward the pipeline's read cursor to after the consumed data, marking the data as processed.</summary>
<param name="consumed">Marks the extent of the data that has been successfully processed.</param>
</member>
<member name="M:System.IO.Pipelines.PipeReader.AsStream(System.Boolean)">
<summary>Returns a <see cref="T:System.IO.Stream" /> representation of the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
<param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="T:System.IO.Stream" /> leaves <see cref="T:System.IO.Pipelines.PipeReader" /> open (<see langword="true" />) or completes <see cref="T:System.IO.Pipelines.PipeReader" /> (<see langword="false" />).</param>
<returns>A stream that represents the <see cref="T:System.IO.Pipelines.PipeReader" />.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.CancelPendingRead">
<summary>Cancels the pending <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation without causing it to throw and without completing the <see cref="T:System.IO.Pipelines.PipeReader" />. If there is no pending operation, this cancels the next operation.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeReader.Complete(System.Exception)">
<summary>Signals to the producer that the consumer is done reading.</summary>
<param name="exception">Optional <see cref="T:System.Exception" /> indicating a failure that's causing the pipeline to complete.</param>
</member>
<member name="M:System.IO.Pipelines.PipeReader.CompleteAsync(System.Exception)">
<summary>Marks the current pipe reader instance as being complete, meaning no more data will be read from it.</summary>
<param name="exception">An optional exception that indicates the failure that caused the reader to complete.</param>
<returns>A value task that represents the asynchronous complete operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)">
<summary>Asynchronously reads the bytes from the <see cref="T:System.IO.Pipelines.PipeReader" /> and writes them to the specified <see cref="T:System.IO.Pipelines.PipeWriter" />, using a specified cancellation token.</summary>
<param name="destination">The pipe writer to which the contents of the current stream will be copied.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous copy operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>Asynchronously reads the bytes from the <see cref="T:System.IO.Pipelines.PipeReader" /> and writes them to the specified stream, using a specified cancellation token.</summary>
<param name="destination">The stream to which the contents of the current stream will be copied.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous copy operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.Create(System.Buffers.ReadOnlySequence{System.Byte})">
<summary>Creates a <see cref="T:System.IO.Pipelines.PipeReader" /> wrapping the specified <see cref="T:System.Buffers.ReadOnlySequence`1" />.</summary>
<param name="sequence">The sequence to wrap.</param>
<returns>A <see cref="T:System.IO.Pipelines.PipeReader" /> that wraps the <see cref="T:System.Buffers.ReadOnlySequence`1" />.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeReaderOptions)">
<summary>Creates a <see cref="T:System.IO.Pipelines.PipeReader" /> wrapping the specified <see cref="T:System.IO.Stream" />.</summary>
<param name="stream">The stream that the pipe reader will wrap.</param>
<param name="readerOptions">The options to configure the pipe reader.</param>
<returns>A <see cref="T:System.IO.Pipelines.PipeReader" /> that wraps the <see cref="T:System.IO.Stream" />.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.OnWriterCompleted(System.Action{System.Exception,System.Object},System.Object)">
<summary>Registers a callback that executes when the <see cref="T:System.IO.Pipelines.PipeWriter" /> side of the pipe is completed.</summary>
<param name="callback">The callback to register.</param>
<param name="state">The state object to pass to <paramref name="callback" /> when it's invoked.</param>
</member>
<member name="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)">
<summary>Asynchronously reads a sequence of bytes from the current <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see langword="default" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> representing the asynchronous read operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.ReadAtLeastAsync(System.Int32,System.Threading.CancellationToken)">
<summary>Asynchronously reads a sequence of bytes from the current <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
<param name="minimumSize">The minimum length that needs to be buffered in order for the call to return.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see langword="default" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> representing the asynchronous read operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.ReadAtLeastAsyncCore(System.Int32,System.Threading.CancellationToken)">
<summary>Asynchronously reads a sequence of bytes from the current <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
<param name="minimumSize">The minimum length that needs to be buffered in order for the call to return.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see langword="default" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask`1" /> representing the asynchronous read operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeReader.TryRead(System.IO.Pipelines.ReadResult@)">
<summary>Attempts to synchronously read data the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
<param name="result">When this method returns <see langword="true" />, this value is set to a <see cref="T:System.IO.Pipelines.ReadResult" /> instance that represents the result of the read call; otherwise, this value is set to <see langword="default" />.</param>
<returns>
<see langword="true" /> if data was available, or if the call was canceled or the writer was completed; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:System.IO.Pipelines.PipeScheduler">
<summary>Abstraction for running <see cref="T:System.IO.Pipelines.PipeReader" /> and <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and continuations.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeScheduler.#ctor">
<summary>Initializes new a <see cref="T:System.IO.Pipelines.PipeScheduler" /> instance.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeScheduler.Schedule(System.Action{System.Object},System.Object)">
<summary>Requests <paramref name="action" /> to be run on scheduler with <paramref name="state" /> being passed in.</summary>
<param name="action">The single-parameter action delegate to schedule.</param>
<param name="state">The parameter to pass to the <paramref name="action" /> delegate.</param>
</member>
<member name="P:System.IO.Pipelines.PipeScheduler.Inline">
<summary>The <see cref="T:System.IO.Pipelines.PipeScheduler" /> implementation that runs callbacks inline.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> instance that runs callbacks inline.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeScheduler.ThreadPool">
<summary>The <see cref="T:System.IO.Pipelines.PipeScheduler" /> implementation that queues callbacks to the thread pool.</summary>
<returns>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> instance that queues callbacks to the thread pool.</returns>
</member>
<member name="T:System.IO.Pipelines.PipeWriter">
<summary>Defines a class that provides a pipeline to which data can be written.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.#ctor">
<summary>Initializes a new instance of the class.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.Advance(System.Int32)">
<summary>Notifies the <see cref="T:System.IO.Pipelines.PipeWriter" /> that <paramref name="bytes" /> bytes were written to the output <see cref="T:System.Span`1" /> or <see cref="T:System.Memory`1" />. You must call <see cref="M:System.IO.Pipelines.PipeWriter.GetSpan(System.Int32)" /> or <see cref="M:System.IO.Pipelines.PipeWriter.GetMemory(System.Int32)" /> again and use the returned buffer to continue writing more data after calling <see cref="M:System.IO.Pipelines.PipeWriter.Advance(System.Int32)" />; you cannot write to a previously acquired buffer.</summary>
<param name="bytes">The number of bytes written to the <see cref="T:System.Span`1" /> or <see cref="T:System.Memory`1" />.</param>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.AsStream(System.Boolean)">
<summary>Returns a <see cref="T:System.IO.Stream" /> representation of the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="T:System.IO.Stream" /> leaves <see cref="T:System.IO.Pipelines.PipeReader" /> open (<see langword="true" />) or completes <see cref="T:System.IO.Pipelines.PipeReader" /> (<see langword="false" />).</param>
<returns>A stream that represents the <see cref="T:System.IO.Pipelines.PipeWriter" />.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush">
<summary>Cancels the pending <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> or <see cref="M:System.IO.Pipelines.PipeWriter.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)" /> operation without causing the operation to throw and without completing the <see cref="T:System.IO.Pipelines.PipeWriter" />. If there is no pending operation, this cancels the next operation.</summary>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.Complete(System.Exception)">
<summary>Marks the <see cref="T:System.IO.Pipelines.PipeWriter" /> as being complete, meaning no more items will be written to it.</summary>
<param name="exception">Optional <see cref="T:System.Exception" /> indicating a failure that's causing the pipeline to complete.</param>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.CompleteAsync(System.Exception)">
<summary>Marks the current pipe writer instance as being complete, meaning no more data will be written to it.</summary>
<param name="exception">An optional exception that indicates the failure that caused the pipeline to complete.</param>
<returns>A value task that represents the asynchronous complete operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.CopyFromAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>Asynchronously reads the bytes from the specified stream and writes them to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="source">The stream from which the contents will be copied.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous copy operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.Create(System.IO.Stream,System.IO.Pipelines.StreamPipeWriterOptions)">
<summary>Creates a <see cref="T:System.IO.Pipelines.PipeWriter" /> wrapping the specified <see cref="T:System.IO.Stream" />.</summary>
<param name="stream">The stream that the pipe writer will wrap.</param>
<param name="writerOptions">The options to configure the pipe writer.</param>
<returns>A <see cref="T:System.IO.Pipelines.PipeWriter" /> that wraps the <see cref="T:System.IO.Stream" />.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)">
<summary>Makes bytes written available to <see cref="T:System.IO.Pipelines.PipeReader" /> and runs <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> continuation.</summary>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents and wraps the asynchronous flush operation.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.GetMemory(System.Int32)">
<summary>Returns a <see cref="T:System.Memory`1" /> to write to that is at least the requested size, as specified by the <paramref name="sizeHint" /> parameter.</summary>
<param name="sizeHint">The minimum length of the returned <see cref="T:System.Memory`1" />. If 0, a non-empty memory buffer of arbitrary size is returned.</param>
<exception cref="T:System.OutOfMemoryException">The requested buffer size is not available.</exception>
<returns>A memory buffer of at least <paramref name="sizeHint" /> bytes. If <paramref name="sizeHint" /> is 0, returns a non-empty buffer of arbitrary size.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.GetSpan(System.Int32)">
<summary>Returns a <see cref="T:System.Span`1" /> to write to that is at least the requested size, as specified by the <paramref name="sizeHint" /> parameter.</summary>
<param name="sizeHint">The minimum length of the returned <see cref="T:System.Span`1" />. If 0, a non-empty buffer of arbitrary size is returned.</param>
<exception cref="T:System.OutOfMemoryException">The requested buffer size is not available.</exception>
<returns>A buffer of at least <paramref name="sizeHint" /> bytes. If <paramref name="sizeHint" /> is 0, returns a non-empty buffer of arbitrary size.</returns>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.OnReaderCompleted(System.Action{System.Exception,System.Object},System.Object)">
<summary>Registers a callback that executes when the <see cref="T:System.IO.Pipelines.PipeReader" /> side of the pipe is completed.</summary>
<param name="callback">The callback to register.</param>
<param name="state">The state object to pass to <paramref name="callback" /> when it's invoked.</param>
</member>
<member name="M:System.IO.Pipelines.PipeWriter.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
<summary>Writes the specified byte memory range to the pipe and makes data accessible to the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
<param name="source">The read-only byte memory region to write.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous write operation, and wraps the flush asynchronous operation.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeWriter.CanGetUnflushedBytes">
<summary>Gets a value that indicates whether the current <see cref="T:System.IO.Pipelines.PipeWriter" /> supports reporting the count of unflushed bytes.</summary>
<returns>
<see langword="true" />If a class derived from <see cref="T:System.IO.Pipelines.PipeWriter" /> does not support getting the unflushed bytes, calls to <see cref="P:System.IO.Pipelines.PipeWriter.UnflushedBytes" /> throw <see cref="T:System.NotImplementedException" />.</returns>
</member>
<member name="P:System.IO.Pipelines.PipeWriter.UnflushedBytes">
<summary>When overridden in a derived class, gets the count of unflushed bytes within the current writer.</summary>
<exception cref="T:System.NotImplementedException">The <see cref="T:System.IO.Pipelines.PipeWriter" /> does not support getting the unflushed byte count.</exception>
</member>
<member name="T:System.IO.Pipelines.ReadResult">
<summary>Represents the result of a <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> call.</summary>
</member>
<member name="M:System.IO.Pipelines.ReadResult.#ctor(System.Buffers.ReadOnlySequence{System.Byte},System.Boolean,System.Boolean)">
<summary>Creates a new instance of <see cref="T:System.IO.Pipelines.ReadResult" /> setting <see cref="P:System.IO.Pipelines.ReadResult.IsCanceled" /> and <see cref="P:System.IO.Pipelines.ReadResult.IsCompleted" /> flags.</summary>
<param name="buffer">The read-only sequence containing the bytes of data that were read in the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> call.</param>
<param name="isCanceled">A flag that indicates if the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.ReadResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeReader.CancelPendingRead" />.</param>
<param name="isCompleted">A flag that indicates whether the end of the data stream has been reached.</param>
</member>
<member name="P:System.IO.Pipelines.ReadResult.Buffer">
<summary>Gets the <see cref="T:System.Buffers.ReadOnlySequence`1" /> that was read.</summary>
<returns>A read-only sequence containing the bytes of data that were read in the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> call.</returns>
</member>
<member name="P:System.IO.Pipelines.ReadResult.IsCanceled">
<summary>Gets a value that indicates whether the current <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation was canceled by <see cref="M:System.IO.Pipelines.PipeReader.CancelPendingRead" />.</summary>
<returns>
<see langword="true" /> if the <see cref="M:System.IO.Pipelines.PipeReader.ReadAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.ReadResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeReader.CancelPendingRead" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.IO.Pipelines.ReadResult.IsCompleted">
<summary>Gets a value that indicates whether the end of the data stream has been reached.</summary>
<returns>
<see langword="true" /> if the end of the data stream has been reached; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:System.IO.Pipelines.StreamPipeExtensions">
<summary>Provides extension methods for <see cref="T:System.IO.Stream" /> that support read and write operations directly into pipes.</summary>
</member>
<member name="M:System.IO.Pipelines.StreamPipeExtensions.CopyToAsync(System.IO.Stream,System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)">
<summary>Asynchronously reads the bytes from the <see cref="T:System.IO.Stream" /> and writes them to the specified <see cref="T:System.IO.Pipelines.PipeWriter" />, using a cancellation token.</summary>
<param name="source">The stream from which the contents of the current stream will be copied.</param>
<param name="destination">The writer to which the contents of the source stream will be copied.</param>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous copy operation.</returns>
</member>
<member name="T:System.IO.Pipelines.StreamPipeReaderOptions">
<summary>Represents a set of options for controlling the creation of the <see cref="T:System.IO.Pipelines.PipeReader" />.</summary>
</member>
<member name="M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>Initializes a <see cref="T:System.IO.Pipelines.StreamPipeReaderOptions" /> instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes.</summary>
<param name="pool">The memory pool to use when allocating memory. The default value is <see langword="null" />.</param>
<param name="bufferSize">The minimum buffer size to use when renting memory from the <paramref name="pool" />. The default value is 4096.</param>
<param name="minimumReadSize">The threshold of remaining bytes in the buffer before a new buffer is allocated. The default value is 1024.</param>
<param name="leaveOpen">
<see langword="true" /> to leave the underlying stream open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes; <see langword="false" /> to close it. The default is <see langword="false" />.</param>
<param name="useZeroByteReads">
<see langword="true" /> if reads with an empty buffer should be issued to the underlying stream before allocating memory; otherwise, <see langword="false" />.</param>
</member>
<member name="M:System.IO.Pipelines.StreamPipeReaderOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Int32,System.Boolean)">
<summary>Initializes a <see cref="T:System.IO.Pipelines.StreamPipeReaderOptions" /> instance, optionally specifying a memory pool, a minimum buffer size, a minimum read size, and whether the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes.</summary>
<param name="pool">The memory pool to use when allocating memory. The default value is <see langword="null" />.</param>
<param name="bufferSize">The minimum buffer size to use when renting memory from the <paramref name="pool" />. The default value is 4096.</param>
<param name="minimumReadSize">The threshold of remaining bytes in the buffer before a new buffer is allocated. The default value is 1024.</param>
<param name="leaveOpen">
<see langword="true" /> to leave the underlying stream open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes; <see langword="false" /> to close it. The default is <see langword="false" />.</param>
</member>
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.BufferSize">
<summary>Gets the minimum buffer size to use when renting memory from the <see cref="P:System.IO.Pipelines.StreamPipeReaderOptions.Pool" />.</summary>
<returns>The buffer size.</returns>
</member>
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.LeaveOpen">
<summary>Gets the value that indicates if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes.</summary>
<returns>
<see langword="true" /> if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeReader" /> completes; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.MinimumReadSize">
<summary>Gets the threshold of remaining bytes in the buffer before a new buffer is allocated.</summary>
<returns>The minimum read size.</returns>
</member>
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.Pool">
<summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> to use when allocating memory.</summary>
<returns>A memory pool instance.</returns>
</member>
<member name="P:System.IO.Pipelines.StreamPipeReaderOptions.UseZeroByteReads">
<summary>Gets the value that indicates if reads with an empty buffer should be issued to the underlying stream, in order to wait for data to arrive before allocating memory.</summary>
<returns>
<see langword="true" /> if reads with an empty buffer should be issued to the underlying stream before allocating memory; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:System.IO.Pipelines.StreamPipeWriterOptions">
<summary>Represents a set of options for controlling the creation of the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
</member>
<member name="M:System.IO.Pipelines.StreamPipeWriterOptions.#ctor(System.Buffers.MemoryPool{System.Byte},System.Int32,System.Boolean)">
<summary>Initializes a <see cref="T:System.IO.Pipelines.StreamPipeWriterOptions" /> instance, optionally specifying a memory pool, a minimum buffer size, and whether the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes.</summary>
<param name="pool">The memory pool to use when allocating memory. The default value is <see langword="null" />.</param>
<param name="minimumBufferSize">The minimum buffer size to use when renting memory from the <paramref name="pool" />. The default value is 4096.</param>
<param name="leaveOpen">
<see langword="true" /> to leave the underlying stream open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes; <see langword="false" /> to close it. The default is <see langword="false" />.</param>
</member>
<member name="P:System.IO.Pipelines.StreamPipeWriterOptions.LeaveOpen">
<summary>Gets the value that indicates if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes.</summary>
<returns>
<see langword="true" /> if the underlying stream should be left open after the <see cref="T:System.IO.Pipelines.PipeWriter" /> completes; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.IO.Pipelines.StreamPipeWriterOptions.MinimumBufferSize">
<summary>Gets the minimum buffer size to use when renting memory from the <see cref="P:System.IO.Pipelines.StreamPipeWriterOptions.Pool" />.</summary>
<returns>An integer representing the minimum buffer size.</returns>
</member>
<member name="P:System.IO.Pipelines.StreamPipeWriterOptions.Pool">
<summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> to use when allocating memory.</summary>
<returns>A memory pool instance.</returns>
</member>
</members>
</doc>

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Text.Encodings.Web</name>
</assembly>
@ -7,110 +8,154 @@
<summary>Represents an HTML character encoding.</summary>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary>
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder" /> class.</summary>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>Creates a new instance of the HtmlEncoder class with the specified settings.</summary>
<param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> instance encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception>
<param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.HtmlEncoder" /> instance encodes, primarily which characters to encode.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="settings" /> is <see langword="null" />.</exception>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder" /> class.</returns>
</member>
<member name="M:System.Text.Encodings.Web.HtmlEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.</summary>
<param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="allowedRanges" /> is <see langword="null" />.</exception>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder" /> class.</returns>
</member>
<member name="P:System.Text.Encodings.Web.HtmlEncoder.Default">
<summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder"></see> class.</summary>
<returns>A built-in instance of the <see cref="System.Text.Encodings.Web.HtmlEncoder"></see> class.</returns>
<summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder" /> class.</summary>
<returns>A built-in instance of the <see cref="T:System.Text.Encodings.Web.HtmlEncoder" /> class.</returns>
</member>
<member name="T:System.Text.Encodings.Web.JavaScriptEncoder">
<summary>Represents a JavaScript character encoding.</summary>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary>
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder" /> class.</summary>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>Creates a new instance of JavaScriptEncoder class with the specified settings.</summary>
<param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> instance encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception>
<param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder" /> instance encodes, primarily which characters to encode.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="settings" /> is <see langword="null" />.</exception>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder" /> class.</returns>
</member>
<member name="M:System.Text.Encodings.Web.JavaScriptEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>Creates a new instance of the JavaScriptEncoder class that specifies characters the encoder is allowed to not encode.</summary>
<param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="allowedRanges" /> is <see langword="null" />.</exception>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder" /> class.</returns>
</member>
<member name="P:System.Text.Encodings.Web.JavaScriptEncoder.Default">
<summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</summary>
<returns>A built-in instance of the <see cref="System.Text.Encodings.Web.JavaScriptEncoder"></see> class.</returns>
<summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder" /> class.</summary>
<returns>A built-in instance of the <see cref="T:System.Text.Encodings.Web.JavaScriptEncoder" /> class.</returns>
</member>
<member name="P:System.Text.Encodings.Web.JavaScriptEncoder.UnsafeRelaxedJsonEscaping">
<summary>Gets a built-in JavaScript encoder instance that is less strict about what is encoded.</summary>
<returns>A JavaScript encoder instance.</returns>
</member>
<member name="T:System.Text.Encodings.Web.TextEncoder">
<summary>The base class of web encoders.</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.TextEncoder"></see> class.</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)">
<summary>Encodes the supplied string and returns the encoded text as a new string.</summary>
<param name="value">The string to encode.</param>
<returns>The encoded string.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
<exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)">
<summary>Encodes the specified string to a <see cref="T:System.IO.TextWriter"></see> object.</summary>
<param name="output">The stream to which to write the encoded text.</param>
<param name="value">The string to encode.</param>
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.TextEncoder" /> class.</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Encodes characters from an array and writes them to a <see cref="T:System.IO.TextWriter"></see> object.</summary>
<summary>Encodes characters from an array and writes them to a <see cref="T:System.IO.TextWriter" /> object.</summary>
<param name="output">The stream to which to write the encoded text.</param>
<param name="value">The array of characters to encode.</param>
<param name="startIndex">The array index of the first character to encode.</param>
<param name="characterCount">The number of characters in the array to encode.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception>
<exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="output" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see cref="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)" /> method failed. The encoder does not implement <see cref="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter" /> correctly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="value" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="startIndex" /> is out of range.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="characterCount" /> is out of range.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String,System.Int32,System.Int32)">
<summary>Encodes a substring and writes it to a <see cref="T:System.IO.TextWriter"></see> object.</summary>
<summary>Encodes a substring and writes it to a <see cref="T:System.IO.TextWriter" /> object.</summary>
<param name="output">The stream to which to write the encoded text.</param>
<param name="value">The string whose substring is to be encoded.</param>
<param name="startIndex">The index where the substring starts.</param>
<param name="characterCount">The number of characters in the substring.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception>
<exception cref="T:System.ArgumentException">The <see cref="System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)"></see> method failed. The encoder does not implement <see cref="System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter"></see> correctly.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is out of range.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="characterCount">characterCount</paramref> is out of range.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="output" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see cref="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)" /> method failed. The encoder does not implement <see cref="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter" /> correctly.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="value" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="startIndex" /> is out of range.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="characterCount" /> is out of range.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.IO.TextWriter,System.String)">
<summary>Encodes the specified string to a <see cref="T:System.IO.TextWriter" /> object.</summary>
<param name="output">The stream to which to write the encoded text.</param>
<param name="value">The string to encode.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@,System.Int32@,System.Boolean)">
<summary>Encodes the supplied characters.</summary>
<param name="source">A source buffer containing the characters to encode.</param>
<param name="destination">The destination buffer to which the encoded form of <paramref name="source" /> will be written.</param>
<param name="charsConsumed">The number of characters consumed from the <paramref name="source" /> buffer.</param>
<param name="charsWritten">The number of characters written to the <paramref name="destination" /> buffer.</param>
<param name="isFinalBlock">
<see langword="true" /> to indicate there is no further source data that needs to be encoded; otherwise, <see langword="false" />.</param>
<returns>An enumeration value that describes the result of the encoding operation.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.Encode(System.String)">
<summary>Encodes the supplied string and returns the encoded text as a new string.</summary>
<param name="value">The string to encode.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="value" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The <see cref="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)" /> method failed. The encoder does not implement <see cref="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter" /> correctly.</exception>
<returns>The encoded string.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.EncodeUtf8(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@,System.Int32@,System.Boolean)">
<summary>Encodes the supplied UTF-8 text.</summary>
<param name="utf8Source">A source buffer containing the UTF-8 text to encode.</param>
<param name="utf8Destination">The destination buffer to which the encoded form of <paramref name="utf8Source" /> will be written.</param>
<param name="bytesConsumed">The number of bytes consumed from the <paramref name="utf8Source" /> buffer.</param>
<param name="bytesWritten">The number of bytes written to the <paramref name="utf8Destination" /> buffer.</param>
<param name="isFinalBlock">
<see langword="true" /> to indicate there is no further source data that needs to be encoded; otherwise, <see langword="false" />.</param>
<returns>A status code that describes the result of the encoding operation.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncode(System.Char*,System.Int32)">
<summary>Finds the index of the first character to encode.</summary>
<param name="text">The text buffer to search.</param>
<param name="textLength">The number of characters in <paramref name="text">text</paramref>.</param>
<param name="textLength">The number of characters in <paramref name="text" />.</param>
<returns>The index of the first character to encode.</returns>
</member>
<member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter">
<summary>Gets the maximum number of characters that this encoder can generate for each input code point.</summary>
<returns>The maximum number of characters.</returns>
<member name="M:System.Text.Encodings.Web.TextEncoder.FindFirstCharacterToEncodeUtf8(System.ReadOnlySpan{System.Byte})">
<summary>Finds the first element in a UTF-8 text input buffer that would be escaped by the current encoder instance.</summary>
<param name="utf8Text">The UTF-8 text input buffer to search.</param>
<returns>The index of the first element in <paramref name="utf8Text" /> that would be escaped by the current encoder instance, or -1 if no data in <paramref name="utf8Text" /> requires escaping.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.TryEncodeUnicodeScalar(System.Int32,System.Char*,System.Int32,System.Int32@)">
<summary>Encodes a Unicode scalar value and writes it to a buffer.</summary>
<param name="unicodeScalar">A Unicode scalar value.</param>
<param name="buffer">A pointer to the buffer to which to write the encoded text.</param>
<param name="bufferLength">The length of the destination <paramref name="buffer">buffer</paramref> in characters.</param>
<param name="numberOfCharactersWritten">When the method returns, indicates the number of characters written to the <paramref name="buffer">buffer</paramref>.</param>
<returns>false if <paramref name="bufferLength">bufferLength</paramref> is too small to fit the encoded text; otherwise, returns true.</returns>
<param name="bufferLength">The length of the destination <paramref name="buffer" /> in characters.</param>
<param name="numberOfCharactersWritten">When the method returns, indicates the number of characters written to the <paramref name="buffer" />.</param>
<returns>
<see langword="false" /> if <paramref name="bufferLength" /> is too small to fit the encoded text; otherwise, returns <see langword="true" />.</returns>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoder.WillEncode(System.Int32)">
<summary>Determines if a given Unicode scalar value will be encoded.</summary>
<param name="unicodeScalar">A Unicode scalar value.</param>
<returns>true if the <paramref name="unicodeScalar">unicodeScalar</paramref> value will be encoded by this encoder; otherwise, returns false.</returns>
<returns>
<see langword="true" /> if the <paramref name="unicodeScalar" /> value will be encoded by this encoder; otherwise, returns <see langword="false" />.</returns>
</member>
<member name="P:System.Text.Encodings.Web.TextEncoder.MaxOutputCharactersPerInputCharacter">
<summary>Gets the maximum number of characters that this encoder can generate for each input code point.</summary>
<returns>The maximum number of characters.</returns>
</member>
<member name="T:System.Text.Encodings.Web.TextEncoderSettings">
<summary>Represents a filter that allows only certain Unicode code points.</summary>
@ -119,59 +164,67 @@
<summary>Instantiates an empty filter (allows no code points through by default).</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>Instantiates a filter by cloning the allowed list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object.</summary>
<param name="other">The other <see cref="T:System.Text.Encodings.Web.TextEncoderSettings"></see> object to be cloned.</param>
<summary>Instantiates a filter by cloning the allowed list of another <see cref="T:System.Text.Encodings.Web.TextEncoderSettings" /> object.</summary>
<param name="other">The other <see cref="T:System.Text.Encodings.Web.TextEncoderSettings" /> object to be cloned.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.#ctor(System.Text.Unicode.UnicodeRange[])">
<summary>Instantiates a filter where only the character ranges specified by <paramref name="allowedRanges">allowedRanges</paramref> are allowed by the filter.</summary>
<summary>Instantiates a filter where only the character ranges specified by <paramref name="allowedRanges" /> are allowed by the filter.</summary>
<param name="allowedRanges">The allowed character ranges.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="allowedRanges" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacter(System.Char)">
<summary>Allows the character specified by <paramref name="character">character</paramref> through the filter.</summary>
<summary>Allows the character specified by <paramref name="character" /> through the filter.</summary>
<param name="character">The allowed character.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCharacters(System.Char[])">
<summary>Allows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary>
<summary>Allows all characters specified by <paramref name="characters" /> through the filter.</summary>
<param name="characters">The allowed characters.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="characters" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowCodePoints(System.Collections.Generic.IEnumerable{System.Int32})">
<summary>Allows all code points specified by <paramref name="codePoints">codePoints</paramref>.</summary>
<summary>Allows all code points specified by <paramref name="codePoints" />.</summary>
<param name="codePoints">The allowed code points.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="codePoints">codePoints</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="codePoints" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRange(System.Text.Unicode.UnicodeRange)">
<summary>Allows all characters specified by <paramref name="range">range</paramref> through the filter.</summary>
<summary>Allows all characters specified by <paramref name="range" /> through the filter.</summary>
<param name="range">The range of characters to be allowed.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="range" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.AllowRanges(System.Text.Unicode.UnicodeRange[])">
<summary>Allows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary>
<summary>Allows all characters specified by <paramref name="ranges" /> through the filter.</summary>
<param name="ranges">The ranges of characters to be allowed.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="ranges" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.Clear">
<summary>Resets this object by disallowing all characters.</summary>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacter(System.Char)">
<summary>Disallows the character <paramref name="character">character</paramref> through the filter.</summary>
<summary>Disallows the character <paramref name="character" /> through the filter.</summary>
<param name="character">The disallowed character.</param>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidCharacters(System.Char[])">
<summary>Disallows all characters specified by <paramref name="characters">characters</paramref> through the filter.</summary>
<summary>Disallows all characters specified by <paramref name="characters" /> through the filter.</summary>
<param name="characters">The disallowed characters.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="characters">characters</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="characters" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRange(System.Text.Unicode.UnicodeRange)">
<summary>Disallows all characters specified by <paramref name="range">range</paramref> through the filter.</summary>
<summary>Disallows all characters specified by <paramref name="range" /> through the filter.</summary>
<param name="range">The range of characters to be disallowed.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="range">range</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="range" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.ForbidRanges(System.Text.Unicode.UnicodeRange[])">
<summary>Disallows all characters specified by <paramref name="ranges">ranges</paramref> through the filter.</summary>
<summary>Disallows all characters specified by <paramref name="ranges" /> through the filter.</summary>
<param name="ranges">The ranges of characters to be disallowed.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="ranges">ranges</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="ranges" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Encodings.Web.TextEncoderSettings.GetAllowedCodePoints">
<summary>Gets an enumerator of all allowed code points.</summary>
@ -181,54 +234,62 @@
<summary>Represents a URL character encoding.</summary>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary>
<summary>Initializes a new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder" /> class.</summary>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Encodings.Web.TextEncoderSettings)">
<summary>Creates a new instance of UrlEncoder class with the specified settings.</summary>
<param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> instance encodes, primarily which characters to encode.</param>
<returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="settings">settings</paramref> is null.</exception>
<param name="settings">Settings that control how the <see cref="T:System.Text.Encodings.Web.UrlEncoder" /> instance encodes, primarily which characters to encode.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="settings" /> is <see langword="null" />.</exception>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder" /> class.</returns>
</member>
<member name="M:System.Text.Encodings.Web.UrlEncoder.Create(System.Text.Unicode.UnicodeRange[])">
<summary>Creates a new instance of the UrlEncoder class that specifies characters the encoder is allowed to not encode.</summary>
<param name="allowedRanges">The set of characters that the encoder is allowed to not encode.</param>
<returns>A new instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="allowedRanges">allowedRanges</paramref> is null.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="allowedRanges" /> is <see langword="null" />.</exception>
<returns>A new instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder" /> class.</returns>
</member>
<member name="P:System.Text.Encodings.Web.UrlEncoder.Default">
<summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder"></see> class.</summary>
<returns>A built-in instance of the <see cref="System.Text.Encodings.Web.UrlEncoder"></see> class.</returns>
<summary>Gets a built-in instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder" /> class.</summary>
<returns>A built-in instance of the <see cref="T:System.Text.Encodings.Web.UrlEncoder" /> class.</returns>
</member>
<member name="T:System.Text.Unicode.UnicodeRange">
<summary>Represents a contiguous range of Unicode code points.</summary>
</member>
<member name="M:System.Text.Unicode.UnicodeRange.#ctor(System.Int32,System.Int32)">
<summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> that includes a specified number of characters starting at a specified Unicode code point.</summary>
<summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange" /> that includes a specified number of characters starting at a specified Unicode code point.</summary>
<param name="firstCodePoint">The first code point in the range.</param>
<param name="length">The number of code points in the range.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="firstCodePoint">firstCodePoint</paramref> is less than zero or greater than 0xFFFF.
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="firstCodePoint" /> is less than zero or greater than 0xFFFF.
-or-
<paramref name="length">length</paramref> is less than zero.
<paramref name="length" /> is less than zero.
-or-
<paramref name="firstCodePoint">firstCodePoint</paramref> plus <paramref name="length">length</paramref> is greater than 0xFFFF.</exception>
<paramref name="firstCodePoint" /> plus <paramref name="length" /> is greater than 0xFFFF.</exception>
</member>
<member name="M:System.Text.Unicode.UnicodeRange.Create(System.Char,System.Char)">
<summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance from a span of characters.</summary>
<summary>Creates a new <see cref="T:System.Text.Unicode.UnicodeRange" /> instance from a span of characters.</summary>
<param name="firstCharacter">The first character in the range.</param>
<param name="lastCharacter">The last character in the range.</param>
<returns>A range that includes all characters between <paramref name="firstCharacter">firstCharacter</paramref> and <paramref name="lastCharacter">lastCharacter</paramref>.</returns>
<exception cref="System.ArgumentOutOfRangeException"><paramref name="lastCharacter">lastCharacter</paramref> precedes <paramref name="firstCharacter">firstCharacter</paramref>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="lastCharacter" /> precedes <paramref name="firstCharacter" />.</exception>
<returns>A range that includes all characters between <paramref name="firstCharacter" /> and <paramref name="lastCharacter" />.</returns>
</member>
<member name="P:System.Text.Unicode.UnicodeRange.FirstCodePoint">
<summary>Gets the first code point in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary>
<summary>Gets the first code point in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange" /> instance.</summary>
<returns>The first code point in the range.</returns>
</member>
<member name="P:System.Text.Unicode.UnicodeRange.Length">
<summary>Gets the number of code points in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange"></see> instance.</summary>
<summary>Gets the number of code points in the range represented by this <see cref="T:System.Text.Unicode.UnicodeRange" /> instance.</summary>
<returns>The number of code points in the range.</returns>
</member>
<member name="T:System.Text.Unicode.UnicodeRanges">
<summary>Provides static properties that return predefined <see cref="T:System.Text.Unicode.UnicodeRange"></see> instances that correspond to blocks from the Unicode specification.</summary>
<summary>Provides static properties that return predefined <see cref="T:System.Text.Unicode.UnicodeRange" /> instances that correspond to blocks from the Unicode specification.</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.All">
<summary>Gets a range that consists of the entire Basic Multilingual Plane (BMP), from U+0000 to U+FFFF).</summary>
@ -246,6 +307,9 @@
<summary>Gets the Arabic Extended-A Unicode block (U+08A0-U+08FF).</summary>
<returns>The Arabic Extended-A Unicode block (U+08A0-U+08FF).</returns>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicExtendedB">
<summary>A <see cref="T:System.Text.Unicode.UnicodeRange" /> corresponding to the 'Arabic Extended-B' Unicode block (U+0870..U+089F).</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.ArabicPresentationFormsA">
<summary>Gets the Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</summary>
<returns>The Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).</returns>
@ -406,6 +470,9 @@
<summary>Gets the Cyrillic Extended-B Unicode block (U+A640-U+A69F).</summary>
<returns>The Cyrillic Extended-B Unicode block (U+A640-U+A69F).</returns>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicExtendedC">
<summary>A <see cref="T:System.Text.Unicode.UnicodeRange" /> corresponding to the 'Cyrillic Extended-C' Unicode block (U+1C80..U+1C8F).</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.CyrillicSupplement">
<summary>Gets the Cyrillic Supplement Unicode block (U+0500-U+052F).</summary>
<returns>The Cyrillic Supplement Unicode block (U+0500-U+052F).</returns>
@ -458,6 +525,9 @@
<summary>Gets the Georgian Unicode block (U+10A0-U+10FF).</summary>
<returns>The Georgian Unicode block (U+10A0-U+10FF).</returns>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeorgianExtended">
<summary>A <see cref="T:System.Text.Unicode.UnicodeRange" /> corresponding to the 'Georgian Extended' Unicode block (U+1C90..U+1CBF).</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.GeorgianSupplement">
<summary>Gets the Georgian Supplement Unicode block (U+2D00-U+2D2F).</summary>
<returns>The Georgian Supplement Unicode block (U+2D00-U+2D2F).</returns>
@ -782,6 +852,9 @@
<summary>Gets the Syriac Unicode block (U+0700-U+074F).</summary>
<returns>The Syriac Unicode block (U+0700-U+074F).</returns>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.SyriacSupplement">
<summary>A <see cref="T:System.Text.Unicode.UnicodeRange" /> corresponding to the 'Syriac Supplement' Unicode block (U+0860..U+086F).</summary>
</member>
<member name="P:System.Text.Unicode.UnicodeRanges.Tagalog">
<summary>Gets the Tagalog Unicode block (U+1700-U+171F).</summary>
<returns>The Tagalog Unicode block (U+1700-U+171F).</returns>

@ -4,6 +4,10 @@
<name>System.Text.Json</name>
</assembly>
<members>
<member name="T:System.Runtime.InteropServices.JsonMarshal" />
<member name="M:System.Runtime.InteropServices.JsonMarshal.GetRawUtf8Value(System.Text.Json.JsonElement)">
<param name="element" />
</member>
<member name="T:System.Text.Json.JsonCommentHandling">
<summary>Defines how the <see cref="T:System.Text.Json.Utf8JsonReader" /> struct handles comments.</summary>
</member>
@ -81,6 +85,7 @@
<paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="options" /> contains unsupported options.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task to produce a JsonDocument representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonDocument.ParseValue(System.Text.Json.Utf8JsonReader@)">
@ -145,6 +150,10 @@ The current <paramref name="reader" /> token does not start or represent a value
<summary>Gets a JsonElement that can be safely stored beyond the lifetime of the original <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<returns>A JsonElement that can be safely stored beyond the lifetime of the original <see cref="T:System.Text.Json.JsonDocument" />.</returns>
</member>
<member name="M:System.Text.Json.JsonElement.DeepEquals(System.Text.Json.JsonElement,System.Text.Json.JsonElement)">
<param name="element1" />
<param name="element2" />
</member>
<member name="M:System.Text.Json.JsonElement.EnumerateArray">
<summary>Gets an enumerator to enumerate the values in the JSON array represented by this JsonElement.</summary>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
@ -265,6 +274,7 @@ The current <paramref name="reader" /> token does not start or represent a value
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
</member>
<member name="M:System.Text.Json.JsonElement.GetPropertyCount" />
<member name="M:System.Text.Json.JsonElement.GetRawText">
<summary>Gets a string that represents the original input data backing this value.</summary>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
@ -678,15 +688,19 @@ The current <paramref name="reader" /> token does not start or represent a value
<exception cref="T:System.ArgumentNullException">
<paramref name="info" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Text.Json.JsonException.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonException" /> class with a specified error message.</summary>
<param name="message">The context-specific error message.</param>
</member>
<member name="M:System.Text.Json.JsonException.#ctor(System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonException" /> class, with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
<param name="message">The context-specific error message.</param>
<param name="innerException">The exception that caused the current exception.</param>
</member>
<member name="M:System.Text.Json.JsonException.#ctor(System.String,System.String,System.Nullable{System.Int64},System.Nullable{System.Int64},System.Exception)">
<summary>Creates a new exception object to relay error information to the user that includes a specified inner exception.</summary>
<param name="message">The context-specific error message.</param>
<param name="path">The path where the invalid JSON was encountered.</param>
<param name="lineNumber">The line number (starting at 0) at which the invalid JSON was encountered when deserializing.</param>
<param name="bytePositionInLine">The byte count (starting at 0) within the current line where the invalid JSON was encountered.</param>
<param name="innerException">The exception that caused the current exception.</param>
</member>
<member name="M:System.Text.Json.JsonException.#ctor(System.String,System.String,System.Nullable{System.Int64},System.Nullable{System.Int64})">
<summary>Creates a new exception object to relay error information to the user.</summary>
<param name="message">The context-specific error message.</param>
@ -694,13 +708,9 @@ The current <paramref name="reader" /> token does not start or represent a value
<param name="lineNumber">The line number (starting at 0) at which the invalid JSON was encountered when deserializing.</param>
<param name="bytePositionInLine">The byte count within the current line (starting at 0) where the invalid JSON was encountered.</param>
</member>
<member name="M:System.Text.Json.JsonException.#ctor(System.String,System.String,System.Nullable{System.Int64},System.Nullable{System.Int64},System.Exception)">
<summary>Creates a new exception object to relay error information to the user that includes a specified inner exception.</summary>
<member name="M:System.Text.Json.JsonException.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonException" /> class with a specified error message.</summary>
<param name="message">The context-specific error message.</param>
<param name="path">The path where the invalid JSON was encountered.</param>
<param name="lineNumber">The line number (starting at 0) at which the invalid JSON was encountered when deserializing.</param>
<param name="bytePositionInLine">The byte count (starting at 0) within the current line where the invalid JSON was encountered.</param>
<param name="innerException">The exception that caused the current exception.</param>
</member>
<member name="M:System.Text.Json.JsonException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</summary>
@ -799,6 +809,7 @@ The current <paramref name="reader" /> token does not start or represent a value
<member name="T:System.Text.Json.JsonReaderOptions">
<summary>Provides the ability for the user to define custom behavior when reading JSON.</summary>
</member>
<member name="P:System.Text.Json.JsonReaderOptions.AllowMultipleValues" />
<member name="P:System.Text.Json.JsonReaderOptions.AllowTrailingCommas">
<summary>Gets or sets a value that defines whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read.</summary>
<returns>
@ -1448,6 +1459,7 @@ A value could not be read from the reader.</exception>
<paramref name="utf8Json" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
<exception cref="T:System.Text.Json.JsonException">The JSON is invalid,
or when there is remaining data in the Stream.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <paramref name="jsonTypeInfo" /> representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsync(System.IO.Stream,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
@ -1468,6 +1480,7 @@ A value could not be read from the reader.</exception>
There is remaining data in the stream.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsync(System.IO.Stream,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)">
@ -1482,6 +1495,7 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.Text.Json.JsonException">The JSON is invalid, the <paramref name="returnType" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method on the provided <paramref name="context" /> did not return a compatible <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> for <paramref name="returnType" />.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsync``1(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
@ -1502,6 +1516,7 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" />is <see langword="null" />.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsync``1(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Threading.CancellationToken)">
@ -1515,8 +1530,16 @@ There is remaining data in the stream.</exception>
<paramref name="utf8Json" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
<exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <typeparamref name="TValue" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsyncEnumerable``1(System.IO.Stream,System.Boolean,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
<param name="utf8Json" />
<param name="topLevelValues" />
<param name="options" />
<param name="cancellationToken" />
<typeparam name="TValue" />
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsyncEnumerable``1(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
<summary>Wraps the UTF-8 encoded text into an <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> that can be used to deserialize root-level JSON arrays in a streaming manner.</summary>
<param name="utf8Json">JSON data to parse.</param>
@ -1525,8 +1548,16 @@ There is remaining data in the stream.</exception>
<typeparam name="TValue">The element type to deserialize asynchronously.</typeparam>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>An <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> representation of the provided JSON array.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsyncEnumerable``1(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Boolean,System.Threading.CancellationToken)">
<param name="utf8Json" />
<param name="jsonTypeInfo" />
<param name="topLevelValues" />
<param name="cancellationToken" />
<typeparam name="TValue" />
</member>
<member name="M:System.Text.Json.JsonSerializer.DeserializeAsyncEnumerable``1(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Threading.CancellationToken)">
<summary>Wraps the UTF-8 encoded text into an <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> that can be used to deserialize root-level JSON arrays in a streaming manner.</summary>
<param name="utf8Json">JSON data to parse.</param>
@ -1535,6 +1566,7 @@ There is remaining data in the stream.</exception>
<typeparam name="TValue">The element type to deserialize asynchronously.</typeparam>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>An <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> representation of the provided JSON array.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.Serialize(System.IO.Stream,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo)">
@ -1697,6 +1729,52 @@ There is remaining data in the stream.</exception>
<paramref name="writer" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Pipelines.PipeWriter,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)">
<summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="utf8Json">The UTF-8 <see cref="T:System.IO.Pipelines.PipeWriter" /> to write to.</param>
<param name="value">The value to convert.</param>
<param name="jsonTypeInfo">Metadata about the type to convert.</param>
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> does not match the type of <paramref name="jsonTypeInfo" />.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Pipelines.PipeWriter,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
<summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="utf8Json">The UTF-8 <see cref="T:System.IO.Pipelines.PipeWriter" /> to write to.</param>
<param name="value">The value to convert.</param>
<param name="inputType">The type of the <paramref name="value" /> to convert.</param>
<param name="options">Options to control the conversion behavior.</param>
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
<exception cref="T:System.ArgumentException">
<paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> or <paramref name="inputType" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">
<para>There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /></para>
<para>for <paramref name="inputType" /> or its serializable members.</para>
</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Pipelines.PipeWriter,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)">
<summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="utf8Json">The UTF-8 <see cref="T:System.IO.Pipelines.PipeWriter" /> to write to.</param>
<param name="value">The value to convert.</param>
<param name="inputType">The type of the <paramref name="value" /> to convert.</param>
<param name="context">A metadata provider for serializable types.</param>
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
<exception cref="T:System.ArgumentException">
<paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" />, <paramref name="inputType" />, or <paramref name="context" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">
<para>There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /></para>
<para>for <paramref name="inputType" /> or its serializable members.</para>
</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Stream,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)">
<summary>Converts the provided value to UTF-8 encoded JSON text and writes it to the <see cref="T:System.IO.Stream" />.</summary>
<param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
@ -1707,6 +1785,7 @@ There is remaining data in the stream.</exception>
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> does not match the type of <paramref name="jsonTypeInfo" />.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
@ -1721,6 +1800,7 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> or <paramref name="inputType" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)">
@ -1735,6 +1815,33 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" />, <paramref name="inputType" />, or <paramref name="context" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync``1(System.IO.Pipelines.PipeWriter,``0,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
<summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="utf8Json">The UTF-8 <see cref="T:System.IO.Pipelines.PipeWriter" /> to write to.</param>
<param name="value">The value to convert.</param>
<param name="options">Options to control the conversion behavior.</param>
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
<typeparam name="TValue">The type of the value to serialize.</typeparam>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">
<para>There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /></para>
<para>for <typeparamref name="TValue" /> or its serializable members.</para>
</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync``1(System.IO.Pipelines.PipeWriter,``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Threading.CancellationToken)">
<summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
<param name="utf8Json">The UTF-8 <see cref="T:System.IO.Pipelines.PipeWriter" /> to write to.</param>
<param name="value">The value to convert.</param>
<param name="jsonTypeInfo">Metadata about the type to convert.</param>
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
<typeparam name="TValue">The type of the value to serialize.</typeparam>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync``1(System.IO.Stream,``0,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
@ -1747,6 +1854,7 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeAsync``1(System.IO.Stream,``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Threading.CancellationToken)">
@ -1759,6 +1867,7 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="utf8Json" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task that represents the asynchronous write operation.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeToDocument(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo)">
@ -1823,7 +1932,7 @@ There is remaining data in the stream.</exception>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representation of the value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeToElement(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonElement" />.</summary>
<param name="value">The value to convert.</param>
<param name="inputType">The type of the <paramref name="value" /> to convert.</param>
<param name="options">Options to control the conversion behavior.</param>
@ -1832,10 +1941,10 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="inputType" /> is <see langword="null" />.</exception>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
<returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representation of the value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeToElement(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonElement" />.</summary>
<param name="value">The value to convert.</param>
<param name="inputType">The type of the <paramref name="value" /> to convert.</param>
<param name="context">A metadata provider for serializable types.</param>
@ -1843,25 +1952,25 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="inputType" /> or <paramref name="context" /> is <see langword="null" />.</exception>
<returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representation of the value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeToElement``1(``0,System.Text.Json.JsonSerializerOptions)">
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonElement" />.</summary>
<param name="value">The value to convert.</param>
<param name="options">Options to control the conversion behavior.</param>
<typeparam name="TValue">The type of the value to serialize.</typeparam>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
<returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the JSON value.</returns>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representation of the JSON value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeToElement``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonElement" />.</summary>
<param name="value">The value to convert.</param>
<param name="jsonTypeInfo">Metadata about the type to convert.</param>
<typeparam name="TValue">The type of the value to serialize.</typeparam>
<exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
<returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representation of the value.</returns>
</member>
<member name="M:System.Text.Json.JsonSerializer.SerializeToNode(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo)">
<summary>Converts the provided value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
@ -1968,7 +2077,7 @@ There is remaining data in the stream.</exception>
<returns>A UTF-8 representation of the value.</returns>
</member>
<member name="P:System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault">
<summary>Indicates whether unconfigured <see cref="T:System.Text.Json.JsonSerializerOptions" /> instances should be set to use the reflection-based <see cref="T:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver" />.</summary>
<summary>Gets a value that indicates whether unconfigured <see cref="T:System.Text.Json.JsonSerializerOptions" /> instances should default to the reflection-based <see cref="T:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver" />.</summary>
</member>
<member name="T:System.Text.Json.JsonSerializerDefaults">
<summary>Specifies scenario-based default serialization options that can be used to construct a <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance.</summary>
@ -2048,6 +2157,10 @@ There is remaining data in the stream.</exception>
<returns>
<see langword="true" /> if a contract for <paramref name="type" /> was found, or <see langword="false" /> otherwise.</returns>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.AllowOutOfOrderMetadataProperties">
<summary>Allows JSON metadata properties to be specified after regular properties in a deserialized JSON object.</summary>
<exception cref="T:System.InvalidOperationException">Thrown if this property is set after serialization or deserialization has occurred.</exception>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.AllowTrailingCommas">
<summary>Get or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being deserialized.</summary>
<exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
@ -2102,7 +2215,7 @@ There is remaining data in the stream.</exception>
<see langword="true" /> if read-only fields are ignored during serialization; <see langword="false" /> otherwise.</returns>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.IgnoreReadOnlyProperties">
<summary>Gets a value that indicates whether read-only properties are ignored during serialization. The default value is <see langword="false" />.</summary>
<summary>Gets or sets a value that indicates whether read-only properties are ignored during serialization. The default value is <see langword="false" />.</summary>
<exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
<returns>
<see langword="true" /> if read-only properties are ignored during serialization; otherwise, <see langword="false" />.</returns>
@ -2114,6 +2227,18 @@ There is remaining data in the stream.</exception>
<returns>
<see langword="true" /> if fields are included during serialization; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.IndentCharacter">
<summary>Defines the indentation character being used when <see cref="P:System.Text.Json.JsonSerializerOptions.WriteIndented" /> is enabled. Defaults to the space character.</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="value" /> contains an invalid character.</exception>
<exception cref="T:System.InvalidOperationException">Thrown if this property is set after serialization or deserialization has occurred.</exception>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.IndentSize">
<summary>Defines the indentation size being used when <see cref="P:System.Text.Json.JsonSerializerOptions.WriteIndented" /> is enabled. Defaults to two.</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="value" /> is out of the allowed range.</exception>
<exception cref="T:System.InvalidOperationException">Thrown if this property is set after serialization or deserialization has occurred.</exception>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.IsReadOnly">
<summary>Gets a value that indicates whether the current instance has been locked for user modification.</summary>
</member>
@ -2123,6 +2248,15 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The max depth is set to a negative value.</exception>
<returns>The maximum depth allowed when serializing or deserializing JSON.</returns>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.NewLine">
<summary>
<para>Gets or sets the new line string to use when <see cref="P:System.Text.Json.JsonSerializerOptions.WriteIndented" /> is <see langword="true" />.</para>
<para>The default is the value of <see cref="P:System.Environment.NewLine" />.</para>
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when the new line string is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when the new line string is not <c>\n</c> or <c>\r\n</c>.</exception>
<exception cref="T:System.InvalidOperationException">Thrown if this property is set after serialization or deserialization has occurred.</exception>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.NumberHandling">
<summary>Gets or sets an object that specifies how number types should be handled when serializing or deserializing.</summary>
<exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
@ -2149,6 +2283,14 @@ There is remaining data in the stream.</exception>
<member name="P:System.Text.Json.JsonSerializerOptions.ReferenceHandler">
<summary>Gets or sets an object that specifies how object references are handled when reading and writing JSON.</summary>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.RespectNullableAnnotations">
<summary>Gets or sets a value that indicates whether nullability annotations should be respected during serialization and deserialization.</summary>
<exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.RespectRequiredConstructorParameters">
<summary>Gets or sets a value that indicates whether non-optional constructor parameters should be specified during deserialization.</summary>
<exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.TypeInfoResolver">
<summary>Gets or sets the <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> contract resolver used by this instance.</summary>
<exception cref="T:System.InvalidOperationException">The property is set after serialization or deserialization has occurred.</exception>
@ -2162,6 +2304,9 @@ There is remaining data in the stream.</exception>
<member name="P:System.Text.Json.JsonSerializerOptions.UnmappedMemberHandling">
<summary>Gets or sets an object that specifies how <see cref="T:System.Text.Json.JsonSerializer" /> handles JSON properties that cannot be mapped to a specific .NET member when deserializing object types.</summary>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.Web">
<summary>Gets a read-only, singleton instance of <see cref="T:System.Text.Json.JsonSerializerOptions" /> that uses the web configuration.</summary>
</member>
<member name="P:System.Text.Json.JsonSerializerOptions.WriteIndented">
<summary>Gets or sets a value that indicates whether JSON should use pretty printing. By default, JSON is serialized without any extra white space.</summary>
<exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
@ -2241,15 +2386,33 @@ There is remaining data in the stream.</exception>
<summary>Gets or sets the encoder to use when escaping strings, or <see langword="null" /> to use the default encoder.</summary>
<returns>The JavaScript character encoder used to override the escaping behavior.</returns>
</member>
<member name="P:System.Text.Json.JsonWriterOptions.IndentCharacter">
<summary>Defines the indentation character used by <see cref="T:System.Text.Json.Utf8JsonWriter" /> when <see cref="P:System.Text.Json.JsonWriterOptions.Indented" /> is enabled. Defaults to the space character.</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="value" /> contains an invalid character.</exception>
</member>
<member name="P:System.Text.Json.JsonWriterOptions.Indented">
<summary>Gets or sets a value that indicates whether the <see cref="T:System.Text.Json.Utf8JsonWriter" /> should format the JSON output, which includes indenting nested JSON tokens, adding new lines, and adding white space between property names and values.</summary>
<returns>
<see langword="true" /> if the JSON output is formatted; <see langword="false" /> if the JSON is written without any extra white space. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Text.Json.JsonWriterOptions.IndentSize">
<summary>Defines the indentation size used by <see cref="T:System.Text.Json.Utf8JsonWriter" /> when <see cref="P:System.Text.Json.JsonWriterOptions.Indented" /> is enabled. Defaults to two.</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="value" /> is out of the allowed range.</exception>
</member>
<member name="P:System.Text.Json.JsonWriterOptions.MaxDepth">
<summary>Gets or sets the maximum depth allowed when writing JSON, with the default (that is, 0) indicating a max depth of 1000.</summary>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when the max depth is set to a negative value.</exception>
</member>
<member name="P:System.Text.Json.JsonWriterOptions.NewLine">
<summary>
<para>Gets or sets the new line string to use when <see cref="P:System.Text.Json.JsonWriterOptions.Indented" /> is <see langword="true" />.</para>
<para>The default is the value of <see cref="P:System.Environment.NewLine" />.</para>
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when the new line string is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when the new line string is not <c>\n</c> or <c>\r\n</c>.</exception>
</member>
<member name="P:System.Text.Json.JsonWriterOptions.SkipValidation">
<summary>Gets or sets a value that indicates whether the <see cref="T:System.Text.Json.Utf8JsonWriter" /> should skip structural validation and allow the user to write invalid JSON.</summary>
<returns>
@ -2262,10 +2425,19 @@ There is remaining data in the stream.</exception>
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that is empty.</summary>
<param name="options">Options to control the behavior.</param>
</member>
<member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.ReadOnlySpan{System.Text.Json.Nodes.JsonNode})">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified span.</summary>
<param name="items">The items to add to the new <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
</member>
<member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.Text.Json.Nodes.JsonNode[])">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified array.</summary>
<param name="items">The items to add to the new <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
</member>
<member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.Text.Json.Nodes.JsonNodeOptions,System.ReadOnlySpan{System.Text.Json.Nodes.JsonNode})">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified params span.</summary>
<param name="options">Options to control the behavior.</param>
<param name="items">The items to add to the new <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
</member>
<member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[])">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified params array.</summary>
<param name="options">Options to control the behavior.</param>
@ -2748,7 +2920,7 @@ There is remaining data in the stream.</exception>
<param name="documentOptions">Options to control the document behavior during parsing.</param>
<exception cref="T:System.Text.Json.JsonException">
<paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
<returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
<returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value, or null if the input represents the null JSON value.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.ReadOnlySpan{System.Byte},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions},System.Text.Json.JsonDocumentOptions)">
<summary>Parses text representing a single JSON value.</summary>
@ -2757,7 +2929,7 @@ There is remaining data in the stream.</exception>
<param name="documentOptions">Options to control the document behavior during parsing.</param>
<exception cref="T:System.Text.Json.JsonException">
<paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
<returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
<returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value, or null if the input represents the null JSON value.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.String,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions},System.Text.Json.JsonDocumentOptions)">
<summary>Parses text representing a single JSON value.</summary>
@ -2768,7 +2940,7 @@ There is remaining data in the stream.</exception>
<paramref name="json" /> is <see langword="null" />.</exception>
<exception cref="T:System.Text.Json.JsonException">
<paramref name="json" /> does not represent a valid single JSON value.</exception>
<returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
<returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value, or null if the input represents the null JSON value.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.Text.Json.Utf8JsonReader@,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
<summary>Parses one JSON value (including objects or arrays) from the provided reader.</summary>
@ -2778,7 +2950,7 @@ There is remaining data in the stream.</exception>
<paramref name="reader" /> is using unsupported options.</exception>
<exception cref="T:System.ArgumentException">The current <paramref name="reader" /> token does not start or represent a value.</exception>
<exception cref="T:System.Text.Json.JsonException">A value could not be read from the reader.</exception>
<returns>The <see cref="T:System.Text.Json.Nodes.JsonNode" /> from the reader.</returns>
<returns>The <see cref="T:System.Text.Json.Nodes.JsonNode" /> from the reader, or null if the input represents the null JSON value.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.ParseAsync(System.IO.Stream,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions},System.Text.Json.JsonDocumentOptions,System.Threading.CancellationToken)">
<summary>Parses a <see cref="T:System.IO.Stream" /> as UTF-8 encoded data representing a single JSON value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />. The stream will be read to completion.</summary>
@ -2788,7 +2960,8 @@ There is remaining data in the stream.</exception>
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
<exception cref="T:System.Text.Json.JsonException">
<paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> to produce a <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> to produce either a <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value, or null if the input represents the null JSON value.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.ReplaceWith``1(``0)">
<summary>Replaces this node with a new value.</summary>
@ -2796,9 +2969,9 @@ There is remaining data in the stream.</exception>
<typeparam name="T">The type of value to be replaced.</typeparam>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.ToJsonString(System.Text.Json.JsonSerializerOptions)">
<summary>Converts the current instance to string in JSON format.</summary>
<summary>Converts the current instance to a string in JSON format.</summary>
<param name="options">Options to control the serialization behavior.</param>
<returns>JSON representation of current instance.</returns>
<returns>The JSON representation of the current instance.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonNode.ToString">
<summary>Gets a string representation for the current value appropriate to the node type.</summary>
@ -2887,10 +3060,35 @@ There is remaining data in the stream.</exception>
<param name="options">Options to control the behavior.</param>
<returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonObject" /> class that contains properties from the specified <see cref="T:System.Text.Json.JsonElement" />.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.GetAt(System.Int32)">
<summary>Gets the property of the specified index.</summary>
<param name="index">The zero-based index of the pair to get.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than or equal to <see cref="P:System.Text.Json.Nodes.JsonObject.Count" />.</exception>
<returns>The property at the specified index as a key/value pair.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.GetEnumerator">
<summary>Returns an enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
<returns>An enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.IndexOf(System.String)">
<summary>Determines the index of a specific property name in the object.</summary>
<param name="propertyName">The property name to locate.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="propertyName" /> is <see langword="null" />.</exception>
<returns>The index of <paramref name="propertyName" /> if found; otherwise, -1.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.Insert(System.Int32,System.String,System.Text.Json.Nodes.JsonNode)">
<summary>Inserts a property into the object at the specified index.</summary>
<param name="index">The zero-based index at which the property should be inserted.</param>
<param name="propertyName">The property name to insert.</param>
<param name="value">The JSON value to insert.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="propertyName" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than <see cref="P:System.Text.Json.Nodes.JsonObject.Count" />.</exception>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.Remove(System.String)">
<summary>Removes the element with the specified property name from the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
<param name="propertyName">The property name of the element to remove.</param>
@ -2899,6 +3097,33 @@ There is remaining data in the stream.</exception>
<returns>
<see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.RemoveAt(System.Int32)">
<summary>Removes the property at the specified index.</summary>
<param name="index">The zero-based index of the item to remove.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than or equal to <see cref="P:System.Text.Json.Nodes.JsonObject.Count" />.</exception>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.SetAt(System.Int32,System.String,System.Text.Json.Nodes.JsonNode)">
<summary>Sets a new property at the specified index.</summary>
<param name="index">The zero-based index of the property to set.</param>
<param name="propertyName">The property name to store at the specified index.</param>
<param name="value">The JSON value to store at the specified index.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than or equal to <see cref="P:System.Text.Json.Nodes.JsonObject.Count" />.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="propertyName" /> is already specified in a different index.</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="value" /> already has a parent.</exception>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.SetAt(System.Int32,System.Text.Json.Nodes.JsonNode)">
<summary>Sets a new property value at the specified index.</summary>
<param name="index">The zero-based index of the property to set.</param>
<param name="value">The JSON value to store at the specified index.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than or equal to <see cref="P:System.Text.Json.Nodes.JsonObject.Count" />.</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="value" /> already has a parent.</exception>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode})">
<summary>Determines whether the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains a specific property name and <see cref="T:System.Text.Json.Nodes.JsonNode" /> reference.</summary>
<param name="item">The element to locate in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</param>
@ -2930,6 +3155,16 @@ There is remaining data in the stream.</exception>
<returns>
<see langword="true" /> if the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains an element with the specified property name; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IList{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#IndexOf(System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode})">
<param name="item" />
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IList{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#Insert(System.Int32,System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode})">
<param name="index" />
<param name="item" />
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IList{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#RemoveAt(System.Int32)">
<param name="index" />
</member>
<member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
<returns>An enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</returns>
@ -2963,6 +3198,9 @@ There is remaining data in the stream.</exception>
<summary>Gets a collection containing the property values in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
<returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
</member>
<member name="P:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IList{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#Item(System.Int32)">
<param name="index" />
</member>
<member name="T:System.Text.Json.Nodes.JsonValue">
<summary>Represents a mutable JSON value.</summary>
</member>
@ -3198,6 +3436,48 @@ There is remaining data in the stream.</exception>
<returns>
<see langword="true" /> if the value can be successfully obtained; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:System.Text.Json.Schema.JsonSchemaExporter">
<summary>Functionality for exporting JSON schema from serialization contracts defined in <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" />.</summary>
</member>
<member name="M:System.Text.Json.Schema.JsonSchemaExporter.GetJsonSchemaAsNode(System.Text.Json.JsonSerializerOptions,System.Type,System.Text.Json.Schema.JsonSchemaExporterOptions)">
<summary>Gets the JSON schema for <paramref name="type" /> as a <see cref="T:System.Text.Json.Nodes.JsonNode" /> document.</summary>
<param name="options">The options declaring the contract for the type.</param>
<param name="type">The type for which to resolve a schema.</param>
<param name="exporterOptions">The options object governing the export operation.</param>
<returns>A JSON object containing the schema for <paramref name="type" />.</returns>
</member>
<member name="M:System.Text.Json.Schema.JsonSchemaExporter.GetJsonSchemaAsNode(System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Schema.JsonSchemaExporterOptions)">
<summary>Gets the JSON schema for <paramref name="typeInfo" /> as a <see cref="T:System.Text.Json.Nodes.JsonNode" /> document.</summary>
<param name="typeInfo">The contract from which to resolve the JSON schema.</param>
<param name="exporterOptions">The options object governing the export operation.</param>
<returns>A JSON object containing the schema for <paramref name="typeInfo" />.</returns>
</member>
<member name="T:System.Text.Json.Schema.JsonSchemaExporterContext">
<summary>Defines the context for the generated JSON schema for a particular node in a type graph.</summary>
</member>
<member name="P:System.Text.Json.Schema.JsonSchemaExporterContext.BaseTypeInfo" />
<member name="P:System.Text.Json.Schema.JsonSchemaExporterContext.Path">
<summary>The path to the current node in the generated JSON schema.</summary>
</member>
<member name="P:System.Text.Json.Schema.JsonSchemaExporterContext.PropertyInfo">
<summary>The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> if the schema is being generated for a property.</summary>
</member>
<member name="P:System.Text.Json.Schema.JsonSchemaExporterContext.TypeInfo">
<summary>The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> for the type being processed.</summary>
</member>
<member name="T:System.Text.Json.Schema.JsonSchemaExporterOptions">
<summary>Configures the behavior of the <see cref="T:System.Text.Json.Schema.JsonSchemaExporter" /> APIs.</summary>
</member>
<member name="M:System.Text.Json.Schema.JsonSchemaExporterOptions.#ctor" />
<member name="P:System.Text.Json.Schema.JsonSchemaExporterOptions.Default">
<summary>Gets the default configuration object used by <see cref="T:System.Text.Json.Schema.JsonSchemaExporter" />.</summary>
</member>
<member name="P:System.Text.Json.Schema.JsonSchemaExporterOptions.TransformSchemaNode">
<summary>Defines a callback that is invoked for every schema that is generated within the type graph.</summary>
</member>
<member name="P:System.Text.Json.Schema.JsonSchemaExporterOptions.TreatNullObliviousAsNonNullable">
<summary>Determines whether non-nullable schemas should be generated for <see langword="null" /> oblivious reference types.</summary>
</member>
<member name="T:System.Text.Json.Serialization.IJsonOnDeserialized">
<summary>Specifies that the JSON type should have its <see cref="M:System.Text.Json.Serialization.IJsonOnDeserialized.OnDeserialized" /> method called after deserialization occurs.</summary>
</member>
@ -3328,10 +3608,6 @@ There is remaining data in the stream.</exception>
<member name="T:System.Text.Json.Serialization.JsonDerivedTypeAttribute">
<summary>When placed on a type declaration, indicates that the specified subtype should be opted into polymorphic serialization.</summary>
</member>
<member name="M:System.Text.Json.Serialization.JsonDerivedTypeAttribute.#ctor(System.Type)">
<summary>Initializes a new attribute with specified parameters.</summary>
<param name="derivedType">A derived type that should be supported in polymorphic serialization of the declared based type.</param>
</member>
<member name="M:System.Text.Json.Serialization.JsonDerivedTypeAttribute.#ctor(System.Type,System.Int32)">
<summary>Initializes a new attribute with specified parameters.</summary>
<param name="derivedType">A derived type that should be supported in polymorphic serialization of the declared base type.</param>
@ -3342,6 +3618,10 @@ There is remaining data in the stream.</exception>
<param name="derivedType">A derived type that should be supported in polymorphic serialization of the declared base type.</param>
<param name="typeDiscriminator">The type discriminator identifier to be used for the serialization of the subtype.</param>
</member>
<member name="M:System.Text.Json.Serialization.JsonDerivedTypeAttribute.#ctor(System.Type)">
<summary>Initializes a new attribute with specified parameters.</summary>
<param name="derivedType">A derived type that should be supported in polymorphic serialization of the declared based type.</param>
</member>
<member name="P:System.Text.Json.Serialization.JsonDerivedTypeAttribute.DerivedType">
<summary>A derived type that should be supported in polymorphic serialization of the declared base type.</summary>
</member>
@ -3380,7 +3660,7 @@ There is remaining data in the stream.</exception>
</member>
<member name="T:System.Text.Json.Serialization.JsonIncludeAttribute">
<summary>Indicates that the member should be included for serialization and deserialization.</summary>
<exception cref="T:System.InvalidOperationException">The attribute is applied to a non-public property.</exception>
<exception cref="T:System.InvalidOperationException">.NET 7 and earlier versions only: The attribute is applied to a non-public property.</exception>
</member>
<member name="M:System.Text.Json.Serialization.JsonIncludeAttribute.#ctor">
<summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonIncludeAttribute" />.</summary>
@ -3482,14 +3762,14 @@ There is remaining data in the stream.</exception>
<see langword="true" /> to instruct the deserializer to ignore any unrecognized type discriminator IDs and revert to the contract of the base type; <see langword="false" /> to fail the deserialization for unrecognized type discriminator IDs.</returns>
</member>
<member name="P:System.Text.Json.Serialization.JsonPolymorphicAttribute.TypeDiscriminatorPropertyName">
<summary>Gets or sets a custom type discriminator property name for the polymorhic type.
<summary>Gets or sets a custom type discriminator property name for the polymorphic type.
Uses the default '$type' property name if left unset.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonPolymorphicAttribute.UnknownDerivedTypeHandling">
<summary>Gets or sets the behavior when serializing an undeclared derived runtime type.</summary>
</member>
<member name="T:System.Text.Json.Serialization.JsonPropertyNameAttribute">
<summary>Specifies the property name that is present in the JSON when serializing and deserializing. This overrides any naming policy specified by <see cref="T:System.Text.Json.JsonNamingPolicy" />.</summary>
<summary>Specifies the property name that is present in the JSON when serializing and deserializing.</summary>
</member>
<member name="M:System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)">
<summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonPropertyNameAttribute" /> with the specified property name.</summary>
@ -3578,6 +3858,9 @@ There is remaining data in the stream.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="defaults" /> is invalid.</exception>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.AllowOutOfOrderMetadataProperties">
<summary>Specifies the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.AllowOutOfOrderMetadataProperties" /> when set.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.AllowTrailingCommas">
<summary>Gets or sets the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.AllowTrailingCommas" />.</summary>
</member>
@ -3605,9 +3888,18 @@ There is remaining data in the stream.</exception>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IncludeFields">
<summary>Gets or sets a value that indicates whether to include fields for serialization and deserialization.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IndentCharacter">
<summary>Specifies the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.IndentCharacter" /> when set.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IndentSize">
<summary>Specifies the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.IndentCharacter" /> when set.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.MaxDepth">
<summary>Gets or sets the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.MaxDepth" />.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.NewLine">
<summary>Specifies the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.NewLine" /> when set.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.NumberHandling">
<summary>Gets or sets the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.NumberHandling" />.</summary>
</member>
@ -3623,6 +3915,12 @@ There is remaining data in the stream.</exception>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.ReadCommentHandling">
<summary>Gets or sets the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.ReadCommentHandling" />.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.RespectNullableAnnotations">
<summary>Specifies the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.RespectNullableAnnotations" /> when set.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.RespectRequiredConstructorParameters">
<summary>Specifies the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.RespectRequiredConstructorParameters" /> when set.</summary>
</member>
<member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.UnknownTypeHandling">
<summary>Gets or sets the default value of <see cref="P:System.Text.Json.JsonSerializerOptions.UnknownTypeHandling" />.</summary>
</member>
@ -3684,6 +3982,11 @@ There is remaining data in the stream.</exception>
<param name="options">The serialization options to use.</param>
<returns>A converter for which <code data-dev-comment-type="typeparamref">T</code> is compatible with <code data-dev-comment-type="paramref">typeToConvert</code>.</returns>
</member>
<member name="T:System.Text.Json.Serialization.JsonStringEnumMemberNameAttribute" />
<member name="M:System.Text.Json.Serialization.JsonStringEnumMemberNameAttribute.#ctor(System.String)">
<param name="name" />
</member>
<member name="P:System.Text.Json.Serialization.JsonStringEnumMemberNameAttribute.Name" />
<member name="T:System.Text.Json.Serialization.JsonUnknownDerivedTypeHandling">
<summary>Defines how objects of a derived runtime type that has not been explicitly declared for polymorphic serialization should be handled.</summary>
</member>
@ -3774,10 +4077,6 @@ There is remaining data in the stream.</exception>
<member name="T:System.Text.Json.Serialization.Metadata.JsonDerivedType">
<summary>Represents a supported derived type defined in the metadata of a polymorphic type.</summary>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonDerivedType.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Serialization.Metadata.JsonDerivedType" /> class that represents a supported derived type without a type discriminator.</summary>
<param name="derivedType">The derived type to be supported by the polymorphic type metadata.</param>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonDerivedType.#ctor(System.Type,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Serialization.Metadata.JsonDerivedType" /> class that represents a supported derived type with an integer type discriminator.</summary>
<param name="derivedType">The derived type to be supported by the polymorphic type metadata.</param>
@ -3788,6 +4087,10 @@ There is remaining data in the stream.</exception>
<param name="derivedType">The derived type to be supported by the polymorphic type metadata.</param>
<param name="typeDiscriminator">The type discriminator to be associated with the derived type.</param>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonDerivedType.#ctor(System.Type)">
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.Serialization.Metadata.JsonDerivedType" /> class that represents a supported derived type without a type discriminator.</summary>
<param name="derivedType">The derived type to be supported by the polymorphic type metadata.</param>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonDerivedType.DerivedType">
<summary>Gets a derived type that should be supported in polymorphic serialization of the declared base type.</summary>
</member>
@ -4138,6 +4441,9 @@ There is remaining data in the stream.</exception>
<typeparam name="T">The object type to serialize or deserialize.</typeparam>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.#ctor" />
<member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.ConstructorAttributeProviderFactory">
<summary>Provides a delayed attribute provider corresponding to the deserialization constructor.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.ConstructorParameterMetadataInitializer">
<summary>Provides a mechanism to initialize metadata for a parameterized constructor of the class or struct to be used when deserializing.</summary>
</member>
@ -4156,6 +4462,36 @@ There is remaining data in the stream.</exception>
<member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.SerializeHandler">
<summary>Gets or sets a serialization implementation for instances of the class or struct that assumes options specified by <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" />.</summary>
</member>
<member name="T:System.Text.Json.Serialization.Metadata.JsonParameterInfo">
<summary>Provides JSON serialization-related metadata about a constructor parameter.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.AttributeProvider">
<summary>Gets a custom attribute provider for the current parameter.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.DeclaringType">
<summary>Gets the declaring type of the constructor.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.DefaultValue">
<summary>Gets a value indicating the default value if the parameter has a default value.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.HasDefaultValue">
<summary>Gets a value indicating whether the parameter has a default value.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.IsMemberInitializer">
<summary>Gets a value indicating whether the parameter represents a required or init-only member initializer.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.IsNullable">
<summary>Gets a value indicating whether the constructor parameter is annotated as nullable.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.Name">
<summary>Gets the name of the parameter.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.ParameterType">
<summary>Gets the type of this parameter.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfo.Position">
<summary>Gets the zero-based position of the parameter in the formal parameter list.</summary>
</member>
<member name="T:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues">
<summary>Provides information about a constructor parameter required for JSON deserialization.</summary>
</member>
@ -4166,6 +4502,12 @@ There is remaining data in the stream.</exception>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.HasDefaultValue">
<summary>Gets or sets a value that specifies whether a default value was specified for the parameter.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.IsMemberInitializer">
<summary>Whether the parameter represents a required or init-only member initializer.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.IsNullable">
<summary>Whether the parameter allows <see langword="null" /> values.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.Name">
<summary>Gets or sets the name of the parameter.</summary>
</member>
@ -4202,6 +4544,9 @@ There is remaining data in the stream.</exception>
<member name="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo">
<summary>Provides JSON serialization-related metadata about a property or field.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.AssociatedParameter">
<summary>Gets the constructor parameter associated with the current property.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.AttributeProvider">
<summary>Gets or sets the custom attribute provider for the current property.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</exception>
@ -4210,6 +4555,9 @@ There is remaining data in the stream.</exception>
<summary>Gets or sets a custom converter override for the current property.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.DeclaringType">
<summary>Gets the declaring type of the property.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Get">
<summary>Gets or sets a getter delegate for the property.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</exception>
@ -4222,10 +4570,26 @@ There is remaining data in the stream.</exception>
The current <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.PropertyType" /> is not valid for use with extension data.</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.IsGetNullable">
<summary>Gets or sets a value indicating whether the return type of the getter is annotated as nullable.</summary>
<exception cref="T:System.InvalidOperationException">
<para>The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</para>
<para>-or-</para>
<para>The current <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.PropertyType" /> is not a reference type or <see cref="T:System.Nullable`1" />.</para>
</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.IsRequired">
<summary>Gets or sets a value that indicates whether the current property is required for deserialization to be successful.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.IsSetNullable">
<summary>Gets or sets a value indicating whether the input type of the setter is annotated as nullable.</summary>
<exception cref="T:System.InvalidOperationException">
<para>The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</para>
<para>-or-</para>
<para>The current <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.PropertyType" /> is not a reference type or <see cref="T:System.Nullable`1" />.</para>
</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Name">
<summary>Gets or sets the JSON property name used when serializing the property.</summary>
<exception cref="T:System.ArgumentNullException">
@ -4262,6 +4626,9 @@ The current <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInf
<typeparam name="T">The type to convert of the <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> for the property.</typeparam>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues`1.#ctor" />
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues`1.AttributeProviderFactory">
<summary>Provides a <see cref="T:System.Reflection.ICustomAttributeProvider" /> factory that maps to <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.AttributeProvider" />.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues`1.Converter">
<summary>A <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for the property or field, specified by <see cref="T:System.Text.Json.Serialization.JsonConverterAttribute" />.</summary>
</member>
@ -4339,6 +4706,10 @@ The current <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInf
<member name="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.MakeReadOnly">
<summary>Locks the current instance for further modification.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.ConstructorAttributeProvider">
<summary>Gets or sets an attribute provider corresponding to the deserialization constructor.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Converter">
<summary>Gets the <see cref="T:System.Text.Json.Serialization.JsonConverter" /> associated with the current type.</summary>
</member>
@ -4350,9 +4721,15 @@ The current <see cref="P:System.Text.Json.Serialization.Metadata.JsonPropertyInf
A parameterless factory is not supported for the current metadata <see cref="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind" />.</exception>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.ElementType">
<summary>Gets the element type corresponding to an enumerable, dictionary or optional type.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.IsReadOnly">
<summary>Gets a value that indicates whether the current instance has been locked for modification.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.KeyType">
<summary>Gets the key type corresponding to a dictionary type.</summary>
</member>
<member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind">
<summary>Gets a value that describes the kind of contract metadata that the current instance specifies.</summary>
</member>
@ -4467,6 +4844,11 @@ A parameterless factory is not supported for the current metadata <see cref="P:S
<member name="T:System.Text.Json.Serialization.Metadata.JsonTypeInfoResolver">
<summary>Contains utilities and combinators acting on <see cref="T:System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver" />.</summary>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonTypeInfoResolver.Combine(System.ReadOnlySpan{System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver})">
<summary>Combines multiple <see cref="T:System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver" /> sources into one.</summary>
<param name="resolvers">Sequence of contract resolvers to be queried for metadata.</param>
<returns>A <see cref="T:System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver" /> combining results from <paramref name="resolvers" />.</returns>
</member>
<member name="M:System.Text.Json.Serialization.Metadata.JsonTypeInfoResolver.Combine(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver[])">
<summary>Combines multiple <see cref="T:System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver" /> sources into one.</summary>
<param name="resolvers">Sequence of contract resolvers to be queried for metadata.</param>
@ -4984,6 +5366,7 @@ The current depth exceeds the recursive limit set by the maximum depth.</excepti
<summary>Asynchronously commits the JSON text written so far, which makes it visible to the output destination.</summary>
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
<exception cref="T:System.ObjectDisposedException">This instance has been disposed.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
<returns>A task representing the asynchronous flush operation.</returns>
</member>
<member name="M:System.Text.Json.Utf8JsonWriter.Reset">

@ -5957,3 +5957,657 @@ done
2025-03-23 20:50:58.0061|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491726
2025-03-23 20:51:12.6050|DEBUG|OnDoc|
2025-03-23 20:51:12.6140|DEBUG|OnDoc|
2025-03-25 15:29:22.7854|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 15:29:22.8301|DEBUG|OnDoc|
2025-03-25 15:29:22.8597|DEBUG|OnDoc|
2025-03-25 15:29:22.8597|DEBUG|OnDoc|
2025-03-25 15:29:22.8597|DEBUG|OnDoc|
2025-03-25 15:29:22.8637|DEBUG|OnDoc|
2025-03-25 15:29:22.8637|DEBUG|OnDoc|
2025-03-25 15:29:22.8637|DEBUG|OnDoc|
2025-03-25 15:29:22.8637|DEBUG|OnDoc|
2025-03-25 15:29:30.7937|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:29:37.1645|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 15:29:37.1645|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 15:29:37.1645|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 15:29:37.1758|DEBUG|OnDoc|
2025-03-25 15:29:37.1758|DEBUG|OnDoc|
2025-03-25 15:29:37.1758|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:29:37.1758|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 15:29:37.1918|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS__20250325032937.json.pdf
2025-03-25 15:29:37.1918|DEBUG|OnDoc|
2025-03-25 15:29:37.1918|DEBUG|OnDoc|
2025-03-25 15:30:17.3296|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 15:30:17.3650|DEBUG|OnDoc|
2025-03-25 15:30:17.3927|DEBUG|OnDoc|
2025-03-25 15:30:17.3952|DEBUG|OnDoc|
2025-03-25 15:30:17.3952|DEBUG|OnDoc|
2025-03-25 15:30:17.3952|DEBUG|OnDoc|
2025-03-25 15:30:17.3952|DEBUG|OnDoc|
2025-03-25 15:30:17.3952|DEBUG|OnDoc|
2025-03-25 15:30:17.3952|DEBUG|OnDoc|
2025-03-25 15:30:25.9696|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:30:53.2716|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 15:30:53.3066|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 15:30:53.3066|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 15:30:53.3169|DEBUG|OnDoc|
2025-03-25 15:30:53.3169|DEBUG|OnDoc|
2025-03-25 15:30:53.3169|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:30:54.7241|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 15:30:54.7241|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS__20250325033054.json.pdf
2025-03-25 15:30:54.7241|DEBUG|OnDoc|
2025-03-25 15:30:54.7241|DEBUG|OnDoc|
2025-03-25 15:51:28.5311|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 15:51:28.5901|DEBUG|OnDoc|
2025-03-25 15:51:28.6266|DEBUG|OnDoc|
2025-03-25 15:51:28.6296|DEBUG|OnDoc|
2025-03-25 15:51:28.6296|DEBUG|OnDoc|
2025-03-25 15:51:28.6296|DEBUG|OnDoc|
2025-03-25 15:51:28.6296|DEBUG|OnDoc|
2025-03-25 15:51:28.6296|DEBUG|OnDoc|
2025-03-25 15:51:28.6457|DEBUG|OnDoc|
2025-03-25 15:52:30.4214|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:52:31.7114|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 15:52:31.7114|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 15:52:31.7287|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 15:52:31.7287|DEBUG|OnDoc|
2025-03-25 15:52:31.7287|DEBUG|OnDoc|
2025-03-25 15:52:31.7287|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:52:31.7388|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 15:52:31.7388|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS__20250325035231.json.pdf
2025-03-25 15:52:31.7388|DEBUG|OnDoc|
2025-03-25 15:52:31.7388|DEBUG|OnDoc|
2025-03-25 15:58:18.2221|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 15:58:18.2784|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 15:58:29.3395|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1032777_20250325035824.json.pdf
2025-03-25 15:58:31.6683|DEBUG|OnDoc|
2025-03-25 15:58:31.6798|DEBUG|OnDoc|
2025-03-25 18:01:46.1693|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491955
2025-03-25 18:01:46.2278|DEBUG|OnDoc|
2025-03-25 18:01:46.2578|DEBUG|OnDoc|
2025-03-25 18:01:46.2578|DEBUG|OnDoc|
2025-03-25 18:01:46.2578|DEBUG|OnDoc|
2025-03-25 18:01:46.2578|DEBUG|OnDoc|OFFEDK0082025002491955 ErstellungInOffec - EDKB02DMS
2025-03-25 18:01:46.2578|DEBUG|OnDoc|
2025-03-25 18:01:46.2578|DEBUG|OnDoc|
2025-03-25 18:01:46.2578|INFO|OnDoc|Dokumentarchivierung via EDKB02_DMS ausgelöstOFFEDK0082025002491955
2025-03-25 18:01:46.2698|DEBUG|OnDoc|
2025-03-25 18:01:46.2698|DEBUG|OnDoc|
2025-03-25 18:01:46.2878|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491947
2025-03-25 18:01:46.2878|DEBUG|OnDoc|
2025-03-25 18:01:46.3108|DEBUG|OnDoc|
2025-03-25 18:01:46.3108|DEBUG|OnDoc|
2025-03-25 18:01:46.3171|DEBUG|OnDoc|
2025-03-25 18:01:46.3171|DEBUG|OnDoc|
2025-03-25 18:01:46.3171|DEBUG|OnDoc|
2025-03-25 18:01:46.3171|DEBUG|OnDoc|
2025-03-25 18:01:46.3171|DEBUG|OnDoc|
2025-03-25 18:01:54.5857|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:01:54.8210|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:01:59.4642|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491947
2025-03-25 18:02:00.0006|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491947
2025-03-25 18:02:00.0190|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491947
2025-03-25 18:02:04.6758|DEBUG|OnDoc|
2025-03-25 18:02:04.6758|DEBUG|OnDoc|
2025-03-25 18:02:04.6758|DEBUG|OnDoc|
2025-03-25 18:02:04.6758|DEBUG|OnDoc|
2025-03-25 18:02:04.6758|DEBUG|OnDoc|
2025-03-25 18:02:04.6918|DEBUG|OnDoc|
2025-03-25 18:02:08.7620|DEBUG|OnDoc|
2025-03-25 18:02:08.7710|DEBUG|OnDoc|
2025-03-25 18:02:36.9401|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:02:36.9812|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:02:41.6435|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS__20250325060238.json.pdf
2025-03-25 18:02:44.0521|DEBUG|OnDoc|
2025-03-25 18:02:44.0521|DEBUG|OnDoc|
2025-03-25 18:24:24.8082|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 18:24:36.3114|DEBUG|OnDoc|
2025-03-25 18:24:36.3717|DEBUG|OnDoc|
2025-03-25 18:24:40.6014|DEBUG|OnDoc|
2025-03-25 18:24:40.6364|DEBUG|OnDoc|
2025-03-25 18:24:44.7787|DEBUG|OnDoc|
2025-03-25 18:24:44.7937|DEBUG|OnDoc|
2025-03-25 18:24:51.1733|DEBUG|OnDoc|
2025-03-25 18:24:51.1835|DEBUG|OnDoc|
2025-03-25 18:25:20.3324|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:25:20.5454|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:25:29.9260|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 18:25:33.5334|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 18:26:06.4726|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 18:26:17.8379|DEBUG|OnDoc|
2025-03-25 18:26:17.8900|DEBUG|OnDoc|
2025-03-25 18:26:17.9190|DEBUG|OnDoc|
2025-03-25 18:26:17.9190|DEBUG|OnDoc|
2025-03-25 18:26:17.9190|DEBUG|OnDoc|
2025-03-25 18:26:17.9270|DEBUG|OnDoc|
2025-03-25 18:26:28.3802|DEBUG|OnDoc|
2025-03-25 18:26:28.4164|DEBUG|OnDoc|
2025-03-25 18:28:31.8865|DEBUG|OnDoc|
2025-03-25 18:28:31.9490|DEBUG|OnDoc|
2025-03-25 18:29:03.4059|DEBUG|OnDoc|
2025-03-25 18:29:03.4434|DEBUG|OnDoc|
2025-03-25 18:29:41.7326|DEBUG|OnDoc|
2025-03-25 18:29:41.7732|DEBUG|OnDoc|
2025-03-25 18:30:18.8753|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:30:18.9579|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:30:25.1791|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS__20250325063020.json.pdf
2025-03-25 18:32:55.2336|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 18:32:55.2691|DEBUG|OnDoc|
2025-03-25 18:32:55.2971|DEBUG|OnDoc|
2025-03-25 18:32:55.2971|DEBUG|OnDoc|
2025-03-25 18:32:55.2971|DEBUG|OnDoc|
2025-03-25 18:32:55.3011|DEBUG|OnDoc|
2025-03-25 18:32:55.3011|DEBUG|OnDoc|
2025-03-25 18:32:55.3011|DEBUG|OnDoc|
2025-03-25 18:32:55.3011|DEBUG|OnDoc|
2025-03-25 18:32:55.3621|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:32:55.4269|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:32:55.4783|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 18:32:55.4783|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 18:32:55.4783|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 18:32:55.4783|DEBUG|OnDoc|
2025-03-25 18:32:55.4883|DEBUG|OnDoc|
2025-03-25 18:32:55.4883|DEBUG|OnDoc|
2025-03-25 18:32:55.4883|DEBUG|OnDoc|
2025-03-25 18:32:55.4883|DEBUG|OnDoc|
2025-03-25 18:32:55.4883|DEBUG|OnDoc|
2025-03-25 18:32:56.9815|DEBUG|OnDoc|
2025-03-25 18:32:56.9905|DEBUG|OnDoc|
2025-03-25 18:33:50.1738|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:33:50.2149|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:33:53.3618|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325063353.json.pdf
2025-03-25 18:36:23.1252|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 18:36:23.1602|DEBUG|OnDoc|
2025-03-25 18:36:23.1911|DEBUG|OnDoc|
2025-03-25 18:36:23.1941|DEBUG|OnDoc|
2025-03-25 18:36:23.1941|DEBUG|OnDoc|
2025-03-25 18:36:23.1941|DEBUG|OnDoc|
2025-03-25 18:36:23.1941|DEBUG|OnDoc|
2025-03-25 18:36:23.1941|DEBUG|OnDoc|
2025-03-25 18:36:23.1941|DEBUG|OnDoc|
2025-03-25 18:36:23.2531|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:36:23.3263|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:36:23.3733|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491960
2025-03-25 18:36:23.3733|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 18:36:23.3833|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491960
2025-03-25 18:36:23.3833|DEBUG|OnDoc|
2025-03-25 18:36:23.3833|DEBUG|OnDoc|
2025-03-25 18:36:23.3833|DEBUG|OnDoc|
2025-03-25 18:36:23.3833|DEBUG|OnDoc|
2025-03-25 18:36:23.3833|DEBUG|OnDoc|
2025-03-25 18:36:23.3833|DEBUG|OnDoc|
2025-03-25 18:36:25.1087|DEBUG|OnDoc|
2025-03-25 18:36:25.1177|DEBUG|OnDoc|
2025-03-25 18:37:11.8333|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:37:11.9835|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:37:36.0932|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325063723.json.pdf
2025-03-25 18:42:56.5990|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 18:42:56.6754|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 18:43:01.3557|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325064258.json.pdf
2025-03-25 19:06:38.2899|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:06:38.3746|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:06:38.4176|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325070638.json.pdf
2025-03-25 19:08:42.0706|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491971
2025-03-25 19:08:44.0532|DEBUG|OnDoc|
2025-03-25 19:08:44.0958|DEBUG|OnDoc|
2025-03-25 19:08:48.1688|DEBUG|OnDoc|
2025-03-25 19:08:48.2057|DEBUG|OnDoc|
2025-03-25 19:08:49.2761|DEBUG|OnDoc|OFFEDK0082025002491971 ErstellungInOffec - EDKB02DMS
2025-03-25 19:08:51.5386|DEBUG|OnDoc|
2025-03-25 19:08:51.5527|DEBUG|OnDoc|
2025-03-25 19:08:56.5173|INFO|OnDoc|Dokumentarchivierung via EDKB02_DMS ausgelöstOFFEDK0082025002491971
2025-03-25 19:09:26.6506|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:09:26.7404|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:09:31.4066|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325070928.json.pdf
2025-03-25 19:10:41.8569|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491971
2025-03-25 19:10:41.8924|DEBUG|OnDoc|
2025-03-25 19:10:41.9235|DEBUG|OnDoc|
2025-03-25 19:10:41.9235|DEBUG|OnDoc|
2025-03-25 19:10:41.9278|DEBUG|OnDoc|
2025-03-25 19:10:41.9278|DEBUG|OnDoc|OFFEDK0082025002491971 ErstellungInOffec - EDKB02DMS
2025-03-25 19:10:41.9278|DEBUG|OnDoc|
2025-03-25 19:10:41.9278|DEBUG|OnDoc|
2025-03-25 19:10:41.9278|DEBUG|OnDoc|Dokument nicht im Status in Bearbeitung - Bereits archiviert: OFFEDK0082025002491971OFFEDK0082025002491971
2025-03-25 19:10:51.0727|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:10:51.1444|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:10:54.8642|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325071052.json.pdf
2025-03-25 19:13:27.5935|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491971
2025-03-25 19:13:27.6025|DEBUG|OnDoc|
2025-03-25 19:13:27.6325|DEBUG|OnDoc|
2025-03-25 19:13:27.6325|DEBUG|OnDoc|
2025-03-25 19:13:27.6325|DEBUG|OnDoc|
2025-03-25 19:13:27.6325|DEBUG|OnDoc|OFFEDK0082025002491971 ErstellungInOffec - EDKB02DMS
2025-03-25 19:13:27.6325|DEBUG|OnDoc|
2025-03-25 19:13:27.6325|DEBUG|OnDoc|
2025-03-25 19:13:27.6325|DEBUG|OnDoc|Dokument nicht im Status in Bearbeitung - Bereits archiviert: OFFEDK0082025002491971OFFEDK0082025002491971
2025-03-25 19:13:27.6448|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:13:27.6963|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:13:27.7381|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325071327.json.pdf
2025-03-25 19:13:51.7366|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491971
2025-03-25 19:13:51.7466|DEBUG|OnDoc|
2025-03-25 19:13:51.7800|DEBUG|OnDoc|
2025-03-25 19:13:51.7800|DEBUG|OnDoc|
2025-03-25 19:13:51.7800|DEBUG|OnDoc|
2025-03-25 19:13:51.7800|DEBUG|OnDoc|OFFEDK0082025002491971 ErstellungInOffec - EDKB02DMS
2025-03-25 19:13:51.7800|DEBUG|OnDoc|
2025-03-25 19:13:51.7800|DEBUG|OnDoc|
2025-03-25 19:13:51.7861|DEBUG|OnDoc|Dokument nicht im Status in Bearbeitung - Bereits archiviert: OFFEDK0082025002491971OFFEDK0082025002491971
2025-03-25 19:17:08.0650|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491986
2025-03-25 19:17:08.0976|DEBUG|OnDoc|
2025-03-25 19:17:08.1342|DEBUG|OnDoc|
2025-03-25 19:17:08.1342|DEBUG|OnDoc|
2025-03-25 19:17:08.1342|DEBUG|OnDoc|
2025-03-25 19:17:08.1342|DEBUG|OnDoc|
2025-03-25 19:17:08.1491|DEBUG|OnDoc|
2025-03-25 19:17:08.1491|DEBUG|OnDoc|
2025-03-25 19:17:08.1491|DEBUG|OnDoc|
2025-03-25 19:17:09.3086|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:17:09.4741|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:17:09.5351|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491986
2025-03-25 19:17:09.5351|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491986
2025-03-25 19:17:09.5351|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491986
2025-03-25 19:17:09.5351|DEBUG|OnDoc|
2025-03-25 19:17:09.5351|DEBUG|OnDoc|
2025-03-25 19:17:09.5351|DEBUG|OnDoc|
2025-03-25 19:17:09.5351|DEBUG|OnDoc|
2025-03-25 19:17:09.5514|DEBUG|OnDoc|
2025-03-25 19:17:09.5514|DEBUG|OnDoc|
2025-03-25 19:17:09.5514|DEBUG|OnDoc|
2025-03-25 19:17:09.5514|DEBUG|OnDoc|
2025-03-25 19:17:09.5514|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:17:09.5514|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:17:09.5514|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325071709.json.pdf
2025-03-25 19:17:22.3478|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491994
2025-03-25 19:17:22.3478|DEBUG|OnDoc|
2025-03-25 19:17:22.3786|DEBUG|OnDoc|
2025-03-25 19:17:22.3806|DEBUG|OnDoc|
2025-03-25 19:17:22.3806|DEBUG|OnDoc|
2025-03-25 19:17:22.3806|DEBUG|OnDoc|
2025-03-25 19:17:22.3806|DEBUG|OnDoc|
2025-03-25 19:17:22.3806|DEBUG|OnDoc|
2025-03-25 19:17:22.3806|DEBUG|OnDoc|
2025-03-25 19:17:22.4853|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:17:22.5619|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:17:22.6148|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002491994
2025-03-25 19:17:22.6148|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002491994
2025-03-25 19:17:22.6148|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002491994
2025-03-25 19:17:22.6148|DEBUG|OnDoc|
2025-03-25 19:17:22.6148|DEBUG|OnDoc|
2025-03-25 19:17:22.6148|DEBUG|OnDoc|
2025-03-25 19:17:22.6148|DEBUG|OnDoc|
2025-03-25 19:17:22.6148|DEBUG|OnDoc|
2025-03-25 19:17:22.6293|DEBUG|OnDoc|
2025-03-25 19:17:22.6293|DEBUG|OnDoc|
2025-03-25 19:17:22.6293|DEBUG|OnDoc|
2025-03-25 19:17:22.6293|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:17:22.6293|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:17:22.6293|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1032777_20250325071722.json.pdf
2025-03-25 19:32:29.4588|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492006
2025-03-25 19:32:29.4902|DEBUG|OnDoc|
2025-03-25 19:32:29.5247|DEBUG|OnDoc|
2025-03-25 19:32:29.5247|DEBUG|OnDoc|
2025-03-25 19:32:29.5247|DEBUG|OnDoc|
2025-03-25 19:32:29.5247|DEBUG|OnDoc|
2025-03-25 19:32:29.5366|DEBUG|OnDoc|
2025-03-25 19:32:29.5366|DEBUG|OnDoc|
2025-03-25 19:32:29.5366|DEBUG|OnDoc|
2025-03-25 19:32:30.7497|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:32:30.9366|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:32:30.9963|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492006
2025-03-25 19:32:30.9963|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002492006
2025-03-25 19:32:31.0053|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002492006
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|
2025-03-25 19:32:31.0053|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-25 19:32:31.0198|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-25 19:32:31.0198|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250325073231.json.pdf
2025-03-26 08:37:36.7432|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 08:37:36.9842|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 08:37:37.0311|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_0_20250326083736.json.pdf
2025-03-26 08:53:33.1725|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 08:53:33.4272|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 08:53:33.4757|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_0_20250326085333.json.pdf
2025-03-26 08:53:38.3659|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 08:53:38.4199|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 08:53:38.4607|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_0_20250326085338.json.pdf
2025-03-26 11:08:04.4889|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 11:08:04.6964|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 11:08:04.7312|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326110804.json.pdf
2025-03-26 11:13:09.6041|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492022
2025-03-26 11:13:09.6364|DEBUG|OnDoc|
2025-03-26 11:13:09.6616|DEBUG|OnDoc|
2025-03-26 11:13:09.6781|ERROR|OnDoc|An der Position 0 befindet sich keine Zeile.
2025-03-26 11:13:09.6781|DEBUG|OnDoc|
2025-03-26 11:13:09.6781|DEBUG|OnDoc|
2025-03-26 11:13:09.6781|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 11:13:09.8082|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 11:13:09.8082|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326111309.json.pdf
2025-03-26 13:29:35.0793|DEBUG|OnDoc|
2025-03-26 13:29:35.1203|DEBUG|OnDoc|
2025-03-26 13:29:35.1293|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 13:29:35.2629|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 13:29:35.2959|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492022
2025-03-26 13:29:35.2959|DEBUG|OnDoc|
2025-03-26 13:29:35.3229|DEBUG|OnDoc|
2025-03-26 13:29:35.3339|ERROR|OnDoc|An der Position 0 befindet sich keine Zeile.
2025-03-26 13:29:35.3339|DEBUG|OnDoc|
2025-03-26 13:29:35.3339|DEBUG|OnDoc|
2025-03-26 13:29:35.3339|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 13:29:35.3339|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 13:29:35.3339|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326012935.json.pdf
2025-03-26 13:30:30.5468|DEBUG|OnDoc|
2025-03-26 13:30:30.5828|DEBUG|OnDoc|
2025-03-26 13:30:53.5988|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 13:31:06.6910|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 13:34:24.0781|DEBUG|OnDoc|
2025-03-26 13:34:24.3126|DEBUG|OnDoc|
2025-03-26 13:34:28.4034|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 13:34:41.4226|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 15:27:12.1624|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:27:12.2190|DEBUG|OnDoc|
2025-03-26 15:27:12.2290|DEBUG|OnDoc|
2025-03-26 15:27:12.2290|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:27:12.2520|ERROR|OnDoc|Unexpected end of content while loading JArray. Path '[8].Zeile3', line 1, position 2033.
2025-03-26 15:27:36.6794|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:27:39.7907|DEBUG|OnDoc|
2025-03-26 15:27:46.2442|DEBUG|OnDoc|
2025-03-26 15:27:52.6305|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:33:36.6741|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:33:38.6443|DEBUG|OnDoc|
2025-03-26 15:33:38.6443|DEBUG|OnDoc|
2025-03-26 15:33:38.6443|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:35:16.5609|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:35:17.9426|DEBUG|OnDoc|
2025-03-26 15:35:17.9426|DEBUG|OnDoc|
2025-03-26 15:35:17.9426|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:38:26.4054|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:38:28.6894|DEBUG|OnDoc|
2025-03-26 15:38:28.7004|DEBUG|OnDoc|
2025-03-26 15:38:28.7004|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:38:28.7234|ERROR|OnDoc|Unterminated string. Expected delimiter: ". Path '[18].bezeichnung', line 1, position 2033.
2025-03-26 15:38:48.8947|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:38:53.9318|DEBUG|OnDoc|
2025-03-26 15:38:53.9688|DEBUG|OnDoc|
2025-03-26 15:38:53.9688|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:38:53.9888|ERROR|OnDoc|Unterminated string. Expected delimiter: ". Path '[25].einzeilig', line 1, position 2033.
2025-03-26 15:41:54.3797|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:41:56.4097|DEBUG|OnDoc|
2025-03-26 15:41:56.4097|DEBUG|OnDoc|
2025-03-26 15:41:56.4097|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:41:56.4430|ERROR|OnDoc|Unterminated string. Expected delimiter: ". Path '[25].einzeilig', line 1, position 2033.
2025-03-26 15:42:17.0486|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:42:19.4895|DEBUG|OnDoc|
2025-03-26 15:42:19.4895|DEBUG|OnDoc|
2025-03-26 15:42:19.4895|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:42:45.1831|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:42:48.9617|DEBUG|OnDoc|
2025-03-26 15:42:48.9978|DEBUG|OnDoc|
2025-03-26 15:42:48.9978|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:42:49.0178|ERROR|OnDoc|Unterminated string. Expected delimiter: ". Path '[19].einzeilig', line 1, position 2033.
2025-03-26 15:45:16.4691|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:45:18.4223|DEBUG|OnDoc|
2025-03-26 15:45:18.4323|DEBUG|OnDoc|
2025-03-26 15:45:18.4323|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:49:50.6281|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:49:52.7679|DEBUG|OnDoc|
2025-03-26 15:49:52.7793|DEBUG|OnDoc|
2025-03-26 15:49:52.7793|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:50:07.2814|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:50:09.6116|DEBUG|OnDoc|
2025-03-26 15:50:09.6216|DEBUG|OnDoc|
2025-03-26 15:50:09.6216|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:50:58.2355|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:51:04.0326|DEBUG|OnDoc|
2025-03-26 15:51:04.0731|DEBUG|OnDoc|
2025-03-26 15:51:05.4584|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:52:37.5698|ERROR|OnDoc|Unberechtigter Zugriff
2025-03-26 15:52:46.4387|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:52:48.4342|DEBUG|OnDoc|
2025-03-26 15:52:48.4442|DEBUG|OnDoc|
2025-03-26 15:52:48.4442|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:54:56.6977|ERROR|OnDoc|Unberechtigter Zugriff
2025-03-26 15:55:05.7996|DEBUG|OnDoc|Start Adresse GetAll
2025-03-26 15:55:09.4245|DEBUG|OnDoc|
2025-03-26 15:55:09.4610|DEBUG|OnDoc|
2025-03-26 15:55:09.4610|DEBUG|OnDoc|Ende Adresse GetAll
2025-03-26 15:55:20.4191|DEBUG|OnDoc|Start Adresse GetByID ID:1
2025-03-26 15:55:20.4567|DEBUG|OnDoc|
2025-03-26 15:55:20.4967|ERROR|OnDoc|Falsche Syntax in der Nähe von "@format".
2025-03-26 15:55:20.5187|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2025-03-26 15:55:36.7343|DEBUG|OnDoc|Start Adresse GetByID ID:1
2025-03-26 15:55:57.7969|DEBUG|OnDoc|
2025-03-26 15:55:57.8569|ERROR|OnDoc|Falsche Syntax in der Nähe von "@format".
2025-03-26 15:55:57.8769|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2025-03-26 15:56:39.6572|DEBUG|OnDoc|Start Adresse GetByID ID:1
2025-03-26 15:56:44.0382|DEBUG|OnDoc|
2025-03-26 15:56:59.2574|DEBUG|OnDoc|
2025-03-26 15:56:59.3164|DEBUG|OnDoc|Ende Adresse GetByID ID:1
2025-03-26 15:57:21.6241|DEBUG|OnDoc|Start Adresse GetByID ID:1
2025-03-26 15:57:25.9154|DEBUG|OnDoc|
2025-03-26 15:57:39.2911|DEBUG|OnDoc|
2025-03-26 15:57:39.3261|DEBUG|OnDoc|Ende Adresse GetByID ID:1
2025-03-26 15:57:48.4568|DEBUG|OnDoc|Start Adresse GetByID ID:31
2025-03-26 15:57:49.3636|DEBUG|OnDoc|
2025-03-26 15:57:49.3636|DEBUG|OnDoc|
2025-03-26 15:57:49.3636|DEBUG|OnDoc|Ende Adresse GetByID ID:31
2025-03-26 15:58:04.7122|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByTGNummer
2025-03-26 15:58:04.7472|DEBUG|OnDoc|
2025-03-26 15:58:04.7472|DEBUG|OnDoc|
2025-03-26 15:58:04.7472|DEBUG|OnDoc|Ende Adresse GetAllMitarbeiterByTGNummer
2025-03-26 15:58:48.7970|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByTGNummer
2025-03-26 15:58:48.8330|DEBUG|OnDoc|
2025-03-26 15:58:48.8330|DEBUG|OnDoc|
2025-03-26 15:58:48.8330|DEBUG|OnDoc|Ende Adresse GetAllMitarbeiterByTGNummer
2025-03-26 15:59:06.8850|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByTGNummer
2025-03-26 15:59:06.9200|DEBUG|OnDoc|
2025-03-26 15:59:06.9200|DEBUG|OnDoc|
2025-03-26 15:59:06.9200|DEBUG|OnDoc|Ende Adresse GetAllMitarbeiterByTGNummer
2025-03-26 16:00:23.7025|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByTGNummer
2025-03-26 16:00:23.7375|DEBUG|OnDoc|
2025-03-26 16:00:23.7435|DEBUG|OnDoc|
2025-03-26 16:00:23.7435|DEBUG|OnDoc|Ende Adresse GetAllMitarbeiterByTGNummer
2025-03-26 16:01:03.8248|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:1
2025-03-26 16:01:03.8608|DEBUG|OnDoc|
2025-03-26 16:01:03.9058|ERROR|OnDoc|Falsche Syntax in der Nähe des and-Schlüsselworts.
2025-03-26 16:01:03.9283|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2025-03-26 16:03:48.9066|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:1
2025-03-26 16:03:48.9422|DEBUG|OnDoc|
2025-03-26 16:03:48.9702|ERROR|OnDoc|Falsche Syntax in der Nähe des and-Schlüsselworts.
2025-03-26 16:03:48.9902|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2025-03-26 16:04:06.4376|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:1
2025-03-26 16:04:06.4737|DEBUG|OnDoc|
2025-03-26 16:04:06.5057|ERROR|OnDoc|Falsche Syntax in der Nähe des and-Schlüsselworts.
2025-03-26 16:04:06.5297|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2025-03-26 16:05:05.4779|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:1
2025-03-26 16:05:05.5129|DEBUG|OnDoc|
2025-03-26 16:05:05.5129|DEBUG|OnDoc|
2025-03-26 16:05:05.5129|DEBUG|OnDoc|Ende Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:1
2025-03-26 16:05:10.0717|DEBUG|OnDoc|Start Adresse GetAllMitarbeiterByTGNummer
2025-03-26 16:05:10.1067|DEBUG|OnDoc|
2025-03-26 16:05:10.1067|DEBUG|OnDoc|
2025-03-26 16:05:10.1067|DEBUG|OnDoc|Ende Adresse GetAllMitarbeiterByTGNummer
2025-03-26 16:05:22.0000|DEBUG|OnDoc|Start GetMitarbeiterByID ID: 1
2025-03-26 16:05:22.0355|DEBUG|OnDoc|
2025-03-26 16:05:22.0355|DEBUG|OnDoc|
2025-03-26 16:05:22.0355|DEBUG|OnDoc|Ende GetMitarbeiterByID ID: 1
2025-03-26 16:05:33.5589|DEBUG|OnDoc|Start GetGASAdressen_Einzeilig TGNummer: tg2368
2025-03-26 16:05:33.5939|DEBUG|OnDoc|
2025-03-26 16:05:33.6089|DEBUG|OnDoc|
2025-03-26 16:05:33.6089|DEBUG|OnDoc|Ende GetGASAdressen_Einzeilig TGNummer: tg2368
2025-03-26 16:05:33.6470|ERROR|OnDoc|Unterminated string. Expected delimiter: ". Path '[25].adresse', line 1, position 2033.
2025-03-26 16:06:58.1552|DEBUG|OnDoc|Start GetGASAdressen_Einzeilig TGNummer: tg2368
2025-03-26 16:06:58.1902|DEBUG|OnDoc|
2025-03-26 16:06:58.1932|DEBUG|OnDoc|
2025-03-26 16:06:58.1932|DEBUG|OnDoc|Ende GetGASAdressen_Einzeilig TGNummer: tg2368
2025-03-26 16:07:47.2191|DEBUG|OnDoc|Start GetGASAdressen_Einzeilig TGNummer: tg2368
2025-03-26 16:07:47.2281|DEBUG|OnDoc|
2025-03-26 16:07:47.2281|DEBUG|OnDoc|
2025-03-26 16:07:47.2281|DEBUG|OnDoc|Ende GetGASAdressen_Einzeilig TGNummer: tg2368
2025-03-26 17:38:03.1985|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492043
2025-03-26 17:38:03.2315|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:03.2555|DEBUG|OnDoc|
2025-03-26 17:38:04.5474|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:38:04.7106|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:38:04.7550|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492043
2025-03-26 17:38:04.7550|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002492043
2025-03-26 17:38:04.7550|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002492043
2025-03-26 17:38:04.7550|DEBUG|OnDoc|
2025-03-26 17:38:04.7550|DEBUG|OnDoc|
2025-03-26 17:38:04.7550|DEBUG|OnDoc|
2025-03-26 17:38:04.7700|DEBUG|OnDoc|
2025-03-26 17:38:04.7700|DEBUG|OnDoc|
2025-03-26 17:38:04.7700|DEBUG|OnDoc|
2025-03-26 17:38:24.3874|DEBUG|OnDoc|
2025-03-26 17:38:24.3969|DEBUG|OnDoc|
2025-03-26 17:39:10.0937|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:39:10.1347|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:40:22.9533|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326053912.json.pdf
2025-03-26 17:40:53.6811|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492043
2025-03-26 17:40:53.7161|DEBUG|OnDoc|
2025-03-26 17:40:53.7443|DEBUG|OnDoc|
2025-03-26 17:40:53.7443|DEBUG|OnDoc|
2025-03-26 17:40:53.7443|DEBUG|OnDoc|
2025-03-26 17:40:53.7443|DEBUG|OnDoc|
2025-03-26 17:40:53.7443|DEBUG|OnDoc|
2025-03-26 17:40:53.7443|DEBUG|OnDoc|
2025-03-26 17:40:53.7583|DEBUG|OnDoc|
2025-03-26 17:40:53.8063|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:40:53.8506|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:40:53.8846|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492043
2025-03-26 17:40:53.8846|DEBUG|OnDoc|Start Update IL_Log: DokumentID:OFFEDK0082025002492043
2025-03-26 17:40:53.8846|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002492043
2025-03-26 17:40:53.8846|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:53.8946|DEBUG|OnDoc|
2025-03-26 17:40:54.7178|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:40:54.7318|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:40:54.7318|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326054054.json.pdf
2025-03-26 17:43:10.0461|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492059
2025-03-26 17:43:11.9871|DEBUG|OnDoc|
2025-03-26 17:43:12.0190|DEBUG|OnDoc|
2025-03-26 17:43:14.8878|DEBUG|OnDoc|
2025-03-26 17:43:14.8983|DEBUG|OnDoc|
2025-03-26 17:43:17.0303|DEBUG|OnDoc|OFFEDK0082025002492059 ErstellungInOffec - EDKB02DMS
2025-03-26 17:43:20.8149|DEBUG|OnDoc|
2025-03-26 17:43:20.8569|DEBUG|OnDoc|
2025-03-26 17:43:22.6840|INFO|OnDoc|Dokumentarchivierung via EDKB02_DMS ausgelöstOFFEDK0082025002492059
2025-03-26 17:43:44.8098|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:43:45.0150|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:43:50.7536|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326054346.json.pdf
2025-03-26 17:46:16.5816|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492067
2025-03-26 17:46:16.5816|DEBUG|OnDoc|
2025-03-26 17:46:16.6061|DEBUG|OnDoc|
2025-03-26 17:46:16.6061|DEBUG|OnDoc|
2025-03-26 17:46:16.6061|DEBUG|OnDoc|
2025-03-26 17:46:16.6061|DEBUG|OnDoc|OFFEDK0082025002492067 ErstellungInOffec - EDKB02DMS
2025-03-26 17:46:16.6061|DEBUG|OnDoc|
2025-03-26 17:46:16.6161|DEBUG|OnDoc|
2025-03-26 17:46:16.6161|INFO|OnDoc|Dokumentarchivierung via EDKB02_DMS ausgelöstOFFEDK0082025002492067
2025-03-26 17:46:16.6161|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:47:46.1440|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002492075
2025-03-26 17:47:46.1761|DEBUG|OnDoc|
2025-03-26 17:47:46.2043|DEBUG|OnDoc|
2025-03-26 17:47:46.2043|DEBUG|OnDoc|
2025-03-26 17:47:46.2104|DEBUG|OnDoc|
2025-03-26 17:47:46.2104|DEBUG|OnDoc|OFFEDK0082025002492075 ErstellungInOffec - EDKB02DMS
2025-03-26 17:47:46.2104|DEBUG|OnDoc|
2025-03-26 17:47:46.2104|DEBUG|OnDoc|
2025-03-26 17:47:46.2104|INFO|OnDoc|Dokumentarchivierung via EDKB02_DMS ausgelöstOFFEDK0082025002492075
2025-03-26 17:47:46.2294|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:47:46.3968|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:47:46.4351|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326054746.json.pdf
2025-03-26 17:49:29.1540|DEBUG|OnDoc|
2025-03-26 17:49:29.1645|DEBUG|OnDoc|
2025-03-26 17:49:31.5931|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:49:31.6443|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:49:49.2648|DEBUG|OnDoc|
2025-03-26 17:49:49.3008|DEBUG|OnDoc|
2025-03-26 17:50:22.8374|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:51:27.3711|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:52:01.6970|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:52:03.4243|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:52:05.9220|DEBUG|OnDoc|
2025-03-26 17:52:05.9320|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326055203.json.pdf
2025-03-26 17:52:05.9320|DEBUG|OnDoc|
2025-03-26 17:52:07.5838|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:52:07.6484|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:52:08.4842|DEBUG|OnDoc|
2025-03-26 17:52:08.4942|DEBUG|OnDoc|
2025-03-26 17:52:09.7651|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:52:09.8281|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:52:09.8341|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:52:09.8686|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:52:09.9006|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000209_20250326055209.json.pdf
2025-03-26 17:55:12.2103|DEBUG|OnDoc|
2025-03-26 17:55:12.2464|DEBUG|OnDoc|
2025-03-26 17:55:43.2038|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:55:53.6103|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:57:15.2714|DEBUG|OnDoc|Start Update IL_Log: DokumentID:134_0
2025-03-26 17:57:15.3144|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:134_0
2025-03-26 17:57:15.3184|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:57:20.0332|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:57:21.8741|DEBUG|OnDoc|
2025-03-26 17:57:21.8841|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1000208_20250326055721.json.pdf
2025-03-26 17:57:21.8841|DEBUG|OnDoc|
2025-03-26 17:57:24.1754|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 17:57:24.2174|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 17:57:26.2370|DEBUG|OnDoc|Start Update IL_Log: DokumentID:134_0
2025-03-26 17:57:26.2510|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:134_0
2025-03-26 18:37:03.4897|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:37:03.5822|ERROR|OnDoc|Unberechtigter Zugriff
2025-03-26 18:37:45.5176|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:37:45.5771|ERROR|OnDoc|Unberechtigter Zugriff
2025-03-26 18:40:24.9014|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:40:39.6180|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:41:14.0424|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:42:59.0767|DEBUG|OnDoc|Start ArchivSBDoc DokumentID: DokumentID:OFFEDK0082025002492022
2025-03-26 18:42:59.1092|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 18:42:59.2257|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 18:42:59.2497|DEBUG|OnDoc|Start Update IL_Log: DokumentID:SB_134_0
2025-03-26 18:42:59.2607|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:SB_134_0
2025-03-26 18:42:59.2607|DEBUG|OnDoc|Ende ArchivSBDoc DokumentID: DokumentID:OFFEDK0082025002492022
2025-03-26 18:42:59.3353|DEBUG|OnDoc|Start ArchivSBDoc DokumentID: DokumentID:OFFEDK0082025002492038
2025-03-26 18:42:59.3353|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 18:42:59.3543|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 18:42:59.3673|DEBUG|OnDoc|Start Update IL_Log: DokumentID:SB_134_1
2025-03-26 18:42:59.3673|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:SB_134_1
2025-03-26 18:42:59.3673|DEBUG|OnDoc|Ende ArchivSBDoc DokumentID: DokumentID:OFFEDK0082025002492038
2025-03-26 18:43:29.4734|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:46:37.3232|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:49:09.7148|INFO|OnDoc|Image-Bezug: 5
2025-03-26 18:50:06.5889|INFO|OnDoc|Image-Bezug: 5
2025-03-26 19:00:44.8898|DEBUG|OnDoc|
2025-03-26 19:00:44.9238|DEBUG|OnDoc|
2025-03-26 19:00:46.3173|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 19:00:46.4628|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 19:00:46.4628|DEBUG|OnDoc|Start Update IL_Log: DokumentID:133_0
2025-03-26 19:00:46.4728|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:133_0
2025-03-26 19:00:46.4728|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 19:00:46.5298|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 19:00:46.5639|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1032777_20250326070046.json.pdf
2025-03-26 19:01:53.1521|DEBUG|OnDoc|
2025-03-26 19:01:53.1521|DEBUG|OnDoc|
2025-03-26 19:01:54.6530|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 19:01:54.7310|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 19:01:54.7410|DEBUG|OnDoc|Start Update IL_Log: DokumentID:133_0
2025-03-26 19:01:54.7410|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:133_0
2025-03-26 19:01:54.7410|DEBUG|OnDoc|Start Transfer to OnBase
2025-03-26 19:01:54.7875|DEBUG|OnDoc|Ende Transfer to OnBase
2025-03-26 19:01:54.8215|DEBUG|OnDoc|Opload Versandstrasse:X:\\jsontemp\VS_1032777_20250326070154.json.pdf

@ -1 +1 @@
7f8c9856cb98bb8499b1ef573fed1bb3d0f9d701201fd94c6f47441aba795d03
c2e830292a5d77806165a08167677ea89ca3e798aff9437d4d1014f3cc8c9014

@ -315,3 +315,7 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBOffice.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBOffice.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficeToPDFConverter.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficeToPDFConverter.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.IO.Pipelines.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Text.Json.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.IO.Pipelines.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\System.Text.Json.xml

@ -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;
}

@ -0,0 +1,22 @@
@using System.Web.Http
@using API_NetFramework.Areas.HelpPage.Models
@model HelpPageApiModel
@{
var description = Model.ApiDescription;
ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath;
}
<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
<div id="body" class="help-page">
<section class="featured">
<div class="content-wrapper">
<p>
@Html.ActionLink("Help Page Home", "Index")
</p>
</div>
</section>
<section class="content-wrapper main-content clear-fix">
@Html.DisplayForModel()
</section>
</div>

@ -0,0 +1,41 @@
@using System.Web.Http
@using System.Web.Http.Controllers
@using System.Web.Http.Description
@using API_NetFramework.Areas.HelpPage
@using API_NetFramework.Areas.HelpPage.Models
@model IGrouping<HttpControllerDescriptor, ApiDescription>
@{
var controllerDocumentation = ViewBag.DocumentationProvider != null ?
ViewBag.DocumentationProvider.GetDocumentation(Model.Key) :
null;
}
<h2 id="@Model.Key.ControllerName">@Model.Key.ControllerName</h2>
@if (!String.IsNullOrEmpty(controllerDocumentation))
{
<p>@controllerDocumentation</p>
}
<table class="help-page-table">
<thead>
<tr><th>API</th><th>Description</th></tr>
</thead>
<tbody>
@foreach (var api in Model)
{
<tr>
<td class="api-name"><a href="@Url.Action("Api", "Help", new { apiId = api.GetFriendlyId() })">@api.HttpMethod.Method @api.RelativePath</a></td>
<td class="api-documentation">
@if (api.Documentation != null)
{
<p>@api.Documentation</p>
}
else
{
<p>No documentation available.</p>
}
</td>
</tr>
}
</tbody>
</table>

@ -0,0 +1,6 @@
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model CollectionModelDescription
@if (Model.ElementDescription is ComplexTypeModelDescription)
{
@Html.DisplayFor(m => m.ElementDescription)
}

@ -0,0 +1,3 @@
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model ComplexTypeModelDescription
@Html.DisplayFor(m => m.Properties, "Parameters")

@ -0,0 +1,4 @@
@using API_NetFramework.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]

@ -0,0 +1,24 @@
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model EnumTypeModelDescription
<p>Possible enumeration values:</p>
<table class="help-page-table">
<thead>
<tr><th>Name</th><th>Value</th><th>Description</th></tr>
</thead>
<tbody>
@foreach (EnumValueDescription value in Model.Values)
{
<tr>
<td class="enum-name"><b>@value.Name</b></td>
<td class="enum-value">
<p>@value.Value</p>
</td>
<td class="enum-description">
<p>@value.Documentation</p>
</td>
</tr>
}
</tbody>
</table>

@ -0,0 +1,67 @@
@using System.Web.Http
@using System.Web.Http.Description
@using API_NetFramework.Areas.HelpPage.Models
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model HelpPageApiModel
@{
ApiDescription description = Model.ApiDescription;
}
<h1>@description.HttpMethod.Method @description.RelativePath</h1>
<div>
<p>@description.Documentation</p>
<h2>Request Information</h2>
<h3>URI Parameters</h3>
@Html.DisplayFor(m => m.UriParameters, "Parameters")
<h3>Body Parameters</h3>
<p>@Model.RequestDocumentation</p>
@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
{
<p>None.</p>
}
@if (Model.SampleRequests.Count > 0)
{
<h3>Request Formats</h3>
@Html.DisplayFor(m => m.SampleRequests, "Samples")
}
<h2>Response Information</h2>
<h3>Resource Description</h3>
<p>@description.ResponseDescription.Documentation</p>
@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
{
<p>None.</p>
}
@if (Model.SampleResponses.Count > 0)
{
<h3>Response Formats</h3>
@Html.DisplayFor(m => m.SampleResponses, "Samples")
}
</div>

@ -0,0 +1,4 @@
@using API_NetFramework.Areas.HelpPage
@model ImageSample
<img src="@Model.Src" />

@ -0,0 +1,13 @@
@using API_NetFramework.Areas.HelpPage
@model InvalidSample
@if (HttpContext.Current.IsDebuggingEnabled)
{
<div class="warning-message-container">
<p>@Model.ErrorMessage</p>
</div>
}
else
{
<p>Sample not available.</p>
}

@ -0,0 +1,4 @@
@using API_NetFramework.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]

@ -0,0 +1,26 @@
@using API_NetFramework.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)
}
}

@ -0,0 +1,48 @@
@using System.Collections.Generic
@using System.Collections.ObjectModel
@using System.Web.Http.Description
@using System.Threading
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model IList<ParameterDescription>
@if (Model.Count > 0)
{
<table class="help-page-table">
<thead>
<tr><th>Name</th><th>Description</th><th>Type</th><th>Additional information</th></tr>
</thead>
<tbody>
@foreach (ParameterDescription parameter in Model)
{
ModelDescription modelDescription = parameter.TypeDescription;
<tr>
<td class="parameter-name">@parameter.Name</td>
<td class="parameter-documentation">
<p>@parameter.Documentation</p>
</td>
<td class="parameter-type">
@Html.DisplayFor(m => modelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = modelDescription })
</td>
<td class="parameter-annotations">
@if (parameter.Annotations.Count > 0)
{
foreach (var annotation in parameter.Annotations)
{
<p>@annotation.Documentation</p>
}
}
else
{
<p>None.</p>
}
</td>
</tr>
}
</tbody>
</table>
}
else
{
<p>None.</p>
}

@ -0,0 +1,30 @@
@using System.Net.Http.Headers
@model Dictionary<MediaTypeHeaderValue, object>
@{
// Group the samples into a single tab if they are the same.
Dictionary<string, object> samples = Model.GroupBy(pair => pair.Value).ToDictionary(
pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()),
pair => pair.Key);
var mediaTypes = samples.Keys;
}
<div>
@foreach (var mediaType in mediaTypes)
{
<h4 class="sample-header">@mediaType</h4>
<div class="sample-content">
<span><b>Sample:</b></span>
@{
var sample = samples[mediaType];
if (sample == null)
{
<p>Sample not available.</p>
}
else
{
@Html.DisplayFor(s => sample);
}
}
</div>
}
</div>

@ -0,0 +1,3 @@
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model SimpleTypeModelDescription
@Model.Documentation

@ -0,0 +1,6 @@
@using API_NetFramework.Areas.HelpPage
@model TextSample
<pre class="wrapped">
@Model.Text
</pre>

@ -0,0 +1,38 @@
@using System.Web.Http
@using System.Web.Http.Controllers
@using System.Web.Http.Description
@using System.Collections.ObjectModel
@using API_NetFramework.Areas.HelpPage.Models
@model Collection<ApiDescription>
@{
ViewBag.Title = "ASP.NET Web API Help Page";
// Group APIs by controller
ILookup<HttpControllerDescriptor, ApiDescription> apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor);
}
<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
<header class="help-page">
<div class="content-wrapper">
<div class="float-left">
<h1>@ViewBag.Title</h1>
</div>
</div>
</header>
<div id="body" class="help-page">
<section class="featured">
<div class="content-wrapper">
<h2>Introduction</h2>
<p>
Provide a general description of your APIs here.
</p>
</div>
</section>
<section class="content-wrapper main-content clear-fix">
@foreach (var group in apiGroups)
{
@Html.DisplayFor(m => group, "ApiGroup")
}
</section>
</div>

@ -0,0 +1,19 @@
@using System.Web.Http
@using API_NetFramework.Areas.HelpPage.ModelDescriptions
@model ModelDescription
<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
<div id="body" class="help-page">
<section class="featured">
<div class="content-wrapper">
<p>
@Html.ActionLink("Help Page Home", "Index")
</p>
</div>
</section>
<h1>@Model.Name</h1>
<p>@Model.Documentation</p>
<section class="content-wrapper main-content clear-fix">
@Html.DisplayFor(m => Model)
</section>
</div>

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
@RenderSection("scripts", required: false)
</head>
<body>
@RenderBody()
</body>
</html>

@ -0,0 +1,41 @@
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
</sectionGroup>
</configSections>
<system.web.webPages.razor>
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.3.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<pages pageBaseType="System.Web.Mvc.WebViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
</namespaces>
</pages>
</system.web.webPages.razor>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<compilation debug="true">
<assemblies>
<add assembly="System.Net.Http, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
</system.web>
<system.webServer>
<handlers>
<remove name="BlockViewHandler"/>
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
</handlers>
</system.webServer>
</configuration>

@ -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 = "~/Areas/HelpPage/Views/Shared/_Layout.cshtml";
}

@ -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;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,597 @@
/*!
* Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)
* Copyright 2011-2024 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root,
[data-bs-theme=light] {
--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-primary-text-emphasis: #052c65;
--bs-secondary-text-emphasis: #2b2f32;
--bs-success-text-emphasis: #0a3622;
--bs-info-text-emphasis: #055160;
--bs-warning-text-emphasis: #664d03;
--bs-danger-text-emphasis: #58151c;
--bs-light-text-emphasis: #495057;
--bs-dark-text-emphasis: #495057;
--bs-primary-bg-subtle: #cfe2ff;
--bs-secondary-bg-subtle: #e2e3e5;
--bs-success-bg-subtle: #d1e7dd;
--bs-info-bg-subtle: #cff4fc;
--bs-warning-bg-subtle: #fff3cd;
--bs-danger-bg-subtle: #f8d7da;
--bs-light-bg-subtle: #fcfcfd;
--bs-dark-bg-subtle: #ced4da;
--bs-primary-border-subtle: #9ec5fe;
--bs-secondary-border-subtle: #c4c8cb;
--bs-success-border-subtle: #a3cfbb;
--bs-info-border-subtle: #9eeaf9;
--bs-warning-border-subtle: #ffe69c;
--bs-danger-border-subtle: #f1aeb5;
--bs-light-border-subtle: #e9ecef;
--bs-dark-border-subtle: #adb5bd;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--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-color-rgb: 33, 37, 41;
--bs-body-bg: #fff;
--bs-body-bg-rgb: 255, 255, 255;
--bs-emphasis-color: #000;
--bs-emphasis-color-rgb: 0, 0, 0;
--bs-secondary-color: rgba(33, 37, 41, 0.75);
--bs-secondary-color-rgb: 33, 37, 41;
--bs-secondary-bg: #e9ecef;
--bs-secondary-bg-rgb: 233, 236, 239;
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
--bs-tertiary-color-rgb: 33, 37, 41;
--bs-tertiary-bg: #f8f9fa;
--bs-tertiary-bg-rgb: 248, 249, 250;
--bs-heading-color: inherit;
--bs-link-color: #0d6efd;
--bs-link-color-rgb: 13, 110, 253;
--bs-link-decoration: underline;
--bs-link-hover-color: #0a58ca;
--bs-link-hover-color-rgb: 10, 88, 202;
--bs-code-color: #d63384;
--bs-highlight-color: #212529;
--bs-highlight-bg: #fff3cd;
--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-xxl: 2rem;
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
--bs-border-radius-pill: 50rem;
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
--bs-focus-ring-width: 0.25rem;
--bs-focus-ring-opacity: 0.25;
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
--bs-form-valid-color: #198754;
--bs-form-valid-border-color: #198754;
--bs-form-invalid-color: #dc3545;
--bs-form-invalid-border-color: #dc3545;
}
[data-bs-theme=dark] {
color-scheme: dark;
--bs-body-color: #dee2e6;
--bs-body-color-rgb: 222, 226, 230;
--bs-body-bg: #212529;
--bs-body-bg-rgb: 33, 37, 41;
--bs-emphasis-color: #fff;
--bs-emphasis-color-rgb: 255, 255, 255;
--bs-secondary-color: rgba(222, 226, 230, 0.75);
--bs-secondary-color-rgb: 222, 226, 230;
--bs-secondary-bg: #343a40;
--bs-secondary-bg-rgb: 52, 58, 64;
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
--bs-tertiary-color-rgb: 222, 226, 230;
--bs-tertiary-bg: #2b3035;
--bs-tertiary-bg-rgb: 43, 48, 53;
--bs-primary-text-emphasis: #6ea8fe;
--bs-secondary-text-emphasis: #a7acb1;
--bs-success-text-emphasis: #75b798;
--bs-info-text-emphasis: #6edff6;
--bs-warning-text-emphasis: #ffda6a;
--bs-danger-text-emphasis: #ea868f;
--bs-light-text-emphasis: #f8f9fa;
--bs-dark-text-emphasis: #dee2e6;
--bs-primary-bg-subtle: #031633;
--bs-secondary-bg-subtle: #161719;
--bs-success-bg-subtle: #051b11;
--bs-info-bg-subtle: #032830;
--bs-warning-bg-subtle: #332701;
--bs-danger-bg-subtle: #2c0b0e;
--bs-light-bg-subtle: #343a40;
--bs-dark-bg-subtle: #1a1d20;
--bs-primary-border-subtle: #084298;
--bs-secondary-border-subtle: #41464b;
--bs-success-border-subtle: #0f5132;
--bs-info-border-subtle: #087990;
--bs-warning-border-subtle: #997404;
--bs-danger-border-subtle: #842029;
--bs-light-border-subtle: #495057;
--bs-dark-border-subtle: #343a40;
--bs-heading-color: inherit;
--bs-link-color: #6ea8fe;
--bs-link-hover-color: #8bb9fe;
--bs-link-color-rgb: 110, 168, 254;
--bs-link-hover-color-rgb: 139, 185, 254;
--bs-code-color: #e685b5;
--bs-highlight-color: #dee2e6;
--bs-highlight-bg: #664d03;
--bs-border-color: #495057;
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
--bs-form-valid-color: #75b798;
--bs-form-valid-border-color: #75b798;
--bs-form-invalid-color: #ea868f;
--bs-form-invalid-border-color: #ea868f;
}
*,
*::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: var(--bs-border-width) solid;
opacity: 0.25;
}
h6, h5, h4, h3, h2, h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
color: var(--bs-heading-color);
}
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;
color: var(--bs-highlight-color);
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: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
text-decoration: underline;
}
a:hover {
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
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: var(--bs-secondary-color);
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] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
/* 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 */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,594 @@
/*!
* Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)
* Copyright 2011-2024 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root,
[data-bs-theme=light] {
--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-primary-text-emphasis: #052c65;
--bs-secondary-text-emphasis: #2b2f32;
--bs-success-text-emphasis: #0a3622;
--bs-info-text-emphasis: #055160;
--bs-warning-text-emphasis: #664d03;
--bs-danger-text-emphasis: #58151c;
--bs-light-text-emphasis: #495057;
--bs-dark-text-emphasis: #495057;
--bs-primary-bg-subtle: #cfe2ff;
--bs-secondary-bg-subtle: #e2e3e5;
--bs-success-bg-subtle: #d1e7dd;
--bs-info-bg-subtle: #cff4fc;
--bs-warning-bg-subtle: #fff3cd;
--bs-danger-bg-subtle: #f8d7da;
--bs-light-bg-subtle: #fcfcfd;
--bs-dark-bg-subtle: #ced4da;
--bs-primary-border-subtle: #9ec5fe;
--bs-secondary-border-subtle: #c4c8cb;
--bs-success-border-subtle: #a3cfbb;
--bs-info-border-subtle: #9eeaf9;
--bs-warning-border-subtle: #ffe69c;
--bs-danger-border-subtle: #f1aeb5;
--bs-light-border-subtle: #e9ecef;
--bs-dark-border-subtle: #adb5bd;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--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-color-rgb: 33, 37, 41;
--bs-body-bg: #fff;
--bs-body-bg-rgb: 255, 255, 255;
--bs-emphasis-color: #000;
--bs-emphasis-color-rgb: 0, 0, 0;
--bs-secondary-color: rgba(33, 37, 41, 0.75);
--bs-secondary-color-rgb: 33, 37, 41;
--bs-secondary-bg: #e9ecef;
--bs-secondary-bg-rgb: 233, 236, 239;
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
--bs-tertiary-color-rgb: 33, 37, 41;
--bs-tertiary-bg: #f8f9fa;
--bs-tertiary-bg-rgb: 248, 249, 250;
--bs-heading-color: inherit;
--bs-link-color: #0d6efd;
--bs-link-color-rgb: 13, 110, 253;
--bs-link-decoration: underline;
--bs-link-hover-color: #0a58ca;
--bs-link-hover-color-rgb: 10, 88, 202;
--bs-code-color: #d63384;
--bs-highlight-color: #212529;
--bs-highlight-bg: #fff3cd;
--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-xxl: 2rem;
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
--bs-border-radius-pill: 50rem;
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
--bs-focus-ring-width: 0.25rem;
--bs-focus-ring-opacity: 0.25;
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
--bs-form-valid-color: #198754;
--bs-form-valid-border-color: #198754;
--bs-form-invalid-color: #dc3545;
--bs-form-invalid-border-color: #dc3545;
}
[data-bs-theme=dark] {
color-scheme: dark;
--bs-body-color: #dee2e6;
--bs-body-color-rgb: 222, 226, 230;
--bs-body-bg: #212529;
--bs-body-bg-rgb: 33, 37, 41;
--bs-emphasis-color: #fff;
--bs-emphasis-color-rgb: 255, 255, 255;
--bs-secondary-color: rgba(222, 226, 230, 0.75);
--bs-secondary-color-rgb: 222, 226, 230;
--bs-secondary-bg: #343a40;
--bs-secondary-bg-rgb: 52, 58, 64;
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
--bs-tertiary-color-rgb: 222, 226, 230;
--bs-tertiary-bg: #2b3035;
--bs-tertiary-bg-rgb: 43, 48, 53;
--bs-primary-text-emphasis: #6ea8fe;
--bs-secondary-text-emphasis: #a7acb1;
--bs-success-text-emphasis: #75b798;
--bs-info-text-emphasis: #6edff6;
--bs-warning-text-emphasis: #ffda6a;
--bs-danger-text-emphasis: #ea868f;
--bs-light-text-emphasis: #f8f9fa;
--bs-dark-text-emphasis: #dee2e6;
--bs-primary-bg-subtle: #031633;
--bs-secondary-bg-subtle: #161719;
--bs-success-bg-subtle: #051b11;
--bs-info-bg-subtle: #032830;
--bs-warning-bg-subtle: #332701;
--bs-danger-bg-subtle: #2c0b0e;
--bs-light-bg-subtle: #343a40;
--bs-dark-bg-subtle: #1a1d20;
--bs-primary-border-subtle: #084298;
--bs-secondary-border-subtle: #41464b;
--bs-success-border-subtle: #0f5132;
--bs-info-border-subtle: #087990;
--bs-warning-border-subtle: #997404;
--bs-danger-border-subtle: #842029;
--bs-light-border-subtle: #495057;
--bs-dark-border-subtle: #343a40;
--bs-heading-color: inherit;
--bs-link-color: #6ea8fe;
--bs-link-hover-color: #8bb9fe;
--bs-link-color-rgb: 110, 168, 254;
--bs-link-hover-color-rgb: 139, 185, 254;
--bs-code-color: #e685b5;
--bs-highlight-color: #dee2e6;
--bs-highlight-bg: #664d03;
--bs-border-color: #495057;
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
--bs-form-valid-color: #75b798;
--bs-form-valid-border-color: #75b798;
--bs-form-invalid-color: #ea868f;
--bs-form-invalid-border-color: #ea868f;
}
*,
*::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: var(--bs-border-width) solid;
opacity: 0.25;
}
h6, h5, h4, h3, h2, h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
color: var(--bs-heading-color);
}
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-right: 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-right: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 0.875em;
}
mark {
padding: 0.1875em;
color: var(--bs-highlight-color);
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: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
text-decoration: underline;
}
a:hover {
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
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: var(--bs-secondary-color);
text-align: right;
}
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: right;
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: right;
}
::-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] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
[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.rtl.css.map */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="API_NetFramework.WebApiApplication" Language="C#" %>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save