Aracılığıyla paylaş


LoginDesigner.GetErrorDesignTimeHtml(Exception) Yöntem

Tanım

Bir hata oluştuğunda tasarım zamanında ilişkili denetimi işlemek için kullanılan 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

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

Örnekler

Aşağıdaki kod örneği, tasarım zamanında denetimden LoginDesigner türetilen bir denetimin görünümünü değiştirmek için sınıfından devralınan bir sınıfta yönteminin Login nasıl geçersiz kılındığını GetErrorDesignTimeHtml 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 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

Açıklamalar

Tasarım zamanı Login denetiminin işlenen yer tutucusu tür adını, denetim adını ve hatayı duyurup açıklayan iletileri içerir.

Şunlara uygulanır

Ayrıca bkz.