Class EntityFieldAttribute

EntityFieldAttribute class

Représente un attribut pour les propriétés d’entité.

[AttributeUsage(AttributeTargets.Property)]
public class EntityFieldAttribute : Attribute

Constructeurs

NomLa description
EntityFieldAttribute()Default_Constructor

Remarques

Attribut utilisé pourTask ,Resource ,Project etResourceAssignment propriétés d’entité uniquement et simplifie son énumération.

Exemples

Comment énumérer les propriétés en utilisant EntityField attribut :

[C#]
var project = new Project("sample.mpp");
foreach (var task in project.SelectAllChildTasks())
{
    Console.WriteLine("Task:");
    foreach (var propInfo in typeof(Task).GetProperties().Where(propInfo => propInfo.GetCustomAttribute{Attributes.EntityFieldAttribute}() != null))
    {
        Console.WriteLine(string.Format("{0}: {1}", propInfo.Name, propInfo.GetValue(task)));
    }
}

Voir également