SPFieldLink.Name property
Obtém o nome interno do objeto de referência de campo.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
Public ReadOnly Property Name As String
Get
'Uso
Dim instance As SPFieldLink
Dim value As String
value = instance.Name
public string Name { get; }
Property value
Type: System.String
O nome interno do objeto.
Comentários
O valor dessa propriedade é idêntico ao valor da propriedade InternalName do objeto SPField que é passada como um argumento para o construtor SPFieldLink .
Examples
O exemplo a seguir mostra um aplicativo de console que itera-se o campo e os conjuntos de link de campo de um tipo de conteúdo e, em seguida, imprime o valor da propriedade InternalName para cada campo e o valor da propriedade Name para o vínculo do campo correspondente ao console.
Imports System
Imports Microsoft.SharePoint
Module ConsoleApp
Sub Main()
Dim site As SPSite = New SPSite("https://localhost")
Try
Dim web As SPWeb = site.OpenWeb()
Try
Dim ctName As String = "Announcement"
Dim contentType As SPContentType = web.ContentTypes(ctName)
If contentType IsNot Nothing Then
For i As Integer = 0 To contentType.Fields.Count - 1
Console.WriteLine("Field.InternalName = {0}", contentType.Fields(i).InternalName)
Console.WriteLine("FieldLink.Name = {0}", contentType.FieldLinks(i).Name)
Console.WriteLine()
Next
End If
Finally
web.Dispose()
End Try
Finally
site.Dispose()
End Try
Console.Write("Press ENTER to continue...")
Console.ReadLine()
End Sub
End Module
using System;
using Microsoft.SharePoint;
namespace Test
{
class ConsoleApp
{
static void Main(string[] args)
{
using (SPSite site = new SPSite("https://localhost"))
{
using (SPWeb web = site.OpenWeb())
{
string ctName = "Announcement";
SPContentType contentType = web.ContentTypes[ctName];
if (contentType != null)
{
for (int i = 0; i < contentType.Fields.Count; i++)
{
Console.WriteLine("Field.InternalName = {0}", contentType.Fields[i].InternalName);
Console.WriteLine("FieldLink.Name = {0}", contentType.FieldLinks[i].Name);
Console.WriteLine();
}
}
}
}
Console.Write("Press ENTER to continue...");
Console.ReadLine();
}
}
}
O aplicativo imprime a seguinte saída no console.
Field.InternalName = ContentType
FieldLink.Name = ContentType
Field.InternalName = Title
FieldLink.Name = Title
Field.InternalName = Body
FieldLink.Name = Body
Field.InternalName = Expires
FieldLink.Name = Expires
Press ENTER to continue...
Ver também
Referência
Microsoft.SharePoint namespace