DataSourceView.CanUpdate Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan nilai yang menunjukkan apakah objek yang DataSourceView terkait dengan objek saat ini DataSourceControl mendukung ExecuteUpdate(IDictionary, IDictionary, IDictionary) operasi.
public:
virtual property bool CanUpdate { bool get(); };
public virtual bool CanUpdate { get; }
member this.CanUpdate : bool
Public Overridable ReadOnly Property CanUpdate As Boolean
Nilai Properti
true
jika operasi didukung; jika tidak, false
. Implementasi default mengembalikan false
.
Contoh
Contoh kode berikut menunjukkan cara mengambil CanUpdate alih properti dan ExecuteUpdate metode di kelas yang memperluas DataSourceView kelas . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk DataSourceView kelas .
// The CsvDataSourceView does not currently
// permit update operations. You can modify or
// extend this sample to do so.
public override bool CanUpdate {
get {
return false;
}
}
protected override int ExecuteUpdate(IDictionary keys, IDictionary values, IDictionary oldValues)
{
throw new NotSupportedException();
}
' The CsvDataSourceView does not currently
' permit update operations. You can modify or
' extend this sample to do so.
Public Overrides ReadOnly Property CanUpdate() As Boolean
Get
Return False
End Get
End Property
Protected Overrides Function ExecuteUpdate(keys As IDictionary, _
values As IDictionary, _
oldValues As IDictionary) As Integer
Throw New NotSupportedException()
End Function 'ExecuteUpdate
End Class
Keterangan
Properti CanUpdate tidak hanya mencerminkan kemampuan kontrol sumber data, tetapi juga apakah saat ini sesuai untuk melakukan operasi. Misalnya, meskipun kontrol terikat data mendukung ExecuteUpdate operasi, jika perintah pembaruan yang diperlukan atau beberapa data lain tidak diatur, CanUpdate properti mengembalikan false
, karena operasi pembaruan akan gagal.