TersoSolutions.Jetstream.SDK.Application.Model.Deserialized.GetEventsResponse.GetEventsResponse.Deserialize C# (CSharp) Method

Deserialize() public static method

Deserializes workflow markup into an JetstreamGetEventsResponseDeviceDefinitionCommandList object
public static Deserialize ( string xml, GetEventsResponse &obj, System &exception ) : bool
xml string string workflow markup to deserialize
obj GetEventsResponse Output JetstreamGetEventsResponseDeviceDefinitionCommandList object
exception System output Exception value if deserialize failed
return bool
        public static bool Deserialize(string xml, out GetEventsResponse obj, out System.Exception exception)
        {
            exception = null;
            obj = default(GetEventsResponse);
            try
            {
                obj = Deserialize(xml);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

GetEventsResponse::Deserialize ( string xml ) : GetEventsResponse
GetEventsResponse::Deserialize ( string xml, GetEventsResponse &obj ) : bool