다음을 통해 공유


RemotingServices.GetServerTypeForUri(String) 메서드

정의

지정된 URI가 있는 개체의 Type을 반환합니다.

public:
 static Type ^ GetServerTypeForUri(System::String ^ URI);
public static Type GetServerTypeForUri (string URI);
[System.Security.SecurityCritical]
public static Type GetServerTypeForUri (string URI);
static member GetServerTypeForUri : string -> Type
[<System.Security.SecurityCritical>]
static member GetServerTypeForUri : string -> Type
Public Shared Function GetServerTypeForUri (URI As String) As Type

매개 변수

URI
String

Type이 요청된 개체의 URI입니다.

반환

지정된 URI가 있는 개체의 Type입니다.

특성

예외

직접 실행 호출자에 인프라 권한이 없거나 호출 스택의 상위에 있는 직접 실행 호출자 중 적어도 하나에 public이 아닌 멤버의 형식 정보를 검색할 권한이 없는 경우

예제

Console::WriteLine( "Server type: {0}", RemotingServices::GetServerTypeForUri( const_cast<String^>(myObjectUri) ) );
Console.WriteLine("Server type: {0}",
                  RemotingServices.GetServerTypeForUri(myObjectUri));
Console.WriteLine("Server type: {0}", _
                  RemotingServices.GetServerTypeForUri(myObjectUri).ToString())

설명

Uri를 사용 하 여 엔드포인트을 식별 하는 원격 서비스를 GetServerTypeForUri 메서드를 사용 하는 원격 인프라 (예: 채널 싱크, 동적 싱크 및 컨텍스트 싱크)의 플러그형 부분에서 매우 유용 IMessage 개체를 현재 메서드는 URI에서 연결 된 형식 개체를 반환 합니다.

적용 대상