Exemplo n.º 1
0
		public static bool HasAnyFlag(this SocketColor flags, SocketColor otherFlags)
		{
			return (flags & otherFlags) != 0;
		}
Exemplo n.º 2
0
 public static bool HasAnyFlag(this SocketColor flags, SocketColor otherFlags)
 {
     return((flags & otherFlags) != SocketColor.None);
 }
Exemplo n.º 3
0
 public Socket(SocketColor color)
 {
     Color = color;
 }
Exemplo n.º 4
0
 /// <inheritdoc />
 public SocketEntry(SocketColor color, uint socketContent)
 {
     Color         = color;
     SocketContent = socketContent;
 }