Partager via


ResourceIndexer Constructeurs

Définition

Surcharges

ResourceIndexer(Uri)

Crée un resourceIndexer spécifiant la racine des fichiers projet.

ResourceIndexer(Uri, Uri)

Crée un ResourceIndexer spécifiant la racine des fichiers projet et une DLL d’extension.

ResourceIndexer(Uri)

Crée un resourceIndexer spécifiant la racine des fichiers projet.

public:
 ResourceIndexer(Uri ^ projectRoot);
 ResourceIndexer(Uri const& projectRoot);
/// [Windows.Foundation.Metadata.Deprecated("Use CreateResourceIndexer in mrmsupport.dll instead of IResourceIndexerFactory.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.ApplicationModel.Resources.Management.ResourceIndexerContract")]
 ResourceIndexer(Uri const& projectRoot);
public ResourceIndexer(System.Uri projectRoot);
[Windows.Foundation.Metadata.Deprecated("Use CreateResourceIndexer in mrmsupport.dll instead of IResourceIndexerFactory.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.ApplicationModel.Resources.Management.ResourceIndexerContract")]
public ResourceIndexer(System.Uri projectRoot);
function ResourceIndexer(projectRoot)
Public Sub New (projectRoot As Uri)

Paramètres

projectRoot
Uri Uri

Dossier racine du projet (URI file://).

Attributs

Remarques

Le paramètre projectRoot représente la racine du projet pour les fichiers à produire. Il est utilisé pour déterminer les chemins d’accès aux fichiers relatifs au package qui les contiendra.

Le chemin doit être un chemin absolu avec la lettre de lecteur spécifiée. Les chemins de fichiers longs ne sont pas pris en charge.

Exemple :

var idxr = new Windows.ApplicationModel.Resources.Management.ResourceIndexer( 
    new Uri("file:///C:\MyApp\"));

Voir aussi

S’applique à

ResourceIndexer(Uri, Uri)

Crée un ResourceIndexer spécifiant la racine des fichiers projet et une DLL d’extension.

public:
 ResourceIndexer(Uri ^ projectRoot, Uri ^ extensionDllPath);
 ResourceIndexer(Uri const& projectRoot, Uri const& extensionDllPath);
/// [Windows.Foundation.Metadata.Deprecated("Use CreateResourceIndexer in mrmsupport.dll instead of IResourceIndexerFactory2.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.ApplicationModel.Resources.Management.ResourceIndexerContract")]
 ResourceIndexer(Uri const& projectRoot, Uri const& extensionDllPath);
public ResourceIndexer(System.Uri projectRoot, System.Uri extensionDllPath);
[Windows.Foundation.Metadata.Deprecated("Use CreateResourceIndexer in mrmsupport.dll instead of IResourceIndexerFactory2.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.ApplicationModel.Resources.Management.ResourceIndexerContract")]
public ResourceIndexer(System.Uri projectRoot, System.Uri extensionDllPath);
function ResourceIndexer(projectRoot, extensionDllPath)
Public Sub New (projectRoot As Uri, extensionDllPath As Uri)

Paramètres

projectRoot
Uri Uri

Dossier racine du projet (URI file://).

extensionDllPath
Uri Uri

Chemin de la DLL d’extension (URI file://).

Attributs

Remarques

Le paramètre projectRoot représente la racine du projet pour les fichiers à produire. Il est utilisé pour déterminer les chemins d’accès aux fichiers relatifs au package qui les contiendra.

Le paramètre extensionDllPath représente un chemin d’accès complet à une DLL d’extension signée par Microsoft et implémente l’ensemble d’API ext-ms-win-mrmcorer-environment-l1. Cela détermine le chemin du fichier à partir duquel la DLL d’extension d’environnement MRT sera chargée.

Les chemins d’accès doivent être des chemins absolus avec la lettre de lecteur spécifiée. Les chemins de fichiers longs ne sont pas pris en charge.

Cet exemple montre le constructeur utilisé pour indexer les ressources sources destinées à un projet Windows Phone :

var idxr = new Windows.ApplicationModel.Resources.Management.ResourceIndexer( 
    new Uri("file:///C:\MyApp\"), 
    new Uri("file:///C:\WPSDKPATH\bin\MrmEnvironmentExtDl.dll"));

Voir aussi

S’applique à