Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext.JsonPathStack.Push C# (CSharp) Method

Push() public method

public Push ( string value ) : void
value string
return void
            public void Push(string value)
            {
                if (value == "/")
                    currentDepth++;

                stackStringBuilder.Append(value);
                stackString = null;

                stack.Push(value);
            }
JsonUnmarshallerContext.JsonPathStack