Interface IAzureStorageQueueSerializer
Namespace: AzureFromTheTrenches.Commanding.AzureStorage
Assembly: AzureFromTheTrenches.Commanding.AzureStorage.dll
Syntax
public interface IAzureStorageQueueSerializer
Methods
| Improve this Doc View SourceDeserialize<T>(String)
Deserialize an object from a string
Declaration
T Deserialize<T>(string serializedRepresentation)
Parameters
Type | Name | Description |
---|---|---|
System.String | serializedRepresentation | The serialized representation of the object |
Returns
Type | Description |
---|---|
T | Deserialized object |
Type Parameters
Name | Description |
---|---|
T | The type of the object |
Serialize(Object)
Serialize the given object to a string
Declaration
string Serialize(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object to serialize |
Returns
Type | Description |
---|---|
System.String | A serialized represtentation of the object |