mirror of
https://github.com/wagesj45/CapyKit.git
synced 2024-11-13 19:53:36 -06:00
51 lines
1.6 KiB
Markdown
51 lines
1.6 KiB
Markdown
# SerializationHelper Class
|
|
|
|
|
|
\[Missing <summary> documentation for "T:CapyKit.Helpers.SerializationHelper"\]
|
|
|
|
|
|
|
|
## Definition
|
|
**Namespace:** <a href="N_CapyKit_Helpers.md">CapyKit.Helpers</a>
|
|
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.2
|
|
|
|
**C#**
|
|
``` C#
|
|
public static class SerializationHelper
|
|
```
|
|
**F#**
|
|
``` F#
|
|
[<AbstractClassAttribute>]
|
|
[<SealedAttribute>]
|
|
type SerializationHelper = class end
|
|
```
|
|
|
|
<table><tr><td><strong>Inheritance</strong></td><td><a href="https://learn.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">Object</a> → SerializationHelper</td></tr>
|
|
</table>
|
|
|
|
|
|
|
|
## Methods
|
|
<table>
|
|
<tr>
|
|
<td><a href="M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md">Deserialize(T)(Byte[])</a></td>
|
|
<td>Deserializes an object to a given <em>T</em> type.</td></tr>
|
|
<tr>
|
|
<td><a href="M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md">Deserialize(T)(Stream)</a></td>
|
|
<td>Deserializes an object to a given <em>T</em> type.</td></tr>
|
|
<tr>
|
|
<td><a href="M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md">Deserialize(T)(String)</a></td>
|
|
<td>Deserializes a <code>JSON</code> encoded string to the given <em>T</em>.</td></tr>
|
|
<tr>
|
|
<td><a href="M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md">SerializeToBytes</a></td>
|
|
<td>Serializes an object to a byte array.</td></tr>
|
|
<tr>
|
|
<td><a href="M_CapyKit_Helpers_SerializationHelper_SerializeToString.md">SerializeToString</a></td>
|
|
<td>Serializes an object to a <code>JSON</code> encoded string.</td></tr>
|
|
</table>
|
|
|
|
## See Also
|
|
|
|
|
|
#### Reference
|
|
<a href="N_CapyKit_Helpers.md">CapyKit.Helpers Namespace</a>
|