示例#1
0
        public bool TryGetValue(int key, out Http2Stream value)
        {
            if (FlowControlledStreams.TryGetValue(key, out value))
            {
                return(true);
            }

            if (NonFlowControlledStreams.TryGetValue(key, out value))
            {
                return(true);
            }

            return(false);
        }