Class EntityFieldAttribute

EntityFieldAttribute class

Rappresenta un attributo per le proprietà dell’entità.

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

Costruttori

NomeDescrizione
EntityFieldAttribute()Default_Costruttore

Osservazioni

Attributo utilizzato perTask ,Resource ,Project eResourceAssignment solo proprietà dell’entità e ne semplifica l’enumerazione.

Esempi

Come enumerare le proprietà utilizzando EntityField attributo:

[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)));
    }
}

Guarda anche