DatabaseTaskHost.GetChangedPropertiesFromPropertiesFile, méthode
Retourne une liste de propriétés pour la configuration donnée à partir du fichier de propriétés dans fullPath, où la propriété a été ajoutée, supprimée ou modifiée.
Espace de noms : Microsoft.Data.Schema.Build
Assembly : Microsoft.Data.Schema (dans Microsoft.Data.Schema.dll)
Syntaxe
'Déclaration
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>>
)
Paramètres
- fullPath
Type : System.String
Chemin d'accès complet du fichier de propriétés.
- source
Type : Microsoft.Data.Schema.Build.DatabaseTaskHost.PropertySource
Source de propriété.
- addedProperties
Type : System.Collections.Generic.IList<Tuple<String, String>>%
Liste retournée des propriétés ajoutées.
- deletedProperties
Type : System.Collections.Generic.IList<String>%
Liste retournée des propriétés supprimées.
- changedProperties
Type : System.Collections.Generic.IList<Tuple<String, String, String>>%
Liste retournée des propriétés modifiées.
Notes
L'implémentation par défaut de cette fonction n'a aucun effet. Chaque implémentation de fournisseur de schémas de base de données doit en dériver pour lire ses fichiers de propriétés de base de données ou de schéma.
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.