コード例 #1
0
 public static bool LoadFromFile(string fileName, out IdentificationNumber obj)
 {
     System.Exception exception;
     return LoadFromFile(fileName, out obj, out exception);
 }
コード例 #2
0
 /// <summary>
 /// Deserializes xml markup from file into an IdentificationNumber object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output IdentificationNumber 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 IdentificationNumber obj, out System.Exception exception)
 {
     exception = null;
     obj = default(IdentificationNumber);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return false;
     }
 }
コード例 #3
0
 public static bool Deserialize(string input, out IdentificationNumber obj)
 {
     System.Exception exception;
     return Deserialize(input, out obj, out exception);
 }
コード例 #4
0
 /// <summary>
 /// Deserializes workflow markup into an IdentificationNumber object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output IdentificationNumber 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 IdentificationNumber obj, out System.Exception exception)
 {
     exception = null;
     obj = default(IdentificationNumber);
     try
     {
         obj = Deserialize(input);
         return true;
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return false;
     }
 }
コード例 #5
0
 private void rbUserId_CheckedChanged(object sender, EventArgs e)
 {
     if (!(identificationNumber is UserDefinedIdentificationNumber))
         identificationNumber = new UserDefinedIdentificationNumber();
     SetControlStates();
 }
コード例 #6
0
 private void rbManufacturerId_CheckedChanged(object sender, EventArgs e)
 {
     if (!(identificationNumber is ManufacturerIdentificationNumber))
         identificationNumber = new ManufacturerIdentificationNumber();
     SetControlStates();
 }