ServerStub.GetExpandoFieldNames - Méthode
Get the expando field names.
The code gen will use ClientCallableTypeAttribute(ExpandoFieldsPropertyName="PropName") to generate code to return the expando field name. For example, for the SPListItem class, ExpandoFieldsPropertyName = "FieldNames" the code gen will generate code like: SPListItem value = obj as SPListItem; if (value != null) { return value.FieldNames; } return null;
Espace de noms : Microsoft.SharePoint.Client
Assembly : Microsoft.SharePoint.Client.ServerRuntime (dans Microsoft.SharePoint.Client.ServerRuntime.dll)
Syntaxe
'Déclaration
Protected Friend Overridable Function GetExpandoFieldNames ( _
obj As Object _
) As String()
'Utilisation
Dim obj As Object
Dim returnValue As String()
returnValue = Me.GetExpandoFieldNames(obj)
protected internal virtual string[] GetExpandoFieldNames(
Object obj
)
Paramètres
- obj
Type : System.Object
Valeur renvoyée
Type : []