EndStatus() 공개 메소드

Retrieve the output arguments from an asynchronously invoked action.
This may only be called from the callback set in the above Begin function.
public EndStatus ( IntPtr aAsyncHandle, String &aValue ) : void
aAsyncHandle System.IntPtr Argument passed to the delegate set in the above Begin function
aValue String
리턴 void
예제 #1
0
 protected override void CompleteRequest(IntPtr aAsyncHandle)
 {
     iService.EndStatus(aAsyncHandle, out iValue);
 }