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

Deserialize() public static method

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

Same methods

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