1 write to Property
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\PropertyInfoImpl.cs (1)
24this.Property = property;
13 references to Property
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (13)
Debugger\MemberInfo\PropertyInfoImpl.cs (13)
29get { return this.Property.Attributes; } 41return this.Property.CanWrite; 47get { return (TypeImpl)this.Property.DeclaringType; } 57get { return (MemberTypes)this.Property.MemberType; } 72get { return this.Property.Name; } 77get { return (TypeImpl)this.Property.PropertyType; } 87return this.Property.GetAccessors(nonPublic).Select(a => new MethodInfoImpl(a)).ToArray(); 107return this.Property.GetCustomAttributesData().Select(a => new CustomAttributeDataImpl(a)).ToArray(); 112var method = this.Property.GetGetMethod(nonPublic); 118return this.Property.GetIndexParameters().Select(p => new ParameterInfoImpl(p)).ToArray(); 123var setMethod = this.Property.GetSetMethod(nonPublic); 132return this.Property.GetValue(obj, (System.Reflection.BindingFlags)invokeAttr, null, null, null); 147return this.Property.ToString();