Base:
3 overrides of HasDefaultValue
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\Parameters\RoFatMethodParameter.cs (1)
71
public abstract override bool
HasDefaultValue
{ get; }
System\Reflection\TypeLoading\Parameters\RoPropertyIndexParameter.cs (1)
31
public sealed override bool
HasDefaultValue
=> _backingParameter.HasDefaultValue;
System\Reflection\TypeLoading\Parameters\RoThinMethodParameter.cs (1)
29
public sealed override bool
HasDefaultValue
=> true; // Compat: returning "true" makes no sense but this is how it's always been.
1 reference to HasDefaultValue
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Parameters\RoPropertyIndexParameter.cs (1)
31
public sealed override bool HasDefaultValue => _backingParameter.
HasDefaultValue
;