del método ServerStub.GetExpandoFieldNames
Obtener la expandido nombres de campo.
La generación de código usará ClientCallableTypeAttribute(ExpandoFieldsPropertyName="PropName") para generar el código para devolver el nombre del campo expandido. Por ejemplo, para la clase SPListItem , ExpandoFieldsPropertyName = "FieldNames" la generación de código generará código como: SPListItem value = obj as SPListItem; if (value != null) { return value.FieldNames; } 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 GetExpandoFieldNames ( _
obj As Object _
) As String()
'Uso
Dim obj As Object
Dim returnValue As String()
returnValue = Me.GetExpandoFieldNames(obj)
protected internal virtual string[] GetExpandoFieldNames(
Object obj
)
Parámetros
- obj
Tipo: System.Object
Valor devuelto
Tipo: []