RemotingConfiguration.ApplicationName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
원격 애플리케이션 이름을 가져오거나 설정합니다.
public:
static property System::String ^ ApplicationName { System::String ^ get(); void set(System::String ^ value); };
public static string ApplicationName { get; set; }
member this.ApplicationName : string with get, set
Public Shared Property ApplicationName As String
속성 값
원격 애플리케이션 이름입니다.
예외
호출 스택의 상위 호출자 중 하나 이상에게 원격 형식 및 채널을 구성하기 위한 권한이 없는 경우 이 예외는 속성 값을 설정할 때만 throw됩니다.
예제
다음 코드 예제에서는 ApplicationName 원격 애플리케이션의 이름을 나타내는 속성을 합니다. 전체 예제 코드는 및 RegisterWellKnownServiceType 메서드에 대한 예제를 RegisterWellKnownClientType 참조하세요.
ChannelServices::RegisterChannel( gcnew TcpChannel( 8082 ) );
RemotingConfiguration::ApplicationName = "HelloServiceApplication";
RemotingConfiguration::RegisterWellKnownServiceType( HelloService::typeid,
"MyUri",
WellKnownObjectMode::SingleCall );
ChannelServices.RegisterChannel(new TcpChannel(8082));
RemotingConfiguration.ApplicationName = "HelloServiceApplication";
RemotingConfiguration.RegisterWellKnownServiceType( typeof(HelloService),
"MyUri",
WellKnownObjectMode.SingleCall
);
ChannelServices.RegisterChannel(New TcpChannel(8082))
RemotingConfiguration.ApplicationName = "HelloServiceApplication"
RemotingConfiguration.RegisterWellKnownServiceType(GetType(HelloService), "MyUri", WellKnownObjectMode.SingleCall)
다음 코드 예제에서는 명명된 된 애플리케이션에서 원격 개체에 액세스 하는 방법에 설명 합니다.
ChannelServices::RegisterChannel( gcnew TcpChannel );
RemotingConfiguration::RegisterWellKnownClientType( HelloService::typeid,
"tcp://localhost:8082/HelloServiceApplication/MyUri" );
HelloService ^ service = gcnew HelloService;
ChannelServices.RegisterChannel(new TcpChannel());
RemotingConfiguration.RegisterWellKnownClientType(
typeof(HelloService),
"tcp://localhost:8082/HelloServiceApplication/MyUri"
);
HelloService service = new HelloService();
ChannelServices.RegisterChannel(New TcpChannel())
RemotingConfiguration.RegisterWellKnownClientType(GetType(HelloService), "tcp://localhost:8082/HelloServiceApplication/MyUri")
Dim service As New HelloService()
설명
현재 속성을 통해 또는 구성 파일을 통해 애플리케이션 이름은 한 번만 설정할 수 있습니다. 애플리케이션 같은 인터넷 정보 서비스 (IIS)에 호스트 된 환경 내에서 실행 되는 경우이 값이 이미 설정 되어 (일반적으로 가상 디렉터리로). 현재 속성은 반환 null
애플리케이션 이름이 설정 되지 않은 경우.