See also:
NTier Windows Forms Framework Home
NTier Framework API reference

Get a list of types to use in the intellisense drop down when choosing a property type. See the [TypeValueIntellisenseEditorSubtypeFilter] attribute applied to PropertyTypeName.

Namespace: NTier.Model.Entity
Assembly: NTier.Model.Entity (in NTier.Model.Entity.dll) Version: 1.0.0.0

Syntax

C#
protected virtual IEnumerable<Type> FilterPropertyTypeList(
	ITypeResolutionService typeResolutionService,
	IEnumerable<Type> enumerable
)
Visual Basic
Protected Overridable Function FilterPropertyTypeList ( 
	typeResolutionService As ITypeResolutionService,
	enumerable As IEnumerable(Of Type)
) As IEnumerable(Of Type)
Visual C++
protected:
virtual IEnumerable<Type^>^ FilterPropertyTypeList(
	ITypeResolutionService^ typeResolutionService, 
	IEnumerable<Type^>^ enumerable
)

Parameters

typeResolutionService
Type: System.ComponentModel.Design..::..ITypeResolutionService
The ITypeResolutionService used to resolve types from strings.
enumerable
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Type>)>)>
All types available from referenced assemblies of the current project.

Return Value

Type: IEnumerable<(Of <(<'Type>)>)>
The list of types to show in the intellisense drop edit.

See Also