1 write to typeFilterProvider
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
106
this.
typeFilterProvider
= filterProvider;
10 references to typeFilterProvider
System.Workflow.ComponentModel (10)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (10)
446
if (this.
typeFilterProvider
!= null && !this.
typeFilterProvider
.CanFilterType(extendedUIService != null ? extendedUIService.GetRuntimeType(type) : type, false))
547
if ((type != null) && (this.
typeFilterProvider
== null || this.
typeFilterProvider
.CanFilterType(type, false)))
812
if (this.
typeFilterProvider
!= null)
813
this.artifactLabel.Text = this.
typeFilterProvider
.FilterDescription;
879
if ((namespaceToFilter == null || type.Namespace == namespaceToFilter) && ((selectedAssemblies.Count == 0 && type.Assembly == null) || selectedAssemblies.Contains(type.Assembly)) && (this.
typeFilterProvider
== null || this.
typeFilterProvider
.CanFilterType(extendedUIService != null ? extendedUIService.GetRuntimeType(type) : type, false)))
1021
if ((null != selectedType) && (this.
typeFilterProvider
== null || (this.
typeFilterProvider
.CanFilterType(selectedType, false))) && !selectedType.IsGenericTypeDefinition)