update 20241127

master
Stefan Hutter 1 year ago
parent 341ea50f06
commit 2a652c7325

@ -12,6 +12,15 @@ using System.Runtime.Serialization.Formatters;
using System.Web; using System.Web;
using System.Web.Http; using System.Web.Http;
using SecuringWebApiUsingApiKey.Middleware; using SecuringWebApiUsingApiKey.Middleware;
using Newtonsoft.Json;
using System.Web.Http.Results;
using Microsoft.Ajax.Utilities;
using System.Data.SqlClient;
using System.Data;
using System.Text.RegularExpressions;
using System.Text;
using Newtonsoft.Json.Linq;
using System.Web.Helpers;
namespace API_NetFramework.Controllers namespace API_NetFramework.Controllers
{ {
@ -48,7 +57,7 @@ namespace API_NetFramework.Controllers
db.Get_Tabledata(SQL, false, true); db.Get_Tabledata(SQL, false, true);
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAll", LogLevelType.Debug); APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAll", LogLevelType.Debug);
return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
} }
catch (Exception e) catch (Exception e)
{ {
@ -89,7 +98,7 @@ namespace API_NetFramework.Controllers
} else { } else {
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetByID ID:" + ID, LogLevelType.Debug); APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetByID ID:" + ID, LogLevelType.Debug);
return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
}; };
} }
catch (Exception e) catch (Exception e)
@ -107,7 +116,7 @@ namespace API_NetFramework.Controllers
/// <returns></returns> /// <returns></returns>
/// <remarks></remarks> /// <remarks></remarks>
[HttpGet] [HttpGet]
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer")] [Route("API/ntwortAdresse/GetAllMitarbeiterByTGNummer")]
public IHttpActionResult GetAllMitarbeiterByTGNummer(string tgnummer, string OutFormat = "JSON") public IHttpActionResult GetAllMitarbeiterByTGNummer(string tgnummer, string OutFormat = "JSON")
{ {
@ -131,7 +140,7 @@ namespace API_NetFramework.Controllers
} else { } else {
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAllMitarbeiterByTGNummer", LogLevelType.Debug); APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAllMitarbeiterByTGNummer", LogLevelType.Debug);
return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
}; };
} }
catch (Exception e) catch (Exception e)
@ -141,7 +150,7 @@ namespace API_NetFramework.Controllers
} }
} }
[HttpGet] [HttpGet]
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")] [Route("API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")]
/// <summary> /// <summary>
/// GetAllMitarbeiterByMitarbeiternr liefert die persönlichen Adressen eines Mitarbeiters /// GetAllMitarbeiterByMitarbeiternr liefert die persönlichen Adressen eines Mitarbeiters
/// </summary> /// </summary>
@ -170,7 +179,7 @@ namespace API_NetFramework.Controllers
return Ok(); return Ok();
} else { } else {
APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:" + Mitarbeiternr, LogLevelType.Debug); APILogging.Log((HttpRequestMessage)Request, "Ende Adresse GetAllMitarbeiterByMitarbeiterNr Ma-Nr:" + Mitarbeiternr, LogLevelType.Debug);
return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString()));
}; };
} }
catch (Exception e) catch (Exception e)
@ -182,7 +191,7 @@ namespace API_NetFramework.Controllers
[HttpGet] [HttpGet]
[Route("API/API/AntwortAdresse/GetMitarbeiterByID")] [Route("API/AntwortAdresse/GetMitarbeiterByID")]
/// <summary> /// <summary>
/// GetMitarbeiterByID liefert eine Mitarbeiter-Adrsse mit der ID /// GetMitarbeiterByID liefert eine Mitarbeiter-Adrsse mit der ID
/// </summary> /// </summary>
@ -212,7 +221,7 @@ namespace API_NetFramework.Controllers
return Ok(); return Ok();
} else { } else {
APILogging.Log((HttpRequestMessage)Request, "Ende GetMitarbeiterByID ID: " + ID, LogLevelType.Debug); APILogging.Log((HttpRequestMessage)Request, "Ende GetMitarbeiterByID ID: " + ID, LogLevelType.Debug);
return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); }; return Ok(JToken.Parse(db.dsdaten.Tables[0].Rows[0][0].ToString())); };
} }
catch (Exception e) catch (Exception e)
{ {
@ -221,7 +230,7 @@ namespace API_NetFramework.Controllers
} }
} }
[HttpGet] [HttpGet]
[Route("API/API/AntwortAdresse/GetMitarbeiterUndStandard")] [Route("API/AntwortAdresse/GetMitarbeiterUndStandard")]
/// <summary> /// <summary>
/// GetMitarbeiterByID liefert eine Mitarbeiter-Adrsse mit der ID /// GetMitarbeiterByID liefert eine Mitarbeiter-Adrsse mit der ID
/// </summary> /// </summary>
@ -253,7 +262,14 @@ namespace API_NetFramework.Controllers
else else
{ {
APILogging.Log((HttpRequestMessage)Request, "Ende GetGASAdressen_Einzeilig TGNummer: " + TGNummer, LogLevelType.Debug); APILogging.Log((HttpRequestMessage)Request, "Ende GetGASAdressen_Einzeilig TGNummer: " + TGNummer, LogLevelType.Debug);
return Content(HttpStatusCode.OK, db.dsdaten.Tables[0].Rows[0][0].ToString()); //List<adressresponse> adressen = new List<adressresponse>();
//foreach (System.Data.DataRow dr in db.dsdaten.Tables[0].Rows)
//{
// 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()));
}; };
} }
catch (Exception e) catch (Exception e)
@ -263,5 +279,47 @@ namespace API_NetFramework.Controllers
} }
} }
public string DataTableToJsonObj(DataTable dt)
{
DataSet ds = new DataSet();
ds.Merge(dt);
StringBuilder JsonString = new StringBuilder();
if (ds != null && ds.Tables[0].Rows.Count > 0)
{
JsonString.Append("[");
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
JsonString.Append("{");
for (int j = 0; j < ds.Tables[0].Columns.Count; j++)
{
if (j < ds.Tables[0].Columns.Count - 1)
{
JsonString.Append("\"" + ds.Tables[0].Columns[j].ColumnName.ToString() + "\":" + "\"" + ds.Tables[0].Rows[i][j].ToString() + "\",");
}
else if (j == ds.Tables[0].Columns.Count - 1)
{
JsonString.Append("\"" + ds.Tables[0].Columns[j].ColumnName.ToString() + "\":" + "\"" + ds.Tables[0].Rows[i][j].ToString() + "\"");
}
}
if (i == ds.Tables[0].Rows.Count - 1)
{
JsonString.Append("}");
}
else
{
JsonString.Append("},");
}
}
JsonString.Append("]");
return JsonString.ToString();
}
else
{
return null;
}
}
} }
} }

File diff suppressed because one or more lines are too long

@ -5,7 +5,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl> <_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
<History>True|2024-11-24T17:56:32.4321643Z||;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|2024-11-26T18:32:44.7379810Z||;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 /> <LastFailureDetails />
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@ -82,10 +82,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>09/04/2024 19:25:14</publishTime> <publishTime>09/04/2024 19:25:14</publishTime>
</File> </File>
<File Include="bin/BarcodeLib.dll"> <File Include="bin/BarcodeLib.dll">
<publishTime>11/24/2024 14:23:50</publishTime> <publishTime>11/25/2024 15:25:12</publishTime>
</File> </File>
<File Include="bin/BarcodeLib.pdb"> <File Include="bin/BarcodeLib.pdb">
<publishTime>11/24/2024 14:23:50</publishTime> <publishTime>11/25/2024 15:25:12</publishTime>
</File> </File>
<File Include="bin/CSVNET.dll"> <File Include="bin/CSVNET.dll">
<publishTime>11/23/2024 19:27:07</publishTime> <publishTime>11/23/2024 19:27:07</publishTime>
@ -94,10 +94,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/23/2024 19:27:07</publishTime> <publishTime>11/23/2024 19:27:07</publishTime>
</File> </File>
<File Include="bin/Database.dll"> <File Include="bin/Database.dll">
<publishTime>11/24/2024 17:50:08</publishTime> <publishTime>11/26/2024 19:32:42</publishTime>
</File> </File>
<File Include="bin/Database.pdb"> <File Include="bin/Database.pdb">
<publishTime>11/24/2024 17:50:08</publishTime> <publishTime>11/26/2024 19:32:42</publishTime>
</File> </File>
<File Include="bin/de/System.Net.Http.Formatting.resources.dll"> <File Include="bin/de/System.Net.Http.Formatting.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime> <publishTime>10/20/2023 22:35:02</publishTime>
@ -130,13 +130,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:35:04</publishTime> <publishTime>10/20/2023 22:35:04</publishTime>
</File> </File>
<File Include="bin/DOCGEN.dll"> <File Include="bin/DOCGEN.dll">
<publishTime>11/24/2024 17:50:08</publishTime> <publishTime>11/26/2024 19:32:42</publishTime>
</File> </File>
<File Include="bin/DOCGEN.dll.config"> <File Include="bin/DOCGEN.dll.config">
<publishTime>11/18/2024 16:59:09</publishTime> <publishTime>11/25/2024 07:24:47</publishTime>
</File> </File>
<File Include="bin/DOCGEN.pdb"> <File Include="bin/DOCGEN.pdb">
<publishTime>11/24/2024 17:50:08</publishTime> <publishTime>11/26/2024 19:32:42</publishTime>
</File> </File>
<File Include="bin/FastReport.Bars.dll"> <File Include="bin/FastReport.Bars.dll">
<publishTime>11/27/2023 09:49:58</publishTime> <publishTime>11/27/2023 09:49:58</publishTime>
@ -214,10 +214,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/04/2022 19:09:46</publishTime> <publishTime>11/04/2022 19:09:46</publishTime>
</File> </File>
<File Include="bin/Model.dll"> <File Include="bin/Model.dll">
<publishTime>11/22/2024 12:26:16</publishTime> <publishTime>11/25/2024 16:02:23</publishTime>
</File> </File>
<File Include="bin/Model.pdb"> <File Include="bin/Model.pdb">
<publishTime>11/22/2024 12:26:16</publishTime> <publishTime>11/25/2024 16:02:23</publishTime>
</File> </File>
<File Include="bin/Newtonsoft.Json.Bson.dll"> <File Include="bin/Newtonsoft.Json.Bson.dll">
<publishTime>11/28/2018 00:10:18</publishTime> <publishTime>11/28/2018 00:10:18</publishTime>
@ -241,16 +241,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/18/2024 17:07:31</publishTime> <publishTime>11/18/2024 17:07:31</publishTime>
</File> </File>
<File Include="bin/OnDocOffice.dll"> <File Include="bin/OnDocOffice.dll">
<publishTime>11/24/2024 17:50:08</publishTime> <publishTime>11/26/2024 19:32:41</publishTime>
</File> </File>
<File Include="bin/OnDocOffice.pdb"> <File Include="bin/OnDocOffice.pdb">
<publishTime>11/24/2024 17:50:08</publishTime> <publishTime>11/26/2024 19:32:41</publishTime>
</File> </File>
<File Include="bin/OnDoc_NetFramework.dll"> <File Include="bin/OnDoc_NetFramework.dll">
<publishTime>11/24/2024 18:56:30</publishTime> <publishTime>11/26/2024 19:32:42</publishTime>
</File> </File>
<File Include="bin/OnDoc_NetFramework.pdb"> <File Include="bin/OnDoc_NetFramework.pdb">
<publishTime>11/24/2024 18:56:30</publishTime> <publishTime>11/26/2024 19:32:42</publishTime>
</File> </File>
<File Include="bin/Owin.dll"> <File Include="bin/Owin.dll">
<publishTime>11/13/2012 13:19:34</publishTime> <publishTime>11/13/2012 13:19:34</publishTime>
@ -634,7 +634,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/06/2024 08:11:55</publishTime> <publishTime>03/06/2024 08:11:55</publishTime>
</File> </File>
<File Include="Web.config"> <File Include="Web.config">
<publishTime>11/24/2024 17:50:09</publishTime> <publishTime>11/25/2024 16:02:24</publishTime>
</File> </File>
</ItemGroup> </ItemGroup>
</Project> </Project>

@ -0,0 +1,60 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com">
<link rel="icon" href="favicon.ico">
<title>OnDoc</title>
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css">
</head>
<BODY>
<H1>
OnDoc
</H1>
<p>
<a href="API_NetFramework/index.html">API_NetFramework</a>
<p>
<a href="BarcodeLib/index.html">BarcodeLib</a>
<p>
<a href="CSVNET/index.html">CSVNET</a>
<p>
<a href="Client/index.html">Client</a>
<p>
<a href="Database/index.html">Database</a>
<p>
<a href="DocGen/index.html">DocGen</a>
<p>
<a href="DocIO_Demo_SHU/index.html">DocIO_Demo_SHU</a>
<p>
<a href="ExcelNet/index.html">ExcelNet</a>
<p>
<a href="Excel_Test/index.html">Excel_Test</a>
<p>
<a href="Helper/index.html">Helper</a>
<p>
<a href="ILMocup/index.html">ILMocup</a>
<p>
<a href="Logging/index.html">Logging</a>
<p>
<a href="Model/index.html">Model</a>
<p>
<a href="NativVorlagen/index.html">NativVorlagen</a>
<p>
<a href="OfficePrinter/index.html">OfficePrinter</a>
<p>
<a href="OnDocMessage/index.html">OnDocMessage</a>
<p>
<a href="OnDocOffice/index.html">OnDocOffice</a>
<p>
<a href="OnDocWPF/index.html">OnDocWPF</a>
<p>
<a href="OnDocWeb/index.html">OnDocWeb</a>
<p>
<a href="Tools_StringCipher/index.html">Tools_StringCipher</a>
<p>
<a href="VBFileManagement/index.html">VBFileManagement</a>
</BODY>
</HTML>

@ -2,13 +2,13 @@
<head> <head>
<link rel="icon" href="favicon.ico"> <link rel="icon" href="favicon.ico">
<title>Default page</title> <title>Default page</title>
<META http-equiv="refresh" content="0;URL=topic_00000000000000EA.html"> <META http-equiv="refresh" content="0;URL=topic_00000000000000EC.html">
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css"> <link rel="stylesheet" type="text/css" href="vsdocman_overrides.css">
</head> </head>
<body style="direction: ltr;"> <body style="direction: ltr;">
<center> <center>
<a href="topic_00000000000000EA.html">Go to default page</a> <a href="topic_00000000000000EC.html">Go to default page</a>
</center> </center>
</body> </body>
</html> </html>

@ -1 +1 @@
search_result['349']=["topic_00000000000000A3.html","ApiKeyMiddleware.Authorized Method",""]; search_result['349']=["topic_00000000000000A3.html","ApiKeyMiddleware.get_apikeys Method",""];

@ -1 +1 @@
search_result['355']=["topic_00000000000000A4.html","API_NetFramework.Controllers Namespace",""]; search_result['355']=["topic_00000000000000A4.html","ApiKeyMiddleware.Authorized Method",""];

@ -1 +1 @@
search_result['361']=["topic_00000000000000A5.html","AntwortAdresseController Class",""]; search_result['361']=["topic_00000000000000A5.html","API_NetFramework.Controllers Namespace",""];

@ -1 +1 @@
search_result['367']=["topic_00000000000000A6.html","AntwortAdresseController.GetGetAll Method","GetGetAll liefert alle GAS-Adressen"]; search_result['367']=["topic_00000000000000A6.html","AntwortAdresseController Class",""];

@ -1 +1 @@
search_result['368']=["topic_00000000000000A6_attached_props--.html","DocumentController Attached Properties",""]; search_result['368']=["topic_00000000000000A6_attached_props--.html","AntwortAdresseController Attached Properties",""];

@ -1 +1 @@
search_result['369']=["topic_00000000000000A6_events--.html","DocumentController Events",""]; search_result['369']=["topic_00000000000000A6_events--.html","AntwortAdresseController Events",""];

@ -1 +1 @@
search_result['370']=["topic_00000000000000A6_methods--.html","DocumentController Methods",""]; search_result['370']=["topic_00000000000000A6_methods--.html","AntwortAdresseController Methods",""];

@ -1 +1 @@
search_result['371']=["topic_00000000000000A6_props--.html","DocumentController Properties",""]; search_result['371']=["topic_00000000000000A6_props--.html","AntwortAdresseController Properties",""];

@ -1 +1 @@
search_result['372']=["topic_00000000000000A6_vars--.html","DocumentController Fields",""]; search_result['372']=["topic_00000000000000A6_vars--.html","AntwortAdresseController Fields",""];

@ -1 +1 @@
search_result['373']=["topic_00000000000000A7.html","AntwortAdresseController.GetByID Method",""]; search_result['373']=["topic_00000000000000A7.html","AntwortAdresseController.GetGetAll Method","GetGetAll liefert alle GAS-Adressen"];

@ -1 +1 @@
search_result['379']=["topic_00000000000000A8.html","AntwortAdresseController.GetAllMitarbeiterByTGNummer Method","GetAllMitarbeiterByTGNummer liefert die persönlichen Adressen eines Mitarbeiters"]; search_result['379']=["topic_00000000000000A8.html","AntwortAdresseController.GetByID Method",""];

@ -1 +1 @@
search_result['385']=["topic_00000000000000A9.html","AntwortAdresseController.GetAllMitarbeiterByMitarbeiterNr Method",""]; search_result['385']=["topic_00000000000000A9.html","AntwortAdresseController.GetAllMitarbeiterByTGNummer Method","GetAllMitarbeiterByTGNummer liefert die persönlichen Adressen eines Mitarbeiters"];

@ -1 +1 @@
search_result['386']=["topic_00000000000000AA.html","AntwortAdresseController.GetMitarbeiterByID Method",""]; search_result['386']=["topic_00000000000000AA.html","AntwortAdresseController.GetAllMitarbeiterByMitarbeiterNr Method",""];

@ -1 +1 @@
search_result['387']=["topic_00000000000000AB.html","AntwortAdresseController.GetGASAdressen_Einzeilig Method",""]; search_result['387']=["topic_00000000000000AB.html","AntwortAdresseController.GetMitarbeiterByID Method",""];

@ -1 +1 @@
search_result['393']=["topic_00000000000000AC.html","ILResponse Class",""]; search_result['393']=["topic_00000000000000AC.html","AntwortAdresseController.GetGASAdressen_Einzeilig Method",""];

@ -1 +1 @@
search_result['399']=["topic_00000000000000AD.html","StatusCode Field",""]; search_result['399']=["topic_00000000000000AD.html","ILResponse Class",""];

@ -1 +1 @@
search_result['400']=["topic_00000000000000AD_attached_props--.html","HomeController Attached Properties",""]; search_result['400']=["topic_00000000000000AD_attached_props--.html","ILResponse Attached Properties",""];

@ -1 +1 @@
search_result['401']=["topic_00000000000000AD_events--.html","HomeController Events",""]; search_result['401']=["topic_00000000000000AD_events--.html","ILResponse Events",""];

@ -1 +1 @@
search_result['402']=["topic_00000000000000AD_methods--.html","HomeController Methods",""]; search_result['402']=["topic_00000000000000AD_methods--.html","ILResponse Methods",""];

@ -1 +1 @@
search_result['403']=["topic_00000000000000AD_props--.html","HomeController Properties",""]; search_result['403']=["topic_00000000000000AD_props--.html","ILResponse Properties",""];

@ -1 +1 @@
search_result['404']=["topic_00000000000000AD_vars--.html","HomeController Fields",""]; search_result['404']=["topic_00000000000000AD_vars--.html","ILResponse Fields",""];

@ -1 +1 @@
search_result['405']=["topic_00000000000000AE.html","ILResponse.senderror Property",""]; search_result['405']=["topic_00000000000000AE.html","StatusCode Field",""];

@ -1 +1 @@
search_result['411']=["topic_00000000000000AF.html","ILResponse.response Property",""]; search_result['411']=["topic_00000000000000AF.html","ILResponse.senderror Property",""];

@ -1 +1 @@
search_result['417']=["topic_00000000000000B0.html","uploadtype Enumeration",""]; search_result['417']=["topic_00000000000000B0.html","ILResponse.response Property",""];

@ -1 +1 @@
search_result['423']=["topic_00000000000000B1.html","DocumentController.GenDoc Method",""]; search_result['423']=["topic_00000000000000B1.html","uploadtype Enumeration",""];

@ -1 +1 @@
search_result['442']=["topic_00000000000000B5.html","ArchivController.ArchivDocFromDatabase Method","Archiviert das Dokument aus OnDoc in OnBase"]; search_result['442']=["topic_00000000000000B5.html","ArchivController Class",""];

@ -1 +1 @@
search_result['443']=["topic_00000000000000B6.html","ArchivController.CheckDocID Method","CheckDocID prüft auf eine vorhandene DokumentID in OnDoc (DokumentID OFFEDK... / Barcode-Klenber-Nr)"]; search_result['443']=["topic_00000000000000B5_attached_props--.html","ArchivController Attached Properties",""];

@ -1 +1 @@
search_result['444']=["topic_00000000000000B6_attached_props--.html","Image Attached Properties",""]; search_result['444']=["topic_00000000000000B5_events--.html","ArchivController Events",""];

@ -1 +1 @@
search_result['445']=["topic_00000000000000B6_events--.html","Image Events",""]; search_result['445']=["topic_00000000000000B5_methods--.html","ArchivController Methods",""];

@ -1 +1 @@
search_result['446']=["topic_00000000000000B6_methods--.html","Image Methods",""]; search_result['446']=["topic_00000000000000B5_props--.html","ArchivController Properties",""];

@ -1 +1 @@
search_result['447']=["topic_00000000000000B6_props--.html","Image Properties",""]; search_result['447']=["topic_00000000000000B5_vars--.html","ArchivController Fields",""];

@ -1 +1 @@
search_result['448']=["topic_00000000000000B6_vars--.html","Image Fields",""]; search_result['448']=["topic_00000000000000B6.html","ArchivController.ArchivDocFromDatabase Method","Archiviert das Dokument aus OnDoc in OnBase"];

@ -1 +1 @@
search_result['449']=["topic_00000000000000B7.html","ArchivController.ArchivDocFromIRIS Method",""]; search_result['449']=["topic_00000000000000B6_attached_props--.html","Image Attached Properties",""];

@ -1 +1 @@
search_result['450']=["topic_00000000000000B7_attached_props--.html","Image Attached Properties",""]; search_result['450']=["topic_00000000000000B6_events--.html","Image Events",""];

@ -1 +1 @@
search_result['451']=["topic_00000000000000B7_events--.html","Image Events",""]; search_result['451']=["topic_00000000000000B6_methods--.html","Image Methods",""];

@ -1 +1 @@
search_result['452']=["topic_00000000000000B7_methods--.html","Image Methods",""]; search_result['452']=["topic_00000000000000B6_props--.html","Image Properties",""];

@ -1 +1 @@
search_result['453']=["topic_00000000000000B7_props--.html","Image Properties",""]; search_result['453']=["topic_00000000000000B6_vars--.html","Image Fields",""];

@ -1 +1 @@
search_result['454']=["topic_00000000000000B7_vars--.html","Image Fields",""]; search_result['454']=["topic_00000000000000B7.html","ArchivController.CheckDocID Method","CheckDocID prüft auf eine vorhandene DokumentID in OnDoc (DokumentID OFFEDK... / Barcode-Klenber-Nr)"];

@ -1 +1 @@
search_result['455']=["topic_00000000000000B8.html","ArchivController.ArchivSBDoc Method",""]; search_result['455']=["topic_00000000000000B7_attached_props--.html","Image Attached Properties",""];

@ -1 +1 @@
search_result['456']=["topic_00000000000000B8_attached_props--.html","UnterschriftController Attached Properties",""]; search_result['456']=["topic_00000000000000B7_events--.html","Image Events",""];

@ -1 +1 @@
search_result['457']=["topic_00000000000000B8_events--.html","UnterschriftController Events",""]; search_result['457']=["topic_00000000000000B7_methods--.html","Image Methods",""];

@ -1 +1 @@
search_result['458']=["topic_00000000000000B8_methods--.html","UnterschriftController Methods",""]; search_result['458']=["topic_00000000000000B7_props--.html","Image Properties",""];

@ -1 +1 @@
search_result['459']=["topic_00000000000000B8_props--.html","UnterschriftController Properties",""]; search_result['459']=["topic_00000000000000B7_vars--.html","Image Fields",""];

@ -1 +1 @@
search_result['460']=["topic_00000000000000B8_vars--.html","UnterschriftController Fields",""]; search_result['460']=["topic_00000000000000B8.html","ArchivController.ArchivDocFromIRIS Method",""];

@ -1 +1 @@
search_result['461']=["topic_00000000000000B9.html","ArchivController.Transfer_OnBase Method",""]; search_result['461']=["topic_00000000000000B8_attached_props--.html","UnterschriftController Attached Properties",""];

@ -1 +1 @@
search_result['462']=["topic_00000000000000B9_attached_props--.html","UnterschriftController Attached Properties",""]; search_result['462']=["topic_00000000000000B8_events--.html","UnterschriftController Events",""];

@ -1 +1 @@
search_result['463']=["topic_00000000000000B9_events--.html","UnterschriftController Events",""]; search_result['463']=["topic_00000000000000B8_methods--.html","UnterschriftController Methods",""];

@ -1 +1 @@
search_result['464']=["topic_00000000000000B9_methods--.html","UnterschriftController Methods",""]; search_result['464']=["topic_00000000000000B8_props--.html","UnterschriftController Properties",""];

@ -1 +1 @@
search_result['465']=["topic_00000000000000B9_props--.html","UnterschriftController Properties",""]; search_result['465']=["topic_00000000000000B8_vars--.html","UnterschriftController Fields",""];

@ -1 +1 @@
search_result['466']=["topic_00000000000000B9_vars--.html","UnterschriftController Fields",""]; search_result['466']=["topic_00000000000000B9.html","ArchivController.ArchivSBDoc Method",""];

@ -1 +1 @@
search_result['467']=["topic_00000000000000BA.html","TestParam Class",""]; search_result['467']=["topic_00000000000000B9_attached_props--.html","UnterschriftController Attached Properties",""];

@ -1 +1 @@
search_result['468']=["topic_00000000000000BA_attached_props--.html","TestParam Attached Properties",""]; search_result['468']=["topic_00000000000000B9_events--.html","UnterschriftController Events",""];

@ -1 +1 @@
search_result['469']=["topic_00000000000000BA_events--.html","TestParam Events",""]; search_result['469']=["topic_00000000000000B9_methods--.html","UnterschriftController Methods",""];

@ -1 +1 @@
search_result['470']=["topic_00000000000000BA_methods--.html","TestParam Methods",""]; search_result['470']=["topic_00000000000000B9_props--.html","UnterschriftController Properties",""];

@ -1 +1 @@
search_result['471']=["topic_00000000000000BA_props--.html","TestParam Properties",""]; search_result['471']=["topic_00000000000000B9_vars--.html","UnterschriftController Fields",""];

@ -1 +1 @@
search_result['472']=["topic_00000000000000BA_vars--.html","TestParam Fields",""]; search_result['472']=["topic_00000000000000BA.html","ArchivController.Transfer_OnBase Method",""];

@ -1 +1 @@
search_result['473']=["topic_00000000000000BB.html","TestParam.param1 Property",""]; search_result['473']=["topic_00000000000000BA_attached_props--.html","TestParam Attached Properties",""];

@ -1 +1 @@
search_result['474']=["topic_00000000000000BB_attached_props--.html","FileResult Attached Properties",""]; search_result['474']=["topic_00000000000000BA_events--.html","TestParam Events",""];

@ -1 +1 @@
search_result['475']=["topic_00000000000000BB_events--.html","FileResult Events",""]; search_result['475']=["topic_00000000000000BA_methods--.html","TestParam Methods",""];

@ -1 +1 @@
search_result['476']=["topic_00000000000000BB_methods--.html","FileResult Methods",""]; search_result['476']=["topic_00000000000000BA_props--.html","TestParam Properties",""];

@ -1 +1 @@
search_result['477']=["topic_00000000000000BB_props--.html","FileResult Properties",""]; search_result['477']=["topic_00000000000000BA_vars--.html","TestParam Fields",""];

@ -1 +1 @@
search_result['478']=["topic_00000000000000BB_vars--.html","FileResult Fields",""]; search_result['478']=["topic_00000000000000BB.html","TestParam Class",""];

@ -1 +1 @@
search_result['479']=["topic_00000000000000BC.html","TestParam.param2 Property",""]; search_result['479']=["topic_00000000000000BB_attached_props--.html","TestParam Attached Properties",""];

@ -1 +1 @@
search_result['480']=["topic_00000000000000BC_attached_props--.html","FileResult Attached Properties",""]; search_result['480']=["topic_00000000000000BB_events--.html","TestParam Events",""];

@ -1 +1 @@
search_result['481']=["topic_00000000000000BC_events--.html","FileResult Events",""]; search_result['481']=["topic_00000000000000BB_methods--.html","TestParam Methods",""];

@ -1 +1 @@
search_result['482']=["topic_00000000000000BC_methods--.html","FileResult Methods",""]; search_result['482']=["topic_00000000000000BB_props--.html","TestParam Properties",""];

@ -1 +1 @@
search_result['483']=["topic_00000000000000BC_props--.html","FileResult Properties",""]; search_result['483']=["topic_00000000000000BB_vars--.html","TestParam Fields",""];

@ -1 +1 @@
search_result['484']=["topic_00000000000000BC_vars--.html","FileResult Fields",""]; search_result['484']=["topic_00000000000000BC.html","TestParam.param1 Property",""];

@ -1 +1 @@
search_result['485']=["topic_00000000000000BD.html","DocumentController Class",""]; search_result['485']=["topic_00000000000000BC_attached_props--.html","FileResult Attached Properties",""];

@ -1 +1 @@
search_result['486']=["topic_00000000000000BD_attached_props--.html","DocumentController Attached Properties",""]; search_result['486']=["topic_00000000000000BC_events--.html","FileResult Events",""];

@ -1 +1 @@
search_result['487']=["topic_00000000000000BD_events--.html","DocumentController Events",""]; search_result['487']=["topic_00000000000000BC_methods--.html","FileResult Methods",""];

@ -1 +1 @@
search_result['488']=["topic_00000000000000BD_methods--.html","DocumentController Methods",""]; search_result['488']=["topic_00000000000000BC_props--.html","FileResult Properties",""];

@ -1 +1 @@
search_result['489']=["topic_00000000000000BD_props--.html","DocumentController Properties",""]; search_result['489']=["topic_00000000000000BC_vars--.html","FileResult Fields",""];

@ -1 +1 @@
search_result['490']=["topic_00000000000000BD_vars--.html","DocumentController Fields",""]; search_result['490']=["topic_00000000000000BD.html","TestParam.param2 Property",""];

@ -1 +1 @@
search_result['491']=["topic_00000000000000BE.html","tokenfunction Field",""]; search_result['491']=["topic_00000000000000BD_attached_props--.html","DocumentController Attached Properties",""];

@ -1 +1 @@
search_result['492']=["topic_00000000000000BE_attached_props--.html","FileService Attached Properties",""]; search_result['492']=["topic_00000000000000BD_events--.html","DocumentController Events",""];

@ -1 +1 @@
search_result['493']=["topic_00000000000000BE_events--.html","FileService Events",""]; search_result['493']=["topic_00000000000000BD_methods--.html","DocumentController Methods",""];

@ -1 +1 @@
search_result['494']=["topic_00000000000000BE_methods--.html","FileService Methods",""]; search_result['494']=["topic_00000000000000BD_props--.html","DocumentController Properties",""];

@ -1 +1 @@
search_result['495']=["topic_00000000000000BE_props--.html","FileService Properties",""]; search_result['495']=["topic_00000000000000BD_vars--.html","DocumentController Fields",""];

@ -1 +1 @@
search_result['496']=["topic_00000000000000BE_vars--.html","FileService Fields",""]; search_result['496']=["topic_00000000000000BE.html","DocumentController Class",""];

@ -1 +1 @@
search_result['497']=["topic_00000000000000BF.html","DocumentController.GetDocument Method",""]; search_result['497']=["topic_00000000000000BE_attached_props--.html","DocumentController Attached Properties",""];

@ -1 +1 @@
search_result['498']=["topic_00000000000000BF_attached_props--.html","FileService Attached Properties",""]; search_result['498']=["topic_00000000000000BE_events--.html","DocumentController Events",""];

@ -1 +1 @@
search_result['499']=["topic_00000000000000BF_events--.html","FileService Events",""]; search_result['499']=["topic_00000000000000BE_methods--.html","DocumentController Methods",""];

@ -1 +1 @@
search_result['500']=["topic_00000000000000BF_methods--.html","FileService Methods",""]; search_result['500']=["topic_00000000000000BE_props--.html","DocumentController Properties",""];

@ -1 +1 @@
search_result['501']=["topic_00000000000000BF_props--.html","FileService Properties",""]; search_result['501']=["topic_00000000000000BE_vars--.html","DocumentController Fields",""];

@ -1 +1 @@
search_result['502']=["topic_00000000000000BF_vars--.html","FileService Fields",""]; search_result['502']=["topic_00000000000000BF.html","tokenfunction Field",""];

@ -1 +1 @@
search_result['503']=["topic_00000000000000C0.html","DocumentController.pageCollection Property",""]; search_result['503']=["topic_00000000000000BF_attached_props--.html","FileService Attached Properties",""];

@ -1 +1 @@
search_result['504']=["topic_00000000000000C1.html","DocumentController.GetDocumentJSONBody Method",""]; search_result['504']=["topic_00000000000000BF_events--.html","FileService Events",""];

@ -1 +1 @@
search_result['505']=["topic_00000000000000C1_attached_props--.html","unterschriftResult Attached Properties",""]; search_result['505']=["topic_00000000000000BF_methods--.html","FileService Methods",""];

@ -1 +1 @@
search_result['506']=["topic_00000000000000C1_events--.html","unterschriftResult Events",""]; search_result['506']=["topic_00000000000000BF_props--.html","FileService Properties",""];

@ -1 +1 @@
search_result['507']=["topic_00000000000000C1_methods--.html","unterschriftResult Methods",""]; search_result['507']=["topic_00000000000000BF_vars--.html","FileService Fields",""];

@ -1 +1 @@
search_result['508']=["topic_00000000000000C1_props--.html","unterschriftResult Properties",""]; search_result['508']=["topic_00000000000000C0.html","DocumentController.GetDocument Method",""];

@ -1 +1 @@
search_result['509']=["topic_00000000000000C1_vars--.html","unterschriftResult Fields",""]; search_result['509']=["topic_00000000000000C1.html","DocumentController.pageCollection Property",""];

@ -1 +1 @@
search_result['510']=["topic_00000000000000C2.html","DocumentController.GetDocumentPDF Method",""]; search_result['510']=["topic_00000000000000C1_attached_props--.html","unterschriftResult Attached Properties",""];

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

Loading…
Cancel
Save