Update 20240807 - nach NUGET-Update Syncfusion
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com" />
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<title>ObjectGenerator Methods</title>
|
||||
<title>ModelDescriptionGenerator Methods</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="msdn2019/toc.css" />
|
||||
<script src="msdn2019/toc.js"></script>
|
||||
@@ -75,11 +75,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
|
||||
</div>
|
||||
|
||||
<div id="mainBody">
|
||||
<h1 class="title">ObjectGenerator Methods</h1>
|
||||
<h1 class="title">ModelDescriptionGenerator Methods</h1>
|
||||
<p />
|
||||
<p>
|
||||
The following tables list the members exposed by the
|
||||
<a href="topic_0000000000000374.html">ObjectGenerator</a>
|
||||
<a href="topic_0000000000000374.html">ModelDescriptionGenerator</a>
|
||||
type.
|
||||
</p>
|
||||
|
||||
@@ -109,7 +109,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
|
||||
|
||||
|
||||
<tr class="
|
||||
inheritedMember
|
||||
|
||||
|
||||
">
|
||||
@@ -120,206 +119,12 @@ inheritedMember
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object.equals">Equals(Object)</a>
|
||||
<a href="topic_0000000000000377.html">GetOrCreateModelDescription(Type)</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist.
|
||||
(inherited from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<tr class="
|
||||
inheritedMember
|
||||
|
||||
|
||||
">
|
||||
<td>
|
||||
<img alt="Protected method" title="Protected method" src="msdn2019/protmethod.png"></img>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object.finalize">Finalize</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird.
|
||||
(inherited from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<tr class="
|
||||
|
||||
|
||||
">
|
||||
<td>
|
||||
<img alt="Public method" title="Public method" src="msdn2019/pubmethod.png"></img>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a href="topic_0000000000000375.html">GenerateObject(Type)</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Generates an object for a given type. The type needs to be public, have a public default constructor and settable public properties/fields. Currently it supports the following types:
|
||||
Simple types: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">string</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.enum">Enum</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.uri">Uri</a>, etc.
|
||||
Complex types: POCO types.
|
||||
Nullables: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.nullable-1">Nullable<T></a>.
|
||||
Arrays: arrays of simple types or complex types.
|
||||
Key value pairs: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.keyvaluepair-2">KeyValuePair<TKey,TValue></a>
|
||||
Tuples: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.tuple-1">Tuple<T1></a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.tuple-2">Tuple<T1,T2></a>, etc
|
||||
Dictionaries: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.idictionary-2">IDictionary<TKey,TValue></a> or anything deriving from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.idictionary-2">IDictionary<TKey,TValue></a>.
|
||||
Collections: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.ilist-1">IList<T></a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable<T></a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.icollection-1">ICollection<T></a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.ilist">IList</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.ienumerable">IEnumerable</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.icollection">ICollection</a> or anything deriving from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.icollection-1">ICollection<T></a> or <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.collections.ilist">IList</a>.
|
||||
Queryables: <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.linq.iqueryable">IQueryable</a>, <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.linq.iqueryable-1">IQueryable<T></a>.
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<tr class="
|
||||
inheritedMember
|
||||
|
||||
|
||||
">
|
||||
<td>
|
||||
<img alt="Public method" title="Public method" src="msdn2019/pubmethod.png"></img>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object.gethashcode">GetHashCode</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Fungiert als die Standardhashfunktion.
|
||||
(inherited from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<tr class="
|
||||
inheritedMember
|
||||
|
||||
|
||||
">
|
||||
<td>
|
||||
<img alt="Public method" title="Public method" src="msdn2019/pubmethod.png"></img>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object.gettype">GetType</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Ruft den <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.type">Type</a> der aktuellen Instanz ab.
|
||||
(inherited from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<tr class="
|
||||
inheritedMember
|
||||
|
||||
|
||||
">
|
||||
<td>
|
||||
<img alt="Protected method" title="Protected method" src="msdn2019/protmethod.png"></img>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object.memberwiseclone">MemberwiseClone</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Erstellt eine flache Kopie des aktuellen <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>.
|
||||
(inherited from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<tr class="
|
||||
inheritedMember
|
||||
|
||||
|
||||
">
|
||||
<td>
|
||||
<img alt="Public method" title="Public method" src="msdn2019/pubmethod.png"></img>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object.tostring">ToString</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt.
|
||||
(inherited from <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.object">Object</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@@ -348,12 +153,6 @@ Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="section_container">
|
||||
<div class="section_heading">
|
||||
<span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">Extension Methods</a></span>
|
||||
@@ -384,13 +183,13 @@ inheritedMember
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<a href="topic_00000000000002DF.html">NameOf(this object)</a>
|
||||
<a href="topic_0000000000000324.html">NameOf(this object)</a>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
|
||||
(Defined by <a target="_top" href="topic_00000000000002DD.html" onclick="this.target='';return true;">NLogHelper</a>).
|
||||
(Defined by <a target="_top" href="topic_0000000000000322.html" onclick="this.target='';return true;">NLogHelper</a>).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@@ -415,8 +214,8 @@ inheritedMember
|
||||
|
||||
<div id="seeAlsoSection" class="section">
|
||||
<div>
|
||||
<a href="topic_0000000000000374.html">ObjectGenerator Class</a><br />
|
||||
<a href="topic_00000000000002F6.html">EDOKAAPI_NetFramework.Areas.HelpPage Namespace</a><br />
|
||||
<a href="topic_0000000000000374.html">ModelDescriptionGenerator Class</a><br />
|
||||
<a href="topic_000000000000035C.html">API_NetFramework.Areas.HelpPage.ModelDescriptions Namespace</a><br />
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user