Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Class constructor. Initializes a new instance of the DataObjectChangedEventArgs class when the identifier of the changed object is modified.
Namespace:  Microsoft.VisualStudio.Data
Assembly:  Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Public Sub New ( _
    changeType As DataObjectChangeType, _
    typeName As String, _
    identifier As Object(), _
    newIdentifier As Object() _
)
public DataObjectChangedEventArgs(
    DataObjectChangeType changeType,
    string typeName,
    Object[] identifier,
    Object[] newIdentifier
)
public:
DataObjectChangedEventArgs(
    DataObjectChangeType changeType, 
    String^ typeName, 
    array<Object^>^ identifier, 
    array<Object^>^ newIdentifier
)
new : 
        changeType:DataObjectChangeType * 
        typeName:string * 
        identifier:Object[] * 
        newIdentifier:Object[] -> DataObjectChangedEventArgs
public function DataObjectChangedEventArgs(
    changeType : DataObjectChangeType, 
    typeName : String, 
    identifier : Object[], 
    newIdentifier : Object[]
)
Parameters
- changeType 
 Type: Microsoft.VisualStudio.Data.DataObjectChangeType- The type of change that has occurred, from among values defined by the DataObjectChangeType enumeration. 
- typeName 
 Type: System.String- The name of the object type involved in the change. 
- identifier 
 Type: array<System.Object[]- The identifier of the object involved in the change. 
- newIdentifier 
 Type: array<System.Object[]- The new identifier of the object after the change. 
Remarks
The changeType parameter references values provided in the DataObjectChangeType enumeration.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DataObjectChangedEventArgs Class