Пример #1
0
        internal static bool DoReadResponseBuffer(Session oS, byte[] arrBytes, int cBytes)
        {
            if (FiddlerApplication.OnReadResponseBuffer == null)
            {
                return(true);
            }
            if (oS.isFlagSet(SessionFlags.Ignored))
            {
                return(true);
            }
            RawReadEventArgs rawReadEventArgs = new RawReadEventArgs(oS, arrBytes, cBytes);

            FiddlerApplication.OnReadResponseBuffer(oS, rawReadEventArgs);
            return(!rawReadEventArgs.AbortReading);
        }