Пример #1
0
 /// <summary>
 /// Creates and fill a "Generator" element for OVAL documents
 /// </summary>
 public static GeneratorType GetDefaultGenerator()
 {
     var newGenerator = new GeneratorType();
     newGenerator.timestamp = DateTime.Now;
     newGenerator.product_name = Resources.ProductName ;
     var appAssembly = System.Reflection.Assembly.GetExecutingAssembly().GetName();
     newGenerator.product_version = appAssembly.Version.ToString();
     newGenerator.schema_version = oval_schema_version;
     return newGenerator;
 }
 /// <summary>
 /// Deserializes workflow markup into an GeneratorType object
 /// </summary>
 /// <param name="xml">string workflow markup to deserialize</param>
 /// <param name="obj">Output GeneratorType 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 GeneratorType obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(GeneratorType);
     try
     {
         obj = Deserialize(xml);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
 /// <summary>
 /// Deserializes xml markup from file into an GeneratorType object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output GeneratorType 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 GeneratorType obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(GeneratorType);
     try
     {
         obj = LoadFromFile(fileName);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Пример #4
0
 public OvalVariablesBuilder()
 {
     this.Generator = GetDefaultGenerator();
     this.VariableTypes = new List<VariableType>();
 }
Пример #5
0
 public static bool LoadFromFile(string fileName, out GeneratorType obj)
 {
     System.Exception exception = null;
     return LoadFromFile(fileName, out obj, out exception);
 }
Пример #6
0
 /// <summary>
 /// Deserializes xml markup from file into an GeneratorType object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output GeneratorType 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 GeneratorType obj, out System.Exception exception)
 {
     exception = null;
     obj = default(GeneratorType);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return false;
     }
 }
Пример #7
0
 public static bool Deserialize(string xml, out GeneratorType obj)
 {
     System.Exception exception = null;
     return Deserialize(xml, out obj, out exception);
 }
Пример #8
0
 /// <summary>
 /// Deserializes workflow markup into an GeneratorType object
 /// </summary>
 /// <param name="xml">string workflow markup to deserialize</param>
 /// <param name="obj">Output GeneratorType 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 GeneratorType obj, out System.Exception exception)
 {
     exception = null;
     obj = default(GeneratorType);
     try
     {
         obj = Deserialize(xml);
         return true;
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 /// <summary>
 /// oval_variables class constructor
 /// </summary>
 public oval_variables() {
     this.signatureField = new SignatureType();
     this.variablesField = new List<VariableType>();
     this.generatorField = new GeneratorType();
 }
 public static bool Deserialize(string xml, out GeneratorType obj)
 {
     System.Exception exception = null;
     return(Deserialize(xml, out obj, out exception));
 }
 public static bool LoadFromFile(string fileName, out GeneratorType obj)
 {
     System.Exception exception = null;
     return(LoadFromFile(fileName, out obj, out exception));
 }
Пример #12
0
 public SystemCharacteristicsBuilder WithGenerator(GeneratorType generator)
 {
     systemCharacteristics.generator = generator;
     return this;
 }