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 [assembly:System.Reflection.AssemblyVersionAttribute("4.1.0.0")] 6 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))] 7 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")] 8 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")] 9 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Text.Encoding.CodePages")] 10 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Text.Encoding.CodePages")] 11 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.0.0")] 12 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.0.0")] 13 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")] 14 [assembly:System.Reflection.AssemblyTitleAttribute("System.Text.Encoding.CodePages")] 15 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)] 16 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)] 17 namespace System.Text 18 { 19 public sealed partial class CodePagesEncodingProvider : System.Text.EncodingProvider 20 { CodePagesEncodingProvider()21 internal CodePagesEncodingProvider() { } 22 public static System.Text.EncodingProvider Instance { get { throw null; } } GetEncoding(int codepage)23 public override System.Text.Encoding GetEncoding(int codepage) { throw null; } GetEncoding(string name)24 public override System.Text.Encoding GetEncoding(string name) { throw null; } 25 } 26 } 27