Method | Description | |
---|---|---|
Deserialize ( string typeName, string data ) : IJob |
De-serializes an IJob instance from the given type name and serialized data.
|
|
GetTypeName ( |
Gets the given type's name as a string.
|
|
GetTypeName ( object value ) : string |
Gets the given value's type name as a string.
|
|
Serialize ( IJob job ) : string |
Serializes the given IJob for storage.
|
Method | Description | |
---|---|---|
CreateInstance ( |
Creates an IJob instance from the given type.
|
public static Deserialize ( string typeName, string data ) : IJob | ||
typeName | string | The name of the type to create the |
data | string | The serialized job data to de-serialize. |
return | IJob |
public static GetTypeName ( |
||
type | The type to get the name of. | |
return | string |
public static GetTypeName ( object value ) : string | ||
value | object | The value to get the type name of. |
return | string |
public static Serialize ( IJob job ) : string | ||
job | IJob | The |
return | string |