Compartir a través de


DataServiceContext.TryGetUri Método

Recupera el URI canónico asociado a la entidad especificada, si está disponible.

Espacio de nombres:  System.Data.Services.Client
Ensamblado:  Microsoft.Data.Services.Client (en Microsoft.Data.Services.Client.dll)

Sintaxis

'Declaración
Public Function TryGetUri ( _
    entity As Object, _
    <OutAttribute> ByRef identity As Uri _
) As Boolean
'Uso
Dim instance As DataServiceContext
Dim entity As Object
Dim identity As Uri
Dim returnValue As Boolean

returnValue = instance.TryGetUri(entity, _
    identity)
public bool TryGetUri(
    Object entity,
    out Uri identity
)
public:
bool TryGetUri(
    Object^ entity, 
    [OutAttribute] Uri^% identity
)
member TryGetUri : 
        entity:Object * 
        identity:Uri byref -> bool 
public function TryGetUri(
    entity : Object, 
    identity : Uri
) : boolean

Parámetros

Valor devuelto

Tipo: System.Boolean
Devuelve true si el URI canónico se devuelve en el parámetro out.Si DataServiceContext no realiza un seguimiento de la entidad especificada o si esta está en el estado agregado, no hay disponible ningún URI y se devuelve false.

Excepciones

Excepción Condición
ArgumentNullException

Cuando entity es nulles una referencia NULL (Nothing en Visual Basic)..

Comentarios

Los objetos que se encuentran en el estado Added aún no tienen un URI.

Vea también

Referencia

DataServiceContext Clase

Espacio de nombres System.Data.Services.Client