1 write to _ownerType
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (1)
6855
_ownerType
= ownerType;
4 references to _ownerType
PresentationBuildTasks (4)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (4)
6860
public Type OwnerType { get { return
_ownerType
; } }
6862
public string FullName { get { return $"{
_ownerType
.FullName}.{_name}"; } }
6867
return (
_ownerType
== other.OwnerType && (string.Equals(_name, other.Name, StringComparison.Ordinal)));
6872
return
_ownerType
.GetHashCode() ^ _name.GetHashCode();