XmlResolver.GetEntityAsync(Uri, String, Type) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Mapeia de forma assíncrona um URI para um objeto que contém o recurso real.
public:
virtual System::Threading::Tasks::Task<System::Object ^> ^ GetEntityAsync(Uri ^ absoluteUri, System::String ^ role, Type ^ ofObjectToReturn);
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);
abstract member GetEntityAsync : Uri * string * Type -> System.Threading.Tasks.Task<obj>
override this.GetEntityAsync : Uri * string * Type -> System.Threading.Tasks.Task<obj>
Public Overridable Function GetEntityAsync (absoluteUri As Uri, role As String, ofObjectToReturn As Type) As Task(Of Object)
Parâmetros
- absoluteUri
- Uri
O URI retornado de ResolveUri(Uri, String).
- role
- String
Não usado no momento.
- ofObjectToReturn
- Type
O tipo de objeto a ser retornado. A versão atual retorna somente objetos Stream.
Retornos
Um objeto de fluxo ou null
se for especificado um tipo diferente de fluxo.
Comentários
Essa é a versão assíncrona de GetEntity, com a mesma funcionalidade. Para usar esse método, você deve definir o Async sinalizador como true
.