9 references to IsPublic
PresentationFramework (1)
System\Windows\Markup\XamlTypeMapperSchemaContext.cs (1)
379return result == null || result.IsPublic ? result : GetInternalType(result.UnderlyingType, result);
System.Xaml (7)
System\Xaml\Runtime\PartialTrustTolerantRuntime.cs (2)
139if (!MemberAccessPermissionDenied || xamlType.IsPublic || !HasDefaultInvoker(xamlType)) 170if (!MemberAccessPermissionDenied || xamlType.IsPublic)
System\Xaml\XamlMember.cs (2)
185get { return IsReadPublicIgnoringType && (_declaringType is null || _declaringType.IsPublic); } 190get { return IsWritePublicIgnoringType && (_declaringType is null || _declaringType.IsPublic); }
System\Xaml\XamlType.cs (3)
623if (IsPublic) 653if (IsPublic) 1436if (!IsPublic)
System.Xaml.Tests (1)
System\Xaml\XamlTypeTests.cs (1)
2844Assert.Equal(expected, type.IsPublic);