DataRow.GetColumnError Yöntem

Tanım

Bir sütunun hata açıklamasını alır.

Aşırı Yüklemeler

GetColumnError(String)

Adla belirtilen bir sütunun hata açıklamasını alır.

GetColumnError(DataColumn)

Belirtilen DataColumnöğesinin hata açıklamasını alır.

GetColumnError(Int32)

Dizin tarafından belirtilen sütunun hata açıklamasını alır.

GetColumnError(String)

Kaynak:
DataRow.cs
Kaynak:
DataRow.cs
Kaynak:
DataRow.cs

Adla belirtilen bir sütunun hata açıklamasını alır.

public:
 System::String ^ GetColumnError(System::String ^ columnName);
public string GetColumnError (string columnName);
member this.GetColumnError : string -> string
Public Function GetColumnError (columnName As String) As String

Parametreler

columnName
String

Sütunun adı.

Döndürülenler

Hata açıklamasının metni.

Örnekler

Aşağıdaki örnek, belirtilen DataRowbir için hata açıklamasını ayarlar.

private void SetColError(DataRow row, int columnIndex)
{
    string errorString = "Replace this text.";

    // Set the error for the specified column of the row.
    row.SetColumnError(columnIndex, errorString);
}

private void PrintColError(DataRow row, int columnIndex)
{
    // Print the error of a specified column.
    Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
    byVal columnIndex As Integer)
    Dim errorString As String = "Replace this text."

    ' Set the error for the specified column of the row.
    row.SetColumnError(columnIndex, errorString)
End Sub
 
Private Sub PrintColError( _
    ByVal row As DataRow, byVal columnIndex As Integer)

    ' Print the error of a specified column.
    Console.WriteLine(row.GetColumnError(columnIndex))
End Sub

Açıklamalar

SetColumnError Sütun hatalarını ayarlamak için yöntemini kullanın.

Sütun koleksiyonunda herhangi bir hata olup olmadığını belirlemek için yöntemini kullanın HasErrors . Sonuç olarak, hata içeren tüm sütunları almak için yöntemini kullanabilirsiniz GetColumnsInError .

Sütun koleksiyonundaki tüm hataları temizlemek için yöntemini kullanın ClearErrors .

Ayrıca bkz.

Şunlara uygulanır

GetColumnError(DataColumn)

Kaynak:
DataRow.cs
Kaynak:
DataRow.cs
Kaynak:
DataRow.cs

Belirtilen DataColumnöğesinin hata açıklamasını alır.

public:
 System::String ^ GetColumnError(System::Data::DataColumn ^ column);
public string GetColumnError (System.Data.DataColumn column);
member this.GetColumnError : System.Data.DataColumn -> string
Public Function GetColumnError (column As DataColumn) As String

Parametreler

column
DataColumn

Bir DataColumn.

Döndürülenler

Hata açıklamasının metni.

Örnekler

Aşağıdaki örnek, belirtilen DataRowbir için hata açıklamasını ayarlar.

private void SetColError(DataRow row, int columnIndex)
{
    string errorString = "Replace this text.";

    // Set the error for the specified column of the row.
    row.SetColumnError(columnIndex, errorString);
}

private void PrintColError(DataRow row, int columnIndex)
{
    // Print the error of a specified column.
    Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
    byVal columnIndex As Integer)
    Dim errorString As String = "Replace this text."

    ' Set the error for the specified column of the row.
    row.SetColumnError(columnIndex, errorString)
End Sub
 
Private Sub PrintColError( _
    ByVal row As DataRow, byVal columnIndex As Integer)

    ' Print the error of a specified column.
    Console.WriteLine(row.GetColumnError(columnIndex))
End Sub

Açıklamalar

SetColumnError Sütun hatalarını ayarlamak için yöntemini kullanın.

Sütun koleksiyonunda herhangi bir hata olup olmadığını belirlemek için yöntemini kullanın HasErrors . Sonuç olarak, hata içeren tüm sütunları almak için yöntemini kullanabilirsiniz GetColumnsInError . Alternatif olarak, GetErrors yöntemi DataTable hata içeren tüm satırları döndürür.

Sütun koleksiyonundaki tüm hataları temizlemek için yöntemini kullanın ClearErrors .

Ayrıca bkz.

Şunlara uygulanır

GetColumnError(Int32)

Kaynak:
DataRow.cs
Kaynak:
DataRow.cs
Kaynak:
DataRow.cs

Dizin tarafından belirtilen sütunun hata açıklamasını alır.

public:
 System::String ^ GetColumnError(int columnIndex);
public string GetColumnError (int columnIndex);
member this.GetColumnError : int -> string
Public Function GetColumnError (columnIndex As Integer) As String

Parametreler

columnIndex
Int32

Sütunun sıfır tabanlı dizini.

Döndürülenler

Hata açıklamasının metni.

Özel durumlar

Bağımsız columnIndex değişken aralık dışında.

Örnekler

Aşağıdaki örnek, belirtilen DataRowbir için hata açıklamasını ayarlar.

private void SetColError(DataRow row, int columnIndex)
{
    string errorString = "Replace this text.";

    // Set the error for the specified column of the row.
    row.SetColumnError(columnIndex, errorString);
}

private void PrintColError(DataRow row, int columnIndex)
{
    // Print the error of a specified column.
    Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
    byVal columnIndex As Integer)
    Dim errorString As String = "Replace this text."

    ' Set the error for the specified column of the row.
    row.SetColumnError(columnIndex, errorString)
End Sub
 
Private Sub PrintColError( _
    ByVal row As DataRow, byVal columnIndex As Integer)

    ' Print the error of a specified column.
    Console.WriteLine(row.GetColumnError(columnIndex))
End Sub

Açıklamalar

SetColumnError Sütun hatalarını ayarlamak için yöntemini kullanın.

Sütun koleksiyonunda herhangi bir hata olup olmadığını belirlemek için yöntemini kullanın HasErrors . Sonuç olarak, hata içeren tüm sütunları almak için yöntemini kullanabilirsiniz GetColumnsInError .

Sütun koleksiyonundaki tüm hataları temizlemek için yöntemini kullanın ClearErrors .

Ayrıca bkz.

Şunlara uygulanır