TersoSolutions.Jetstream.SDK.Application.Model.Deserialized.GetDeviceStatusResponse.Jetstream.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

Deserializes workflow markup into an Jetstream object
public static Deserialize ( string xml, Jetstream &obj, System &exception ) : bool
xml string string workflow markup to deserialize
obj Jetstream Output Jetstream object
exception System output Exception value if deserialize failed
Результат bool
        public static bool Deserialize(string xml, out Jetstream obj, out System.Exception exception)
        {
            exception = null;
            obj = default(Jetstream);
            try
            {
                obj = Deserialize(xml);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

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