プロパティの追加、削除、または変更が行われた fullPath にあるプロパティ ファイルから、指定された構成のプロパティのリストを返します。
名前空間: Microsoft.Data.Schema.Build
アセンブリ: Microsoft.Data.Schema (Microsoft.Data.Schema.dll 内)
構文
'宣言
Public Overridable Sub GetChangedPropertiesFromPropertiesFile ( _
fullPath As String, _
source As DatabaseTaskHost..::..PropertySource, _
<OutAttribute> ByRef addedProperties As IList(Of Tuple(Of String, String)), _
<OutAttribute> ByRef deletedProperties As IList(Of String), _
<OutAttribute> ByRef changedProperties As IList(Of Tuple(Of String, String, String)) _
)
public virtual void GetChangedPropertiesFromPropertiesFile(
string fullPath,
DatabaseTaskHost..::..PropertySource source,
out IList<Tuple<string, string>> addedProperties,
out IList<string> deletedProperties,
out IList<Tuple<string, string, string>> changedProperties
)
public:
virtual void GetChangedPropertiesFromPropertiesFile(
String^ fullPath,
DatabaseTaskHost..::..PropertySource source,
[OutAttribute] IList<Tuple<String^, String^>^>^% addedProperties,
[OutAttribute] IList<String^>^% deletedProperties,
[OutAttribute] IList<Tuple<String^, String^, String^>^>^% changedProperties
)
abstract GetChangedPropertiesFromPropertiesFile :
fullPath:string *
source:DatabaseTaskHost..::..PropertySource *
addedProperties:IList<Tuple<string, string>> byref *
deletedProperties:IList<string> byref *
changedProperties:IList<Tuple<string, string, string>> byref -> unit
override GetChangedPropertiesFromPropertiesFile :
fullPath:string *
source:DatabaseTaskHost..::..PropertySource *
addedProperties:IList<Tuple<string, string>> byref *
deletedProperties:IList<string> byref *
changedProperties:IList<Tuple<string, string, string>> byref -> unit
public function GetChangedPropertiesFromPropertiesFile(
fullPath : String,
source : DatabaseTaskHost..::..PropertySource,
addedProperties : IList<Tuple<String, String>>,
deletedProperties : IList<String>,
changedProperties : IList<Tuple<String, String, String>>
)
パラメーター
- fullPath
型: System.String
プロパティ ファイルの完全パス。
- source
型: Microsoft.Data.Schema.Build.DatabaseTaskHost.PropertySource
プロパティ ソース。
- addedProperties
型: System.Collections.Generic.IList<Tuple<String, String>>%
追加されたプロパティのリストが返されます。
- deletedProperties
型: System.Collections.Generic.IList<String>%
削除されたプロパティのリストが返されます。
- changedProperties
型: System.Collections.Generic.IList<Tuple<String, String, String>>%
変更されたプロパティのリストが返されます。
解説
この関数の既定の実装は、何も行いません。 各データベースのスキーマ プロバイダーの実装は、これから派生して、データベースまたはスキーマ プロパティ ファイルを読み取る必要があります。
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。