9 implementations of CanFilterType
System.Workflow.Activities (3)
EventSinkActivity.cs (1)
510
public bool
CanFilterType
(Type type, bool throwOnError)
InvokeSchedule.cs (1)
123
bool ITypeFilterProvider.
CanFilterType
(Type type, bool throwOnError)
WebServiceReceive.cs (1)
886
public bool
CanFilterType
(Type type, bool throwOnError)
System.Workflow.ComponentModel (4)
AuthoringOM\Behaviors\ExceptionHandler.cs (1)
107
bool ITypeFilterProvider.
CanFilterType
(Type type, bool throwOnError)
AuthoringOM\Design\CustomActivityDesigner.cs (1)
696
bool ITypeFilterProvider.
CanFilterType
(Type type, bool throwOnError)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
1355
public bool
CanFilterType
(Type type, bool throwOnError)
AuthoringOM\Fault.cs (1)
118
bool ITypeFilterProvider.
CanFilterType
(Type type, bool throwOnError)
System.WorkflowServices (2)
System\Workflow\Activities\Design\OperationPickerDialog.cs (1)
521
bool ITypeFilterProvider.
CanFilterType
(Type type, bool throwOnError)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
830
bool ITypeFilterProvider.
CanFilterType
(Type type, bool throwOnError)
9 references to CanFilterType
System.Workflow.Activities (2)
Common\BasePropertyDescriptor.cs (1)
686
filterProvider.
CanFilterType
(type, true); //this will throw an exception if the type is not correctly filterable
Designers\WebServiceReceiveDesigner.cs (1)
122
typeFilterProvider.
CanFilterType
(type, true);
System.Workflow.ComponentModel (7)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (4)
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)))
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)
AuthoringOM\Design\WorkflowInlining.cs (1)
449
if (workflowType != null && typeFilterProvider.
CanFilterType
(workflowType, false))
AuthoringOM\Fault.cs (1)
189
typeFilterProvider.
CanFilterType
(type, true);
Shared\BasePropertyDescriptor.cs (1)
685
filterProvider.
CanFilterType
(type, true); //this will throw an exception if the type is not correctly filterable