Пример #1
0
        private void TestUser()
        {
            int hr;
            int i;

            hr = m_pVideoGroupObj.SetUserID(1234);
            DESError.ThrowExceptionForHR(hr);

            hr = m_pVideoGroupObj.GetUserID(out i);
            DESError.ThrowExceptionForHR(hr);

            Debug.Assert(i == 1234, "UserID");
        }