Example #1
0
			/// <summary>returns the json from the instance</summary>
			public static string ToJson(CsClientIdentification identification)
			{
				return JsonConvert.SerializeObject(identification, Formatting.None, JsonSerializerSettings);
			}
Example #2
0
			/// <summary>returns the encoded json from the instance</summary>
			public static string ToEncodedJson(CsClientIdentification identification)
			{
				return Encode(ToJson(identification));
			}