7 references to IsUsableAsReadOnly
System.Xaml (7)
System\Xaml\Context\XamlParserContext.cs (1)
135
if (member.IsReadOnly || (member.Type is not null && member.Type.
IsUsableAsReadOnly
))
System\Xaml\Schema\TypeReflector.cs (1)
1024
if (member.IsReadOnly && !member.Type.
IsUsableAsReadOnly
)
System\Xaml\XamlObjectReader.cs (1)
2325
(context.IsPropertyWriteVisible(property) || property.Type.
IsUsableAsReadOnly
);
System\Xaml\XamlType.cs (4)
1077
if (!member.IsReadOnly || member.Type.
IsUsableAsReadOnly
)
1116
if (!skipReadOnlyCheck && result.IsReadOnly && !result.Type.
IsUsableAsReadOnly
)
1145
if (result.IsReadOnly && !result.Type.
IsUsableAsReadOnly
)
1669
if (excludedMember.IsReadOnly && !excludedMember.Type.
IsUsableAsReadOnly
)