public setting() { _numbers = new List<number>(); _ieee_1641 = new ieee_1641(); _atlas = new atlas(); }
public noun_modifier() { _items = new List<object>(); _ieee_1641 = new ieee_1641(); _atlas = new atlas(); }
public function() { _ieee_1641 = new ieee_1641(); _atlas = new atlas(); }
public range() { _to = new to(); _from = new from(); _ieee_1641 = new ieee_1641(); _atlas = new atlas(); }
public modifier_function() { _ieee_1641 = new ieee_1641(); _atlas = new atlas(); }
public static bool LoadFromFile(string fileName, out atlas obj) { Exception exception; return LoadFromFile(fileName, out obj, out exception); }
/// <summary> /// Deserializes xml markup from file into an atlas object /// </summary> /// <param name="fileName">string xml file to load and deserialize</param> /// <param name="obj">Output atlas object</param> /// <param name="exception">output Exception value if deserialize failed</param> /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns> public static bool LoadFromFile(string fileName, out atlas obj, out Exception exception) { exception = null; obj = default(atlas); try { obj = LoadFromFile(fileName); return true; } catch (Exception ex) { exception = ex; return false; } }
public static bool Deserialize(string input, out atlas obj) { Exception exception; return Deserialize(input, out obj, out exception); }
/// <summary> /// Deserializes workflow markup into an atlas object /// </summary> /// <param name="input">string workflow markup to deserialize</param> /// <param name="obj">Output atlas object</param> /// <param name="exception">output Exception value if deserialize failed</param> /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns> public static bool Deserialize(string input, out atlas obj, out Exception exception) { exception = null; obj = default(atlas); try { obj = Deserialize(input); return true; } catch (Exception ex) { exception = ex; return false; } }
public require_type() { _ieee_1641 = new ieee_1641(); _atlas = new atlas(); }