ComMethodElement 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
COM+ 구성 요소의 인터페이스가 웹 서비스로 노출될 때 노출되는 COM+ 메서드를 나타냅니다. 이 클래스는 상속될 수 없습니다.
public ref class ComMethodElement sealed : System::Configuration::ConfigurationElement
public sealed class ComMethodElement : System.Configuration.ConfigurationElement
type ComMethodElement = class
inherit ConfigurationElement
Public NotInheritable Class ComMethodElement
Inherits ConfigurationElement
- 상속
설명
COM+ 통합 구성 도구(ComSvcConfig.exe)는 COM 인터페이스의 특정 메서드를 생성된 서비스 계약에 나타나도록 추가하는 데 사용할 수 있습니다.
예를 들어, 생성된 서비스 계약에 IFinances
구성 요소 ItemOrders.Financial
COM 인터페이스의 명명된 메서드 3개를 추가하기 위해 다음 명령을 사용할 수 있습니다.
ComSvcConfig.exe /i /application:OnlineStore /contract:ItemOrders.Financial,IFinances.{TransferFunds,AddFunds,RemoveFunds} /hosting:complus
ComSvcConfig.exe 도구를 실행하면 위의 메서드를 exposedMethod
요소로 나열하는 다음 서비스 계약이 생성됩니다.
<comContract contractType="{C551FBA9-E3AA-4272-8C2A-84BD8D290AC7}" name="IFinances" namespace="http://contoso.com/services/financial">
<exposedMethod name="TransferFunds"/>
<exposedMethod name="AddFunds"/>
<exposedMethod name="RemoveFunds"/>
</comContract>
서비스 초기화 시 런타임에서는 exposedMethod
요소의 목록에 포함된 메서드만 검토하고 추가하는 방법으로 서비스 계약을 생성하려고 시도합니다. 서비스 계약에 포함되지 않은 모든 인터페이스 메서드에 대해서는 추적이 생성됩니다.
생성자
ComMethodElement() |
ComMethodElement 클래스의 새 인스턴스를 초기화합니다. |
ComMethodElement(String) |
지정된 메서드를 사용하여 ComMethodElement 클래스의 새 인스턴스를 초기화합니다. |