Aracılığıyla paylaş


LoginViewDesigner.GetErrorDesignTimeHtml(Exception) Yöntem

Tanım

Bir hata oluştuğunda tasarım zamanında ilişkili denetimi işleyen işaretlemeyi sağlar.

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

Parametreler

e
Exception

Atılan Exception .

Döndürülenler

String

Bir hata oluştuktan sonra tasarım zamanında ilişkili LoginView işlemek için kullanılan işaretlemeyi içeren dize.

Örnekler

Aşağıdaki kod örneği, tasarım zamanında sınıfından GetErrorDesignTimeHtml türetilen LoginViewDesigner bir denetimin görünümünü değiştirmek için sınıfından LoginView devralınan bir sınıfta yönteminin nasıl geçersiz kılındığını gösterir. Örnek, kırmızı, kalın metinle işlenen hata iletisini içeren bir yer tutucu için işaretleme oluşturur.

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

Açıklamalar

Hata tasarım zamanı LoginView denetimi, tür adını, denetim adını ve hatayı duyurup açıklayan iletileri içeren bir panel olarak işlenir.

Şunlara uygulanır

Ayrıca bkz.