DbUpdatableDataRecord.Item[String] Eigenschaft
Definition
Ruft einen Feldwert ab.Gets a field value.
Überlädt
Item[Int32] |
Gibt einen Wert mit der angegebenen Ordinalzahl des Felds zurück.Returns a value that has the given field ordinal. |
Item[String] |
Ruft einen Wert mit dem angegebenen Feldnamen ab.Gets a value that has the given field name. |
Item[Int32]
Gibt einen Wert mit der angegebenen Ordinalzahl des Felds zurück.Returns a value that has the given field ordinal.
public:
virtual property System::Object ^ default[int] { System::Object ^ get(int ordinal); };
public override object this[int ordinal] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(ordinal As Integer) As Object
Parameter
- ordinal
- Int32
Die Ordinalzahl des Felds.The ordinal of the field.
Eigenschaftswert
Der Wert mit der angegebenen Feldordinalzahl.The value that has the given field ordinal.
Implementiert
Item[String]
Ruft einen Wert mit dem angegebenen Feldnamen ab.Gets a value that has the given field name.
public:
virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public override object this[string name] { get; }
member this.Item(string) : obj
Default Public Overrides ReadOnly Property Item(name As String) As Object
Parameter
- name
- String
Der Name des Felds.The name of the field.
Eigenschaftswert
Der Feldwert.The field value.