傳回完整路徑 (已加入、刪除或變更屬性) 下屬性檔中指定之組態的屬性清單。
命名空間: 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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。