Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AsyncResult::CompletedSynchronously Property

 

Gets a value indicating whether the BeginInvoke call completed synchronously.

Namespace:   System.Runtime.Remoting.Messaging
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool CompletedSynchronously {
	virtual bool get();
}

Property Value

Type: System::Boolean

true if the BeginInvoke call completed synchronously; otherwise, false.

If it is detected that the BeginInvoke call completed synchronously in the AsyncCallback delegate, it is probable that the thread that called BeginInvoke is the current thread. Most providers of the IAsyncResult interface will not use the capability and will return a default false.

Current implementation of CompletedSynchronously always returns false.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft