private string assembleReasonListString(reason _reason) { string tempString = ""; if (_reason.reasonlevel1 != null) { tempString = _reason.reasonlevel1; } if (_reason.reasonlevel2 != null) { tempString = tempString + " \\ " + _reason.reasonlevel2; } if (_reason.reasonlevel3 != null) { tempString = tempString + " \\ " + _reason.reasonlevel3; } if (_reason.reasonlevel4 != null) { tempString = tempString + " \\ " + _reason.reasonlevel4; } return tempString; }
public static bool LoadFromFile(string fileName, out reason obj) { System.Exception exception = null; return LoadFromFile(fileName, out obj, out exception); }
/// <summary> /// Deserializes xml markup from file into an reason object /// </summary> /// <param name="fileName">string xml file to load and deserialize</param> /// <param name="obj">Output reason 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 reason obj, out System.Exception exception) { exception = null; obj = default(reason); try { obj = LoadFromFile(fileName); return true; } catch (System.Exception ex) { exception = ex; return false; } }
public static bool Deserialize(string input, out reason obj) { System.Exception exception = null; return Deserialize(input, out obj, out exception); }
/// <summary> /// Deserializes workflow markup into an reason object /// </summary> /// <param name="input">string workflow markup to deserialize</param> /// <param name="obj">Output reason 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 reason obj, out System.Exception exception) { exception = null; obj = default(reason); try { obj = Deserialize(input); return true; } catch (System.Exception ex) { exception = ex; return false; } }
public condition() { this._reason = new reason(); this._logic = new List<logic>(); this._localreasonoffset = ((uint)(0)); this._rootreasoncleardelay = ((uint)(0)); }