AppDomainSetup.ApplicationName Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Uygulamanın adını alır veya ayarlar.
public:
property System::String ^ ApplicationName { System::String ^ get(); void set(System::String ^ value); };
public string ApplicationName { get; set; }
member this.ApplicationName : string with get, set
Public Property ApplicationName As String
Özellik Değeri
Uygulamanın adı.
Uygulamalar
Örnekler
Aşağıdaki örnekte, yeni bir uygulama etki alanı oluşturduğunuzda özelliğin ApplicationName nasıl ayarlanacağı gösterilmektedir.
Örnek yeni bir uygulama etki alanı oluşturur ve ardından örnek derlemeyi AppDomain.CreateInstanceAndUnwrap yeni uygulama etki alanına yüklemek ve sınıfının bir örneğini Worker
oluşturmak için yöntemini çağırır. Worker
sınıfı öğesini devralırMarshalByRefObject, bu nedenle örnek tarafından döndürülen CreateInstanceAndUnwrap proxy'yi kullanarak yöntemini çağırabilirTestLoad
.
TestLoad
yöntemi, belirttiğiniz bir derlemeyi yükler. Geçerli, tam derleme adı belirtmeniz veya yöntemi açıklama satırı Load(String) oluşturmanız gerekir. yöntemi, TestLoad
yeni uygulama etki alanına yüklenen derlemeleri listeler ve belirtilen derlemenizin ve örnek derlemenin yüklendiğini gösterir.
Örnek, derleme yükleyicisine uygulamanın uygulama etki alanları arasında kodu nasıl paylaşacağını söylemek için özniteliğini kullanır LoaderOptimizationAttribute .
using namespace System;
using namespace System::Reflection;
using namespace System::Security::Policy;
ref class Worker : MarshalByRefObject
{
public:
void TestLoad()
{
// You must supply a valid fully qualified assembly name here.
Assembly::Load("Text assembly name, Culture, PublicKeyToken, Version");
for each (Assembly^ assem in AppDomain::CurrentDomain->GetAssemblies())
Console::WriteLine(assem->FullName);
}
};
//for evidence Object*
// The following attribute indicates to loader that multiple application
// domains are used in this application.
[LoaderOptimizationAttribute(LoaderOptimization::MultiDomainHost)]
int main()
{
// Create application domain setup information for new application domain.
AppDomainSetup^ domaininfo = gcnew AppDomainSetup;
domaininfo->ApplicationBase = System::Environment::CurrentDirectory;
domaininfo->ApplicationName = "MyMultiDomain Application";
//Create evidence for the new appdomain from evidence of current application domain.
Evidence^ adevidence = AppDomain::CurrentDomain->Evidence;
// Create appdomain.
AppDomain^ newDomain = AppDomain::CreateDomain( "MyMultiDomain", adevidence, domaininfo );
// Load an assembly into the new application domain.
Worker^ w = (Worker^) newDomain->CreateInstanceAndUnwrap(
Worker::typeid->Assembly->GetName()->Name,
"Worker"
);
w->TestLoad();
//Unload the application domain, which also unloads the assembly.
AppDomain::Unload(newDomain);
}
using System;
using System.Reflection;
using System.Security.Policy;
class ADMultiDomain
{
// The following attribute indicates to loader that multiple application
// domains are used in this application.
[LoaderOptimizationAttribute( LoaderOptimization.MultiDomainHost)]
public static void Main()
{
// Create application domain setup information for new application domain.
AppDomainSetup domaininfo = new AppDomainSetup();
domaininfo.ApplicationBase = System.Environment.CurrentDirectory;
domaininfo.ApplicationName = "MyMultiDomain Application";
//Create evidence for the new appdomain from evidence of current application domain.
Evidence adevidence = AppDomain.CurrentDomain.Evidence;
// Create appdomain.
AppDomain newDomain = AppDomain.CreateDomain("MyMultiDomain", adevidence, domaininfo);
// Load an assembly into the new application domain.
Worker w = (Worker) newDomain.CreateInstanceAndUnwrap(
typeof(Worker).Assembly.GetName().Name,
"Worker"
);
w.TestLoad();
//Unload the application domain, which also unloads the assembly.
AppDomain.Unload(newDomain);
}
}
class Worker : MarshalByRefObject
{
internal void TestLoad()
{
// You must supply a valid fully qualified assembly name here.
Assembly.Load("Text assembly name, Culture, PublicKeyToken, Version");
foreach (Assembly assem in AppDomain.CurrentDomain.GetAssemblies())
Console.WriteLine(assem.FullName);
}
}
open System
open System.Reflection
type Worker() =
inherit MarshalByRefObject()
member internal _.TestLoad() =
// You must supply a valid fully qualified assembly name here.
Assembly.Load "Text assembly name, Culture, PublicKeyToken, Version" |> ignore
for assem in AppDomain.CurrentDomain.GetAssemblies() do
printfn $"{assem.FullName}"
// The following attribute indicates to loader that multiple application
// domains are used in this application.
[<LoaderOptimizationAttribute(LoaderOptimization.MultiDomainHost)>]
[<EntryPoint>]
let main _ =
// Create application domain setup information for new application domain.
let domaininfo = AppDomainSetup()
domaininfo.ApplicationBase <- System.Environment.CurrentDirectory
domaininfo.ApplicationName <- "MyMultiDomain Application"
//Create evidence for the new appdomain from evidence of current application domain.
let adevidence = AppDomain.CurrentDomain.Evidence
// Create appdomain.
let newDomain = AppDomain.CreateDomain("MyMultiDomain", adevidence, domaininfo)
// Load an assembly into the new application domain.
let w =
newDomain.CreateInstanceAndUnwrap(typeof<Worker>.Assembly.GetName().Name, "Worker" ) :?> Worker
w.TestLoad()
//Unload the application domain, which also unloads the assembly.
AppDomain.Unload newDomain
0
Imports System.Reflection
Imports System.Security.Policy
'Imports System.Data
'for evidence object
Class ADMultiDomain
' The following attribute indicates to loader that multiple application
' domains are used in this application.
<LoaderOptimizationAttribute(LoaderOptimization.MultiDomainHost)> _
Public Shared Sub Main()
' Create application domain setup information for new application domain.
Dim domaininfo As New AppDomainSetup()
domaininfo.ApplicationBase = System.Environment.CurrentDirectory
domaininfo.ApplicationName = "MyMultiDomain Application"
'Create evidence for the new appdomain from evidence of current application domain.
Dim adevidence As Evidence = AppDomain.CurrentDomain.Evidence
' Create appdomain.
Dim newDomain As AppDomain = AppDomain.CreateDomain("MyMultiDomain", adevidence, domaininfo)
'Load an assembly into the new application domain.
Dim w As Worker = CType( _
newDomain.CreateInstanceAndUnwrap(
GetType(Worker).Assembly().GetName().Name, "Worker"),
Worker)
w.TestLoad()
'Unload the application domain, which also unloads the assembly.
AppDomain.Unload(newDomain)
End Sub
End Class
Class Worker
Inherits MarshalByRefObject
Friend Sub TestLoad()
' You must supply a valid assembly display name here.
[Assembly].Load("Text assembly name, Culture, PublicKeyToken, Version")
For Each assem As [Assembly] In AppDomain.CurrentDomain.GetAssemblies()
Console.WriteLine(assem.FullName)
Next
End Sub
End Class