다음을 통해 공유


ManagementUnit.GetModuleService(String) 메서드

정의

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.

적용 대상