forked from DynamoDS/Dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not implement props in ViewExtensionBase (DynamoDS#11350)
This changes the definition of ViewExtensionBase to use abstract rather than virtual for the definition of required properties like Name and UniqueId. The use of virtual was creating a backing field which was not used in ViewExtensionBase and could not be assigned in the inheriting class, making it pretty much useless. Also the Dispose method is declared as abstract, as it was already required to implement and having a default empty implementation could lead developers to oversight the need to dispose resources in their extension.
- Loading branch information
Showing
3 changed files
with
17 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters