CapyKit/Documentation/Help/T_CapyKit_Helpers_SerializationHelper.md
Jordan Wages 735d7c4c91 Documentation + Unfinished SecurityHelper
Committing the unfinished changes to the SecurityHelper as I flesh it out during the migration. Also starting a documentation folder powered by Sandcastle.
2024-04-19 23:12:24 -05:00

60 lines
1.7 KiB
Markdown

# SerializationHelper Class
\[Missing <summary> documentation for "T:CapyKit.Helpers.SerializationHelper"\]
## Definition
**Namespace:** <a href="N_CapyKit_Helpers">CapyKit.Helpers</a>
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+6cdd805be49c3b769a116584ea6904955ecd820d
**C#**
``` C#
public static class SerializationHelper
```
**VB**
``` VB
Public NotInheritable Class SerializationHelper
```
**C++**
``` C++
public ref class SerializationHelper abstract sealed
```
**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">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">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">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">SerializeToBytes</a></td>
<td>Serializes an object to a byte array.</td></tr>
<tr>
<td><a href="M_CapyKit_Helpers_SerializationHelper_SerializeToString">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">CapyKit.Helpers Namespace</a>