다음을 통해 공유


ControlDesigner.GetErrorDesignTimeHtml(Exception) 메서드

정의

지정된 예외에 대한 정보를 제공하는 HTML 태그를 검색합니다.

protected:
 virtual System::String ^ GetErrorDesignTimeHtml(Exception ^ e);
protected virtual string GetErrorDesignTimeHtml (Exception e);
abstract member GetErrorDesignTimeHtml : Exception -> string
override this.GetErrorDesignTimeHtml : Exception -> string
Protected Overridable Function GetErrorDesignTimeHtml (e As Exception) As String

매개 변수

e
Exception

발생한 예외입니다.

반환

지정된 예외에 대한 디자인 타임 HTML 태그입니다.

예제

다음 코드 예제에서는 오류가 발생할 때 컨트롤에 대 한 디자인 타임 HTML 태그를 생성 하 고 호출 하는 CreatePlaceHolderDesignTimeHtml 방법에 설명 합니다 메서드.

// Generate the design-time markup for the control when an error occurs.
protected override string GetErrorDesignTimeHtml(Exception e) 
{
    // Write the error message text in red, bold.
    string errorRendering =
        "<span style=\"font-weight:bold; color:Red; \">" +
        e.Message + "</span>";

    return CreatePlaceHolderDesignTimeHtml(errorRendering);
} // GetErrorDesignTimeHtml
' Generate the design-time markup for the control when an error occurs.
Protected Overrides Function GetErrorDesignTimeHtml( _
    ByVal ex As Exception) As String

    ' Write the error message text in red, bold.
    Dim errorRendering As String = _
        "<span style=""font-weight:bold; color:Red; "">" & _
        ex.Message & "</span>"

    Return CreatePlaceHolderDesignTimeHtml(errorRendering)

End Function ' GetErrorDesignTimeHtml

설명

메서드는 GetErrorDesignTimeHtml 일반적으로 메서드에서 GetDesignTimeHtml 예외가 throw되는 경우 호출됩니다.

상속자 참고

일반적인 디자인 패턴은 연결된 컨트롤을 통해 HTML 태그를 가져와서 오류가 발생하면 메서드를 호출하는 GetErrorDesignTimeHtml(Exception) 것입니다. 컨트롤에서 반환된 태그가 없는 경우 메서드를 GetEmptyDesignTimeHtml() 호출합니다. 이 메서드는 특정 태그를 제공하기 위해 재정의되지 않은 경우 컨트롤의 형식 및 ID에 대한 정보를 포함해야 하는 메서드를 호출 CreatePlaceHolderDesignTimeHtml() 합니다.

적용 대상

추가 정보