Esempio n. 1
0
        public override int GetHashCode()
        {
            int hash = 1;

            hash ^= ServerServiceName.GetHashCode();
            hash ^= ClientServiceName.GetHashCode();
            return(hash);
        }
Esempio n. 2
0
        public override int GetHashCode()
        {
            int hash = 1;

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