Class ApplicationInfo
Application information.
Inherited Members
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class ApplicationInfo : Info
Methods
DeserializeProperties(String, String)
Deserializes the properties.
Declaration
protected override void DeserializeProperties(string key, string valueJson)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | The key. |
System.String | valueJson | The value in JSON format. |
Overrides
FromJson(String)
Deserializes Json to a ApplicationInfo.
Declaration
public static ApplicationInfo FromJson(string applicationInfoJson)
Parameters
Type | Name | Description |
---|---|---|
System.String | applicationInfoJson | The serialized Json. |
Returns
Type | Description |
---|---|
ApplicationInfo | The deserialized ApplicationInfo. |
SerializeProperties(Dictionary<String, String>)
Serializes the properties.
Declaration
protected override void SerializeProperties(Dictionary<string, string> jsonObject)
Parameters
Type | Name | Description |
---|---|---|
Dictionary<System.String, System.String> | jsonObject | The JSON object. |
Overrides
ToJson()
Serializes this instance to Json.
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String |
ToJson(ApplicationInfo)
Serializes an instance to Json.
Declaration
public static string ToJson(ApplicationInfo application)
Parameters
Type | Name | Description |
---|---|---|
ApplicationInfo | application | The instance to serialize. |
Returns
Type | Description |
---|---|
System.String | Serialized Json. |