RemotingConfiguration.IsActivationAllowed 메서드
지정된 Type을 클라이언트에서 활성화할 수 있는지 여부를 나타내는 부울 값을 반환합니다.
네임스페이스: System.Runtime.Remoting
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
Public Shared Function IsActivationAllowed ( _
svrType As Type _
) As Boolean
‘사용 방법
Dim svrType As Type
Dim returnValue As Boolean
returnValue = RemotingConfiguration.IsActivationAllowed(svrType)
public static bool IsActivationAllowed (
Type svrType
)
public:
static bool IsActivationAllowed (
Type^ svrType
)
public static boolean IsActivationAllowed (
Type svrType
)
public static function IsActivationAllowed (
svrType : Type
) : boolean
매개 변수
- svrType
확인할 개체 Type입니다.
반환 값
지정된 Type을 클라이언트에서 활성화할 수 있으면 true이고, 그렇지 않으면 false입니다.
예외
예외 형식 | 조건 |
---|---|
호출 스택의 상위 호출자 중 하나 이상에게 원격 형식 및 채널을 구성하기 위한 권한이 없는 경우 |
설명
현재 메서드는 개체 Type을 서버에서 명시적으로 활성화할 수 있는지 확인하기 위해 서버 쪽에서 사용됩니다.
예제
' Check whether the 'MyServerImpl' object is allowed for activation or not.
If RemotingConfiguration.IsActivationAllowed(GetType(MyServerImpl)) Then
' Get the registered activated service types .
Dim myActivatedServiceEntries As ActivatedServiceTypeEntry() = _
RemotingConfiguration.GetRegisteredActivatedServiceTypes()
Console.WriteLine("The Length of the registered activated service type array is " + _
myActivatedServiceEntries.Length.ToString())
Console.WriteLine("The Object type is:" + _
myActivatedServiceEntries(0).ObjectType.ToString())
End If
// Check whether the 'MyServerImpl' object is allowed for
// activation or not.
if(RemotingConfiguration.IsActivationAllowed(typeof(MyServerImpl)))
{
// Get the registered activated service types .
ActivatedServiceTypeEntry[] myActivatedServiceEntries =
RemotingConfiguration.GetRegisteredActivatedServiceTypes();
Console.WriteLine("The Length of the registered activated service"
+" type array is "+myActivatedServiceEntries.Length);
Console.WriteLine("The Object type is:"
+myActivatedServiceEntries[0].ObjectType);
}
// Check whether the 'MyServerImpl' object is allowed for
// activation or not.
if ( RemotingConfiguration::IsActivationAllowed( MyServerImpl::typeid ) )
{
// Get the registered activated service types .
array<ActivatedServiceTypeEntry^>^myActivatedServiceEntries = RemotingConfiguration::GetRegisteredActivatedServiceTypes();
Console::WriteLine( "The Length of the registered activated service type array is {0}", myActivatedServiceEntries->Length );
Console::WriteLine( "The Object type is:{0}", myActivatedServiceEntries[ 0 ]->ObjectType );
}
// Check whether the 'MyServerImpl' object is allowed for
// activation or not.
if (RemotingConfiguration.IsActivationAllowed(MyServerImpl.
class.ToType())) {
// Get the registered activated service types .
ActivatedServiceTypeEntry myActivatedServiceEntries[] =
RemotingConfiguration.GetRegisteredActivatedServiceTypes();
Console.WriteLine("The Length of the registered activated service"
+ " type array is " + myActivatedServiceEntries.get_Length());
Console.WriteLine("The Object type is:"
+ myActivatedServiceEntries[0].get_ObjectType());
}
.NET Framework 보안
- SecurityPermission 원격 인프라를 구성하는 데 필요한 권한입니다. 요청 값: SecurityAction.Demand, 권한 값: SecurityPermissionFlag.RemotingConfiguration
플랫폼
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
참고 항목
참조
RemotingConfiguration 클래스
RemotingConfiguration 멤버
System.Runtime.Remoting 네임스페이스