6 writes to _declaringType
System.Xaml (6)
System\Xaml\XamlMember.cs (6)
37_declaringType = declaringType ?? throw new ArgumentNullException(nameof(declaringType)); 57_declaringType = schemaContext.GetXamlType(propertyInfo.DeclaringType); 80_declaringType = schemaContext.GetXamlType(eventInfo.DeclaringType); 114_declaringType = schemaContext.GetXamlType(accessor.DeclaringType); 141_declaringType = schemaContext.GetXamlType(adder.DeclaringType); 152_declaringType = null;
11 references to _declaringType
System.Xaml (11)
System\Xaml\XamlMember.cs (11)
157public XamlType DeclaringType { get { return _declaringType; } } 183get { return IsReadPublicIgnoringType && (_declaringType is null || _declaringType.IsPublic); } 188get { return IsWritePublicIgnoringType && (_declaringType is null || _declaringType.IsPublic); } 224return _declaringType; 338Debug.Assert(_declaringType is not null, "XamlDirective should not call base.ToString"); 339return $"{_declaringType}.{Name}"; 555XamlMember member = _declaringType.GetMember(name); 659return _declaringType; 845private XamlSchemaContext SchemaContext { get { return _declaringType.SchemaContext; } }