Interface INavigableFieldType
Represents the type of a field of a content that can be navigated via XPath.
Namespace: Umbraco.Cms.Core.Xml.XPath
Assembly: Umbraco.Core.dll
Syntax
public interface INavigableFieldType
Remarks
A field can be an attribute or a property.
Properties
View SourceName
Gets the name of the field type.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
XmlStringConverter
Gets a method to convert the field value to a string.
Declaration
Func<object, string>? XmlStringConverter { get; }
Property Value
Type | Description |
---|---|
System.Nullable<Func<System.Object, System.String>> |
Remarks
This is for built-in properties, ie attributes. User-defined properties have their own way to convert their value for XPath.