DataObjectChangedEventArgs 构造函数

定义

重载

DataObjectChangedEventArgs(String, Object[])

DataObjectChangedEventArgs使用对象类型名称和表示该数据对象的标识符部分数组来初始化类的新实例。

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

DataObjectChangedEventArgs使用对象类型名称、标识符部分的数组和表示此数据对象的新标识符部分的另一个数组来初始化类的新实例。

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

DataObjectChangedEventArgs使用对象类型名称、表示数据对象的标识符部分的数组、属性名称和值的名称/值对的集合以及新的属性名称和值的名称/值对集合,初始化类的新实例。

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

DataObjectChangedEventArgs使用对象类型名称、表示此数据对象的标识符部分的数组、属性名称和值的名称/值对的集合、表示该数据对象的新标识符部分的数组和新属性名称和值的其他名称/值对集合来初始化类的新实例。

DataObjectChangedEventArgs(String, Object[])

DataObjectChangedEventArgs使用对象类型名称和表示该数据对象的标识符部分数组来初始化类的新实例。

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())

参数

typeName
String

数据对象的类型的名称。

identifier
Object[]

标识数据对象的标识符部分的数组。

适用于

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

DataObjectChangedEventArgs使用对象类型名称、标识符部分的数组和表示此数据对象的新标识符部分的另一个数组来初始化类的新实例。

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())

参数

typeName
String

数据对象的类型的名称。

identifier
Object[]

标识数据对象的标识符部分的数组。

newIdentifier
Object[]

标识数据对象的新标识符部分的数组。

适用于

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

DataObjectChangedEventArgs使用对象类型名称、表示数据对象的标识符部分的数组、属性名称和值的名称/值对的集合以及新的属性名称和值的名称/值对集合,初始化类的新实例。

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))

参数

typeName
String

数据对象的类型的名称。

identifier
Object[]

标识数据对象的标识符部分的数组。

propertyValues
IDictionary<String,Object>

属性名称和值的名称/值对的集合。

newPropertyValues
IDictionary<String,Object>

新属性名称和值的名称/值对的集合

适用于

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

DataObjectChangedEventArgs使用对象类型名称、表示此数据对象的标识符部分的数组、属性名称和值的名称/值对的集合、表示该数据对象的新标识符部分的数组和新属性名称和值的其他名称/值对集合来初始化类的新实例。

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))

参数

typeName
String

数据对象的类型的名称。

identifier
Object[]

标识数据对象的标识符部分的数组。

propertyValues
IDictionary<String,Object>

属性名称和值的名称/值对的集合。

newIdentifier
Object[]

标识新数据对象的标识符部分的数组。

newPropertyValues
IDictionary<String,Object>

新属性名称和值的名称/值对的集合。

适用于