AppDomain.GetData(String) Methode

Definition

Ruft den in der aktuellen Anwendungsdomäne gespeicherten Wert für den angegebenen Namen ab.

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

Parameter

name
String

Der Name einer vordefinierten Anwendungsdomäneneigenschaft oder der Name einer von Ihnen definierten Anwendungsdomäneneigenschaft.

Gibt zurück

Der Wert der name-Eigenschaft oder null, wenn die Eigenschaft nicht vorhanden ist.

Implementiert

Ausnahmen

name ist null.

Der Vorgang wird für eine entladene Anwendungsdomäne ausgeführt.

Beispiele

Im folgenden Beispiel wird eine neue Anwendungsdomäne erstellt, ein vom System bereitgestellter Wert für die Domäne festgelegt und ein neues Wertpaar für die Domäne hinzugefügt. Im Beispiel wird dann veranschaulicht, wie die GetData -Methode verwendet wird, um die Daten aus diesen Wertpaaren abzurufen und in der Konsole anzuzeigen.

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

Hinweise

Verwenden Sie diese Methode, um den Wert eines Eintrags in einem internen Cache von Name-Daten-Paaren abzurufen, die Die Eigenschaften dieser instance von AppDomainbeschreiben. Beachten Sie, dass beim Vergleich von name mit dem Namen von Schlüssel-Wert-Paaren die Groß-/Kleinschreibung beachtet wird.

Der Cache enthält automatisch vordefinierte Systemeinträge, die beim Erstellen der Anwendungsdomäne eingefügt werden. Sie können deren Werte mit der GetData -Methode oder den entsprechenden AppDomainSetup Eigenschaften überprüfen.

Sie können Ihre eigenen benutzerdefinierten Name-Daten-Paare mit der SetData -Methode einfügen oder ändern und deren Werte mit der GetData -Methode überprüfen.

In der folgenden Tabelle werden die der einzelnen vordefinierten Systemeinträge und die name zugehörige AppDomainSetup Eigenschaft beschrieben.

Wert von "name" Eigenschaft
"APPBASE" AppDomainSetup.ApplicationBase
"APP_CONFIG_FILE" AppDomainSetup.ConfigurationFile
"APP_LAUNCH_URL" (keine Eigenschaft)

"APP_LAUNCH_URL" stellt die URL dar, die der Benutzer vor jeder Umleitung ursprünglich angefordert hat. Sie ist nur verfügbar, wenn die Anwendung mit einem Browser gestartet wurde. Nicht alle Browser bieten diesen Wert.
"APP_NAME" AppDomainSetup.ApplicationName
"BINPATH_PROBE_ONLY" AppDomainSetup.PrivateBinPathProbe
"CACHE_BASE" AppDomainSetup.CachePath
"CODE_DOWNLOAD_DISABLED" AppDomainSetup.DisallowCodeDownload
"DEV_PATH" (keine Eigenschaft)
"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" oder eine anwendungsspezifische Zeichenfolge AppDomainSetup.LicenseFile
"LOADER_OPTIMIZATION" AppDomainSetup.LoaderOptimization
"LOCATION_URI" (keine Eigenschaft)
"PRIVATE_BINPATH" AppDomainSetup.PrivateBinPath
"REGEX_DEFAULT_MATCH_TIMEOUT" Regex.MatchTimeout

"REGEX_DEFAULT_MATCH_TIMEOUT" ist kein Systemeintrag, und sein Wert kann durch Aufrufen der SetData -Methode festgelegt werden.
"SHADOW_COPY_DIRS" AppDomainSetup.ShadowCopyDirectories

Gilt für:

Weitere Informationen