Funzione call_in_appdomain
Esegue una funzione in un dominio applicazione specificato.
Sintassi
template <typename ArgType1, ...typename ArgTypeN>
void call_in_appdomain(
DWORD appdomainId,
void (*voidFunc)(ArgType1, ...ArgTypeN) [ ,
ArgType1 arg1,
...
ArgTypeN argN ]
);
template <typename RetType, typename ArgType1, ...typename ArgTypeN>
RetType call_in_appdomain(
DWORD appdomainId,
RetType (*nonvoidFunc)(ArgType1, ...ArgTypeN) [ ,
ArgType1 arg1,
...
ArgTypeN argN ]
);
Parametri
appdomainId
Il dominio dell'app in cui chiamare la funzione.
voidFunc
Puntatore a una void
funzione che accetta N parametri (0 <= N <= 15).
nonvoidFunc
Puntatore a unavoid
funzione che accetta N parametri (0 <= N <= 15).
arg1... argN
Da zero a 15 parametri da passare a voidFunc
o nonvoidFunc
nell'altro appdomain.
Valore restituito
Risultato dell'esecuzione voidFunc
o nonvoidFunc
nel dominio applicazione specificato.
Osservazioni:
Gli argomenti della funzione passata a call_in_appdomain
non devono essere tipi CLR.
Esempio
// msl_call_in_appdomain.cpp
// compile with: /clr
// Defines two functions: one takes a parameter and returns nothing,
// the other takes no parameters and returns an int. Calls both
// functions in the default appdomain and in a newly-created
// application domain using call_in_appdomain.
#include <msclr\appdomain.h>
using namespace System;
using namespace msclr;
void PrintCurrentDomainName( char* format )
{
String^ s = gcnew String(format);
Console::WriteLine( s, AppDomain::CurrentDomain->FriendlyName );
}
int GetDomainId()
{
return AppDomain::CurrentDomain->Id;
}
int main()
{
AppDomain^ appDomain1 = AppDomain::CreateDomain( "First Domain" );
call_in_appdomain( AppDomain::CurrentDomain->Id,
&PrintCurrentDomainName,
(char*)"default appdomain: {0}" );
call_in_appdomain( appDomain1->Id,
&PrintCurrentDomainName,
(char*)"in appDomain1: {0}" );
int id;
id = call_in_appdomain( AppDomain::CurrentDomain->Id, &GetDomainId );
Console::WriteLine( "default appdomain id = {0}", id );
id = call_in_appdomain( appDomain1->Id, &GetDomainId );
Console::WriteLine( "appDomain1 id = {0}", id );
}
Output
default appdomain: msl_call_in_appdomain.exe
in appDomain1: First Domain
default appdomain id = 1
appDomain1 id = 2
Requisiti
File<di intestazione msclr\appdomain.h>
Spazio dei nomi msclr