Implemented interface member:
property
IsPublic
System.Runtime.InteropServices._Type.IsPublic
44 references to IsPublic
mscorlib (3)
system\rttype.cs (2)
2486bool isPublic = type.IsNestedPublic || type.IsPublic; 5125if (this.IsPublic || this.IsNotPublic)
system\type.cs (1)
995if (!type.IsPublic)
PresentationBuildTasks (2)
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
123return type.IsNotPublic || (origType != type && type.IsPublic); 142return type.IsPublic;
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (1)
443if (t.IsPublic)
PresentationFramework (1)
src\Framework\System\Windows\Markup\Primitives\MarkupWriter.cs (1)
164if (!type.IsPublic )
System (1)
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1045if ((!(eventInfo.DeclaringType.IsPublic || eventInfo.DeclaringType.IsNestedPublic)) && (eventInfo.DeclaringType.Assembly == typeof(ReflectTypeDescriptionProvider).Assembly)) {
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Model\XamlUtilities.cs (1)
46if (type != null && !type.IsPublic && typeof(TypeConverter).IsAssignableFrom(type))
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
582where (type.IsPublic && type.IsVisible && (typeFilter == null || typeFilter(type)))
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\XamlUtilities.cs (1)
46if (type != null && !type.IsPublic && typeof(TypeConverter).IsAssignableFrom(type))
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
582where (type.IsPublic && type.IsVisible && (typeFilter == null || typeFilter(type)))
System.Data.Entity (2)
System\Data\Common\Internal\Materialization\CoordinatorScratchpad.cs (1)
336if (_userArgumentType != null && !nex.Type.IsPublic && nex.Type.Assembly == typeof(SecurityBoundaryExpressionVisitor).Assembly)
System\Data\Metadata\Edm\LightweightCodeGenerator.cs (1)
456return ((null == type) || (type.IsPublic && IsPublic(type.DeclaringType)));
System.Runtime.Remoting (2)
metadata\wsdlwriter.cs (2)
162if (!(type.IsPublic || type.IsNotPublic)) 411if (!(type.IsPublic || type.IsNotPublic))
System.Runtime.Serialization (1)
System\Runtime\Serialization\DataContract.cs (1)
2360: t.IsPublic || IsTypeVisibleInSerializationModule(t);
System.ServiceModel (1)
System\ServiceModel\Administration\AdministrationHelpers.cs (1)
20if (baseType.IsPublic && baseType.Assembly == typeof(BindingElement).Assembly)
System.Web (4)
Compilation\BuildManager.cs (1)
973if (type.IsPublic) {
UI\ControlBuilder.cs (1)
1686if (cba.BuilderType.IsPublic) {
UI\WebParts\WebPartUtil.cs (1)
42if (!(connectionPointType.IsPublic || connectionPointType.IsNestedPublic)) {
Util\FactoryGenerator.cs (1)
97if (!(type.IsPublic || type.IsNestedPublic)) {
System.Web.Extensions (1)
Compilation\WCFModel\VSWCFServiceContractGenerator.cs (1)
1111return t.IsPublic || t.IsNestedPublic;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
150if (!componentType.IsPublic || !componentType.IsAssignableFrom(ownerType)) {
System.Workflow.Activities (4)
Rules\Parser\Parser.cs (1)
498return (type.IsPublic || type.IsNestedPublic
Rules\RuleValidation.cs (1)
3392if ((type != null) && (type.IsPublic || type.IsNestedPublic) && (type.IsSealed) && (IsMarkedExtension(type)))
WebServiceReceive.cs (1)
585if (!paramType.IsPublic || !paramType.IsSerializable)
WebServiceResponse.cs (1)
420if (!paramType.IsPublic || !paramType.IsSerializable)
System.Workflow.ComponentModel (5)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (2)
102if ((type != null) && (type.IsPublic || type.IsNestedPublic || (this.isLocalAssembly && type.Attributes != TypeAttributes.NestedPrivate))) 117if (type.IsPublic || (this.isLocalAssembly && type.Attributes != TypeAttributes.NestedPrivate))
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
744isPublic = (memberInfo as Type).IsPublic || (memberInfo as Type).IsNestedPublic;
AuthoringOM\Design\CustomActivityDesigner.cs (1)
699if (TypeProvider.IsAssignable(typeof(Activity), type) && type.IsPublic && !type.IsSealed && !type.IsAbstract && !(type is DesignTimeType))
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
355if (type.IsPublic)
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
576isPublic = (memberInfo as Type).IsPublic || (memberInfo as Type).IsNestedPublic;
System.Xml (5)
System\Xml\Serialization\Types.cs (1)
696if (!type.IsPublic && !type.IsNestedPublic) {
System\Xml\Serialization\XmlSerializationGeneratedCode.cs (2)
193if (!type.IsPublic && !type.IsNestedPublic) 348if (!type.IsPublic && !type.IsNestedPublic)
System\Xml\Serialization\XmlSerializationILGen.cs (2)
225if (!type.IsPublic && !type.IsNestedPublic) 433if (!type.IsPublic && !type.IsNestedPublic)
WindowsBase (5)
Base\MS\Internal\ComponentModel\APCustomTypeDescriptor.cs (1)
200if( typeConverter.GetType().IsPublic )
Base\MS\Internal\ComponentModel\DPCustomTypeDescriptor.cs (1)
220if( typeConverter.GetType().IsPublic )
Base\System\ComponentModel\DependencyPropertyDescriptor.cs (1)
493if( typeConverter.GetType().IsPublic )
Shared\System\Windows\Markup\ReflectionHelper.cs (2)
123return type.IsNotPublic || (origType != type && type.IsPublic); 142return type.IsPublic;