IPropertyDictionary.Add メソッド

定義

ディクショナリにプロパティを追加します。

オーバーロード

Add(ISfcProperty)

指定されたプロパティをディクショナリに追加します。

Add(ISfcProperty, PropertyCollisionResolution)

インターフェイスの指定された解決方法を使用してディクショナリにプロパティを追加します。

Add(IEnumerable<KeyValuePair<String,Object>>, PropertyCollisionResolution)

プロパティの指定された解決方法を使用してディクショナリにプロパティを追加します。

Add(KeyValuePair<String,Object>, PropertyCollisionResolution)

指定したキーと値をディクショナリに追加します。

Add(String, Type)

指定された名前と型を使用してディクショナリにプロパティを追加します。

Add(String, Object, PropertyCollisionResolution)

プロパティの指定されたキー、値、および解決方法を使用してディクショナリにプロパティを追加します。

Add(String, Type, PropertyCollisionResolution)

指定された名前、型、およびインターフェイスの解決方法を使用してディクショナリにプロパティを追加します。

Add(ISfcProperty)

指定されたプロパティをディクショナリに追加します。

public:
 void Add(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property);
public void Add (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property);
abstract member Add : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> unit
Public Sub Add (property As ISfcProperty)

パラメーター

property
ISfcProperty

プロパティに関する情報を提供するインターフェイスです。

適用対象

Add(ISfcProperty, PropertyCollisionResolution)

インターフェイスの指定された解決方法を使用してディクショナリにプロパティを追加します。

public:
 void Add(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property, Microsoft::SqlServer::Management::Data::PropertyCollisionResolution collisionResolution);
public void Add (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property, Microsoft.SqlServer.Management.Data.PropertyCollisionResolution collisionResolution);
abstract member Add : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty * Microsoft.SqlServer.Management.Data.PropertyCollisionResolution -> unit
Public Sub Add (property As ISfcProperty, collisionResolution As PropertyCollisionResolution)

パラメーター

property
ISfcProperty

プロパティに関する情報を提供するインターフェイスです。

collisionResolution
PropertyCollisionResolution

プロパティの解決方法です。

適用対象

Add(IEnumerable<KeyValuePair<String,Object>>, PropertyCollisionResolution)

プロパティの指定された解決方法を使用してディクショナリにプロパティを追加します。

public:
 void Add(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ items, Microsoft::SqlServer::Management::Data::PropertyCollisionResolution collisionResolution);
public void Add (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> items, Microsoft.SqlServer.Management.Data.PropertyCollisionResolution collisionResolution);
abstract member Add : seq<System.Collections.Generic.KeyValuePair<string, obj>> * Microsoft.SqlServer.Management.Data.PropertyCollisionResolution -> unit
Public Sub Add (items As IEnumerable(Of KeyValuePair(Of String, Object)), collisionResolution As PropertyCollisionResolution)

パラメーター

items
IEnumerable<KeyValuePair<String,Object>>

ディクショナリに追加するアイテムです。

collisionResolution
PropertyCollisionResolution

プロパティの解決

適用対象

Add(KeyValuePair<String,Object>, PropertyCollisionResolution)

指定したキーと値をディクショナリに追加します。

public:
 void Add(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item, Microsoft::SqlServer::Management::Data::PropertyCollisionResolution collisionResolution);
public void Add (System.Collections.Generic.KeyValuePair<string,object> item, Microsoft.SqlServer.Management.Data.PropertyCollisionResolution collisionResolution);
abstract member Add : System.Collections.Generic.KeyValuePair<string, obj> * Microsoft.SqlServer.Management.Data.PropertyCollisionResolution -> unit
Public Sub Add (item As KeyValuePair(Of String, Object), collisionResolution As PropertyCollisionResolution)

パラメーター

item
KeyValuePair<String,Object>

追加するアイテムです。

collisionResolution
PropertyCollisionResolution

プロパティの解決

適用対象

Add(String, Type)

指定された名前と型を使用してディクショナリにプロパティを追加します。

public:
 void Add(System::String ^ name, Type ^ type);
public void Add (string name, Type type);
abstract member Add : string * Type -> unit
Public Sub Add (name As String, type As Type)

パラメーター

name
String

指定されたプロパティの名前が含まれた String です。

type
Type

プロパティの型。

適用対象

Add(String, Object, PropertyCollisionResolution)

プロパティの指定されたキー、値、および解決方法を使用してディクショナリにプロパティを追加します。

public:
 void Add(System::String ^ key, System::Object ^ value, Microsoft::SqlServer::Management::Data::PropertyCollisionResolution collisionResolution);
public void Add (string key, object value, Microsoft.SqlServer.Management.Data.PropertyCollisionResolution collisionResolution);
abstract member Add : string * obj * Microsoft.SqlServer.Management.Data.PropertyCollisionResolution -> unit
Public Sub Add (key As String, value As Object, collisionResolution As PropertyCollisionResolution)

パラメーター

key
String

プロパティのキーを表す文字列です。

value
Object

オブジェクトの値を表します。

collisionResolution
PropertyCollisionResolution

プロパティの解決方法です。

適用対象

Add(String, Type, PropertyCollisionResolution)

指定された名前、型、およびインターフェイスの解決方法を使用してディクショナリにプロパティを追加します。

public:
 void Add(System::String ^ name, Type ^ type, Microsoft::SqlServer::Management::Data::PropertyCollisionResolution collisionResolution);
public void Add (string name, Type type, Microsoft.SqlServer.Management.Data.PropertyCollisionResolution collisionResolution);
abstract member Add : string * Type * Microsoft.SqlServer.Management.Data.PropertyCollisionResolution -> unit
Public Sub Add (name As String, type As Type, collisionResolution As PropertyCollisionResolution)

パラメーター

name
String

指定されたプロパティの名前が含まれた String メソッドです。

type
Type

プロパティの型。

collisionResolution
PropertyCollisionResolution

プロパティの解決方法です。

適用対象