Share via


ActionableRdtListener.OnAfterAttributeChangeEventHandler Delegate

Represents the method that will handle the AfterAttributeChangeEvent event when it is raised.

Namespace:  Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities
Assembly:  Microsoft.VisualStudio.Data.Schema.Project (in Microsoft.VisualStudio.Data.Schema.Project.dll)

Syntax

'Declaration
Public Delegate Function OnAfterAttributeChangeEventHandler ( _
    docCookie As UInteger, _
    attributeProperties As UInteger _
) As Integer
'Usage
Dim instance As New OnAfterAttributeChangeEventHandler(AddressOf HandlerMethod)
public delegate int OnAfterAttributeChangeEventHandler(
    uint docCookie,
    uint attributeProperties
)
public delegate int OnAfterAttributeChangeEventHandler(
    unsigned int docCookie, 
    unsigned int attributeProperties
)
JScript does not support delegates.
type OnAfterAttributeChangeEventHandler = 
    delegate of 
        docCookie:uint32 * 
        attributeProperties:uint32 -> int

Parameters

  • docCookie
    Type: System.UInt32
    The document cookie for this project
  • attributeProperties
    Type: System.UInt32
    Flags for the changed attributes

Return Value

Type: System.Int32

See Also

Reference

Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities Namespace