RefactoringDeploymentContributor.FilterDeployedTransactionRecords Method
Returns a list of transaction records that are selected by filtering the provided transactions based on the provided context.
Namespace: Microsoft.Data.Schema.Refactoring
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Protected Overridable Function FilterDeployedTransactionRecords ( _
context As DeploymentContributorContext, _
records As IList(Of RefactoringRecord) _
) As IList(Of RefactoringRecord)
protected virtual IList<RefactoringRecord> FilterDeployedTransactionRecords(
DeploymentContributorContext context,
IList<RefactoringRecord> records
)
protected:
virtual IList<RefactoringRecord^>^ FilterDeployedTransactionRecords(
DeploymentContributorContext^ context,
IList<RefactoringRecord^>^ records
)
abstract FilterDeployedTransactionRecords :
context:DeploymentContributorContext *
records:IList<RefactoringRecord> -> IList<RefactoringRecord>
override FilterDeployedTransactionRecords :
context:DeploymentContributorContext *
records:IList<RefactoringRecord> -> IList<RefactoringRecord>
protected function FilterDeployedTransactionRecords(
context : DeploymentContributorContext,
records : IList<RefactoringRecord>
) : IList<RefactoringRecord>
Parameters
- context
Type: Microsoft.Data.Schema.Build.DeploymentContributorContext
A DeploymentContributorContext object.
- records
Type: System.Collections.Generic.IList<RefactoringRecord>
An IList<T> object of type RefactoringTransactionRecord.
Return Value
Type: System.Collections.Generic.IList<RefactoringRecord>
An IList<T> object of type RefactoringTransactionRecord.
Remarks
This method must be overridden; the base method does not filter.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
RefactoringDeploymentContributor Class
Microsoft.Data.Schema.Refactoring Namespace
RefactoringTransactionRecord