Share via


DataObjectChangedEventArgs Constructors

Definition

Overloads

DataObjectChangedEventArgs(String, Object[])

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name and an array of identifier parts representing the data object.

DataObjectChangedEventArgs(String, Object[], Object[])

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name, an array of identifier parts, and another array of new identifier parts representing this data object.

DataObjectChangedEventArgs(String, Object[], IDictionary<String,Object>, IDictionary<String,Object>)

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name, an array of identifier parts representing the data object, a collection of name/value pairs of property names and values, and another collection of name/value pairs for new property names and values.

DataObjectChangedEventArgs(String, Object[], IDictionary<String,Object>, Object[], IDictionary<String,Object>)

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name, an array of identifier parts representing the data object, a collection of name/value pairs of property names and values, an array of new identifier parts representing the data object, and another collection of name/value pairs for new property names and values.

DataObjectChangedEventArgs(String, Object[])

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name and an array of identifier parts representing the data object.

public:
 DataObjectChangedEventArgs(System::String ^ typeName, cli::array <System::Object ^> ^ identifier);
public DataObjectChangedEventArgs (string typeName, object[] identifier);
new Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs : string * obj[] -> Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs
Public Sub New (typeName As String, identifier As Object())

Parameters

typeName
String

The name of the data object's type.

identifier
Object[]

An array of identifier parts that identify the data object.

Applies to

DataObjectChangedEventArgs(String, Object[], Object[])

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name, an array of identifier parts, and another array of new identifier parts representing this data object.

public:
 DataObjectChangedEventArgs(System::String ^ typeName, cli::array <System::Object ^> ^ identifier, cli::array <System::Object ^> ^ newIdentifier);
public DataObjectChangedEventArgs (string typeName, object[] identifier, object[] newIdentifier);
new Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs : string * obj[] * obj[] -> Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs
Public Sub New (typeName As String, identifier As Object(), newIdentifier As Object())

Parameters

typeName
String

The name of the data object's type.

identifier
Object[]

An array of identifier parts that identify the data object.

newIdentifier
Object[]

An array of new identifier parts that identify the data object.

Applies to

DataObjectChangedEventArgs(String, Object[], IDictionary<String,Object>, IDictionary<String,Object>)

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name, an array of identifier parts representing the data object, a collection of name/value pairs of property names and values, and another collection of name/value pairs for new property names and values.

public:
 DataObjectChangedEventArgs(System::String ^ typeName, cli::array <System::Object ^> ^ identifier, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ propertyValues, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ newPropertyValues);
public DataObjectChangedEventArgs (string typeName, object[] identifier, System.Collections.Generic.IDictionary<string,object> propertyValues, System.Collections.Generic.IDictionary<string,object> newPropertyValues);
new Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs : string * obj[] * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs
Public Sub New (typeName As String, identifier As Object(), propertyValues As IDictionary(Of String, Object), newPropertyValues As IDictionary(Of String, Object))

Parameters

typeName
String

The name of the data object's type.

identifier
Object[]

An array of identifier parts that identify the data object.

propertyValues
IDictionary<String,Object>

A collection of name/value pairs of property names and values.

newPropertyValues
IDictionary<String,Object>

A collection of name/value pairs for new property names and values

Applies to

DataObjectChangedEventArgs(String, Object[], IDictionary<String,Object>, Object[], IDictionary<String,Object>)

Initializes a new instance of the DataObjectChangedEventArgs class with the object type name, an array of identifier parts representing the data object, a collection of name/value pairs of property names and values, an array of new identifier parts representing the data object, and another collection of name/value pairs for new property names and values.

public:
 DataObjectChangedEventArgs(System::String ^ typeName, cli::array <System::Object ^> ^ identifier, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ propertyValues, cli::array <System::Object ^> ^ newIdentifier, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ newPropertyValues);
public DataObjectChangedEventArgs (string typeName, object[] identifier, System.Collections.Generic.IDictionary<string,object> propertyValues, object[] newIdentifier, System.Collections.Generic.IDictionary<string,object> newPropertyValues);
new Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs : string * obj[] * System.Collections.Generic.IDictionary<string, obj> * obj[] * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.VisualStudio.Data.Services.DataObjectChangedEventArgs
Public Sub New (typeName As String, identifier As Object(), propertyValues As IDictionary(Of String, Object), newIdentifier As Object(), newPropertyValues As IDictionary(Of String, Object))

Parameters

typeName
String

The name of the data object's type.

identifier
Object[]

An array of identifier parts that identify the data object.

propertyValues
IDictionary<String,Object>

A collection of name/value pairs of property names and values.

newIdentifier
Object[]

An array of identifier parts that identify the new data object.

newPropertyValues
IDictionary<String,Object>

A collection of name/value pairs for new property names and values.

Applies to