1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the MIT license.
3+ // See the LICENSE file in the project root for more information.
4+ // ------------------------------------------------------------------------------
5+ // Changes to this file must follow the http://aka.ms/api-review process.
6+ // ------------------------------------------------------------------------------
7+ [ assembly: System . Runtime . CompilerServices . CompilationRelaxations ( 8 ) ]
8+ [ assembly: System . Runtime . CompilerServices . RuntimeCompatibility ( WrapNonExceptionThrows = true ) ]
9+ [ assembly: System . Diagnostics . Debuggable ( System . Diagnostics . DebuggableAttribute . DebuggingModes . IgnoreSymbolStoreSequencePoints ) ]
10+ [ assembly: System . Runtime . Versioning . TargetFramework ( ".NETStandard,Version=v2.0" , FrameworkDisplayName = ".NET Standard 2.0" ) ]
11+ [ assembly: System . CLSCompliant ( true ) ]
12+ [ assembly: System . Reflection . AssemblyDefaultAlias ( "System.Buffers" ) ]
13+ [ assembly: System . Resources . NeutralResourcesLanguage ( "en-US" ) ]
14+ [ assembly: System . Runtime . InteropServices . DefaultDllImportSearchPaths ( System . Runtime . InteropServices . DllImportSearchPath . AssemblyDirectory | System . Runtime . InteropServices . DllImportSearchPath . System32 ) ]
15+ [ assembly: System . Reflection . AssemblyCompany ( "Microsoft Corporation" ) ]
16+ [ assembly: System . Reflection . AssemblyCopyright ( "© Microsoft Corporation. All rights reserved." ) ]
17+ [ assembly: System . Reflection . AssemblyDescription ( "System.Buffers" ) ]
18+ [ assembly: System . Reflection . AssemblyFileVersion ( "4.600.125.16908" ) ]
19+ [ assembly: System . Reflection . AssemblyInformationalVersion ( "4.6.1+6b84308c9ad012f53240d72c1d716d7e42546483" ) ]
20+ [ assembly: System . Reflection . AssemblyProduct ( "Microsoft® .NET" ) ]
21+ [ assembly: System . Reflection . AssemblyTitle ( "System.Buffers" ) ]
22+ [ assembly: System . Reflection . AssemblyMetadata ( "RepositoryUrl" , "https://github.com/dotnet/maintenance-packages" ) ]
23+ [ assembly: System . Reflection . AssemblyMetadata ( "PreferInbox" , "True" ) ]
24+ [ assembly: System . Reflection . AssemblyMetadata ( "Serviceable" , "True" ) ]
25+ [ assembly: System . Reflection . AssemblyVersionAttribute ( "4.0.2.0" ) ]
26+ [ assembly: System . Runtime . CompilerServices . ReferenceAssembly ]
27+ [ assembly: System . Reflection . AssemblyFlagsAttribute ( ( System . Reflection . AssemblyNameFlags ) 0x70 ) ]
28+ namespace System . Buffers
29+ {
30+ public abstract partial class ArrayPool < T >
31+ {
32+ public static ArrayPool < T > Shared { get { throw null ; } }
33+
34+ public static ArrayPool < T > Create ( ) { throw null ; }
35+
36+ public static ArrayPool < T > Create ( int maxArrayLength , int maxArraysPerBucket ) { throw null ; }
37+
38+ public abstract T [ ] Rent ( int minimumLength ) ;
39+ public abstract void Return ( T [ ] array , bool clearArray = false ) ;
40+ }
41+ }
0 commit comments