AppDomain.GetData(String) Método

Definición

Obtiene el valor almacenado en el dominio de aplicación actual para el nombre especificado.

public:
 System::Object ^ GetData(System::String ^ name);
public:
 virtual System::Object ^ GetData(System::String ^ name);
public object? GetData (string name);
public object GetData (string name);
member this.GetData : string -> obj
abstract member GetData : string -> obj
override this.GetData : string -> obj
Public Function GetData (name As String) As Object

Parámetros

name
String

Nombre de una propiedad de dominio de aplicación predefinida o nombre de una propiedad de dominio de aplicación que se haya definido.

Devoluciones

El valor de la propiedad o name o null si la propiedad no existe.

Implementaciones

Excepciones

name es null.

La operación se intenta en un dominio de aplicación descargado.

Ejemplos

En el ejemplo siguiente se crea un nuevo dominio de aplicación, se establece un valor proporcionado por el sistema para el dominio y se agrega un nuevo par de valores para el dominio. A continuación, en el ejemplo se muestra cómo usar el GetData método para recuperar los datos de estos pares de valores y mostrarlos en la consola.

using namespace System;
using namespace System::Reflection;

int main()
{
   // appdomain setup information
   AppDomain^ currentDomain = AppDomain::CurrentDomain;
   
   //Create a new value pair for the appdomain
   currentDomain->SetData( "ADVALUE", "Example value" );
   
   //get the value specified in the setdata method
   Console::WriteLine( "ADVALUE is: {0}", currentDomain->GetData( "ADVALUE" ) );
   
   //get a system value specified at appdomainsetup
   Console::WriteLine( "System value for loader optimization: {0}", 
      currentDomain->GetData( "LOADER_OPTIMIZATION" ) );
}

/* This code example produces the following output:

ADVALUE is: Example value
System value for loader optimization: NotSpecified
 */
using System;
using System.Reflection;

class ADGetData
{
    public static void Main()
    {
        // appdomain setup information
        AppDomain currentDomain = AppDomain.CurrentDomain;

        //Create a new value pair for the appdomain
        currentDomain.SetData("ADVALUE", "Example value");

        //get the value specified in the setdata method
        Console.WriteLine("ADVALUE is: " + currentDomain.GetData("ADVALUE"));

        //get a system value specified at appdomainsetup
        Console.WriteLine("System value for loader optimization: {0}",
            currentDomain.GetData("LOADER_OPTIMIZATION"));
    }
}

/* This code example produces the following output:

ADVALUE is: Example value
System value for loader optimization: NotSpecified
 */
open System

// appdomain setup information
let currentDomain = AppDomain.CurrentDomain

//Create a new value pair for the appdomain
currentDomain.SetData("ADVALUE", "Example value")

//get the value specified in the setdata method
currentDomain.GetData "ADVALUE"
|> printfn "ADVALUE is: %O"

//get a system value specified at appdomainsetup
currentDomain.GetData "LOADER_OPTIMIZATION"
|> printfn "System value for loader optimization: %O"

(* This code example produces the following output:

ADVALUE is: Example value
System value for loader optimization: NotSpecified
*)
Imports System.Reflection

Class ADGetData   
   
   Public Shared Sub Main()
      ' appdomain setup information
      Dim currentDomain As AppDomain = AppDomain.CurrentDomain
      
      'Create a new value pair for the appdomain
      currentDomain.SetData("ADVALUE", "Example value")
      
      'get the value specified in the setdata method
      Console.WriteLine(("ADVALUE is: " & currentDomain.GetData("ADVALUE")))
      
      'get a system value specified at appdomainsetup
      Console.WriteLine("System value for loader optimization: {0}", _
         currentDomain.GetData("LOADER_OPTIMIZATION"))

   End Sub 
End Class 

' This code example produces the following output:
'
'ADVALUE is: Example value
'System value for loader optimization: NotSpecified

Comentarios

Use este método para recuperar el valor de una entrada en una caché interna de pares de nombre-datos que describen las propiedades de esta instancia de AppDomain. Tenga en cuenta que la comparación de name con el nombre de los pares clave-valor distingue mayúsculas de minúsculas.

La memoria caché contiene automáticamente entradas predefinidas del sistema que se insertan cuando se crea el dominio de aplicación. Puede inspeccionar sus valores con el GetData método o las propiedades equivalentes AppDomainSetup .

Puede insertar o modificar sus propios pares de nombre-datos definidos por el usuario con el SetData método e inspeccionar sus valores con el GetData método .

En la tabla siguiente se describe el name de cada entrada de sistema predefinida y su propiedad correspondiente AppDomainSetup .

Valor de 'name' Propiedad.
"APPBASE" AppDomainSetup.ApplicationBase
"APP_CONFIG_FILE" AppDomainSetup.ConfigurationFile
"APP_LAUNCH_URL" (sin propiedad)

"APP_LAUNCH_URL" representa la dirección URL solicitada originalmente por el usuario, antes de cualquier redireccionamiento. Solo está disponible cuando la aplicación se ha iniciado con un explorador. No todos los exploradores proporcionan este valor.
"APP_NAME" AppDomainSetup.ApplicationName
"BINPATH_PROBE_ONLY" AppDomainSetup.PrivateBinPathProbe
"CACHE_BASE" AppDomainSetup.CachePath
"CODE_DOWNLOAD_DISABLED" AppDomainSetup.DisallowCodeDownload
"DEV_PATH" (sin propiedad)
"DISALLOW_APP" AppDomainSetup.DisallowPublisherPolicy
"DISALLOW_APP_BASE_PROBING" AppDomainSetup.DisallowApplicationBaseProbing
"DISALLOW_APP_REDIRECTS" AppDomainSetup.DisallowBindingRedirects
"DYNAMIC_BASE" AppDomainSetup.DynamicBase
"FORCE_CACHE_INSTALL" AppDomainSetup.ShadowCopyFiles
"LICENSE_FILE" o una cadena específica de la aplicación AppDomainSetup.LicenseFile
"LOADER_OPTIMIZATION" AppDomainSetup.LoaderOptimization
"LOCATION_URI" (sin propiedad)
"PRIVATE_BINPATH" AppDomainSetup.PrivateBinPath
"REGEX_DEFAULT_MATCH_TIMEOUT" Regex.MatchTimeout

"REGEX_DEFAULT_MATCH_TIMEOUT" no es una entrada del sistema y su valor se puede establecer llamando al SetData método .
"SHADOW_COPY_DIRS" AppDomainSetup.ShadowCopyDirectories

Se aplica a

Consulte también