List.GetRelatedFields - Méthode
Returns a collection of lookup fields that use this list as a data source and that have FieldLookup.IsRelationship set to true.
Espace de noms : Microsoft.SharePoint.Client
Assemblys : Microsoft.SharePoint.Client.Silverlight (dans Microsoft.SharePoint.Client.Silverlight.dll); Microsoft.SharePoint.Client.Phone (dans Microsoft.SharePoint.Client.Phone.dll) Microsoft.SharePoint.Client (dans Microsoft.SharePoint.Client.dll)
Syntaxe
'Déclaration
Public Function GetRelatedFields As RelatedFieldCollection
'Utilisation
Dim instance As List
Dim returnValue As RelatedFieldCollection
returnValue = instance.GetRelatedFields()
public RelatedFieldCollection GetRelatedFields()
Valeur renvoyée
Type : Microsoft.SharePoint.Client.RelatedFieldCollection
Returns a RelatedFieldCollection instance representing the collection of lookup fields that use this list as a data source and that have FieldLookup.IsRelationship set to true.
Exceptions
Exception | Condition |
---|---|
[System.UnauthorizedAccessException] | The current user has insufficient permissions. Error code: -2147024891. |
Exemples
This code example displays the identifier of any fields related to the current site’s Tasks list.
using System;
using Microsoft.SharePoint.Client;
namespace Microsoft.SDK.SharePointFoundation.Samples
{
class List_getRelatedFieldsExample
{
static void Main()
{
string siteUrl = "http://MyServer/sites/MySiteCollection";
ClientContext clientContext = new ClientContext(siteUrl);
Web site = clientContext.Web;
List targetList = site.Lists.GetByTitle("Tasks");
RelatedFieldCollection collRelatedField = targetList.GetRelatedFields();
clientContext.Load(collRelatedField);
clientContext.ExecuteQuery();
foreach (RelatedField targetField in collRelatedField)
Console.WriteLine("Related Field ID: {0}", targetField.FieldId);
}
}
}
}