1 write to _name
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (1)
6858_name = name;
4 references to _name
PresentationBuildTasks (4)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (4)
6861public string Name { get { return _name; } } 6864public string FullName { get { return $"{_ownerType.FullName}.{_name}"; } } 6869return (_ownerType == other.OwnerType && (string.Equals(_name, other.Name, StringComparison.Ordinal))); 6874return _ownerType.GetHashCode() ^ _name.GetHashCode();