Example #1
0
 /// <summary>
 /// Retrieve the output arguments from an asynchronously invoked action.
 /// </summary>
 /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
 /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
 public void EndSetAssociated(IntPtr aAsyncHandle)
 {
     uint code;
     string desc;
     if (Invocation.Error(aAsyncHandle, out code, out desc))
     {
         throw new ProxyError(code, desc);
     }
 }
Example #2
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        public void EndConnectionComplete(IntPtr aAsyncHandle)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        public void EndPushManifest(IntPtr aAsyncHandle)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        public void EndSetUpdateFeedParams(IntPtr aAsyncHandle)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        public void EndUnsubscribe(IntPtr aAsyncHandle)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        public void EndEraseSectors(IntPtr aAsyncHandle)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }
Example #7
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        public void EndReprogramFallback(IntPtr aAsyncHandle)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }
Example #8
0
 /// <summary>
 /// Retrieve the output arguments from an asynchronously invoked action.
 /// </summary>
 /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
 /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
 /// <param name="aPublicKey"></param>
 public void EndGetPublicKey(IntPtr aAsyncHandle, out String aPublicKey)
 {
     uint code;
     string desc;
     if (Invocation.Error(aAsyncHandle, out code, out desc))
     {
         throw new ProxyError(code, desc);
     }
     uint index = 0;
     aPublicKey = Invocation.OutputString(aAsyncHandle, index++);
 }
Example #9
0
 /// <summary>
 /// Retrieve the output arguments from an asynchronously invoked action.
 /// </summary>
 /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
 /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
 /// <param name="aConnected"></param>
 public void EndGetConnected(IntPtr aAsyncHandle, out bool aConnected)
 {
     uint code;
     string desc;
     if (Invocation.Error(aAsyncHandle, out code, out desc))
     {
         throw new ProxyError(code, desc);
     }
     uint index = 0;
     aConnected = Invocation.OutputBool(aAsyncHandle, index++);
 }
Example #10
0
 /// <summary>
 /// Retrieve the output arguments from an asynchronously invoked action.
 /// </summary>
 /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
 /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
 /// <param name="aResponse"></param>
 public void EndGetChallengeResponse(IntPtr aAsyncHandle, out String aResponse)
 {
     uint code;
     string desc;
     if (Invocation.Error(aAsyncHandle, out code, out desc))
     {
         throw new ProxyError(code, desc);
     }
     uint index = 0;
     aResponse = Invocation.OutputString(aAsyncHandle, index++);
 }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aMaxBoards"></param>
        public void EndMaxBoards(IntPtr aAsyncHandle, out uint aMaxBoards)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aMaxBoards = Invocation.OutputUint(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aBoardNumber"></param>
        public void EndBoardType(IntPtr aAsyncHandle, out String aBoardNumber)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aBoardNumber = Invocation.OutputString(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aDeviceId"></param>
        public void EndGetAssociation(IntPtr aAsyncHandle, out String aDeviceId)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aDeviceId = Invocation.OutputString(aAsyncHandle, index++);
        }
Example #14
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aUniqueDeviceName"></param>
        public void EndGetDevice(IntPtr aAsyncHandle, out String aUniqueDeviceName)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aUniqueDeviceName = Invocation.OutputString(aAsyncHandle, index++);
        }
Example #15
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aValue"></param>
        public void EndAudio(IntPtr aAsyncHandle, out bool aValue)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aValue = Invocation.OutputBool(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aInputCount"></param>
        public void EndInputCount(IntPtr aAsyncHandle, out uint aInputCount)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aInputCount = Invocation.OutputUint(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aUpdates"></param>
        public void EndGetPropertyUpdates(IntPtr aAsyncHandle, out String aUpdates)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aUpdates = Invocation.OutputString(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aSequenceNumber"></param>
        public void EndGetSequenceNumber(IntPtr aAsyncHandle, out uint aSequenceNumber)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aSequenceNumber = Invocation.OutputUint(aAsyncHandle, index++);
        }
Example #19
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aValue"></param>
        public void EndPresentationUrl(IntPtr aAsyncHandle, out String aValue)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aValue = Invocation.OutputString(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aParameterXml"></param>
        public void EndParameterXml(IntPtr aAsyncHandle, out String aParameterXml)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aParameterXml = Invocation.OutputString(aAsyncHandle, index++);
        }
Example #21
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aRevision"></param>
        public void EndGetRevision(IntPtr aAsyncHandle, out uint aRevision)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aRevision = Invocation.OutputUint(aAsyncHandle, index++);
        }
Example #22
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aConnectionStatus"></param>
        public void EndConnectionStatus(IntPtr aAsyncHandle, out String aConnectionStatus)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aConnectionStatus = Invocation.OutputString(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aResultStatus"></param>
        public void EndGetStatus(IntPtr aAsyncHandle, out bool aResultStatus)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aResultStatus = Invocation.OutputBool(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aBuffer"></param>
        public void EndRead(IntPtr aAsyncHandle, out byte[] aBuffer)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aBuffer = Invocation.OutputBinary(aAsyncHandle, index++);
        }
Example #25
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aSettings"></param>
        public void EndDeviceSettings(IntPtr aAsyncHandle, out String aSettings)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aSettings = Invocation.OutputString(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aMacAddress"></param>
        public void EndMacAddress(IntPtr aAsyncHandle, out String aMacAddress)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aMacAddress = Invocation.OutputString(aAsyncHandle, index++);
        }
Example #27
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aVersion"></param>
        public void EndVersion(IntPtr aAsyncHandle, out String aVersion)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aVersion = Invocation.OutputString(aAsyncHandle, index++);
        }
Example #28
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aAudioChannels"></param>
        public void EndAudioChannels(IntPtr aAsyncHandle, out String aAudioChannels)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aAudioChannels = Invocation.OutputString(aAsyncHandle, index++);
        }
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aMin"></param>
        public void EndDelayMinimum(IntPtr aAsyncHandle, out uint aMin)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aMin = Invocation.OutputUint(aAsyncHandle, index++);
        }
Example #30
0
        /// <summary>
        /// Retrieve the output arguments from an asynchronously invoked action.
        /// </summary>
        /// <remarks>This may only be called from the callback set in the above Begin function.</remarks>
        /// <param name="aAsyncHandle">Argument passed to the delegate set in the above Begin function</param>
        /// <param name="aUri"></param>
        /// <param name="aMetadata"></param>
        public void EndTrack(IntPtr aAsyncHandle, out String aUri, out String aMetadata)
        {
            uint   code;
            string desc;

            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;

            aUri      = Invocation.OutputString(aAsyncHandle, index++);
            aMetadata = Invocation.OutputString(aAsyncHandle, index++);
        }