Class EntityFieldAttribute

EntityFieldAttribute class

Representa un atributo para las propiedades de la entidad.

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

Constructores

NombreDescripción
EntityFieldAttribute()Constructor predeterminado

Observaciones

Atributo utilizado paraTask ,Resource ,Project yResourceAssignment propiedades de entidad solamente, y simplifica su enumeración.

Ejemplos

Cómo enumerar propiedades usando EntityField atributo:

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

Ver también