// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.IO; using global::System.IO; /// /// Class IODefaults. /// public static class IODefaults { /// /// The default copy to buffer size. /// public const int CopyToBufferSize = 81920; /// /// The default file stream buffer size. /// public const int FileStreamBufferSize = 4096; /// /// The default buffer size. /// public const int StreamWriterBufferSize = 1024; }