/// <summary>
 ///     Creates a new instance of the InternetControlMessage class with the specified known ICM type and type code
 /// </summary>
 /// <param name="type">ICM type to create the instance from</param>
 /// <param name="code">ICM type code to create the instance from</param>
 public InternetControlMessage(InternetControlMessageKnownTypes type, byte code) : this((byte)type, code)
 {
 }
 /// <summary>
 ///     Creates a new instance of the InternetControlMessage class with the specified known ICM type
 /// </summary>
 /// <param name="type">ICM type to create the instance from</param>
 public FirewallWASInternetControlMessage(InternetControlMessageKnownTypes type) : this((byte)type)
 {
 }