protected void PushContext(TJSONProtocol.JSONBaseContext c) { this.contextStack.Push(this.context); this.context = c; }
public TJSONProtocol(TTransport trans) : base(trans) { this.context = new TJSONProtocol.JSONBaseContext(this); this.reader = new TJSONProtocol.LookaheadReader(this); }
protected void PopContext() { this.context = this.contextStack.Pop(); }