Ejemplo n.º 1
0
        internal AirPcapKey(AirPcapUnmanagedStructures.AirpcapKey key)
        {
            Type = key.KeyType;

            Data = new byte[key.KeyData.Length];
            Array.Copy(key.KeyData, Data, Data.Length);
        }
Ejemplo n.º 2
0
        internal AirPcapKey(AirPcapUnmanagedStructures.AirpcapKey key)
        {
            Type = key.KeyType;

            Data = new byte[key.KeyData.Length];
            Array.Copy(key.KeyData, Data, Data.Length);
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="Type"></param>
 /// <param name="Data"></param>
 public AirPcapKey(AirPcapKeyType Type, byte[] Data)
 {
     this.Type = Type;
     this.Data = Data;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="Type"></param>
 /// <param name="Data"></param>
 public AirPcapKey(AirPcapKeyType Type, byte[] Data)
 {
     this.Type = Type;
     this.Data = Data;
 }