StoryTeller.Persistence.JsonNode.With C# (CSharp) Method

With() public method

public With ( Action action ) : INode
action Action
return INode
        public INode With(Action<INode> action)
        {
            action(this);
            return this;
        }