RemotingServices.GetServerTypeForUri(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 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가 있는 개체의 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에서 연결 된 형식 개체를 반환 합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET