Beispiel #1
0
 /// <summary>
 ///
 /// </summary>
 public static bool TryParse(byte[] value, out AuthorisationResponseCode item)
 {
     try
     {
         item = new AuthorisationResponseCode(value);
         return(true);
     }
     catch (Exception)
     {
         item = null;
         return(false);
     }
 }
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="item"></param>
 public virtual void Visit(AuthorisationResponseCode item)
 {
 }