/// <summary> /// Deserializes workflow markup into an SoftwareUUT object /// </summary> /// <param name="input">string workflow markup to deserialize</param> /// <param name="obj">Output SoftwareUUT 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 SoftwareUUT obj, out System.Exception exception) { exception = null; obj = default(SoftwareUUT); try { obj = Deserialize(input); return(true); } catch (System.Exception ex) { exception = ex; return(false); } }
/// <summary> /// Deserializes xml markup from file into an SoftwareUUT object /// </summary> /// <param name="fileName">string xml file to load and deserialize</param> /// <param name="obj">Output SoftwareUUT 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 SoftwareUUT obj, out System.Exception exception) { exception = null; obj = default(SoftwareUUT); try { obj = LoadFromFile(fileName); return(true); } catch (System.Exception ex) { exception = ex; return(false); } }
protected override void ControlsToData() { if (itemDescription == null) itemDescription = new SoftwareUUT(); base.ControlsToData(); var softwareUUT = itemDescription as SoftwareUUT; if (softwareUUT != null) { List<object> warnings = new List<object>(); if (documentListControl.Items.Count > 0 ) warnings.AddRange(documentListControl.Harvest<Document>()); if (warningTextList.RowCount > 0 ) warnings.AddRange(warningTextList.GetColumnValues(0)); softwareUUT.Warnings = warnings.Count > 0 ? warnings : null; softwareUUT.StatusCodes = statusCodeListControl.Harvest<SoftwareUUTStatusCode>(); } }
public static bool Deserialize(string input, out SoftwareUUT obj) { System.Exception exception; return Deserialize(input, out obj, out exception); }
/// <summary> /// Deserializes workflow markup into an SoftwareUUT object /// </summary> /// <param name="input">string workflow markup to deserialize</param> /// <param name="obj">Output SoftwareUUT 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 SoftwareUUT obj, out System.Exception exception) { exception = null; obj = default(SoftwareUUT); try { obj = Deserialize(input); return true; } catch (System.Exception ex) { exception = ex; return false; } }
public static bool LoadFromFile(string fileName, out SoftwareUUT obj) { System.Exception exception; return LoadFromFile(fileName, out obj, out exception); }
/// <summary> /// Deserializes xml markup from file into an SoftwareUUT object /// </summary> /// <param name="fileName">string xml file to load and deserialize</param> /// <param name="obj">Output SoftwareUUT 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 SoftwareUUT obj, out System.Exception exception) { exception = null; obj = default(SoftwareUUT); try { obj = LoadFromFile(fileName); return true; } catch (System.Exception ex) { exception = ex; return false; } }
public static bool Deserialize(string input, out SoftwareUUT obj) { System.Exception exception; return(Deserialize(input, out obj, out exception)); }
public static bool LoadFromFile(string fileName, out SoftwareUUT obj) { System.Exception exception; return(LoadFromFile(fileName, out obj, out exception)); }