File: System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\AttributeCallback.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
namespace System.Activities.Presentation.Metadata 
{
 
    using System;
    using System.Collections;
 
    // <summary>
    // Called when attributes are needed for a type.
    // </summary>
    // <param name="builder">A builder that can be used to
    // add attributes.  AttributeCallbackBuilders can only build attributes
    // for the type that is requesting metadata.</param>
    public delegate void AttributeCallback(AttributeCallbackBuilder builder);
}