damianh / LimitsMiddleware

OWIN middleware to apply limits to an OWIN pipeline.
MIT License
0 stars 0 forks source link

Doc for MinResponseDelay() was copied from MaxBandwidthPerRequest() #27

Closed abatishchev closed 8 years ago

abatishchev commented 8 years ago

Xml doc for public static IAppBuilder MinResponseDelay()) currently is:

    /// <param name="minDelay">
    ///     The maximum number of bytes per second to be transferred. Use 0 or a negative
    ///     number to specify infinite bandwidth.
    /// </param>

which seems to be a copy of one forpublic static IAppBuilder MaxBandwidthPerRequest():

    /// <param name="maxBytesPerSecond">
    ///     The maximum number of bytes per second to be transferred. Use 0 or a negative
    ///     number to specify infinite bandwidth.
    /// </param>
damianh commented 8 years ago

oops yeah

damianh commented 8 years ago

Fixed with a yolo commit. Will be in next release.