다음을 통해 공유


ServiceHealthSectionCollection.CreateSection 메서드

정의

오버로드

CreateSection(String)

지정된 제목을 사용하여 서비스 상태 섹션을 만들고 현재 컬렉션에 추가합니다.

CreateSection(String, String)

지정된 제목 및 배경색을 사용하여 서비스 상태 섹션을 만들고 현재 컬렉션에 추가합니다.

CreateSection(String, String, String)

지정된 제목, 배경색 및 전경색을 사용하여 서비스 상태 섹션을 만들고 현재 컬렉션에 추가합니다.

CreateSection(String)

지정된 제목을 사용하여 서비스 상태 섹션을 만들고 현재 컬렉션에 추가합니다.

public:
 System::ServiceModel::Description::ServiceHealthSection ^ CreateSection(System::String ^ title);
public System.ServiceModel.Description.ServiceHealthSection CreateSection (string title);
member this.CreateSection : string -> System.ServiceModel.Description.ServiceHealthSection
Public Function CreateSection (title As String) As ServiceHealthSection

매개 변수

title
String

서비스 상태 섹션의 제목입니다.

반환

ServiceHealthSection

서비스 상태 섹션입니다.

예외

title이(가) null인 경우

적용 대상

CreateSection(String, String)

지정된 제목 및 배경색을 사용하여 서비스 상태 섹션을 만들고 현재 컬렉션에 추가합니다.

public:
 System::ServiceModel::Description::ServiceHealthSection ^ CreateSection(System::String ^ title, System::String ^ backgroundColor);
public System.ServiceModel.Description.ServiceHealthSection CreateSection (string title, string backgroundColor);
member this.CreateSection : string * string -> System.ServiceModel.Description.ServiceHealthSection
Public Function CreateSection (title As String, backgroundColor As String) As ServiceHealthSection

매개 변수

title
String

서비스 상태 섹션의 제목입니다.

backgroundColor
String

서비스의 배경색을 정의하는 16진수 색 문자열입니다.

반환

ServiceHealthSection

서비스 상태 섹션입니다.

예외

title이(가) null인 경우

또는

backgroundcolor이(가) null인 경우

적용 대상

CreateSection(String, String, String)

지정된 제목, 배경색 및 전경색을 사용하여 서비스 상태 섹션을 만들고 현재 컬렉션에 추가합니다.

public:
 System::ServiceModel::Description::ServiceHealthSection ^ CreateSection(System::String ^ title, System::String ^ backgroundColor, System::String ^ foregroundColor);
public System.ServiceModel.Description.ServiceHealthSection CreateSection (string title, string backgroundColor, string foregroundColor);
member this.CreateSection : string * string * string -> System.ServiceModel.Description.ServiceHealthSection
Public Function CreateSection (title As String, backgroundColor As String, foregroundColor As String) As ServiceHealthSection

매개 변수

title
String

서비스 상태 섹션의 제목입니다.

backgroundColor
String

섹션의 배경색을 정의하는 16진수 색 문자열입니다.

foregroundColor
String

섹션의 전경색을 정의하는 16진수 색 문자열입니다.

반환

ServiceHealthSection

서비스 상태 섹션입니다.

예외

title이(가) null인 경우

또는

backgroundcolornull입니다.

또는

foregroundcolor이(가) null인 경우

적용 대상