StoryTeller.Persistence.JsonNode.With C# (CSharp) Метод

With() публичный Метод

public With ( Action action ) : INode
action Action
Результат INode
        public INode With(Action<INode> action)
        {
            action(this);
            return this;
        }