Implemented interface member:
method
GetInterface
System.Runtime.InteropServices._Type.GetInterface(System.String, System.Boolean)
13 overrides of GetInterface
mscorlib (7)
system\reflection\emit\enumbuilder.cs (1)
173public override Type GetInterface(String name, bool ignoreCase)
system\reflection\emit\generictypeparameterbuilder.cs (1)
134public override Type GetInterface(String name, bool ignoreCase) { throw new NotSupportedException(); }
system\reflection\emit\symboltype.cs (1)
453public override Type GetInterface(String name,bool ignoreCase)
system\reflection\emit\typebuilder.cs (1)
1189public override Type GetInterface(String name,bool ignoreCase)
system\reflection\emit\typebuilderinstantiation.cs (1)
179public override Type GetInterface(String name, bool ignoreCase) { throw new NotSupportedException(); }
system\reflection\typedelegator.cs (1)
126public override Type GetInterface(String name, bool ignoreCase)
system\rttype.cs (1)
3390public override Type GetInterface(String fullname, bool ignoreCase)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1158public override Type GetInterface(string name, bool ignoreCase)
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1158public override Type GetInterface(string name, bool ignoreCase)
System.Web (1)
Compilation\DelayLoadType.cs (1)
112public override Type GetInterface(string name, bool ignoreCase) {
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
497public override Type GetInterface(string name, bool ignoreCase)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
382public override Type GetInterface(string name, bool ignoreCase)
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
299public override Type GetInterface(string name, bool ignoreCase)
19 references to GetInterface
mscorlib (2)
system\reflection\typedelegator.cs (1)
128return typeImpl.GetInterface(name,ignoreCase);
system\type.cs (1)
588return GetInterface(name,false);
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\TypeToTreeConverter.cs (2)
63if (type.GetInterface("IXmlSerializable", false) != null) 67else if (type.GetInterface("ISerializable", false) != null)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1160return _provider.MergeType(_baseReflectionType.GetInterface(name, ignoreCase));
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1160return _provider.MergeType(_baseReflectionType.GetInterface(name, ignoreCase));
System.Management (2)
Instrumentation\Instrumentation.cs (2)
298if (null != type.GetInterface("System.Management.Instrumentation.IEvent", false) || 299null != type.GetInterface("System.Management.Instrumentation.IInstance", false))
System.Web (1)
Compilation\DelayLoadType.cs (1)
113return Type.GetInterface(name, ignoreCase);
System.Web.DataVisualization (4)
Common\Utilities\XmlSerializer.cs (4)
398 if(pi.CanRead && pi.PropertyType.GetInterface("IList", true) != null) 1530if (pi.CanRead && pi.PropertyType.GetInterface("ICollection", true) != null && !this.SerializeICollAsAtribute(pi, objectToSerialize)) 2378if (pi.CanRead && pi.PropertyType.GetInterface("ICollection", true) != null && !this.SerializeICollAsAtribute(pi, objectToSerialize)) 3247if (pi.CanRead && pi.PropertyType.GetInterface("ICollection", true) != null)
System.Windows.Forms.DataVisualization (4)
Common\Utilities\XmlSerializer.cs (4)
398 if(pi.CanRead && pi.PropertyType.GetInterface("IList", true) != null) 1530if (pi.CanRead && pi.PropertyType.GetInterface("ICollection", true) != null && !this.SerializeICollAsAtribute(pi, objectToSerialize)) 2378if (pi.CanRead && pi.PropertyType.GetInterface("ICollection", true) != null && !this.SerializeICollAsAtribute(pi, objectToSerialize)) 3247if (pi.CanRead && pi.PropertyType.GetInterface("ICollection", true) != null)
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
516Type baseInterfaceCandidate = interfaceCandidate.GetInterface(name, ignoreCase);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
384Type itfType = this.runtimeType.GetInterface(name, ignoreCase);