You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
436 B
19 lines
436 B
namespace MediaBrowser.Model.IO
|
|
{
|
|
/// <summary>
|
|
/// Class IODefaults.
|
|
/// </summary>
|
|
public static class IODefaults
|
|
{
|
|
/// <summary>
|
|
/// The default copy to buffer size.
|
|
/// </summary>
|
|
public const int CopyToBufferSize = 81920;
|
|
|
|
/// <summary>
|
|
/// The default file stream buffer size.
|
|
/// </summary>
|
|
public const int FileStreamBufferSize = 4096;
|
|
}
|
|
}
|