ATMLModelLibrary.model.signal.RADAR_TX_SIGNAL.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

RADAR_TX_SIGNAL::Deserialize ( System s ) : RADAR_TX_SIGNAL
RADAR_TX_SIGNAL::Deserialize ( string input ) : RADAR_TX_SIGNAL
RADAR_TX_SIGNAL::Deserialize ( string input, RADAR_TX_SIGNAL &obj ) : bool