mirror of
https://github.com/wagesj45/CapyKit.git
synced 2024-11-14 12:13:36 -06:00
Jordan Wages
87bd044b31
The `SettingsHelper` is an agnostic way to access settings values uniformly through code. The accessor methods are controlled by the consumer. Documentation has been a bit wonky. I changed the max number of version number components allowed, so each new build should not create new changes on every single bit of documentation now.
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.0
|
|
|
|
**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>
|