XmlResolver.GetEntityAsync(Uri, String, Type) Method

Definition

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

public virtual System.Threading.Tasks.Task<object> GetEntityAsync (Uri absoluteUri, string? role, Type? ofObjectToReturn);
public virtual System.Threading.Tasks.Task<object> GetEntityAsync (Uri absoluteUri, string role, Type ofObjectToReturn);

Parameters

absoluteUri
Uri

The URI returned from ResolveUri(Uri, String).

role
String

Currently not used.

ofObjectToReturn
Type

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

Returns

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

Remarks

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

This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as ArgumentException, are still thrown synchronously. For the stored exceptions, see the exceptions thrown by GetEntity(Uri, String, Type).

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also