XmlResolver::GetEntityAsync Method (Uri^, String^, Type^)

.NET Framework (current version)
 

Asynchronously maps a URI to an object that contains the actual resource.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
virtual Task<Object^>^ GetEntityAsync(
	Uri^ absoluteUri,
	String^ role,
	Type^ ofObjectToReturn
)

Parameters

absoluteUri
Type: System::Uri^

The URI returned from ResolveUri.

role
Type: System::String^

Currently not used.

ofObjectToReturn
Type: System::Type^

The type of object to return. The current version only returns Stream objects.

Return Value

Type: System.Threading.Tasks::Task<Object^>^

A stream object or null if a type other than stream is specified.

This is the asynchronous version of GetEntity, with the same functionality. To use this method, you must set the Async flag to true.

.NET Framework
Available since 4.5
Return to top
Show: