RemotingConfiguration.GetRegisteredWellKnownClientTypes 메서드
잘 알려진 형식으로 클라이언트 쪽에 등록된 개체 형식의 배열을 검색합니다.
네임스페이스: System.Runtime.Remoting
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
Public Shared Function GetRegisteredWellKnownClientTypes As WellKnownClientTypeEntry()
‘사용 방법
Dim returnValue As WellKnownClientTypeEntry()
returnValue = RemotingConfiguration.GetRegisteredWellKnownClientTypes
public static WellKnownClientTypeEntry[] GetRegisteredWellKnownClientTypes ()
public:
static array<WellKnownClientTypeEntry^>^ GetRegisteredWellKnownClientTypes ()
public static WellKnownClientTypeEntry[] GetRegisteredWellKnownClientTypes ()
public static function GetRegisteredWellKnownClientTypes () : WellKnownClientTypeEntry[]
반환 값
잘 알려진 형식으로 클라이언트 쪽에 등록된 개체 형식의 배열입니다.
예외
예외 형식 | 조건 |
---|---|
호출 스택의 상위 호출자 중 하나 이상에게 원격 형식 및 채널을 구성하기 위한 권한이 없는 경우 |
설명
잘 알려진 개체 형식은 SingleCall 또는 Singleton일 수 있습니다. 개체 형식이 SingleCall이면 클라이언트에서 호출할 때마다 새 인스턴스가 만들어집니다. Singleton 개체에 대한 호출은 모두 해당 개체의 한 인스턴스에서 처리합니다.
잘 알려진 개체에 대한 자세한 내용은 서버 활성화를 참조하십시오.
예제
' Get the well-known types registered at the client.
Dim myEntries As WellKnownClientTypeEntry() = _
RemotingConfiguration.GetRegisteredWellKnownClientTypes()
Console.WriteLine("The number of WellKnownClientTypeEntries are:" + _
myEntries.Length.ToString())
Console.WriteLine("The Object type is:" + myEntries(0).ObjectType.ToString())
Console.WriteLine("The Object Url is:" + myEntries(0).ObjectUrl.ToString())
// Get the well-known types registered at the client.
WellKnownClientTypeEntry[] myEntries =
RemotingConfiguration.GetRegisteredWellKnownClientTypes();
Console.WriteLine("The number of WellKnownClientTypeEntries are:"
+myEntries.Length);
Console.WriteLine("The Object type is:"+myEntries[0].ObjectType);
Console.WriteLine("The Object Url is:"+myEntries[0].ObjectUrl);
// Get the well-known types registered at the client.
array<WellKnownClientTypeEntry^>^myEntries = RemotingConfiguration::GetRegisteredWellKnownClientTypes();
Console::WriteLine( "The number of WellKnownClientTypeEntries are:{0}", myEntries->Length );
Console::WriteLine( "The Object type is:{0}", myEntries[ 0 ]->ObjectType );
Console::WriteLine( "The Object Url is:{0}", myEntries[ 0 ]->ObjectUrl );
// Get the well-known types registered at the client.
WellKnownClientTypeEntry myEntries[] = RemotingConfiguration.
GetRegisteredWellKnownClientTypes();
Console.WriteLine("The number of WellKnownClientTypeEntries are:"
+ myEntries.get_Length());
Console.WriteLine("The Object type is:" + myEntries[0].
get_ObjectType());
Console.WriteLine("The Object Url is:" + myEntries[0].get_ObjectUrl());
.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 네임스페이스
WellKnownClientTypeEntry
WellKnownServiceTypeEntry
RegisterWellKnownServiceType
RegisterWellKnownClientType