Class WebhookExtenderBase
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Inheritance
Implements
Inherited Members
Namespace: SuperOffice.CRM.ArchiveLists
Assembly: SoDataBase.BusinessLogic.dll
Syntax
public abstract class WebhookExtenderBase : TableExtenderBase<WebhookTableInfo>, IArchiveProviderQueryMapping, IArchiveExtender, IArchiveProviderDoesExtend, IArchiveProviderHasColumns, IArchiveProviderExtensible
Constructors
WebhookExtenderBase()
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected WebhookExtenderBase()
Fields
ColumnEventCount
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
public const string ColumnEventCount = "eventCount"
Field Value
| Type | Description |
|---|---|
| string |
ColumnEvents
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
public const string ColumnEvents = "events"
Field Value
| Type | Description |
|---|---|
| string |
ColumnName
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
public const string ColumnName = "name"
Field Value
| Type | Description |
|---|---|
| string |
ColumnTargetUrl
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
public const string ColumnTargetUrl = "targetUrl"
Field Value
| Type | Description |
|---|---|
| string |
ColumnType
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
public const string ColumnType = "type"
Field Value
| Type | Description |
|---|---|
| string |
ColumnWebhookId
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
public const string ColumnWebhookId = "webhookId"
Field Value
| Type | Description |
|---|---|
| string |
_colEventCount
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colEventCount
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colEvents
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colEvents
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colName
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colName
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colRegisteredBy
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colRegisteredBy
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colRegisteredDate
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colRegisteredDate
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colTargetUrl
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colTargetUrl
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colType
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colType
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colUpdatedByFullName
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colUpdatedByFullName
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
_colWebhookId
Base extender class for Webhook archive columns. Maps columns from the Webhook table.
Declaration
protected ArchiveColumnInfo _colWebhookId
Field Value
| Type | Description |
|---|---|
| ArchiveColumnInfo |
Methods
InnerModifyQuery()
Template method called from ModifyQuery() during query processing; subclasses should implement it to build their queries. It will ONLY be called if IsQueryNeeded returns true.
Declaration
protected override void InnerModifyQuery()
Overrides
InnerPopulateRowFromReader(SoDataReader, ArchiveRow)
Derived classes should implement the population of ColumnData items for columns that are NOT handled by this base class in this method. Whether a column is handled by this base class is part of its database binding information, set by the various MapXXX methods.
Declaration
protected override void InnerPopulateRowFromReader(SoDataReader reader, ArchiveRow row)
Parameters
| Type | Name | Description |
|---|---|---|
| SoDataReader | reader | Data reader with the query result (one row) |
| ArchiveRow | row | archive row to be populated |