File: System\Net\Security\StreamSizes.cs | Web Access |
Project: src\src\libraries\System.Net.Security\src\System.Net.Security.csproj (System.Net.Security) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net { internal partial struct StreamSizes { public int Header { get; private set; } public int Trailer { get; private set; } public int MaximumMessage { get; private set; } } } |