File: System\ComponentModel\Composition\ReflectionModel\ReflectionWritableMember.cs
Web Access
Project: src\src\libraries\System.ComponentModel.Composition\src\System.ComponentModel.Composition.csproj (System.ComponentModel.Composition)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.ComponentModel.Composition.ReflectionModel
{
    internal abstract class ReflectionWritableMember : ReflectionMember
    {
        public abstract bool CanWrite
        {
            get;
        }
 
        public abstract void SetValue(object? instance, object? value);
    }
}