Class SpannerRowUpdatedEventArgs
Provides data for the RowUpdated event of the Spanner data provider.
Inherited Members
Namespace: Google.Cloud.Spanner.Data
Assembly: Google.Cloud.Spanner.Data.dll
Syntax
public sealed class SpannerRowUpdatedEventArgs : RowUpdatedEventArgs
Constructors
SpannerRowUpdatedEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping)
Initializes a new instance of the SpannerRowUpdatedEventArgs class.
Declaration
public SpannerRowUpdatedEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
Parameters
Type | Name | Description |
---|---|---|
DataRow | row | The DataRow sent through an Update. Must not be null. |
IDbCommand | command | The SpannerCommand executed when Update is called. May be null. |
StatementType | statementType | The type of SQL statement executed. |
DataTableMapping | tableMapping | The DataTableMapping sent through an Update. May be null. |
Properties
Command
Gets the SpannerCommand executed when Update is called.
Declaration
public SpannerCommand Command { get; }
Property Value
Type | Description |
---|---|
SpannerCommand |