ManagementUnit.GetModuleService(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ModuleService 지정된 모듈 이름에 해당하는 개체를 검색합니다.
public:
Microsoft::Web::Management::Server::ModuleService ^ GetModuleService(System::String ^ moduleName);
public Microsoft.Web.Management.Server.ModuleService GetModuleService (string moduleName);
member this.GetModuleService : string -> Microsoft.Web.Management.Server.ModuleService
Public Function GetModuleService (moduleName As String) As ModuleService
매개 변수
- moduleName
- String
서비스를 구현하는 모듈의 이름입니다.
반환
ModuleService 지정된 모듈 이름에 해당하는 개체입니다.
예제
다음 예제에서는 메서드를 GetModuleService 사용하여 모듈 정보를 검색하고 추적 출력에 씁니다.
ManagementUnit mu = this.ManagementUnit;
string modName = "rHeil";
ModuleService ms = mu.GetModuleService(modName);
if(ms != null)
Trace.WriteLine("ModuleService for " + modName + " : " +
ms.ToString());
설명
지정된 ModuleService 개체를 사용할 수 없거나 이 ManagementUnit에 적용되지 않는 경우 반환 값은 입니다 null
.