-
Notifications
You must be signed in to change notification settings - Fork 16
Server APIs – Aras.Server.Core.GraphNavigation
Eric Domke edited this page Apr 6, 2020
·
1 revision
Aras.Server.Core v12.0.0.17204
Inheritance object → KeyGetterBase
public abstract class KeyGetterBase
{
// Methods
public abstract IDictionary<string, string> GetKey(IList<Item> items);
}
Inheritance object → NodePropertiesGetterBase
public abstract class NodePropertiesGetterBase
{
// Methods
public abstract IDictionary<string, string> GetPropertyValues(IList<Item> items, IReadOnlyList<TypeProperty> properties, ItemTypeInfo itemType);
}
Inheritance object → PropertyGetterBase
public abstract class PropertyGetterBase
{
// Methods
public static string GetItemIcon(Item item, ItemTypeInfo itemType);
public static string GetItemTypeName(Item item, ItemTypeInfo itemType);
public static string GetTypeOrAlias(Item item);
public abstract string GetValue(IList<Item> items, string propertyName, string valueTemplate, ItemTypeInfo itemType);
}
Inheritance object → TypeProperty
public class TypeProperty
{
// Properties
public string Name { get; }
public string ValueBuilderMethodId { get; }
public string ValueTemplate { get; }
// Methods
public IList<string> GetListOfBoundItemsProperties();
public string GetValue(IList<Item> items, ItemTypeInfo itemType);
}