public override int GetHashCode() { int hash = 1; hash ^= ServerServiceName.GetHashCode(); hash ^= ClientServiceName.GetHashCode(); return(hash); }
public override int GetHashCode() { int hash = 1; if (ServerServiceName.Length != 0) { hash ^= ServerServiceName.GetHashCode(); } if (ClientServiceName.Length != 0) { hash ^= ClientServiceName.GetHashCode(); } return(hash); }
public static int CallServerService(IntPtr nativeWinVideo, ServerServiceName serviceName) { return(callServices(nativeWinVideo, (int)serviceName)); }
public static int CallServerService(ServerServiceName serviceName) { return(callServices((int)serviceName)); }