System.ServiceModel.Http2Protocol.ProtocolSession.GetStreamById C# (CSharp) Method

GetStreamById() public method

returns stream by id.
public GetStreamById ( int streamId ) : Http2Stream
streamId int Stream Id.
return Http2Stream
        public Http2Stream GetStreamById(int streamId)
        {
            return this.streams.FirstOrDefault(s => s.StreamId == streamId);
        }