Esempio n. 1
0
 public static OfpActionType Parse(this BeBinaryReader br, out OfpActionType b)
 {
     b = (OfpActionType)br.ReadUInt16();
     return(b);
 }
Esempio n. 2
0
 /// <summary>
 /// OfpActionType as ushort
 /// </summary>
 /// <param name="type"></param>
 public void Write(OfpActionType type)
 {
     bw.Write((ushort)type);
 }