Handle() private method

private Handle ( ) : IntPtr
return System.IntPtr
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;
                    }
                }
            }
        }
Exemplo n.º 2
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;
             }
         }
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// Invoke an action
 /// </summary>
 /// <param name="aInvocation">Invocation object, with all input and output arguments added</param>
 public void InvokeAction(Invocation aInvocation)
 {
     CpServiceInvokeAction(iHandle, aInvocation.Handle());
 }
Exemplo n.º 4
0
 /// <summary>
 /// Invoke an action
 /// </summary>
 /// <param name="aInvocation">Invocation object, with all input and output arguments added</param>
 public void InvokeAction(Invocation aInvocation)
 {
     CpServiceInvokeAction(iHandle, aInvocation.Handle());
 }