VersioningHelper.MakeVersionSafeName Metodo

Definizione

Fornisce un nome version-safe.

Overload

MakeVersionSafeName(String, ResourceScope, ResourceScope)

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

Restituisce un nome version-safe basato sul nome di risorsa specificato e sull'origine prevista per l'utilizzo delle risorse.

MakeVersionSafeName(String, ResourceScope, ResourceScope, Type)

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

Restituisce un nome version-safe basato sul nome di risorsa specificato, l'ambito previsto per l'utilizzo della risorsa e il tipo che utilizza la risorsa.

MakeVersionSafeName(String, ResourceScope, ResourceScope)

Source:
VersioningHelper.cs
Source:
VersioningHelper.cs
Source:
VersioningHelper.cs

Restituisce un nome version-safe basato sul nome di risorsa specificato e sull'origine prevista per l'utilizzo delle risorse.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 static System::String ^ MakeVersionSafeName(System::String ^ name, System::Runtime::Versioning::ResourceScope from, System::Runtime::Versioning::ResourceScope to);
public static string MakeVersionSafeName (string? name, System.Runtime.Versioning.ResourceScope from, System.Runtime.Versioning.ResourceScope to);
public static string MakeVersionSafeName (string name, System.Runtime.Versioning.ResourceScope from, System.Runtime.Versioning.ResourceScope to);
static member MakeVersionSafeName : string * System.Runtime.Versioning.ResourceScope * System.Runtime.Versioning.ResourceScope -> string
Public Shared Function MakeVersionSafeName (name As String, from As ResourceScope, to As ResourceScope) As String

Parametri

name
String

Nome della risorsa.

from
ResourceScope

Ambito della risorsa.

to
ResourceScope

Ambito desiderato per l'utilizzo delle risorse.

Restituisce

Nome version-safe.

Commenti

Il nome originale viene restituito con un suffisso correlato all'ambito. Il suffisso può includere l'identità del processo, l'identità corrente AppDomain o entrambe.

Si applica a

MakeVersionSafeName(String, ResourceScope, ResourceScope, Type)

Source:
VersioningHelper.cs
Source:
VersioningHelper.cs
Source:
VersioningHelper.cs

Restituisce un nome version-safe basato sul nome di risorsa specificato, l'ambito previsto per l'utilizzo della risorsa e il tipo che utilizza la risorsa.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 static System::String ^ MakeVersionSafeName(System::String ^ name, System::Runtime::Versioning::ResourceScope from, System::Runtime::Versioning::ResourceScope to, Type ^ type);
public static string MakeVersionSafeName (string? name, System.Runtime.Versioning.ResourceScope from, System.Runtime.Versioning.ResourceScope to, Type? type);
public static string MakeVersionSafeName (string name, System.Runtime.Versioning.ResourceScope from, System.Runtime.Versioning.ResourceScope to, Type type);
static member MakeVersionSafeName : string * System.Runtime.Versioning.ResourceScope * System.Runtime.Versioning.ResourceScope * Type -> string
Public Shared Function MakeVersionSafeName (name As String, from As ResourceScope, to As ResourceScope, type As Type) As String

Parametri

name
String

Nome della risorsa.

from
ResourceScope

Inizio dell'intervallo dell'ambito.

to
ResourceScope

Fine dell'intervallo dell'ambito.

type
Type

Oggetto Type della risorsa.

Restituisce

Nome version-safe.

Eccezioni

I valori per from e to non sono validi. Il tipo di risorsa nell'enumerazione ResourceScope passa da un tipo più restrittivo a uno più generale.

type è null.

Commenti

Il nome originale viene restituito con un suffisso correlato all'ambito.

Si applica a