Compartir a través de


del método ServerStub.GetExpandoFieldValue

Obtener el valor del campo expandido.

La generación de código usa ClientCallableTypeAttribute(GetExpandoFieldValueMethodName = "PropName") para generar el código para devolver el valor del campo expandido. Por ejemplo, para la clase SPListItem , tenemos GetExpandoFieldValueMethodName = "GetFieldValue" la generación de código generará código como: SPListItem value = obj as SPListItem; if (value != null) { return value.GetFieldValue(fieldName); } return null;

Espacio de nombres:  Microsoft.SharePoint.Client
Ensamblado:  Microsoft.SharePoint.Client.ServerRuntime (en Microsoft.SharePoint.Client.ServerRuntime.dll)

Sintaxis

'Declaración
Protected Friend Overridable Function GetExpandoFieldValue ( _
    obj As Object, _
    fieldName As String _
) As Object
'Uso
Dim obj As Object
Dim fieldName As String
Dim returnValue As Object

returnValue = Me.GetExpandoFieldValue(obj, _
    fieldName)
protected internal virtual Object GetExpandoFieldValue(
    Object obj,
    string fieldName
)

Parámetros

Valor devuelto

Tipo: System.Object

Vea también

Referencia

clase ServerStub

Miembros ServerStub

Espacio de nombres Microsoft.SharePoint.Client