DataSourceView.CanInsert Proprietà

Definizione

Ottiene un valore che indica se l'oggetto DataSourceView associato all'oggetto DataSourceControl corrente supporta l'operazione ExecuteInsert(IDictionary).

public:
 virtual property bool CanInsert { bool get(); };
public virtual bool CanInsert { get; }
member this.CanInsert : bool
Public Overridable ReadOnly Property CanInsert As Boolean

Valore della proprietà

true se l'operazione è supportata, altrimenti false. L'implementazione della classe base restituisce false.

Esempio

Nell'esempio di codice seguente viene illustrato come eseguire l'override della CanInsert proprietà e del ExecuteInsert metodo in una classe che estende la DataSourceView classe. Questo esempio di codice fa parte di un esempio più grande fornito per la DataSourceView classe.

// The CsvDataSourceView does not currently
// permit insertion of a new record. You can
// modify or extend this sample to do so.
public override bool CanInsert {
    get {
        return false;
    }
}
protected override int ExecuteInsert(IDictionary values)
{
    throw new NotSupportedException();
}
' The CsvDataSourceView does not currently
' permit insertion of a new record. You can
' modify or extend this sample to do so.
Public Overrides ReadOnly Property CanInsert() As Boolean
   Get
      Return False
   End Get
End Property

Protected Overrides Function ExecuteInsert(values As IDictionary) As Integer
   Throw New NotSupportedException()
End Function 'ExecuteInsert

Commenti

La CanInsert proprietà riflette non solo una funzionalità del controllo origine dati, ma anche se è attualmente appropriata per eseguire un'operazione. Ad esempio, anche se un controllo origine dati supporta l'operazione ExecuteInsert , se un comando di inserimento richiesto o alcuni altri dati non è impostato, la CanInsert proprietà restituisce false, come un'operazione di inserimento non riesce.

Si applica a

Vedi anche