Show / Hide Table of Contents

    Interface ISetter<TValue, TArgument>

    Defines an setter that requires an argument to set the passed value as a new state.

    Определяет установщик, которому для установки переданного значения в качестве нового состояния требуется аргумент.

    Namespace: Platform.Interfaces
    Assembly: Platform.Interfaces.dll
    Syntax
    public interface ISetter<in TValue, in TArgument>
    Type Parameters
    Name Description
    TValue

    Type of set value.

    Тип устанавливаемого значения.

    TArgument

    The argument type.

    Тип аргумента.

    Methods

    | Improve this Doc View Source

    Set(TArgument, TValue)

    Sets the value of a specific property in the specified object.

    Устанавливает значение определённого свойства в указанном объекте.

    Declaration
    void Set(TArgument argument, TValue value)
    Parameters
    Type Name Description
    TArgument argument

    The argument.

    Аргумент.

    TValue value

    The value.

    Значение.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX