public static bool LoadFromFile(string fileName, out Markup obj) { System.Exception exception = null; return LoadFromFile(fileName, out obj, out exception); }
private void Markup_Save_Click(object sender, RoutedEventArgs e) { var m = new Markup(); m.Topic = new Topic(); m.Topic.Guid = "fdb92063-a353-4882-a4a9-b333fe0b2985"; m.Topic.ReferenceLink = "referecne 1"; m.Topic.Title = "topic1"; m.SaveToFile(Filename(@"markup.generated.bcf")); }
/// <summary> /// Deserializes xml markup from file into an Markup object /// </summary> /// <param name="fileName">string xml file to load and deserialize</param> /// <param name="obj">Output Markup object</param> /// <param name="exception">output Exception value if deserialize failed</param> /// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns> public static bool LoadFromFile(string fileName, out Markup obj, out System.Exception exception) { exception = null; obj = default(Markup); try { obj = LoadFromFile(fileName); return true; } catch (System.Exception ex) { exception = ex; return false; } }
public static bool Deserialize(string xml, out Markup obj) { System.Exception exception = null; return Deserialize(xml, out obj, out exception); }
/// <summary> /// Deserializes workflow markup into an Markup object /// </summary> /// <param name="xml">string workflow markup to deserialize</param> /// <param name="obj">Output Markup object</param> /// <param name="exception">output Exception value if deserialize failed</param> /// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns> public static bool Deserialize(string xml, out Markup obj, out System.Exception exception) { exception = null; obj = default(Markup); try { obj = Deserialize(xml); return true; } catch (System.Exception ex) { exception = ex; return false; } }
public BcfInstance(string guid) { Markup = new Markup(); Markup.Topic.Guid = guid; }
public BcfInstance() { Markup = new Markup(); Markup.Topic.Guid = Guid; }