Class ApplicationInfo
Application information.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
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. |
key | The key. |
System. |
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. |
applicationInfoJson | The serialized Json. |
Returns
Type | Description |
---|---|
Application |
The deserialized ApplicationInfo. |
SerializeProperties(Dictionary<String, String>)
Serializes the properties.
Declaration
protected override void SerializeProperties(Dictionary<string, string> jsonObject)
Parameters
Type | Name | Description |
---|---|---|
System. |
jsonObject | The JSON object. |
Overrides
ToJson()
Serializes this instance to Json.
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System. |
ToJson(ApplicationInfo)
Serializes an instance to Json.
Declaration
public static string ToJson(ApplicationInfo application)
Parameters
Type | Name | Description |
---|---|---|
Application |
application | The instance to serialize. |
Returns
Type | Description |
---|---|
System. |
Serialized Json. |