32 references to IsVisible
dotnet-svcutil-lib (3)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (2)
444return type.GetTypeInfo().IsVisible; 448return (type.GetTypeInfo().IsVisible &&
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
2218if (!t.GetTypeInfo().IsVisible && !IsTypeVisibleInSerializationModule(t))
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
src\Identity\test\Shared\ApiConsistencyTestBase.cs (2)
15where type.IsVisible 39where type.IsVisible
Microsoft.AspNetCore.Identity.InMemory.Test (2)
src\Identity\test\Shared\ApiConsistencyTestBase.cs (2)
15where type.IsVisible 39where type.IsVisible
Microsoft.AspNetCore.Identity.Test (2)
src\Identity\test\Shared\ApiConsistencyTestBase.cs (2)
15where type.IsVisible 39where type.IsVisible
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\CustomValidationAttribute.cs (1)
224if (!ValidatorType.IsVisible)
System.ComponentModel.Composition (5)
Microsoft\Internal\ReflectionServices.cs (4)
29return constructor.DeclaringType!.IsVisible && constructor.IsPublic; 35return field.DeclaringType.IsVisible && field.IsPublic; 41if (!method.DeclaringType.IsVisible) 52if (!typeArgument.IsVisible)
System\ComponentModel\Composition\Hosting\CompositionServices.cs (1)
636if (type.IsEnum && type.IsVisible)
System.Linq.Expressions (1)
System\Linq\Expressions\Compiler\ILGen.cs (1)
467return t.IsGenericParameter || t.IsVisible;
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (2)
89return GetElementType()!.IsVisible; 109if (!t.IsVisible)
System.Private.DataContractSerialization (2)
System\Runtime\Serialization\ClassDataContract.cs (2)
346return type.IsVisible; 348return (type.IsVisible &&
System.Private.Xml (1)
System\Xml\Serialization\Types.cs (1)
763if (!type.IsVisible)
System.Reflection.DispatchProxy (1)
System\Reflection\DispatchProxyGenerator.cs (1)
241if (!type.IsVisible)
System.Security.Cryptography (3)
System\Security\Cryptography\CryptoConfig.cs (3)
314if (!algorithm.IsVisible) 397if (retvalType != null && !retvalType.IsVisible) 428if (retvalType != null && !retvalType.IsVisible)
System.Xaml (7)
System\Xaml\Schema\CollectionReflector.cs (1)
345if (!type.IsVisible)
System\Xaml\Schema\TypeReflector.cs (3)
677|| (getters is not null && getters.Count > 0 && UnderlyingType.IsVisible && getters[0].IsPublic && !setters[0].IsPublic)) 744if (UnderlyingType.IsVisible) 810if (UnderlyingType.IsVisible)
System\Xaml\Schema\XamlTypeInvoker.cs (1)
235_isPublic = type.IsVisible ? ThreeValuedBool.True : ThreeValuedBool.False;
System\Xaml\Schema\XamlValueConverter.cs (1)
63_isPublic = (ConverterType is null || ConverterType.IsVisible) ? ThreeValuedBool.True : ThreeValuedBool.False;
System\Xaml\XamlType.cs (1)
1196return underlyingType.IsVisible;