OpenHome.Net.ControlPoint.Invocation.Handle C# (CSharp) Method

Handle() private method

private Handle ( ) : IntPtr
return System.IntPtr
        internal IntPtr Handle()
        {
            return iHandle;
        }

Usage Example

Exemplo n.º 1
0
        internal void InvocationComplete(Invocation aInvocation)
        {
            IntPtr handle = aInvocation.Handle();

            lock (this)
            {
                for (int i = 0; i < iActiveInvocations.Count; i++)
                {
                    if (iActiveInvocations[i].Handle() == handle)
                    {
                        iActiveInvocations.RemoveAt(i);
                        break;
                    }
                }
            }
        }
All Usage Examples Of OpenHome.Net.ControlPoint.Invocation::Handle