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.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Btls.Interface, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
20 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Security, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
21 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.ComponentModel.DataAnnotations, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
22 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
23 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
24 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
25 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
26 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
27 namespace Microsoft.CSharp
28 {
29     public partial class CSharpCodeProvider : System.CodeDom.Compiler.CodeDomProvider
30     {
CSharpCodeProvider()31         public CSharpCodeProvider() { }
CSharpCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions)32         public CSharpCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { }
33         public override string FileExtension { get { throw null; } }
34         [System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateCompiler()35         public override System.CodeDom.Compiler.ICodeCompiler CreateCompiler() { throw null; }
36         [System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateGenerator()37         public override System.CodeDom.Compiler.ICodeGenerator CreateGenerator() { throw null; }
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)38         public override void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GetConverter(System.Type type)39         public override System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
40     }
41 }
42 namespace Microsoft.VisualBasic
43 {
44     public partial class VBCodeProvider : System.CodeDom.Compiler.CodeDomProvider
45     {
VBCodeProvider()46         public VBCodeProvider() { }
VBCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions)47         public VBCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { }
48         public override string FileExtension { get { throw null; } }
49         public override System.CodeDom.Compiler.LanguageOptions LanguageOptions { get { throw null; } }
50         [System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateCompiler()51         public override System.CodeDom.Compiler.ICodeCompiler CreateCompiler() { throw null; }
52         [System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateGenerator()53         public override System.CodeDom.Compiler.ICodeGenerator CreateGenerator() { throw null; }
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)54         public override void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GetConverter(System.Type type)55         public override System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
56     }
57 }
58 namespace Microsoft.Win32
59 {
60     public partial class IntranetZoneCredentialPolicy : System.Net.ICredentialPolicy
61     {
62         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)]
IntranetZoneCredentialPolicy()63         public IntranetZoneCredentialPolicy() { }
ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authModule)64         public virtual bool ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authModule) { throw null; }
65     }
66     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
67     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
68     public partial class PowerModeChangedEventArgs : System.EventArgs
69     {
PowerModeChangedEventArgs(Microsoft.Win32.PowerModes mode)70         public PowerModeChangedEventArgs(Microsoft.Win32.PowerModes mode) { }
71         public Microsoft.Win32.PowerModes Mode { get { throw null; } }
72     }
PowerModeChangedEventHandler(object sender, Microsoft.Win32.PowerModeChangedEventArgs e)73     public delegate void PowerModeChangedEventHandler(object sender, Microsoft.Win32.PowerModeChangedEventArgs e);
74     public enum PowerModes
75     {
76         Resume = 1,
77         StatusChange = 2,
78         Suspend = 3,
79     }
80     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
81     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
82     public partial class SessionEndedEventArgs : System.EventArgs
83     {
SessionEndedEventArgs(Microsoft.Win32.SessionEndReasons reason)84         public SessionEndedEventArgs(Microsoft.Win32.SessionEndReasons reason) { }
85         public Microsoft.Win32.SessionEndReasons Reason { get { throw null; } }
86     }
SessionEndedEventHandler(object sender, Microsoft.Win32.SessionEndedEventArgs e)87     public delegate void SessionEndedEventHandler(object sender, Microsoft.Win32.SessionEndedEventArgs e);
88     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
89     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
90     public partial class SessionEndingEventArgs : System.EventArgs
91     {
SessionEndingEventArgs(Microsoft.Win32.SessionEndReasons reason)92         public SessionEndingEventArgs(Microsoft.Win32.SessionEndReasons reason) { }
93         public bool Cancel { get { throw null; } set { } }
94         public Microsoft.Win32.SessionEndReasons Reason { get { throw null; } }
95     }
SessionEndingEventHandler(object sender, Microsoft.Win32.SessionEndingEventArgs e)96     public delegate void SessionEndingEventHandler(object sender, Microsoft.Win32.SessionEndingEventArgs e);
97     public enum SessionEndReasons
98     {
99         Logoff = 1,
100         SystemShutdown = 2,
101     }
102     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
103     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
104     public partial class SessionSwitchEventArgs : System.EventArgs
105     {
SessionSwitchEventArgs(Microsoft.Win32.SessionSwitchReason reason)106         public SessionSwitchEventArgs(Microsoft.Win32.SessionSwitchReason reason) { }
107         public Microsoft.Win32.SessionSwitchReason Reason { get { throw null; } }
108     }
SessionSwitchEventHandler(object sender, Microsoft.Win32.SessionSwitchEventArgs e)109     public delegate void SessionSwitchEventHandler(object sender, Microsoft.Win32.SessionSwitchEventArgs e);
110     public enum SessionSwitchReason
111     {
112         ConsoleConnect = 1,
113         ConsoleDisconnect = 2,
114         RemoteConnect = 3,
115         RemoteDisconnect = 4,
116         SessionLock = 7,
117         SessionLogoff = 6,
118         SessionLogon = 5,
119         SessionRemoteControl = 9,
120         SessionUnlock = 8,
121     }
122     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
123     public sealed partial class SystemEvents
124     {
SystemEvents()125         internal SystemEvents() { }
126         [System.MonoTODOAttribute]
127         public static event System.EventHandler DisplaySettingsChanged { add { } remove { } }
128         [System.MonoTODOAttribute("Currently does nothing on Mono")]
129         public static event System.EventHandler DisplaySettingsChanging { add { } remove { } }
130         [System.MonoTODOAttribute("Currently does nothing on Mono")]
131         public static event System.EventHandler EventsThreadShutdown { add { } remove { } }
132         [System.MonoTODOAttribute("Currently does nothing on Mono")]
133         public static event System.EventHandler InstalledFontsChanged { add { } remove { } }
134         [System.ComponentModel.BrowsableAttribute(false)]
135         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
136         [System.MonoTODOAttribute("Currently does nothing on Mono")]
137         [System.ObsoleteAttribute("")]
138         public static event System.EventHandler LowMemory { add { } remove { } }
139         [System.MonoTODOAttribute("Currently does nothing on Mono")]
140         public static event System.EventHandler PaletteChanged { add { } remove { } }
141         [System.MonoTODOAttribute("Currently does nothing on Mono")]
142         public static event Microsoft.Win32.PowerModeChangedEventHandler PowerModeChanged { add { } remove { } }
143         [System.MonoTODOAttribute("Currently does nothing on Mono")]
144         public static event Microsoft.Win32.SessionEndedEventHandler SessionEnded { add { } remove { } }
145         [System.MonoTODOAttribute("Currently does nothing on Mono")]
146         public static event Microsoft.Win32.SessionEndingEventHandler SessionEnding { add { } remove { } }
147         [System.MonoTODOAttribute("Currently does nothing on Mono")]
148         public static event Microsoft.Win32.SessionSwitchEventHandler SessionSwitch { add { } remove { } }
149         [System.MonoTODOAttribute("Currently does nothing on Mono")]
150         public static event System.EventHandler TimeChanged { add { } remove { } }
151         public static event Microsoft.Win32.TimerElapsedEventHandler TimerElapsed { add { } remove { } }
152         [System.MonoTODOAttribute("Currently does nothing on Mono")]
153         public static event Microsoft.Win32.UserPreferenceChangedEventHandler UserPreferenceChanged { add { } remove { } }
154         [System.MonoTODOAttribute("Currently does nothing on Mono")]
155         public static event Microsoft.Win32.UserPreferenceChangingEventHandler UserPreferenceChanging { add { } remove { } }
CreateTimer(int interval)156         public static System.IntPtr CreateTimer(int interval) { throw null; }
157         [System.MonoTODOAttribute]
InvokeOnEventsThread(System.Delegate method)158         public static void InvokeOnEventsThread(System.Delegate method) { }
KillTimer(System.IntPtr timerId)159         public static void KillTimer(System.IntPtr timerId) { }
160     }
161     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
162     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
163     public partial class TimerElapsedEventArgs : System.EventArgs
164     {
TimerElapsedEventArgs(System.IntPtr timerId)165         public TimerElapsedEventArgs(System.IntPtr timerId) { }
166         public System.IntPtr TimerId { get { throw null; } }
167     }
TimerElapsedEventHandler(object sender, Microsoft.Win32.TimerElapsedEventArgs e)168     public delegate void TimerElapsedEventHandler(object sender, Microsoft.Win32.TimerElapsedEventArgs e);
169     public enum UserPreferenceCategory
170     {
171         Accessibility = 1,
172         Color = 2,
173         Desktop = 3,
174         General = 4,
175         Icon = 5,
176         Keyboard = 6,
177         Locale = 13,
178         Menu = 7,
179         Mouse = 8,
180         Policy = 9,
181         Power = 10,
182         Screensaver = 11,
183         VisualStyle = 14,
184         Window = 12,
185     }
186     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
187     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
188     public partial class UserPreferenceChangedEventArgs : System.EventArgs
189     {
UserPreferenceChangedEventArgs(Microsoft.Win32.UserPreferenceCategory category)190         public UserPreferenceChangedEventArgs(Microsoft.Win32.UserPreferenceCategory category) { }
191         public Microsoft.Win32.UserPreferenceCategory Category { get { throw null; } }
192     }
UserPreferenceChangedEventHandler(object sender, Microsoft.Win32.UserPreferenceChangedEventArgs e)193     public delegate void UserPreferenceChangedEventHandler(object sender, Microsoft.Win32.UserPreferenceChangedEventArgs e);
194     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
195     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
196     public partial class UserPreferenceChangingEventArgs : System.EventArgs
197     {
UserPreferenceChangingEventArgs(Microsoft.Win32.UserPreferenceCategory category)198         public UserPreferenceChangingEventArgs(Microsoft.Win32.UserPreferenceCategory category) { }
199         public Microsoft.Win32.UserPreferenceCategory Category { get { throw null; } }
200     }
UserPreferenceChangingEventHandler(object sender, Microsoft.Win32.UserPreferenceChangingEventArgs e)201     public delegate void UserPreferenceChangingEventHandler(object sender, Microsoft.Win32.UserPreferenceChangingEventArgs e);
202 }
203 namespace Microsoft.Win32.SafeHandles
204 {
205     [System.Security.SuppressUnmanagedCodeSecurityAttribute]
206     public sealed partial class SafeProcessHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
207     {
208         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]
SafeProcessHandle(System.IntPtr existingHandle, bool ownsHandle)209         public SafeProcessHandle(System.IntPtr existingHandle, bool ownsHandle) : base (default(bool)) { }
ReleaseHandle()210         protected override bool ReleaseHandle() { throw null; }
211     }
212     public sealed partial class SafeX509ChainHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
213     {
SafeX509ChainHandle()214         internal SafeX509ChainHandle() : base (default(bool)) { }
215         [System.MonoTODOAttribute]
ReleaseHandle()216         protected override bool ReleaseHandle() { throw null; }
217     }
218 }
219 namespace System
220 {
221     public partial class FileStyleUriParser : System.UriParser
222     {
FileStyleUriParser()223         public FileStyleUriParser() { }
224     }
225     public partial class FtpStyleUriParser : System.UriParser
226     {
FtpStyleUriParser()227         public FtpStyleUriParser() { }
228     }
229     public partial class GenericUriParser : System.UriParser
230     {
GenericUriParser(System.GenericUriParserOptions options)231         public GenericUriParser(System.GenericUriParserOptions options) { }
232     }
233     [System.FlagsAttribute]
234     public enum GenericUriParserOptions
235     {
236         AllowEmptyAuthority = 2,
237         Default = 0,
238         DontCompressPath = 128,
239         DontConvertPathBackslashes = 64,
240         DontUnescapePathDotsAndSlashes = 256,
241         GenericAuthority = 1,
242         Idn = 512,
243         IriParsing = 1024,
244         NoFragment = 32,
245         NoPort = 8,
246         NoQuery = 16,
247         NoUserInfo = 4,
248     }
249     public partial class GopherStyleUriParser : System.UriParser
250     {
GopherStyleUriParser()251         public GopherStyleUriParser() { }
252     }
253     public partial class HttpStyleUriParser : System.UriParser
254     {
HttpStyleUriParser()255         public HttpStyleUriParser() { }
256     }
257     public partial class LdapStyleUriParser : System.UriParser
258     {
LdapStyleUriParser()259         public LdapStyleUriParser() { }
260     }
261     public partial class NetPipeStyleUriParser : System.UriParser
262     {
NetPipeStyleUriParser()263         public NetPipeStyleUriParser() { }
264     }
265     public partial class NetTcpStyleUriParser : System.UriParser
266     {
NetTcpStyleUriParser()267         public NetTcpStyleUriParser() { }
268     }
269     public partial class NewsStyleUriParser : System.UriParser
270     {
NewsStyleUriParser()271         public NewsStyleUriParser() { }
272     }
273     [System.ComponentModel.TypeConverterAttribute(typeof(System.UriTypeConverter))]
274     [System.SerializableAttribute]
275     public partial class Uri : System.Runtime.Serialization.ISerializable
276     {
277         public static readonly string SchemeDelimiter;
278         public static readonly string UriSchemeFile;
279         public static readonly string UriSchemeFtp;
280         public static readonly string UriSchemeGopher;
281         public static readonly string UriSchemeHttp;
282         public static readonly string UriSchemeHttps;
283         public static readonly string UriSchemeMailto;
284         public static readonly string UriSchemeNetPipe;
285         public static readonly string UriSchemeNetTcp;
286         public static readonly string UriSchemeNews;
287         public static readonly string UriSchemeNntp;
Uri(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)288         protected Uri(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
Uri(string uriString)289         public Uri(string uriString) { }
290         [System.ObsoleteAttribute("The constructor has been deprecated. Please use new Uri(string). The dontEscape parameter is deprecated and is always false. http://go.microsoft.com/fwlink/?linkid=14202")]
Uri(string uriString, bool dontEscape)291         public Uri(string uriString, bool dontEscape) { }
Uri(string uriString, System.UriKind uriKind)292         public Uri(string uriString, System.UriKind uriKind) { }
Uri(System.Uri baseUri, string relativeUri)293         public Uri(System.Uri baseUri, string relativeUri) { }
294         [System.ObsoleteAttribute("The constructor has been deprecated. Please new Uri(Uri, string). The dontEscape parameter is deprecated and is always false. http://go.microsoft.com/fwlink/?linkid=14202")]
Uri(System.Uri baseUri, string relativeUri, bool dontEscape)295         public Uri(System.Uri baseUri, string relativeUri, bool dontEscape) { }
Uri(System.Uri baseUri, System.Uri relativeUri)296         public Uri(System.Uri baseUri, System.Uri relativeUri) { }
297         public string AbsolutePath { get { throw null; } }
298         public string AbsoluteUri { get { throw null; } }
299         public string Authority { get { throw null; } }
300         public string DnsSafeHost { get { throw null; } }
301         public string Fragment { get { throw null; } }
302         public string Host { get { throw null; } }
303         public System.UriHostNameType HostNameType { get { throw null; } }
304         public string IdnHost { get { throw null; } }
305         public bool IsAbsoluteUri { get { throw null; } }
306         public bool IsDefaultPort { get { throw null; } }
307         public bool IsFile { get { throw null; } }
308         public bool IsLoopback { get { throw null; } }
309         public bool IsUnc { get { throw null; } }
310         public string LocalPath { get { throw null; } }
311         public string OriginalString { get { throw null; } }
312         public string PathAndQuery { get { throw null; } }
313         public int Port { get { throw null; } }
314         public string Query { get { throw null; } }
315         public string Scheme { get { throw null; } }
316         public string[] Segments { get { throw null; } }
317         public bool UserEscaped { get { throw null; } }
318         public string UserInfo { get { throw null; } }
319         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Canonicalize()320         protected virtual void Canonicalize() { }
CheckHostName(string name)321         public static System.UriHostNameType CheckHostName(string name) { throw null; }
CheckSchemeName(string schemeName)322         public static bool CheckSchemeName(string schemeName) { throw null; }
323         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
CheckSecurity()324         protected virtual void CheckSecurity() { }
Compare(System.Uri uri1, System.Uri uri2, System.UriComponents partsToCompare, System.UriFormat compareFormat, System.StringComparison comparisonType)325         public static int Compare(System.Uri uri1, System.Uri uri2, System.UriComponents partsToCompare, System.UriFormat compareFormat, System.StringComparison comparisonType) { throw null; }
326         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
Equals(object comparand)327         public override bool Equals(object comparand) { throw null; }
328         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Escape()329         protected virtual void Escape() { }
EscapeDataString(string stringToEscape)330         public static string EscapeDataString(string stringToEscape) { throw null; }
331         [System.ObsoleteAttribute("The method has been deprecated. Please use GetComponents() or static EscapeUriString() to escape a Uri component or a string. http://go.microsoft.com/fwlink/?linkid=14202")]
EscapeString(string str)332         protected static string EscapeString(string str) { throw null; }
EscapeUriString(string stringToEscape)333         public static string EscapeUriString(string stringToEscape) { throw null; }
FromHex(char digit)334         public static int FromHex(char digit) { throw null; }
GetComponents(System.UriComponents components, System.UriFormat format)335         public string GetComponents(System.UriComponents components, System.UriFormat format) { throw null; }
336         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
GetHashCode()337         public override int GetHashCode() { throw null; }
GetLeftPart(System.UriPartial part)338         public string GetLeftPart(System.UriPartial part) { throw null; }
339         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)340         protected void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
HexEscape(char character)341         public static string HexEscape(char character) { throw null; }
HexUnescape(string pattern, ref int index)342         public static char HexUnescape(string pattern, ref int index) { throw null; }
343         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsBadFileSystemCharacter(char character)344         protected virtual bool IsBadFileSystemCharacter(char character) { throw null; }
IsBaseOf(System.Uri uri)345         public bool IsBaseOf(System.Uri uri) { throw null; }
346         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsExcludedCharacter(char character)347         protected static bool IsExcludedCharacter(char character) { throw null; }
IsHexDigit(char character)348         public static bool IsHexDigit(char character) { throw null; }
IsHexEncoding(string pattern, int index)349         public static bool IsHexEncoding(string pattern, int index) { throw null; }
350         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsReservedCharacter(char character)351         protected virtual bool IsReservedCharacter(char character) { throw null; }
IsWellFormedOriginalString()352         public bool IsWellFormedOriginalString() { throw null; }
IsWellFormedUriString(string uriString, System.UriKind uriKind)353         public static bool IsWellFormedUriString(string uriString, System.UriKind uriKind) { throw null; }
354         [System.ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). http://go.microsoft.com/fwlink/?linkid=14202")]
MakeRelative(System.Uri toUri)355         public string MakeRelative(System.Uri toUri) { throw null; }
MakeRelativeUri(System.Uri uri)356         public System.Uri MakeRelativeUri(System.Uri uri) { throw null; }
357         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
operator ==(System.Uri uri1, System.Uri uri2)358         public static bool operator ==(System.Uri uri1, System.Uri uri2) { throw null; }
359         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
operator !=(System.Uri uri1, System.Uri uri2)360         public static bool operator !=(System.Uri uri1, System.Uri uri2) { throw null; }
361         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Parse()362         protected virtual void Parse() { }
363         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)364         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
365         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
ToString()366         public override string ToString() { throw null; }
TryCreate(string uriString, System.UriKind uriKind, out System.Uri result)367         public static bool TryCreate(string uriString, System.UriKind uriKind, out System.Uri result) { result = default(System.Uri); throw null; }
TryCreate(System.Uri baseUri, string relativeUri, out System.Uri result)368         public static bool TryCreate(System.Uri baseUri, string relativeUri, out System.Uri result) { result = default(System.Uri); throw null; }
TryCreate(System.Uri baseUri, System.Uri relativeUri, out System.Uri result)369         public static bool TryCreate(System.Uri baseUri, System.Uri relativeUri, out System.Uri result) { result = default(System.Uri); throw null; }
370         [System.ObsoleteAttribute("The method has been deprecated. Please use GetComponents() or static UnescapeDataString() to unescape a Uri component or a string. http://go.microsoft.com/fwlink/?linkid=14202")]
Unescape(string path)371         protected virtual string Unescape(string path) { throw null; }
UnescapeDataString(string stringToUnescape)372         public static string UnescapeDataString(string stringToUnescape) { throw null; }
373     }
374     public partial class UriBuilder
375     {
UriBuilder()376         public UriBuilder() { }
UriBuilder(string uri)377         public UriBuilder(string uri) { }
UriBuilder(string schemeName, string hostName)378         public UriBuilder(string schemeName, string hostName) { }
UriBuilder(string scheme, string host, int portNumber)379         public UriBuilder(string scheme, string host, int portNumber) { }
UriBuilder(string scheme, string host, int port, string pathValue)380         public UriBuilder(string scheme, string host, int port, string pathValue) { }
UriBuilder(string scheme, string host, int port, string path, string extraValue)381         public UriBuilder(string scheme, string host, int port, string path, string extraValue) { }
UriBuilder(System.Uri uri)382         public UriBuilder(System.Uri uri) { }
383         public string Fragment { get { throw null; } set { } }
384         public string Host { get { throw null; } set { } }
385         public string Password { get { throw null; } set { } }
386         public string Path { get { throw null; } set { } }
387         public int Port { get { throw null; } set { } }
388         public string Query { get { throw null; } set { } }
389         public string Scheme { get { throw null; } set { } }
390         public System.Uri Uri { get { throw null; } }
391         public string UserName { get { throw null; } set { } }
Equals(object rparam)392         public override bool Equals(object rparam) { throw null; }
GetHashCode()393         public override int GetHashCode() { throw null; }
ToString()394         public override string ToString() { throw null; }
395     }
396     [System.FlagsAttribute]
397     public enum UriComponents
398     {
399         AbsoluteUri = 127,
400         Fragment = 64,
401         Host = 4,
402         HostAndPort = 132,
403         HttpRequestUrl = 61,
404         KeepDelimiter = 1073741824,
405         NormalizedHost = 256,
406         Path = 16,
407         PathAndQuery = 48,
408         Port = 8,
409         Query = 32,
410         Scheme = 1,
411         SchemeAndServer = 13,
412         SerializationInfoString = -2147483648,
413         StrongAuthority = 134,
414         StrongPort = 128,
415         UserInfo = 2,
416     }
417     public enum UriFormat
418     {
419         SafeUnescaped = 3,
420         Unescaped = 2,
421         UriEscaped = 1,
422     }
423     [System.SerializableAttribute]
424     public partial class UriFormatException : System.FormatException, System.Runtime.Serialization.ISerializable
425     {
UriFormatException()426         public UriFormatException() { }
UriFormatException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)427         protected UriFormatException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
UriFormatException(string textString)428         public UriFormatException(string textString) { }
UriFormatException(string textString, System.Exception e)429         public UriFormatException(string textString, System.Exception e) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)430         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
431     }
432     public enum UriHostNameType
433     {
434         Basic = 1,
435         Dns = 2,
436         IPv4 = 3,
437         IPv6 = 4,
438         Unknown = 0,
439     }
440     public enum UriIdnScope
441     {
442         All = 2,
443         AllExceptIntranet = 1,
444         None = 0,
445     }
446     public enum UriKind
447     {
448         Absolute = 1,
449         Relative = 2,
450         RelativeOrAbsolute = 0,
451     }
452     public abstract partial class UriParser
453     {
UriParser()454         protected UriParser() { }
GetComponents(System.Uri uri, System.UriComponents components, System.UriFormat format)455         protected virtual string GetComponents(System.Uri uri, System.UriComponents components, System.UriFormat format) { throw null; }
InitializeAndValidate(System.Uri uri, out System.UriFormatException parsingError)456         protected virtual void InitializeAndValidate(System.Uri uri, out System.UriFormatException parsingError) { parsingError = default(System.UriFormatException); }
IsBaseOf(System.Uri baseUri, System.Uri relativeUri)457         protected virtual bool IsBaseOf(System.Uri baseUri, System.Uri relativeUri) { throw null; }
IsKnownScheme(string schemeName)458         public static bool IsKnownScheme(string schemeName) { throw null; }
IsWellFormedOriginalString(System.Uri uri)459         protected virtual bool IsWellFormedOriginalString(System.Uri uri) { throw null; }
OnNewUri()460         protected virtual System.UriParser OnNewUri() { throw null; }
OnRegister(string schemeName, int defaultPort)461         protected virtual void OnRegister(string schemeName, int defaultPort) { }
Register(System.UriParser uriParser, string schemeName, int defaultPort)462         public static void Register(System.UriParser uriParser, string schemeName, int defaultPort) { }
Resolve(System.Uri baseUri, System.Uri relativeUri, out System.UriFormatException parsingError)463         protected virtual string Resolve(System.Uri baseUri, System.Uri relativeUri, out System.UriFormatException parsingError) { parsingError = default(System.UriFormatException); throw null; }
464     }
465     public enum UriPartial
466     {
467         Authority = 1,
468         Path = 2,
469         Query = 3,
470         Scheme = 0,
471     }
472     public partial class UriTypeConverter : System.ComponentModel.TypeConverter
473     {
UriTypeConverter()474         public UriTypeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)475         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)476         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)477         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)478         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)479         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
480     }
481 }
482 namespace System.CodeDom
483 {
484     [System.SerializableAttribute]
485     public partial class CodeArgumentReferenceExpression : System.CodeDom.CodeExpression
486     {
CodeArgumentReferenceExpression()487         public CodeArgumentReferenceExpression() { }
CodeArgumentReferenceExpression(string parameterName)488         public CodeArgumentReferenceExpression(string parameterName) { }
489         public string ParameterName { get { throw null; } set { } }
490     }
491     [System.SerializableAttribute]
492     public partial class CodeArrayCreateExpression : System.CodeDom.CodeExpression
493     {
CodeArrayCreateExpression()494         public CodeArrayCreateExpression() { }
CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, System.CodeDom.CodeExpression size)495         public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, System.CodeDom.CodeExpression size) { }
CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] initializers)496         public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] initializers) { }
CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, int size)497         public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, int size) { }
CodeArrayCreateExpression(string createType, System.CodeDom.CodeExpression size)498         public CodeArrayCreateExpression(string createType, System.CodeDom.CodeExpression size) { }
CodeArrayCreateExpression(string createType, params System.CodeDom.CodeExpression[] initializers)499         public CodeArrayCreateExpression(string createType, params System.CodeDom.CodeExpression[] initializers) { }
CodeArrayCreateExpression(string createType, int size)500         public CodeArrayCreateExpression(string createType, int size) { }
CodeArrayCreateExpression(System.Type createType, System.CodeDom.CodeExpression size)501         public CodeArrayCreateExpression(System.Type createType, System.CodeDom.CodeExpression size) { }
CodeArrayCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] initializers)502         public CodeArrayCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] initializers) { }
CodeArrayCreateExpression(System.Type createType, int size)503         public CodeArrayCreateExpression(System.Type createType, int size) { }
504         public System.CodeDom.CodeTypeReference CreateType { get { throw null; } set { } }
505         public System.CodeDom.CodeExpressionCollection Initializers { get { throw null; } }
506         public int Size { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
507         public System.CodeDom.CodeExpression SizeExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
508     }
509     [System.SerializableAttribute]
510     public partial class CodeArrayIndexerExpression : System.CodeDom.CodeExpression
511     {
CodeArrayIndexerExpression()512         public CodeArrayIndexerExpression() { }
CodeArrayIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices)513         public CodeArrayIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices) { }
514         public System.CodeDom.CodeExpressionCollection Indices { get { throw null; } }
515         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
516     }
517     [System.SerializableAttribute]
518     public partial class CodeAssignStatement : System.CodeDom.CodeStatement
519     {
CodeAssignStatement()520         public CodeAssignStatement() { }
CodeAssignStatement(System.CodeDom.CodeExpression left, System.CodeDom.CodeExpression right)521         public CodeAssignStatement(System.CodeDom.CodeExpression left, System.CodeDom.CodeExpression right) { }
522         public System.CodeDom.CodeExpression Left { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
523         public System.CodeDom.CodeExpression Right { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
524     }
525     [System.SerializableAttribute]
526     public partial class CodeAttachEventStatement : System.CodeDom.CodeStatement
527     {
CodeAttachEventStatement()528         public CodeAttachEventStatement() { }
CodeAttachEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener)529         public CodeAttachEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener) { }
CodeAttachEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener)530         public CodeAttachEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener) { }
531         public System.CodeDom.CodeEventReferenceExpression Event { get { throw null; } set { } }
532         public System.CodeDom.CodeExpression Listener { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
533     }
534     [System.SerializableAttribute]
535     public partial class CodeAttributeArgument
536     {
CodeAttributeArgument()537         public CodeAttributeArgument() { }
CodeAttributeArgument(System.CodeDom.CodeExpression value)538         public CodeAttributeArgument(System.CodeDom.CodeExpression value) { }
CodeAttributeArgument(string name, System.CodeDom.CodeExpression value)539         public CodeAttributeArgument(string name, System.CodeDom.CodeExpression value) { }
540         public string Name { get { throw null; } set { } }
541         public System.CodeDom.CodeExpression Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
542     }
543     [System.SerializableAttribute]
544     public partial class CodeAttributeArgumentCollection : System.Collections.CollectionBase
545     {
CodeAttributeArgumentCollection()546         public CodeAttributeArgumentCollection() { }
CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgumentCollection value)547         public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgumentCollection value) { }
CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgument[] value)548         public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgument[] value) { }
549         public System.CodeDom.CodeAttributeArgument this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeAttributeArgument value)550         public int Add(System.CodeDom.CodeAttributeArgument value) { throw null; }
AddRange(System.CodeDom.CodeAttributeArgumentCollection value)551         public void AddRange(System.CodeDom.CodeAttributeArgumentCollection value) { }
AddRange(System.CodeDom.CodeAttributeArgument[] value)552         public void AddRange(System.CodeDom.CodeAttributeArgument[] value) { }
Contains(System.CodeDom.CodeAttributeArgument value)553         public bool Contains(System.CodeDom.CodeAttributeArgument value) { throw null; }
CopyTo(System.CodeDom.CodeAttributeArgument[] array, int index)554         public void CopyTo(System.CodeDom.CodeAttributeArgument[] array, int index) { }
IndexOf(System.CodeDom.CodeAttributeArgument value)555         public int IndexOf(System.CodeDom.CodeAttributeArgument value) { throw null; }
Insert(int index, System.CodeDom.CodeAttributeArgument value)556         public void Insert(int index, System.CodeDom.CodeAttributeArgument value) { }
Remove(System.CodeDom.CodeAttributeArgument value)557         public void Remove(System.CodeDom.CodeAttributeArgument value) { }
558     }
559     [System.SerializableAttribute]
560     public partial class CodeAttributeDeclaration
561     {
CodeAttributeDeclaration()562         public CodeAttributeDeclaration() { }
CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType)563         public CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType) { }
CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType, params System.CodeDom.CodeAttributeArgument[] arguments)564         public CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType, params System.CodeDom.CodeAttributeArgument[] arguments) { }
CodeAttributeDeclaration(string name)565         public CodeAttributeDeclaration(string name) { }
CodeAttributeDeclaration(string name, params System.CodeDom.CodeAttributeArgument[] arguments)566         public CodeAttributeDeclaration(string name, params System.CodeDom.CodeAttributeArgument[] arguments) { }
567         public System.CodeDom.CodeAttributeArgumentCollection Arguments { get { throw null; } }
568         public System.CodeDom.CodeTypeReference AttributeType { get { throw null; } }
569         public string Name { get { throw null; } set { } }
570     }
571     [System.SerializableAttribute]
572     public partial class CodeAttributeDeclarationCollection : System.Collections.CollectionBase
573     {
CodeAttributeDeclarationCollection()574         public CodeAttributeDeclarationCollection() { }
CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclarationCollection value)575         public CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclarationCollection value) { }
CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclaration[] value)576         public CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclaration[] value) { }
577         public System.CodeDom.CodeAttributeDeclaration this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeAttributeDeclaration value)578         public int Add(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
AddRange(System.CodeDom.CodeAttributeDeclarationCollection value)579         public void AddRange(System.CodeDom.CodeAttributeDeclarationCollection value) { }
AddRange(System.CodeDom.CodeAttributeDeclaration[] value)580         public void AddRange(System.CodeDom.CodeAttributeDeclaration[] value) { }
Contains(System.CodeDom.CodeAttributeDeclaration value)581         public bool Contains(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
CopyTo(System.CodeDom.CodeAttributeDeclaration[] array, int index)582         public void CopyTo(System.CodeDom.CodeAttributeDeclaration[] array, int index) { }
IndexOf(System.CodeDom.CodeAttributeDeclaration value)583         public int IndexOf(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
Insert(int index, System.CodeDom.CodeAttributeDeclaration value)584         public void Insert(int index, System.CodeDom.CodeAttributeDeclaration value) { }
Remove(System.CodeDom.CodeAttributeDeclaration value)585         public void Remove(System.CodeDom.CodeAttributeDeclaration value) { }
586     }
587     [System.SerializableAttribute]
588     public partial class CodeBaseReferenceExpression : System.CodeDom.CodeExpression
589     {
CodeBaseReferenceExpression()590         public CodeBaseReferenceExpression() { }
591     }
592     [System.SerializableAttribute]
593     public partial class CodeBinaryOperatorExpression : System.CodeDom.CodeExpression
594     {
CodeBinaryOperatorExpression()595         public CodeBinaryOperatorExpression() { }
CodeBinaryOperatorExpression(System.CodeDom.CodeExpression left, System.CodeDom.CodeBinaryOperatorType op, System.CodeDom.CodeExpression right)596         public CodeBinaryOperatorExpression(System.CodeDom.CodeExpression left, System.CodeDom.CodeBinaryOperatorType op, System.CodeDom.CodeExpression right) { }
597         public System.CodeDom.CodeExpression Left { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
598         public System.CodeDom.CodeBinaryOperatorType Operator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
599         public System.CodeDom.CodeExpression Right { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
600     }
601     public enum CodeBinaryOperatorType
602     {
603         Add = 0,
604         Assign = 5,
605         BitwiseAnd = 10,
606         BitwiseOr = 9,
607         BooleanAnd = 12,
608         BooleanOr = 11,
609         Divide = 3,
610         GreaterThan = 15,
611         GreaterThanOrEqual = 16,
612         IdentityEquality = 7,
613         IdentityInequality = 6,
614         LessThan = 13,
615         LessThanOrEqual = 14,
616         Modulus = 4,
617         Multiply = 2,
618         Subtract = 1,
619         ValueEquality = 8,
620     }
621     [System.SerializableAttribute]
622     public partial class CodeCastExpression : System.CodeDom.CodeExpression
623     {
CodeCastExpression()624         public CodeCastExpression() { }
CodeCastExpression(System.CodeDom.CodeTypeReference targetType, System.CodeDom.CodeExpression expression)625         public CodeCastExpression(System.CodeDom.CodeTypeReference targetType, System.CodeDom.CodeExpression expression) { }
CodeCastExpression(string targetType, System.CodeDom.CodeExpression expression)626         public CodeCastExpression(string targetType, System.CodeDom.CodeExpression expression) { }
CodeCastExpression(System.Type targetType, System.CodeDom.CodeExpression expression)627         public CodeCastExpression(System.Type targetType, System.CodeDom.CodeExpression expression) { }
628         public System.CodeDom.CodeExpression Expression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
629         public System.CodeDom.CodeTypeReference TargetType { get { throw null; } set { } }
630     }
631     [System.SerializableAttribute]
632     public partial class CodeCatchClause
633     {
CodeCatchClause()634         public CodeCatchClause() { }
CodeCatchClause(string localName)635         public CodeCatchClause(string localName) { }
CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType)636         public CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType) { }
CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType, params System.CodeDom.CodeStatement[] statements)637         public CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType, params System.CodeDom.CodeStatement[] statements) { }
638         public System.CodeDom.CodeTypeReference CatchExceptionType { get { throw null; } set { } }
639         public string LocalName { get { throw null; } set { } }
640         public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
641     }
642     [System.SerializableAttribute]
643     public partial class CodeCatchClauseCollection : System.Collections.CollectionBase
644     {
CodeCatchClauseCollection()645         public CodeCatchClauseCollection() { }
CodeCatchClauseCollection(System.CodeDom.CodeCatchClauseCollection value)646         public CodeCatchClauseCollection(System.CodeDom.CodeCatchClauseCollection value) { }
CodeCatchClauseCollection(System.CodeDom.CodeCatchClause[] value)647         public CodeCatchClauseCollection(System.CodeDom.CodeCatchClause[] value) { }
648         public System.CodeDom.CodeCatchClause this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeCatchClause value)649         public int Add(System.CodeDom.CodeCatchClause value) { throw null; }
AddRange(System.CodeDom.CodeCatchClauseCollection value)650         public void AddRange(System.CodeDom.CodeCatchClauseCollection value) { }
AddRange(System.CodeDom.CodeCatchClause[] value)651         public void AddRange(System.CodeDom.CodeCatchClause[] value) { }
Contains(System.CodeDom.CodeCatchClause value)652         public bool Contains(System.CodeDom.CodeCatchClause value) { throw null; }
CopyTo(System.CodeDom.CodeCatchClause[] array, int index)653         public void CopyTo(System.CodeDom.CodeCatchClause[] array, int index) { }
IndexOf(System.CodeDom.CodeCatchClause value)654         public int IndexOf(System.CodeDom.CodeCatchClause value) { throw null; }
Insert(int index, System.CodeDom.CodeCatchClause value)655         public void Insert(int index, System.CodeDom.CodeCatchClause value) { }
Remove(System.CodeDom.CodeCatchClause value)656         public void Remove(System.CodeDom.CodeCatchClause value) { }
657     }
658     [System.SerializableAttribute]
659     public partial class CodeChecksumPragma : System.CodeDom.CodeDirective
660     {
CodeChecksumPragma()661         public CodeChecksumPragma() { }
CodeChecksumPragma(string fileName, System.Guid checksumAlgorithmId, byte[] checksumData)662         public CodeChecksumPragma(string fileName, System.Guid checksumAlgorithmId, byte[] checksumData) { }
663         public System.Guid ChecksumAlgorithmId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
664         public byte[] ChecksumData { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
665         public string FileName { get { throw null; } set { } }
666     }
667     [System.SerializableAttribute]
668     public partial class CodeComment : System.CodeDom.CodeObject
669     {
CodeComment()670         public CodeComment() { }
CodeComment(string text)671         public CodeComment(string text) { }
CodeComment(string text, bool docComment)672         public CodeComment(string text, bool docComment) { }
673         public bool DocComment { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
674         public string Text { get { throw null; } set { } }
675     }
676     [System.SerializableAttribute]
677     public partial class CodeCommentStatement : System.CodeDom.CodeStatement
678     {
CodeCommentStatement()679         public CodeCommentStatement() { }
CodeCommentStatement(System.CodeDom.CodeComment comment)680         public CodeCommentStatement(System.CodeDom.CodeComment comment) { }
CodeCommentStatement(string text)681         public CodeCommentStatement(string text) { }
CodeCommentStatement(string text, bool docComment)682         public CodeCommentStatement(string text, bool docComment) { }
683         public System.CodeDom.CodeComment Comment { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
684     }
685     [System.SerializableAttribute]
686     public partial class CodeCommentStatementCollection : System.Collections.CollectionBase
687     {
CodeCommentStatementCollection()688         public CodeCommentStatementCollection() { }
CodeCommentStatementCollection(System.CodeDom.CodeCommentStatementCollection value)689         public CodeCommentStatementCollection(System.CodeDom.CodeCommentStatementCollection value) { }
CodeCommentStatementCollection(System.CodeDom.CodeCommentStatement[] value)690         public CodeCommentStatementCollection(System.CodeDom.CodeCommentStatement[] value) { }
691         public System.CodeDom.CodeCommentStatement this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeCommentStatement value)692         public int Add(System.CodeDom.CodeCommentStatement value) { throw null; }
AddRange(System.CodeDom.CodeCommentStatementCollection value)693         public void AddRange(System.CodeDom.CodeCommentStatementCollection value) { }
AddRange(System.CodeDom.CodeCommentStatement[] value)694         public void AddRange(System.CodeDom.CodeCommentStatement[] value) { }
Contains(System.CodeDom.CodeCommentStatement value)695         public bool Contains(System.CodeDom.CodeCommentStatement value) { throw null; }
CopyTo(System.CodeDom.CodeCommentStatement[] array, int index)696         public void CopyTo(System.CodeDom.CodeCommentStatement[] array, int index) { }
IndexOf(System.CodeDom.CodeCommentStatement value)697         public int IndexOf(System.CodeDom.CodeCommentStatement value) { throw null; }
Insert(int index, System.CodeDom.CodeCommentStatement value)698         public void Insert(int index, System.CodeDom.CodeCommentStatement value) { }
Remove(System.CodeDom.CodeCommentStatement value)699         public void Remove(System.CodeDom.CodeCommentStatement value) { }
700     }
701     [System.SerializableAttribute]
702     public partial class CodeCompileUnit : System.CodeDom.CodeObject
703     {
CodeCompileUnit()704         public CodeCompileUnit() { }
705         public System.CodeDom.CodeAttributeDeclarationCollection AssemblyCustomAttributes { get { throw null; } }
706         public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
707         public System.CodeDom.CodeNamespaceCollection Namespaces { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
708         public System.Collections.Specialized.StringCollection ReferencedAssemblies { get { throw null; } }
709         public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
710     }
711     [System.SerializableAttribute]
712     public partial class CodeConditionStatement : System.CodeDom.CodeStatement
713     {
CodeConditionStatement()714         public CodeConditionStatement() { }
CodeConditionStatement(System.CodeDom.CodeExpression condition, params System.CodeDom.CodeStatement[] trueStatements)715         public CodeConditionStatement(System.CodeDom.CodeExpression condition, params System.CodeDom.CodeStatement[] trueStatements) { }
CodeConditionStatement(System.CodeDom.CodeExpression condition, System.CodeDom.CodeStatement[] trueStatements, System.CodeDom.CodeStatement[] falseStatements)716         public CodeConditionStatement(System.CodeDom.CodeExpression condition, System.CodeDom.CodeStatement[] trueStatements, System.CodeDom.CodeStatement[] falseStatements) { }
717         public System.CodeDom.CodeExpression Condition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
718         public System.CodeDom.CodeStatementCollection FalseStatements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
719         public System.CodeDom.CodeStatementCollection TrueStatements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
720     }
721     [System.SerializableAttribute]
722     public partial class CodeConstructor : System.CodeDom.CodeMemberMethod
723     {
CodeConstructor()724         public CodeConstructor() { }
725         public System.CodeDom.CodeExpressionCollection BaseConstructorArgs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
726         public System.CodeDom.CodeExpressionCollection ChainedConstructorArgs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
727     }
728     [System.SerializableAttribute]
729     public partial class CodeDefaultValueExpression : System.CodeDom.CodeExpression
730     {
CodeDefaultValueExpression()731         public CodeDefaultValueExpression() { }
CodeDefaultValueExpression(System.CodeDom.CodeTypeReference type)732         public CodeDefaultValueExpression(System.CodeDom.CodeTypeReference type) { }
733         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
734     }
735     [System.SerializableAttribute]
736     public partial class CodeDelegateCreateExpression : System.CodeDom.CodeExpression
737     {
CodeDelegateCreateExpression()738         public CodeDelegateCreateExpression() { }
CodeDelegateCreateExpression(System.CodeDom.CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName)739         public CodeDelegateCreateExpression(System.CodeDom.CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName) { }
740         public System.CodeDom.CodeTypeReference DelegateType { get { throw null; } set { } }
741         public string MethodName { get { throw null; } set { } }
742         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
743     }
744     [System.SerializableAttribute]
745     public partial class CodeDelegateInvokeExpression : System.CodeDom.CodeExpression
746     {
CodeDelegateInvokeExpression()747         public CodeDelegateInvokeExpression() { }
CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject)748         public CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject) { }
CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] parameters)749         public CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] parameters) { }
750         public System.CodeDom.CodeExpressionCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
751         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
752     }
753     [System.SerializableAttribute]
754     public partial class CodeDirectionExpression : System.CodeDom.CodeExpression
755     {
CodeDirectionExpression()756         public CodeDirectionExpression() { }
CodeDirectionExpression(System.CodeDom.FieldDirection direction, System.CodeDom.CodeExpression expression)757         public CodeDirectionExpression(System.CodeDom.FieldDirection direction, System.CodeDom.CodeExpression expression) { }
758         public System.CodeDom.FieldDirection Direction { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
759         public System.CodeDom.CodeExpression Expression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
760     }
761     [System.SerializableAttribute]
762     public partial class CodeDirective : System.CodeDom.CodeObject
763     {
CodeDirective()764         public CodeDirective() { }
765     }
766     [System.SerializableAttribute]
767     public partial class CodeDirectiveCollection : System.Collections.CollectionBase
768     {
CodeDirectiveCollection()769         public CodeDirectiveCollection() { }
CodeDirectiveCollection(System.CodeDom.CodeDirectiveCollection value)770         public CodeDirectiveCollection(System.CodeDom.CodeDirectiveCollection value) { }
CodeDirectiveCollection(System.CodeDom.CodeDirective[] value)771         public CodeDirectiveCollection(System.CodeDom.CodeDirective[] value) { }
772         public System.CodeDom.CodeDirective this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeDirective value)773         public int Add(System.CodeDom.CodeDirective value) { throw null; }
AddRange(System.CodeDom.CodeDirectiveCollection value)774         public void AddRange(System.CodeDom.CodeDirectiveCollection value) { }
AddRange(System.CodeDom.CodeDirective[] value)775         public void AddRange(System.CodeDom.CodeDirective[] value) { }
Contains(System.CodeDom.CodeDirective value)776         public bool Contains(System.CodeDom.CodeDirective value) { throw null; }
CopyTo(System.CodeDom.CodeDirective[] array, int index)777         public void CopyTo(System.CodeDom.CodeDirective[] array, int index) { }
IndexOf(System.CodeDom.CodeDirective value)778         public int IndexOf(System.CodeDom.CodeDirective value) { throw null; }
Insert(int index, System.CodeDom.CodeDirective value)779         public void Insert(int index, System.CodeDom.CodeDirective value) { }
Remove(System.CodeDom.CodeDirective value)780         public void Remove(System.CodeDom.CodeDirective value) { }
781     }
782     [System.SerializableAttribute]
783     public partial class CodeEntryPointMethod : System.CodeDom.CodeMemberMethod
784     {
CodeEntryPointMethod()785         public CodeEntryPointMethod() { }
786     }
787     [System.SerializableAttribute]
788     public partial class CodeEventReferenceExpression : System.CodeDom.CodeExpression
789     {
CodeEventReferenceExpression()790         public CodeEventReferenceExpression() { }
CodeEventReferenceExpression(System.CodeDom.CodeExpression targetObject, string eventName)791         public CodeEventReferenceExpression(System.CodeDom.CodeExpression targetObject, string eventName) { }
792         public string EventName { get { throw null; } set { } }
793         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
794     }
795     [System.SerializableAttribute]
796     public partial class CodeExpression : System.CodeDom.CodeObject
797     {
CodeExpression()798         public CodeExpression() { }
799     }
800     [System.SerializableAttribute]
801     public partial class CodeExpressionCollection : System.Collections.CollectionBase
802     {
CodeExpressionCollection()803         public CodeExpressionCollection() { }
CodeExpressionCollection(System.CodeDom.CodeExpressionCollection value)804         public CodeExpressionCollection(System.CodeDom.CodeExpressionCollection value) { }
CodeExpressionCollection(System.CodeDom.CodeExpression[] value)805         public CodeExpressionCollection(System.CodeDom.CodeExpression[] value) { }
806         public System.CodeDom.CodeExpression this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeExpression value)807         public int Add(System.CodeDom.CodeExpression value) { throw null; }
AddRange(System.CodeDom.CodeExpressionCollection value)808         public void AddRange(System.CodeDom.CodeExpressionCollection value) { }
AddRange(System.CodeDom.CodeExpression[] value)809         public void AddRange(System.CodeDom.CodeExpression[] value) { }
Contains(System.CodeDom.CodeExpression value)810         public bool Contains(System.CodeDom.CodeExpression value) { throw null; }
CopyTo(System.CodeDom.CodeExpression[] array, int index)811         public void CopyTo(System.CodeDom.CodeExpression[] array, int index) { }
IndexOf(System.CodeDom.CodeExpression value)812         public int IndexOf(System.CodeDom.CodeExpression value) { throw null; }
Insert(int index, System.CodeDom.CodeExpression value)813         public void Insert(int index, System.CodeDom.CodeExpression value) { }
Remove(System.CodeDom.CodeExpression value)814         public void Remove(System.CodeDom.CodeExpression value) { }
815     }
816     [System.SerializableAttribute]
817     public partial class CodeExpressionStatement : System.CodeDom.CodeStatement
818     {
CodeExpressionStatement()819         public CodeExpressionStatement() { }
CodeExpressionStatement(System.CodeDom.CodeExpression expression)820         public CodeExpressionStatement(System.CodeDom.CodeExpression expression) { }
821         public System.CodeDom.CodeExpression Expression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
822     }
823     [System.SerializableAttribute]
824     public partial class CodeFieldReferenceExpression : System.CodeDom.CodeExpression
825     {
CodeFieldReferenceExpression()826         public CodeFieldReferenceExpression() { }
CodeFieldReferenceExpression(System.CodeDom.CodeExpression targetObject, string fieldName)827         public CodeFieldReferenceExpression(System.CodeDom.CodeExpression targetObject, string fieldName) { }
828         public string FieldName { get { throw null; } set { } }
829         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
830     }
831     [System.SerializableAttribute]
832     public partial class CodeGotoStatement : System.CodeDom.CodeStatement
833     {
CodeGotoStatement()834         public CodeGotoStatement() { }
CodeGotoStatement(string label)835         public CodeGotoStatement(string label) { }
836         public string Label { get { throw null; } set { } }
837     }
838     [System.SerializableAttribute]
839     public partial class CodeIndexerExpression : System.CodeDom.CodeExpression
840     {
CodeIndexerExpression()841         public CodeIndexerExpression() { }
CodeIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices)842         public CodeIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices) { }
843         public System.CodeDom.CodeExpressionCollection Indices { get { throw null; } }
844         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
845     }
846     [System.SerializableAttribute]
847     public partial class CodeIterationStatement : System.CodeDom.CodeStatement
848     {
CodeIterationStatement()849         public CodeIterationStatement() { }
CodeIterationStatement(System.CodeDom.CodeStatement initStatement, System.CodeDom.CodeExpression testExpression, System.CodeDom.CodeStatement incrementStatement, params System.CodeDom.CodeStatement[] statements)850         public CodeIterationStatement(System.CodeDom.CodeStatement initStatement, System.CodeDom.CodeExpression testExpression, System.CodeDom.CodeStatement incrementStatement, params System.CodeDom.CodeStatement[] statements) { }
851         public System.CodeDom.CodeStatement IncrementStatement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
852         public System.CodeDom.CodeStatement InitStatement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
853         public System.CodeDom.CodeStatementCollection Statements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
854         public System.CodeDom.CodeExpression TestExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
855     }
856     [System.SerializableAttribute]
857     public partial class CodeLabeledStatement : System.CodeDom.CodeStatement
858     {
CodeLabeledStatement()859         public CodeLabeledStatement() { }
CodeLabeledStatement(string label)860         public CodeLabeledStatement(string label) { }
CodeLabeledStatement(string label, System.CodeDom.CodeStatement statement)861         public CodeLabeledStatement(string label, System.CodeDom.CodeStatement statement) { }
862         public string Label { get { throw null; } set { } }
863         public System.CodeDom.CodeStatement Statement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
864     }
865     [System.SerializableAttribute]
866     public partial class CodeLinePragma
867     {
CodeLinePragma()868         public CodeLinePragma() { }
CodeLinePragma(string fileName, int lineNumber)869         public CodeLinePragma(string fileName, int lineNumber) { }
870         public string FileName { get { throw null; } set { } }
871         public int LineNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
872     }
873     [System.SerializableAttribute]
874     public partial class CodeMemberEvent : System.CodeDom.CodeTypeMember
875     {
CodeMemberEvent()876         public CodeMemberEvent() { }
877         public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
878         public System.CodeDom.CodeTypeReference PrivateImplementationType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
879         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
880     }
881     [System.SerializableAttribute]
882     public partial class CodeMemberField : System.CodeDom.CodeTypeMember
883     {
CodeMemberField()884         public CodeMemberField() { }
CodeMemberField(System.CodeDom.CodeTypeReference type, string name)885         public CodeMemberField(System.CodeDom.CodeTypeReference type, string name) { }
CodeMemberField(string type, string name)886         public CodeMemberField(string type, string name) { }
CodeMemberField(System.Type type, string name)887         public CodeMemberField(System.Type type, string name) { }
888         public System.CodeDom.CodeExpression InitExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
889         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
890     }
891     [System.SerializableAttribute]
892     public partial class CodeMemberMethod : System.CodeDom.CodeTypeMember
893     {
CodeMemberMethod()894         public CodeMemberMethod() { }
895         public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
896         public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
897         public System.CodeDom.CodeTypeReference PrivateImplementationType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
898         public System.CodeDom.CodeTypeReference ReturnType { get { throw null; } set { } }
899         public System.CodeDom.CodeAttributeDeclarationCollection ReturnTypeCustomAttributes { get { throw null; } }
900         public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
901         public System.CodeDom.CodeTypeParameterCollection TypeParameters { get { throw null; } }
902         public event System.EventHandler PopulateImplementationTypes { add { } remove { } }
903         public event System.EventHandler PopulateParameters { add { } remove { } }
904         public event System.EventHandler PopulateStatements { add { } remove { } }
905     }
906     [System.SerializableAttribute]
907     public partial class CodeMemberProperty : System.CodeDom.CodeTypeMember
908     {
CodeMemberProperty()909         public CodeMemberProperty() { }
910         public System.CodeDom.CodeStatementCollection GetStatements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
911         public bool HasGet { get { throw null; } set { } }
912         public bool HasSet { get { throw null; } set { } }
913         public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
914         public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
915         public System.CodeDom.CodeTypeReference PrivateImplementationType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
916         public System.CodeDom.CodeStatementCollection SetStatements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
917         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
918     }
919     [System.SerializableAttribute]
920     public partial class CodeMethodInvokeExpression : System.CodeDom.CodeExpression
921     {
CodeMethodInvokeExpression()922         public CodeMethodInvokeExpression() { }
CodeMethodInvokeExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeExpression[] parameters)923         public CodeMethodInvokeExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeExpression[] parameters) { }
CodeMethodInvokeExpression(System.CodeDom.CodeMethodReferenceExpression method, params System.CodeDom.CodeExpression[] parameters)924         public CodeMethodInvokeExpression(System.CodeDom.CodeMethodReferenceExpression method, params System.CodeDom.CodeExpression[] parameters) { }
925         public System.CodeDom.CodeMethodReferenceExpression Method { get { throw null; } set { } }
926         public System.CodeDom.CodeExpressionCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
927     }
928     [System.SerializableAttribute]
929     public partial class CodeMethodReferenceExpression : System.CodeDom.CodeExpression
930     {
CodeMethodReferenceExpression()931         public CodeMethodReferenceExpression() { }
CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName)932         public CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName) { }
CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeTypeReference[] typeParameters)933         public CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeTypeReference[] typeParameters) { }
934         public string MethodName { get { throw null; } set { } }
935         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
936         public System.CodeDom.CodeTypeReferenceCollection TypeArguments { get { throw null; } }
937     }
938     [System.SerializableAttribute]
939     public partial class CodeMethodReturnStatement : System.CodeDom.CodeStatement
940     {
CodeMethodReturnStatement()941         public CodeMethodReturnStatement() { }
CodeMethodReturnStatement(System.CodeDom.CodeExpression expression)942         public CodeMethodReturnStatement(System.CodeDom.CodeExpression expression) { }
943         public System.CodeDom.CodeExpression Expression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
944     }
945     [System.SerializableAttribute]
946     public partial class CodeNamespace : System.CodeDom.CodeObject
947     {
CodeNamespace()948         public CodeNamespace() { }
CodeNamespace(string name)949         public CodeNamespace(string name) { }
950         public System.CodeDom.CodeCommentStatementCollection Comments { get { throw null; } }
951         public System.CodeDom.CodeNamespaceImportCollection Imports { get { throw null; } }
952         public string Name { get { throw null; } set { } }
953         public System.CodeDom.CodeTypeDeclarationCollection Types { get { throw null; } }
954         public event System.EventHandler PopulateComments { add { } remove { } }
955         public event System.EventHandler PopulateImports { add { } remove { } }
956         public event System.EventHandler PopulateTypes { add { } remove { } }
957     }
958     [System.SerializableAttribute]
959     public partial class CodeNamespaceCollection : System.Collections.CollectionBase
960     {
CodeNamespaceCollection()961         public CodeNamespaceCollection() { }
CodeNamespaceCollection(System.CodeDom.CodeNamespaceCollection value)962         public CodeNamespaceCollection(System.CodeDom.CodeNamespaceCollection value) { }
CodeNamespaceCollection(System.CodeDom.CodeNamespace[] value)963         public CodeNamespaceCollection(System.CodeDom.CodeNamespace[] value) { }
964         public System.CodeDom.CodeNamespace this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeNamespace value)965         public int Add(System.CodeDom.CodeNamespace value) { throw null; }
AddRange(System.CodeDom.CodeNamespaceCollection value)966         public void AddRange(System.CodeDom.CodeNamespaceCollection value) { }
AddRange(System.CodeDom.CodeNamespace[] value)967         public void AddRange(System.CodeDom.CodeNamespace[] value) { }
Contains(System.CodeDom.CodeNamespace value)968         public bool Contains(System.CodeDom.CodeNamespace value) { throw null; }
CopyTo(System.CodeDom.CodeNamespace[] array, int index)969         public void CopyTo(System.CodeDom.CodeNamespace[] array, int index) { }
IndexOf(System.CodeDom.CodeNamespace value)970         public int IndexOf(System.CodeDom.CodeNamespace value) { throw null; }
Insert(int index, System.CodeDom.CodeNamespace value)971         public void Insert(int index, System.CodeDom.CodeNamespace value) { }
Remove(System.CodeDom.CodeNamespace value)972         public void Remove(System.CodeDom.CodeNamespace value) { }
973     }
974     [System.SerializableAttribute]
975     public partial class CodeNamespaceImport : System.CodeDom.CodeObject
976     {
CodeNamespaceImport()977         public CodeNamespaceImport() { }
CodeNamespaceImport(string nameSpace)978         public CodeNamespaceImport(string nameSpace) { }
979         public System.CodeDom.CodeLinePragma LinePragma { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
980         public string Namespace { get { throw null; } set { } }
981     }
982     [System.SerializableAttribute]
983     public partial class CodeNamespaceImportCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
984     {
CodeNamespaceImportCollection()985         public CodeNamespaceImportCollection() { }
986         public int Count { get { throw null; } }
987         public System.CodeDom.CodeNamespaceImport this[int index] { get { throw null; } set { } }
988         int System.Collections.ICollection.Count { get { throw null; } }
989         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
990         object System.Collections.ICollection.SyncRoot { get { throw null; } }
991         bool System.Collections.IList.IsFixedSize { get { throw null; } }
992         bool System.Collections.IList.IsReadOnly { get { throw null; } }
993         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeNamespaceImport value)994         public void Add(System.CodeDom.CodeNamespaceImport value) { }
AddRange(System.CodeDom.CodeNamespaceImport[] value)995         public void AddRange(System.CodeDom.CodeNamespaceImport[] value) { }
Clear()996         public void Clear() { }
GetEnumerator()997         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)998         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()999         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1000         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1001         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1002         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1003         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1004         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1005         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1006         void System.Collections.IList.RemoveAt(int index) { }
1007     }
1008     [System.SerializableAttribute]
1009     public partial class CodeObject
1010     {
CodeObject()1011         public CodeObject() { }
1012         public System.Collections.IDictionary UserData { get { throw null; } }
1013     }
1014     [System.SerializableAttribute]
1015     public partial class CodeObjectCreateExpression : System.CodeDom.CodeExpression
1016     {
CodeObjectCreateExpression()1017         public CodeObjectCreateExpression() { }
CodeObjectCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] parameters)1018         public CodeObjectCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] parameters) { }
CodeObjectCreateExpression(string createType, params System.CodeDom.CodeExpression[] parameters)1019         public CodeObjectCreateExpression(string createType, params System.CodeDom.CodeExpression[] parameters) { }
CodeObjectCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] parameters)1020         public CodeObjectCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] parameters) { }
1021         public System.CodeDom.CodeTypeReference CreateType { get { throw null; } set { } }
1022         public System.CodeDom.CodeExpressionCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1023     }
1024     [System.SerializableAttribute]
1025     public partial class CodeParameterDeclarationExpression : System.CodeDom.CodeExpression
1026     {
CodeParameterDeclarationExpression()1027         public CodeParameterDeclarationExpression() { }
CodeParameterDeclarationExpression(System.CodeDom.CodeTypeReference type, string name)1028         public CodeParameterDeclarationExpression(System.CodeDom.CodeTypeReference type, string name) { }
CodeParameterDeclarationExpression(string type, string name)1029         public CodeParameterDeclarationExpression(string type, string name) { }
CodeParameterDeclarationExpression(System.Type type, string name)1030         public CodeParameterDeclarationExpression(System.Type type, string name) { }
1031         public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } set { } }
1032         public System.CodeDom.FieldDirection Direction { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1033         public string Name { get { throw null; } set { } }
1034         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1035     }
1036     [System.SerializableAttribute]
1037     public partial class CodeParameterDeclarationExpressionCollection : System.Collections.CollectionBase
1038     {
CodeParameterDeclarationExpressionCollection()1039         public CodeParameterDeclarationExpressionCollection() { }
CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpressionCollection value)1040         public CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpressionCollection value) { }
CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpression[] value)1041         public CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpression[] value) { }
1042         public System.CodeDom.CodeParameterDeclarationExpression this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeParameterDeclarationExpression value)1043         public int Add(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection value)1044         public void AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection value) { }
AddRange(System.CodeDom.CodeParameterDeclarationExpression[] value)1045         public void AddRange(System.CodeDom.CodeParameterDeclarationExpression[] value) { }
Contains(System.CodeDom.CodeParameterDeclarationExpression value)1046         public bool Contains(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
CopyTo(System.CodeDom.CodeParameterDeclarationExpression[] array, int index)1047         public void CopyTo(System.CodeDom.CodeParameterDeclarationExpression[] array, int index) { }
IndexOf(System.CodeDom.CodeParameterDeclarationExpression value)1048         public int IndexOf(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
Insert(int index, System.CodeDom.CodeParameterDeclarationExpression value)1049         public void Insert(int index, System.CodeDom.CodeParameterDeclarationExpression value) { }
Remove(System.CodeDom.CodeParameterDeclarationExpression value)1050         public void Remove(System.CodeDom.CodeParameterDeclarationExpression value) { }
1051     }
1052     [System.SerializableAttribute]
1053     public partial class CodePrimitiveExpression : System.CodeDom.CodeExpression
1054     {
CodePrimitiveExpression()1055         public CodePrimitiveExpression() { }
CodePrimitiveExpression(object value)1056         public CodePrimitiveExpression(object value) { }
1057         public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1058     }
1059     [System.SerializableAttribute]
1060     public partial class CodePropertyReferenceExpression : System.CodeDom.CodeExpression
1061     {
CodePropertyReferenceExpression()1062         public CodePropertyReferenceExpression() { }
CodePropertyReferenceExpression(System.CodeDom.CodeExpression targetObject, string propertyName)1063         public CodePropertyReferenceExpression(System.CodeDom.CodeExpression targetObject, string propertyName) { }
1064         public string PropertyName { get { throw null; } set { } }
1065         public System.CodeDom.CodeExpression TargetObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1066     }
1067     [System.SerializableAttribute]
1068     public partial class CodePropertySetValueReferenceExpression : System.CodeDom.CodeExpression
1069     {
CodePropertySetValueReferenceExpression()1070         public CodePropertySetValueReferenceExpression() { }
1071     }
1072     [System.SerializableAttribute]
1073     public partial class CodeRegionDirective : System.CodeDom.CodeDirective
1074     {
CodeRegionDirective()1075         public CodeRegionDirective() { }
CodeRegionDirective(System.CodeDom.CodeRegionMode regionMode, string regionText)1076         public CodeRegionDirective(System.CodeDom.CodeRegionMode regionMode, string regionText) { }
1077         public System.CodeDom.CodeRegionMode RegionMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1078         public string RegionText { get { throw null; } set { } }
1079     }
1080     public enum CodeRegionMode
1081     {
1082         End = 2,
1083         None = 0,
1084         Start = 1,
1085     }
1086     [System.SerializableAttribute]
1087     public partial class CodeRemoveEventStatement : System.CodeDom.CodeStatement
1088     {
CodeRemoveEventStatement()1089         public CodeRemoveEventStatement() { }
CodeRemoveEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener)1090         public CodeRemoveEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener) { }
CodeRemoveEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener)1091         public CodeRemoveEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener) { }
1092         public System.CodeDom.CodeEventReferenceExpression Event { get { throw null; } set { } }
1093         public System.CodeDom.CodeExpression Listener { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1094     }
1095     [System.SerializableAttribute]
1096     public partial class CodeSnippetCompileUnit : System.CodeDom.CodeCompileUnit
1097     {
CodeSnippetCompileUnit()1098         public CodeSnippetCompileUnit() { }
CodeSnippetCompileUnit(string value)1099         public CodeSnippetCompileUnit(string value) { }
1100         public System.CodeDom.CodeLinePragma LinePragma { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1101         public string Value { get { throw null; } set { } }
1102     }
1103     [System.SerializableAttribute]
1104     public partial class CodeSnippetExpression : System.CodeDom.CodeExpression
1105     {
CodeSnippetExpression()1106         public CodeSnippetExpression() { }
CodeSnippetExpression(string value)1107         public CodeSnippetExpression(string value) { }
1108         public string Value { get { throw null; } set { } }
1109     }
1110     [System.SerializableAttribute]
1111     public partial class CodeSnippetStatement : System.CodeDom.CodeStatement
1112     {
CodeSnippetStatement()1113         public CodeSnippetStatement() { }
CodeSnippetStatement(string value)1114         public CodeSnippetStatement(string value) { }
1115         public string Value { get { throw null; } set { } }
1116     }
1117     [System.SerializableAttribute]
1118     public partial class CodeSnippetTypeMember : System.CodeDom.CodeTypeMember
1119     {
CodeSnippetTypeMember()1120         public CodeSnippetTypeMember() { }
CodeSnippetTypeMember(string text)1121         public CodeSnippetTypeMember(string text) { }
1122         public string Text { get { throw null; } set { } }
1123     }
1124     [System.SerializableAttribute]
1125     public partial class CodeStatement : System.CodeDom.CodeObject
1126     {
CodeStatement()1127         public CodeStatement() { }
1128         public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
1129         public System.CodeDom.CodeLinePragma LinePragma { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1130         public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
1131     }
1132     [System.SerializableAttribute]
1133     public partial class CodeStatementCollection : System.Collections.CollectionBase
1134     {
CodeStatementCollection()1135         public CodeStatementCollection() { }
CodeStatementCollection(System.CodeDom.CodeStatementCollection value)1136         public CodeStatementCollection(System.CodeDom.CodeStatementCollection value) { }
CodeStatementCollection(System.CodeDom.CodeStatement[] value)1137         public CodeStatementCollection(System.CodeDom.CodeStatement[] value) { }
1138         public System.CodeDom.CodeStatement this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeExpression value)1139         public int Add(System.CodeDom.CodeExpression value) { throw null; }
Add(System.CodeDom.CodeStatement value)1140         public int Add(System.CodeDom.CodeStatement value) { throw null; }
AddRange(System.CodeDom.CodeStatementCollection value)1141         public void AddRange(System.CodeDom.CodeStatementCollection value) { }
AddRange(System.CodeDom.CodeStatement[] value)1142         public void AddRange(System.CodeDom.CodeStatement[] value) { }
Contains(System.CodeDom.CodeStatement value)1143         public bool Contains(System.CodeDom.CodeStatement value) { throw null; }
CopyTo(System.CodeDom.CodeStatement[] array, int index)1144         public void CopyTo(System.CodeDom.CodeStatement[] array, int index) { }
IndexOf(System.CodeDom.CodeStatement value)1145         public int IndexOf(System.CodeDom.CodeStatement value) { throw null; }
Insert(int index, System.CodeDom.CodeStatement value)1146         public void Insert(int index, System.CodeDom.CodeStatement value) { }
Remove(System.CodeDom.CodeStatement value)1147         public void Remove(System.CodeDom.CodeStatement value) { }
1148     }
1149     [System.SerializableAttribute]
1150     public partial class CodeThisReferenceExpression : System.CodeDom.CodeExpression
1151     {
CodeThisReferenceExpression()1152         public CodeThisReferenceExpression() { }
1153     }
1154     [System.SerializableAttribute]
1155     public partial class CodeThrowExceptionStatement : System.CodeDom.CodeStatement
1156     {
CodeThrowExceptionStatement()1157         public CodeThrowExceptionStatement() { }
CodeThrowExceptionStatement(System.CodeDom.CodeExpression toThrow)1158         public CodeThrowExceptionStatement(System.CodeDom.CodeExpression toThrow) { }
1159         public System.CodeDom.CodeExpression ToThrow { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1160     }
1161     [System.SerializableAttribute]
1162     public partial class CodeTryCatchFinallyStatement : System.CodeDom.CodeStatement
1163     {
CodeTryCatchFinallyStatement()1164         public CodeTryCatchFinallyStatement() { }
CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses)1165         public CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses) { }
CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses, System.CodeDom.CodeStatement[] finallyStatements)1166         public CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses, System.CodeDom.CodeStatement[] finallyStatements) { }
1167         public System.CodeDom.CodeCatchClauseCollection CatchClauses { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1168         public System.CodeDom.CodeStatementCollection FinallyStatements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1169         public System.CodeDom.CodeStatementCollection TryStatements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1170     }
1171     [System.SerializableAttribute]
1172     public partial class CodeTypeConstructor : System.CodeDom.CodeMemberMethod
1173     {
CodeTypeConstructor()1174         public CodeTypeConstructor() { }
1175     }
1176     [System.SerializableAttribute]
1177     public partial class CodeTypeDeclaration : System.CodeDom.CodeTypeMember
1178     {
CodeTypeDeclaration()1179         public CodeTypeDeclaration() { }
CodeTypeDeclaration(string name)1180         public CodeTypeDeclaration(string name) { }
1181         public System.CodeDom.CodeTypeReferenceCollection BaseTypes { get { throw null; } }
1182         public bool IsClass { get { throw null; } set { } }
1183         public bool IsEnum { get { throw null; } set { } }
1184         public bool IsInterface { get { throw null; } set { } }
1185         public bool IsPartial { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1186         public bool IsStruct { get { throw null; } set { } }
1187         public System.CodeDom.CodeTypeMemberCollection Members { get { throw null; } }
1188         public System.Reflection.TypeAttributes TypeAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1189         public System.CodeDom.CodeTypeParameterCollection TypeParameters { get { throw null; } }
1190         public event System.EventHandler PopulateBaseTypes { add { } remove { } }
1191         public event System.EventHandler PopulateMembers { add { } remove { } }
1192     }
1193     [System.SerializableAttribute]
1194     public partial class CodeTypeDeclarationCollection : System.Collections.CollectionBase
1195     {
CodeTypeDeclarationCollection()1196         public CodeTypeDeclarationCollection() { }
CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclarationCollection value)1197         public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclarationCollection value) { }
CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclaration[] value)1198         public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclaration[] value) { }
1199         public System.CodeDom.CodeTypeDeclaration this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeDeclaration value)1200         public int Add(System.CodeDom.CodeTypeDeclaration value) { throw null; }
AddRange(System.CodeDom.CodeTypeDeclarationCollection value)1201         public void AddRange(System.CodeDom.CodeTypeDeclarationCollection value) { }
AddRange(System.CodeDom.CodeTypeDeclaration[] value)1202         public void AddRange(System.CodeDom.CodeTypeDeclaration[] value) { }
Contains(System.CodeDom.CodeTypeDeclaration value)1203         public bool Contains(System.CodeDom.CodeTypeDeclaration value) { throw null; }
CopyTo(System.CodeDom.CodeTypeDeclaration[] array, int index)1204         public void CopyTo(System.CodeDom.CodeTypeDeclaration[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeDeclaration value)1205         public int IndexOf(System.CodeDom.CodeTypeDeclaration value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeDeclaration value)1206         public void Insert(int index, System.CodeDom.CodeTypeDeclaration value) { }
Remove(System.CodeDom.CodeTypeDeclaration value)1207         public void Remove(System.CodeDom.CodeTypeDeclaration value) { }
1208     }
1209     [System.SerializableAttribute]
1210     public partial class CodeTypeDelegate : System.CodeDom.CodeTypeDeclaration
1211     {
CodeTypeDelegate()1212         public CodeTypeDelegate() { }
CodeTypeDelegate(string name)1213         public CodeTypeDelegate(string name) { }
1214         public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1215         public System.CodeDom.CodeTypeReference ReturnType { get { throw null; } set { } }
1216     }
1217     [System.SerializableAttribute]
1218     public partial class CodeTypeMember : System.CodeDom.CodeObject
1219     {
CodeTypeMember()1220         public CodeTypeMember() { }
1221         public System.CodeDom.MemberAttributes Attributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1222         public System.CodeDom.CodeCommentStatementCollection Comments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1223         public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } set { } }
1224         public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
1225         public System.CodeDom.CodeLinePragma LinePragma { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1226         public string Name { get { throw null; } set { } }
1227         public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
1228     }
1229     [System.SerializableAttribute]
1230     public partial class CodeTypeMemberCollection : System.Collections.CollectionBase
1231     {
CodeTypeMemberCollection()1232         public CodeTypeMemberCollection() { }
CodeTypeMemberCollection(System.CodeDom.CodeTypeMemberCollection value)1233         public CodeTypeMemberCollection(System.CodeDom.CodeTypeMemberCollection value) { }
CodeTypeMemberCollection(System.CodeDom.CodeTypeMember[] value)1234         public CodeTypeMemberCollection(System.CodeDom.CodeTypeMember[] value) { }
1235         public System.CodeDom.CodeTypeMember this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeMember value)1236         public int Add(System.CodeDom.CodeTypeMember value) { throw null; }
AddRange(System.CodeDom.CodeTypeMemberCollection value)1237         public void AddRange(System.CodeDom.CodeTypeMemberCollection value) { }
AddRange(System.CodeDom.CodeTypeMember[] value)1238         public void AddRange(System.CodeDom.CodeTypeMember[] value) { }
Contains(System.CodeDom.CodeTypeMember value)1239         public bool Contains(System.CodeDom.CodeTypeMember value) { throw null; }
CopyTo(System.CodeDom.CodeTypeMember[] array, int index)1240         public void CopyTo(System.CodeDom.CodeTypeMember[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeMember value)1241         public int IndexOf(System.CodeDom.CodeTypeMember value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeMember value)1242         public void Insert(int index, System.CodeDom.CodeTypeMember value) { }
Remove(System.CodeDom.CodeTypeMember value)1243         public void Remove(System.CodeDom.CodeTypeMember value) { }
1244     }
1245     [System.SerializableAttribute]
1246     public partial class CodeTypeOfExpression : System.CodeDom.CodeExpression
1247     {
CodeTypeOfExpression()1248         public CodeTypeOfExpression() { }
CodeTypeOfExpression(System.CodeDom.CodeTypeReference type)1249         public CodeTypeOfExpression(System.CodeDom.CodeTypeReference type) { }
CodeTypeOfExpression(string type)1250         public CodeTypeOfExpression(string type) { }
CodeTypeOfExpression(System.Type type)1251         public CodeTypeOfExpression(System.Type type) { }
1252         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1253     }
1254     [System.SerializableAttribute]
1255     public partial class CodeTypeParameter : System.CodeDom.CodeObject
1256     {
CodeTypeParameter()1257         public CodeTypeParameter() { }
CodeTypeParameter(string name)1258         public CodeTypeParameter(string name) { }
1259         public System.CodeDom.CodeTypeReferenceCollection Constraints { get { throw null; } }
1260         public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } }
1261         public bool HasConstructorConstraint { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1262         public string Name { get { throw null; } set { } }
1263     }
1264     [System.SerializableAttribute]
1265     public partial class CodeTypeParameterCollection : System.Collections.CollectionBase
1266     {
CodeTypeParameterCollection()1267         public CodeTypeParameterCollection() { }
CodeTypeParameterCollection(System.CodeDom.CodeTypeParameterCollection value)1268         public CodeTypeParameterCollection(System.CodeDom.CodeTypeParameterCollection value) { }
CodeTypeParameterCollection(System.CodeDom.CodeTypeParameter[] value)1269         public CodeTypeParameterCollection(System.CodeDom.CodeTypeParameter[] value) { }
1270         public System.CodeDom.CodeTypeParameter this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeParameter value)1271         public int Add(System.CodeDom.CodeTypeParameter value) { throw null; }
Add(string value)1272         public void Add(string value) { }
AddRange(System.CodeDom.CodeTypeParameterCollection value)1273         public void AddRange(System.CodeDom.CodeTypeParameterCollection value) { }
AddRange(System.CodeDom.CodeTypeParameter[] value)1274         public void AddRange(System.CodeDom.CodeTypeParameter[] value) { }
Contains(System.CodeDom.CodeTypeParameter value)1275         public bool Contains(System.CodeDom.CodeTypeParameter value) { throw null; }
CopyTo(System.CodeDom.CodeTypeParameter[] array, int index)1276         public void CopyTo(System.CodeDom.CodeTypeParameter[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeParameter value)1277         public int IndexOf(System.CodeDom.CodeTypeParameter value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeParameter value)1278         public void Insert(int index, System.CodeDom.CodeTypeParameter value) { }
Remove(System.CodeDom.CodeTypeParameter value)1279         public void Remove(System.CodeDom.CodeTypeParameter value) { }
1280     }
1281     [System.SerializableAttribute]
1282     public partial class CodeTypeReference : System.CodeDom.CodeObject
1283     {
CodeTypeReference()1284         public CodeTypeReference() { }
CodeTypeReference(System.CodeDom.CodeTypeParameter typeParameter)1285         public CodeTypeReference(System.CodeDom.CodeTypeParameter typeParameter) { }
CodeTypeReference(System.CodeDom.CodeTypeReference arrayType, int rank)1286         public CodeTypeReference(System.CodeDom.CodeTypeReference arrayType, int rank) { }
CodeTypeReference(string typeName)1287         public CodeTypeReference(string typeName) { }
CodeTypeReference(string typeName, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption)1288         public CodeTypeReference(string typeName, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption) { }
CodeTypeReference(string typeName, params System.CodeDom.CodeTypeReference[] typeArguments)1289         public CodeTypeReference(string typeName, params System.CodeDom.CodeTypeReference[] typeArguments) { }
CodeTypeReference(string baseType, int rank)1290         public CodeTypeReference(string baseType, int rank) { }
CodeTypeReference(System.Type type)1291         public CodeTypeReference(System.Type type) { }
CodeTypeReference(System.Type type, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption)1292         public CodeTypeReference(System.Type type, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption) { }
1293         public System.CodeDom.CodeTypeReference ArrayElementType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1294         public int ArrayRank { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1295         public string BaseType { get { throw null; } set { } }
1296         public System.CodeDom.CodeTypeReferenceOptions Options { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1297         public System.CodeDom.CodeTypeReferenceCollection TypeArguments { get { throw null; } }
1298     }
1299     [System.SerializableAttribute]
1300     public partial class CodeTypeReferenceCollection : System.Collections.CollectionBase
1301     {
CodeTypeReferenceCollection()1302         public CodeTypeReferenceCollection() { }
CodeTypeReferenceCollection(System.CodeDom.CodeTypeReferenceCollection value)1303         public CodeTypeReferenceCollection(System.CodeDom.CodeTypeReferenceCollection value) { }
CodeTypeReferenceCollection(System.CodeDom.CodeTypeReference[] value)1304         public CodeTypeReferenceCollection(System.CodeDom.CodeTypeReference[] value) { }
1305         public System.CodeDom.CodeTypeReference this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeReference value)1306         public int Add(System.CodeDom.CodeTypeReference value) { throw null; }
Add(string value)1307         public void Add(string value) { }
Add(System.Type value)1308         public void Add(System.Type value) { }
AddRange(System.CodeDom.CodeTypeReferenceCollection value)1309         public void AddRange(System.CodeDom.CodeTypeReferenceCollection value) { }
AddRange(System.CodeDom.CodeTypeReference[] value)1310         public void AddRange(System.CodeDom.CodeTypeReference[] value) { }
Contains(System.CodeDom.CodeTypeReference value)1311         public bool Contains(System.CodeDom.CodeTypeReference value) { throw null; }
CopyTo(System.CodeDom.CodeTypeReference[] array, int index)1312         public void CopyTo(System.CodeDom.CodeTypeReference[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeReference value)1313         public int IndexOf(System.CodeDom.CodeTypeReference value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeReference value)1314         public void Insert(int index, System.CodeDom.CodeTypeReference value) { }
Remove(System.CodeDom.CodeTypeReference value)1315         public void Remove(System.CodeDom.CodeTypeReference value) { }
1316     }
1317     [System.SerializableAttribute]
1318     public partial class CodeTypeReferenceExpression : System.CodeDom.CodeExpression
1319     {
CodeTypeReferenceExpression()1320         public CodeTypeReferenceExpression() { }
CodeTypeReferenceExpression(System.CodeDom.CodeTypeReference type)1321         public CodeTypeReferenceExpression(System.CodeDom.CodeTypeReference type) { }
CodeTypeReferenceExpression(string type)1322         public CodeTypeReferenceExpression(string type) { }
CodeTypeReferenceExpression(System.Type type)1323         public CodeTypeReferenceExpression(System.Type type) { }
1324         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1325     }
1326     [System.FlagsAttribute]
1327     public enum CodeTypeReferenceOptions
1328     {
1329         GenericTypeParameter = 2,
1330         GlobalReference = 1,
1331     }
1332     [System.SerializableAttribute]
1333     public partial class CodeVariableDeclarationStatement : System.CodeDom.CodeStatement
1334     {
CodeVariableDeclarationStatement()1335         public CodeVariableDeclarationStatement() { }
CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name)1336         public CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name) { }
CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression)1337         public CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression) { }
CodeVariableDeclarationStatement(string type, string name)1338         public CodeVariableDeclarationStatement(string type, string name) { }
CodeVariableDeclarationStatement(string type, string name, System.CodeDom.CodeExpression initExpression)1339         public CodeVariableDeclarationStatement(string type, string name, System.CodeDom.CodeExpression initExpression) { }
CodeVariableDeclarationStatement(System.Type type, string name)1340         public CodeVariableDeclarationStatement(System.Type type, string name) { }
CodeVariableDeclarationStatement(System.Type type, string name, System.CodeDom.CodeExpression initExpression)1341         public CodeVariableDeclarationStatement(System.Type type, string name, System.CodeDom.CodeExpression initExpression) { }
1342         public System.CodeDom.CodeExpression InitExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1343         public string Name { get { throw null; } set { } }
1344         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1345     }
1346     [System.SerializableAttribute]
1347     public partial class CodeVariableReferenceExpression : System.CodeDom.CodeExpression
1348     {
CodeVariableReferenceExpression()1349         public CodeVariableReferenceExpression() { }
CodeVariableReferenceExpression(string variableName)1350         public CodeVariableReferenceExpression(string variableName) { }
1351         public string VariableName { get { throw null; } set { } }
1352     }
1353     public enum FieldDirection
1354     {
1355         In = 0,
1356         Out = 1,
1357         Ref = 2,
1358     }
1359     public enum MemberAttributes
1360     {
1361         Abstract = 1,
1362         AccessMask = 61440,
1363         Assembly = 4096,
1364         Const = 5,
1365         Family = 12288,
1366         FamilyAndAssembly = 8192,
1367         FamilyOrAssembly = 16384,
1368         Final = 2,
1369         New = 16,
1370         Overloaded = 256,
1371         Override = 4,
1372         Private = 20480,
1373         Public = 24576,
1374         ScopeMask = 15,
1375         Static = 3,
1376         VTableMask = 240,
1377     }
1378 }
1379 namespace System.CodeDom.Compiler
1380 {
1381     public abstract partial class CodeCompiler : System.CodeDom.Compiler.CodeGenerator, System.CodeDom.Compiler.ICodeCompiler
1382     {
CodeCompiler()1383         protected CodeCompiler() { }
1384         protected abstract string CompilerName { get; }
1385         protected abstract string FileExtension { get; }
CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters options)1386         protected abstract string CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters options);
FromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e)1387         protected virtual System.CodeDom.Compiler.CompilerResults FromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e) { throw null; }
FromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea)1388         protected virtual System.CodeDom.Compiler.CompilerResults FromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea) { throw null; }
FromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName)1389         protected virtual System.CodeDom.Compiler.CompilerResults FromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName) { throw null; }
FromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames)1390         protected virtual System.CodeDom.Compiler.CompilerResults FromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames) { throw null; }
FromSource(System.CodeDom.Compiler.CompilerParameters options, string source)1391         protected virtual System.CodeDom.Compiler.CompilerResults FromSource(System.CodeDom.Compiler.CompilerParameters options, string source) { throw null; }
FromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources)1392         protected virtual System.CodeDom.Compiler.CompilerResults FromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources) { throw null; }
GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters options, string cmdArgs)1393         protected virtual string GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters options, string cmdArgs) { throw null; }
JoinStringArray(string[] sa, string separator)1394         protected static string JoinStringArray(string[] sa, string separator) { throw null; }
ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults results, string line)1395         protected abstract void ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults results, string line);
System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e)1396         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e) { throw null; }
System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea)1397         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea) { throw null; }
System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName)1398         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName) { throw null; }
System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames)1399         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames) { throw null; }
System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source)1400         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source) { throw null; }
System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources)1401         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources) { throw null; }
1402     }
1403     public abstract partial class CodeDomProvider : System.ComponentModel.Component
1404     {
CodeDomProvider()1405         protected CodeDomProvider() { }
1406         public virtual string FileExtension { get { throw null; } }
1407         public virtual System.CodeDom.Compiler.LanguageOptions LanguageOptions { get { throw null; } }
CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, params System.CodeDom.CodeCompileUnit[] compilationUnits)1408         public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, params System.CodeDom.CodeCompileUnit[] compilationUnits) { throw null; }
CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, params string[] fileNames)1409         public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, params string[] fileNames) { throw null; }
CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, params string[] sources)1410         public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, params string[] sources) { throw null; }
1411         [System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")]
CreateCompiler()1412         public abstract System.CodeDom.Compiler.ICodeCompiler CreateCompiler();
CreateEscapedIdentifier(string value)1413         public virtual string CreateEscapedIdentifier(string value) { throw null; }
1414         [System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")]
CreateGenerator()1415         public abstract System.CodeDom.Compiler.ICodeGenerator CreateGenerator();
CreateGenerator(System.IO.TextWriter output)1416         public virtual System.CodeDom.Compiler.ICodeGenerator CreateGenerator(System.IO.TextWriter output) { throw null; }
CreateGenerator(string fileName)1417         public virtual System.CodeDom.Compiler.ICodeGenerator CreateGenerator(string fileName) { throw null; }
1418         [System.ObsoleteAttribute("Callers should not use the ICodeParser interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")]
CreateParser()1419         public virtual System.CodeDom.Compiler.ICodeParser CreateParser() { throw null; }
CreateProvider(string language)1420         public static System.CodeDom.Compiler.CodeDomProvider CreateProvider(string language) { throw null; }
CreateProvider(string language, System.Collections.Generic.IDictionary<string, string> providerOptions)1421         public static System.CodeDom.Compiler.CodeDomProvider CreateProvider(string language, System.Collections.Generic.IDictionary<string, string> providerOptions) { throw null; }
CreateValidIdentifier(string value)1422         public virtual string CreateValidIdentifier(string value) { throw null; }
GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit compileUnit, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1423         public virtual void GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit compileUnit, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateCodeFromExpression(System.CodeDom.CodeExpression expression, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1424         public virtual void GenerateCodeFromExpression(System.CodeDom.CodeExpression expression, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1425         public virtual void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateCodeFromNamespace(System.CodeDom.CodeNamespace codeNamespace, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1426         public virtual void GenerateCodeFromNamespace(System.CodeDom.CodeNamespace codeNamespace, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateCodeFromStatement(System.CodeDom.CodeStatement statement, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1427         public virtual void GenerateCodeFromStatement(System.CodeDom.CodeStatement statement, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration codeType, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1428         public virtual void GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration codeType, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GetAllCompilerInfo()1429         public static System.CodeDom.Compiler.CompilerInfo[] GetAllCompilerInfo() { throw null; }
GetCompilerInfo(string language)1430         public static System.CodeDom.Compiler.CompilerInfo GetCompilerInfo(string language) { throw null; }
GetConverter(System.Type type)1431         public virtual System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
GetLanguageFromExtension(string extension)1432         public static string GetLanguageFromExtension(string extension) { throw null; }
GetTypeOutput(System.CodeDom.CodeTypeReference type)1433         public virtual string GetTypeOutput(System.CodeDom.CodeTypeReference type) { throw null; }
IsDefinedExtension(string extension)1434         public static bool IsDefinedExtension(string extension) { throw null; }
IsDefinedLanguage(string language)1435         public static bool IsDefinedLanguage(string language) { throw null; }
IsValidIdentifier(string value)1436         public virtual bool IsValidIdentifier(string value) { throw null; }
Parse(System.IO.TextReader codeStream)1437         public virtual System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream) { throw null; }
Supports(System.CodeDom.Compiler.GeneratorSupport generatorSupport)1438         public virtual bool Supports(System.CodeDom.Compiler.GeneratorSupport generatorSupport) { throw null; }
1439     }
1440     public abstract partial class CodeGenerator : System.CodeDom.Compiler.ICodeGenerator
1441     {
CodeGenerator()1442         protected CodeGenerator() { }
1443         protected System.CodeDom.CodeTypeDeclaration CurrentClass { get { throw null; } }
1444         protected System.CodeDom.CodeTypeMember CurrentMember { get { throw null; } }
1445         protected string CurrentMemberName { get { throw null; } }
1446         protected string CurrentTypeName { get { throw null; } }
1447         protected int Indent { get { throw null; } set { } }
1448         protected bool IsCurrentClass { get { throw null; } }
1449         protected bool IsCurrentDelegate { get { throw null; } }
1450         protected bool IsCurrentEnum { get { throw null; } }
1451         protected bool IsCurrentInterface { get { throw null; } }
1452         protected bool IsCurrentStruct { get { throw null; } }
1453         protected abstract string NullToken { get; }
1454         protected System.CodeDom.Compiler.CodeGeneratorOptions Options { get { throw null; } }
1455         protected System.IO.TextWriter Output { get { throw null; } }
ContinueOnNewLine(string st)1456         protected virtual void ContinueOnNewLine(string st) { }
CreateEscapedIdentifier(string value)1457         protected abstract string CreateEscapedIdentifier(string value);
CreateValidIdentifier(string value)1458         protected abstract string CreateValidIdentifier(string value);
GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression e)1459         protected abstract void GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression e);
GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression e)1460         protected abstract void GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression e);
GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression e)1461         protected abstract void GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression e);
GenerateAssignStatement(System.CodeDom.CodeAssignStatement e)1462         protected abstract void GenerateAssignStatement(System.CodeDom.CodeAssignStatement e);
GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement e)1463         protected abstract void GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement e);
GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection attributes)1464         protected abstract void GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection attributes);
GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection attributes)1465         protected abstract void GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection attributes);
GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression e)1466         protected abstract void GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression e);
GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression e)1467         protected virtual void GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression e) { }
GenerateCastExpression(System.CodeDom.CodeCastExpression e)1468         protected abstract void GenerateCastExpression(System.CodeDom.CodeCastExpression e);
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1469         public virtual void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateComment(System.CodeDom.CodeComment e)1470         protected abstract void GenerateComment(System.CodeDom.CodeComment e);
GenerateCommentStatement(System.CodeDom.CodeCommentStatement e)1471         protected virtual void GenerateCommentStatement(System.CodeDom.CodeCommentStatement e) { }
GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection e)1472         protected virtual void GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection e) { }
GenerateCompileUnit(System.CodeDom.CodeCompileUnit e)1473         protected virtual void GenerateCompileUnit(System.CodeDom.CodeCompileUnit e) { }
GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit e)1474         protected virtual void GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit e) { }
GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit e)1475         protected virtual void GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit e) { }
GenerateConditionStatement(System.CodeDom.CodeConditionStatement e)1476         protected abstract void GenerateConditionStatement(System.CodeDom.CodeConditionStatement e);
GenerateConstructor(System.CodeDom.CodeConstructor e, System.CodeDom.CodeTypeDeclaration c)1477         protected abstract void GenerateConstructor(System.CodeDom.CodeConstructor e, System.CodeDom.CodeTypeDeclaration c);
GenerateDecimalValue(decimal d)1478         protected virtual void GenerateDecimalValue(decimal d) { }
GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression e)1479         protected virtual void GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression e) { }
GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression e)1480         protected abstract void GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression e);
GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression e)1481         protected abstract void GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression e);
GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression e)1482         protected virtual void GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression e) { }
GenerateDirectives(System.CodeDom.CodeDirectiveCollection directives)1483         protected virtual void GenerateDirectives(System.CodeDom.CodeDirectiveCollection directives) { }
GenerateDoubleValue(double d)1484         protected virtual void GenerateDoubleValue(double d) { }
GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod e, System.CodeDom.CodeTypeDeclaration c)1485         protected abstract void GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod e, System.CodeDom.CodeTypeDeclaration c);
GenerateEvent(System.CodeDom.CodeMemberEvent e, System.CodeDom.CodeTypeDeclaration c)1486         protected abstract void GenerateEvent(System.CodeDom.CodeMemberEvent e, System.CodeDom.CodeTypeDeclaration c);
GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression e)1487         protected abstract void GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression e);
GenerateExpression(System.CodeDom.CodeExpression e)1488         protected void GenerateExpression(System.CodeDom.CodeExpression e) { }
GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement e)1489         protected abstract void GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement e);
GenerateField(System.CodeDom.CodeMemberField e)1490         protected abstract void GenerateField(System.CodeDom.CodeMemberField e);
GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression e)1491         protected abstract void GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression e);
GenerateGotoStatement(System.CodeDom.CodeGotoStatement e)1492         protected abstract void GenerateGotoStatement(System.CodeDom.CodeGotoStatement e);
GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression e)1493         protected abstract void GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression e);
GenerateIterationStatement(System.CodeDom.CodeIterationStatement e)1494         protected abstract void GenerateIterationStatement(System.CodeDom.CodeIterationStatement e);
GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement e)1495         protected abstract void GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement e);
GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma e)1496         protected abstract void GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma e);
GenerateLinePragmaStart(System.CodeDom.CodeLinePragma e)1497         protected abstract void GenerateLinePragmaStart(System.CodeDom.CodeLinePragma e);
GenerateMethod(System.CodeDom.CodeMemberMethod e, System.CodeDom.CodeTypeDeclaration c)1498         protected abstract void GenerateMethod(System.CodeDom.CodeMemberMethod e, System.CodeDom.CodeTypeDeclaration c);
GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression e)1499         protected abstract void GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression e);
GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression e)1500         protected abstract void GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression e);
GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement e)1501         protected abstract void GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement e);
GenerateNamespace(System.CodeDom.CodeNamespace e)1502         protected virtual void GenerateNamespace(System.CodeDom.CodeNamespace e) { }
GenerateNamespaceEnd(System.CodeDom.CodeNamespace e)1503         protected abstract void GenerateNamespaceEnd(System.CodeDom.CodeNamespace e);
GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport e)1504         protected abstract void GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport e);
GenerateNamespaceImports(System.CodeDom.CodeNamespace e)1505         protected void GenerateNamespaceImports(System.CodeDom.CodeNamespace e) { }
GenerateNamespaces(System.CodeDom.CodeCompileUnit e)1506         protected void GenerateNamespaces(System.CodeDom.CodeCompileUnit e) { }
GenerateNamespaceStart(System.CodeDom.CodeNamespace e)1507         protected abstract void GenerateNamespaceStart(System.CodeDom.CodeNamespace e);
GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression e)1508         protected abstract void GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression e);
GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression e)1509         protected virtual void GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression e) { }
GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression e)1510         protected virtual void GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression e) { }
GenerateProperty(System.CodeDom.CodeMemberProperty e, System.CodeDom.CodeTypeDeclaration c)1511         protected abstract void GenerateProperty(System.CodeDom.CodeMemberProperty e, System.CodeDom.CodeTypeDeclaration c);
GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression e)1512         protected abstract void GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression e);
GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression e)1513         protected abstract void GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression e);
GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement e)1514         protected abstract void GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement e);
GenerateSingleFloatValue(float s)1515         protected virtual void GenerateSingleFloatValue(float s) { }
GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit e)1516         protected virtual void GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit e) { }
GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression e)1517         protected abstract void GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression e);
GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember e)1518         protected abstract void GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember e);
GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement e)1519         protected virtual void GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement e) { }
GenerateStatement(System.CodeDom.CodeStatement e)1520         protected void GenerateStatement(System.CodeDom.CodeStatement e) { }
GenerateStatements(System.CodeDom.CodeStatementCollection stmts)1521         protected void GenerateStatements(System.CodeDom.CodeStatementCollection stmts) { }
GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression e)1522         protected abstract void GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression e);
GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement e)1523         protected abstract void GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement e);
GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement e)1524         protected abstract void GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement e);
GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor e)1525         protected abstract void GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor e);
GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration e)1526         protected abstract void GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration e);
GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression e)1527         protected virtual void GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression e) { }
GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression e)1528         protected virtual void GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression e) { }
GenerateTypes(System.CodeDom.CodeNamespace e)1529         protected void GenerateTypes(System.CodeDom.CodeNamespace e) { }
GenerateTypeStart(System.CodeDom.CodeTypeDeclaration e)1530         protected abstract void GenerateTypeStart(System.CodeDom.CodeTypeDeclaration e);
GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement e)1531         protected abstract void GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement e);
GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression e)1532         protected abstract void GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression e);
GetTypeOutput(System.CodeDom.CodeTypeReference value)1533         protected abstract string GetTypeOutput(System.CodeDom.CodeTypeReference value);
IsValidIdentifier(string value)1534         protected abstract bool IsValidIdentifier(string value);
IsValidLanguageIndependentIdentifier(string value)1535         public static bool IsValidLanguageIndependentIdentifier(string value) { throw null; }
OutputAttributeArgument(System.CodeDom.CodeAttributeArgument arg)1536         protected virtual void OutputAttributeArgument(System.CodeDom.CodeAttributeArgument arg) { }
OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection attributes)1537         protected virtual void OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection attributes) { }
OutputDirection(System.CodeDom.FieldDirection dir)1538         protected virtual void OutputDirection(System.CodeDom.FieldDirection dir) { }
OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions)1539         protected virtual void OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions) { }
OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions, bool newlineBetweenItems)1540         protected virtual void OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions, bool newlineBetweenItems) { }
OutputFieldScopeModifier(System.CodeDom.MemberAttributes attributes)1541         protected virtual void OutputFieldScopeModifier(System.CodeDom.MemberAttributes attributes) { }
OutputIdentifier(string ident)1542         protected virtual void OutputIdentifier(string ident) { }
OutputMemberAccessModifier(System.CodeDom.MemberAttributes attributes)1543         protected virtual void OutputMemberAccessModifier(System.CodeDom.MemberAttributes attributes) { }
OutputMemberScopeModifier(System.CodeDom.MemberAttributes attributes)1544         protected virtual void OutputMemberScopeModifier(System.CodeDom.MemberAttributes attributes) { }
OutputOperator(System.CodeDom.CodeBinaryOperatorType op)1545         protected virtual void OutputOperator(System.CodeDom.CodeBinaryOperatorType op) { }
OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection parameters)1546         protected virtual void OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection parameters) { }
OutputType(System.CodeDom.CodeTypeReference typeRef)1547         protected abstract void OutputType(System.CodeDom.CodeTypeReference typeRef);
OutputTypeAttributes(System.Reflection.TypeAttributes attributes, bool isStruct, bool isEnum)1548         protected virtual void OutputTypeAttributes(System.Reflection.TypeAttributes attributes, bool isStruct, bool isEnum) { }
OutputTypeNamePair(System.CodeDom.CodeTypeReference typeRef, string name)1549         protected virtual void OutputTypeNamePair(System.CodeDom.CodeTypeReference typeRef, string name) { }
QuoteSnippetString(string value)1550         protected abstract string QuoteSnippetString(string value);
Supports(System.CodeDom.Compiler.GeneratorSupport support)1551         protected abstract bool Supports(System.CodeDom.Compiler.GeneratorSupport support);
System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(string value)1552         string System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(string value) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(string value)1553         string System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(string value) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1554         void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o) { }
System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression(System.CodeDom.CodeExpression e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1555         void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression(System.CodeDom.CodeExpression e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o) { }
System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1556         void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace(System.CodeDom.CodeNamespace e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o) { }
System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement(System.CodeDom.CodeStatement e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1557         void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement(System.CodeDom.CodeStatement e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o) { }
System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1558         void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o) { }
System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference type)1559         string System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference type) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(string value)1560         bool System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(string value) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport support)1561         bool System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport support) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(string value)1562         void System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(string value) { }
ValidateIdentifier(string value)1563         protected virtual void ValidateIdentifier(string value) { }
ValidateIdentifiers(System.CodeDom.CodeObject e)1564         public static void ValidateIdentifiers(System.CodeDom.CodeObject e) { }
1565     }
1566     public partial class CodeGeneratorOptions
1567     {
CodeGeneratorOptions()1568         public CodeGeneratorOptions() { }
1569         public bool BlankLinesBetweenMembers { get { throw null; } set { } }
1570         public string BracingStyle { get { throw null; } set { } }
1571         public bool ElseOnClosing { get { throw null; } set { } }
1572         public string IndentString { get { throw null; } set { } }
1573         public object this[string index] { get { throw null; } set { } }
1574         public bool VerbatimOrder { get { throw null; } set { } }
1575     }
1576     public abstract partial class CodeParser : System.CodeDom.Compiler.ICodeParser
1577     {
CodeParser()1578         protected CodeParser() { }
Parse(System.IO.TextReader codeStream)1579         public abstract System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream);
1580     }
1581     [System.SerializableAttribute]
1582     public partial class CompilerError
1583     {
CompilerError()1584         public CompilerError() { }
CompilerError(string fileName, int line, int column, string errorNumber, string errorText)1585         public CompilerError(string fileName, int line, int column, string errorNumber, string errorText) { }
1586         public int Column { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1587         public string ErrorNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1588         public string ErrorText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1589         public string FileName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1590         public bool IsWarning { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1591         public int Line { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
ToString()1592         public override string ToString() { throw null; }
1593     }
1594     [System.SerializableAttribute]
1595     public partial class CompilerErrorCollection : System.Collections.CollectionBase
1596     {
CompilerErrorCollection()1597         public CompilerErrorCollection() { }
CompilerErrorCollection(System.CodeDom.Compiler.CompilerErrorCollection value)1598         public CompilerErrorCollection(System.CodeDom.Compiler.CompilerErrorCollection value) { }
CompilerErrorCollection(System.CodeDom.Compiler.CompilerError[] value)1599         public CompilerErrorCollection(System.CodeDom.Compiler.CompilerError[] value) { }
1600         public bool HasErrors { get { throw null; } }
1601         public bool HasWarnings { get { throw null; } }
1602         public System.CodeDom.Compiler.CompilerError this[int index] { get { throw null; } set { } }
Add(System.CodeDom.Compiler.CompilerError value)1603         public int Add(System.CodeDom.Compiler.CompilerError value) { throw null; }
AddRange(System.CodeDom.Compiler.CompilerErrorCollection value)1604         public void AddRange(System.CodeDom.Compiler.CompilerErrorCollection value) { }
AddRange(System.CodeDom.Compiler.CompilerError[] value)1605         public void AddRange(System.CodeDom.Compiler.CompilerError[] value) { }
Contains(System.CodeDom.Compiler.CompilerError value)1606         public bool Contains(System.CodeDom.Compiler.CompilerError value) { throw null; }
CopyTo(System.CodeDom.Compiler.CompilerError[] array, int index)1607         public void CopyTo(System.CodeDom.Compiler.CompilerError[] array, int index) { }
IndexOf(System.CodeDom.Compiler.CompilerError value)1608         public int IndexOf(System.CodeDom.Compiler.CompilerError value) { throw null; }
Insert(int index, System.CodeDom.Compiler.CompilerError value)1609         public void Insert(int index, System.CodeDom.Compiler.CompilerError value) { }
Remove(System.CodeDom.Compiler.CompilerError value)1610         public void Remove(System.CodeDom.Compiler.CompilerError value) { }
1611     }
1612     public sealed partial class CompilerInfo
1613     {
CompilerInfo()1614         internal CompilerInfo() { }
1615         public System.Type CodeDomProviderType { get { throw null; } }
1616         public bool IsCodeDomProviderTypeValid { get { throw null; } }
CreateDefaultCompilerParameters()1617         public System.CodeDom.Compiler.CompilerParameters CreateDefaultCompilerParameters() { throw null; }
CreateProvider()1618         public System.CodeDom.Compiler.CodeDomProvider CreateProvider() { throw null; }
CreateProvider(System.Collections.Generic.IDictionary<string, string> providerOptions)1619         public System.CodeDom.Compiler.CodeDomProvider CreateProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { throw null; }
Equals(object o)1620         public override bool Equals(object o) { throw null; }
GetExtensions()1621         public string[] GetExtensions() { throw null; }
GetHashCode()1622         public override int GetHashCode() { throw null; }
GetLanguages()1623         public string[] GetLanguages() { throw null; }
1624     }
1625     [System.SerializableAttribute]
1626     public partial class CompilerParameters
1627     {
CompilerParameters()1628         public CompilerParameters() { }
CompilerParameters(string[] assemblyNames)1629         public CompilerParameters(string[] assemblyNames) { }
CompilerParameters(string[] assemblyNames, string outputName)1630         public CompilerParameters(string[] assemblyNames, string outputName) { }
CompilerParameters(string[] assemblyNames, string outputName, bool includeDebugInformation)1631         public CompilerParameters(string[] assemblyNames, string outputName, bool includeDebugInformation) { }
1632         public string CompilerOptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1633         public string CoreAssemblyFileName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1634         public System.Collections.Specialized.StringCollection EmbeddedResources { get { throw null; } }
1635         [System.ObsoleteAttribute("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")]
1636         public System.Security.Policy.Evidence Evidence { get { throw null; } set { } }
1637         public bool GenerateExecutable { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1638         public bool GenerateInMemory { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1639         public bool IncludeDebugInformation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1640         public System.Collections.Specialized.StringCollection LinkedResources { get { throw null; } }
1641         public string MainClass { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1642         public string OutputAssembly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1643         public System.Collections.Specialized.StringCollection ReferencedAssemblies { get { throw null; } }
1644         public System.CodeDom.Compiler.TempFileCollection TempFiles { get { throw null; } set { } }
1645         public bool TreatWarningsAsErrors { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1646         public System.IntPtr UserToken { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1647         public int WarningLevel { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1648         public string Win32Resource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1649     }
1650     [System.SerializableAttribute]
1651     public partial class CompilerResults
1652     {
CompilerResults(System.CodeDom.Compiler.TempFileCollection tempFiles)1653         public CompilerResults(System.CodeDom.Compiler.TempFileCollection tempFiles) { }
1654         public System.Reflection.Assembly CompiledAssembly { get { throw null; } set { } }
1655         public System.CodeDom.Compiler.CompilerErrorCollection Errors { get { throw null; } }
1656         [System.ObsoleteAttribute("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")]
1657         public System.Security.Policy.Evidence Evidence { get { throw null; } set { } }
1658         public int NativeCompilerReturnValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1659         public System.Collections.Specialized.StringCollection Output { get { throw null; } }
1660         public string PathToAssembly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1661         public System.CodeDom.Compiler.TempFileCollection TempFiles { get { throw null; } set { } }
1662     }
1663     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
1664     public static partial class Executor
1665     {
ExecWait(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles)1666         public static void ExecWait(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles) { }
ExecWaitWithCapture(System.IntPtr userToken, string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1667         public static int ExecWaitWithCapture(System.IntPtr userToken, string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
1668         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, ControlPrincipal=true)]
1669         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)]
ExecWaitWithCapture(System.IntPtr userToken, string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1670         public static int ExecWaitWithCapture(System.IntPtr userToken, string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
1671         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)]
ExecWaitWithCapture(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1672         public static int ExecWaitWithCapture(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
1673         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)]
ExecWaitWithCapture(string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1674         public static int ExecWaitWithCapture(string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
1675     }
1676     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), Inherited=false, AllowMultiple=false)]
1677     public sealed partial class GeneratedCodeAttribute : System.Attribute
1678     {
GeneratedCodeAttribute(string tool, string version)1679         public GeneratedCodeAttribute(string tool, string version) { }
1680         public string Tool { get { throw null; } }
1681         public string Version { get { throw null; } }
1682     }
1683     [System.FlagsAttribute]
1684     public enum GeneratorSupport
1685     {
1686         ArraysOfArrays = 1,
1687         AssemblyAttributes = 4096,
1688         ChainedConstructorArguments = 32768,
1689         ComplexExpressions = 524288,
1690         DeclareDelegates = 512,
1691         DeclareEnums = 256,
1692         DeclareEvents = 2048,
1693         DeclareIndexerProperties = 33554432,
1694         DeclareInterfaces = 1024,
1695         DeclareValueTypes = 128,
1696         EntryPointMethod = 2,
1697         GenericTypeDeclaration = 16777216,
1698         GenericTypeReference = 8388608,
1699         GotoStatements = 4,
1700         MultidimensionalArrays = 8,
1701         MultipleInterfaceMembers = 131072,
1702         NestedTypes = 65536,
1703         ParameterAttributes = 8192,
1704         PartialTypes = 4194304,
1705         PublicStaticMembers = 262144,
1706         ReferenceParameters = 16384,
1707         Resources = 2097152,
1708         ReturnTypeAttributes = 64,
1709         StaticConstructors = 16,
1710         TryCatchStatements = 32,
1711         Win32Resources = 1048576,
1712     }
1713     public partial interface ICodeCompiler
1714     {
CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit compilationUnit)1715         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit compilationUnit);
CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] compilationUnits)1716         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] compilationUnits);
CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName)1717         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName);
CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames)1718         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames);
CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source)1719         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source);
CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources)1720         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources);
1721     }
1722     public partial interface ICodeGenerator
1723     {
CreateEscapedIdentifier(string value)1724         string CreateEscapedIdentifier(string value);
CreateValidIdentifier(string value)1725         string CreateValidIdentifier(string value);
GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1726         void GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
GenerateCodeFromExpression(System.CodeDom.CodeExpression e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1727         void GenerateCodeFromExpression(System.CodeDom.CodeExpression e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
GenerateCodeFromNamespace(System.CodeDom.CodeNamespace e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1728         void GenerateCodeFromNamespace(System.CodeDom.CodeNamespace e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
GenerateCodeFromStatement(System.CodeDom.CodeStatement e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1729         void GenerateCodeFromStatement(System.CodeDom.CodeStatement e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1730         void GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
GetTypeOutput(System.CodeDom.CodeTypeReference type)1731         string GetTypeOutput(System.CodeDom.CodeTypeReference type);
IsValidIdentifier(string value)1732         bool IsValidIdentifier(string value);
Supports(System.CodeDom.Compiler.GeneratorSupport supports)1733         bool Supports(System.CodeDom.Compiler.GeneratorSupport supports);
ValidateIdentifier(string value)1734         void ValidateIdentifier(string value);
1735     }
1736     public partial interface ICodeParser
1737     {
Parse(System.IO.TextReader codeStream)1738         System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream);
1739     }
1740     public partial class IndentedTextWriter : System.IO.TextWriter
1741     {
1742         public const string DefaultTabString = "    ";
IndentedTextWriter(System.IO.TextWriter writer)1743         public IndentedTextWriter(System.IO.TextWriter writer) { }
IndentedTextWriter(System.IO.TextWriter writer, string tabString)1744         public IndentedTextWriter(System.IO.TextWriter writer, string tabString) { }
1745         public override System.Text.Encoding Encoding { get { throw null; } }
1746         public int Indent { get { throw null; } set { } }
1747         public System.IO.TextWriter InnerWriter { get { throw null; } }
1748         public override string NewLine { get { throw null; } set { } }
Close()1749         public override void Close() { }
Flush()1750         public override void Flush() { }
OutputTabs()1751         protected virtual void OutputTabs() { }
Write(bool value)1752         public override void Write(bool value) { }
Write(char value)1753         public override void Write(char value) { }
Write(char[] buffer)1754         public override void Write(char[] buffer) { }
Write(char[] buffer, int index, int count)1755         public override void Write(char[] buffer, int index, int count) { }
Write(double value)1756         public override void Write(double value) { }
Write(int value)1757         public override void Write(int value) { }
Write(long value)1758         public override void Write(long value) { }
Write(object value)1759         public override void Write(object value) { }
Write(float value)1760         public override void Write(float value) { }
Write(string s)1761         public override void Write(string s) { }
Write(string format, object arg0)1762         public override void Write(string format, object arg0) { }
Write(string format, object arg0, object arg1)1763         public override void Write(string format, object arg0, object arg1) { }
Write(string format, params object[] arg)1764         public override void Write(string format, params object[] arg) { }
WriteLine()1765         public override void WriteLine() { }
WriteLine(bool value)1766         public override void WriteLine(bool value) { }
WriteLine(char value)1767         public override void WriteLine(char value) { }
WriteLine(char[] buffer)1768         public override void WriteLine(char[] buffer) { }
WriteLine(char[] buffer, int index, int count)1769         public override void WriteLine(char[] buffer, int index, int count) { }
WriteLine(double value)1770         public override void WriteLine(double value) { }
WriteLine(int value)1771         public override void WriteLine(int value) { }
WriteLine(long value)1772         public override void WriteLine(long value) { }
WriteLine(object value)1773         public override void WriteLine(object value) { }
WriteLine(float value)1774         public override void WriteLine(float value) { }
WriteLine(string s)1775         public override void WriteLine(string s) { }
WriteLine(string format, object arg0)1776         public override void WriteLine(string format, object arg0) { }
WriteLine(string format, object arg0, object arg1)1777         public override void WriteLine(string format, object arg0, object arg1) { }
WriteLine(string format, params object[] arg)1778         public override void WriteLine(string format, params object[] arg) { }
1779         [System.CLSCompliantAttribute(false)]
WriteLine(uint value)1780         public override void WriteLine(uint value) { }
WriteLineNoTabs(string s)1781         public void WriteLineNoTabs(string s) { }
1782     }
1783     [System.FlagsAttribute]
1784     public enum LanguageOptions
1785     {
1786         CaseInsensitive = 1,
1787         None = 0,
1788     }
1789     [System.SerializableAttribute]
1790     public partial class TempFileCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.IDisposable
1791     {
TempFileCollection()1792         public TempFileCollection() { }
TempFileCollection(string tempDir)1793         public TempFileCollection(string tempDir) { }
TempFileCollection(string tempDir, bool keepFiles)1794         public TempFileCollection(string tempDir, bool keepFiles) { }
1795         public string BasePath { get { throw null; } }
1796         public int Count { get { throw null; } }
1797         public bool KeepFiles { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1798         int System.Collections.ICollection.Count { get { throw null; } }
1799         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1800         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1801         public string TempDir { get { throw null; } }
AddExtension(string fileExtension)1802         public string AddExtension(string fileExtension) { throw null; }
AddExtension(string fileExtension, bool keepFile)1803         public string AddExtension(string fileExtension, bool keepFile) { throw null; }
AddFile(string fileName, bool keepFile)1804         public void AddFile(string fileName, bool keepFile) { }
CopyTo(string[] fileNames, int start)1805         public void CopyTo(string[] fileNames, int start) { }
Delete()1806         public void Delete() { }
Dispose(bool disposing)1807         protected virtual void Dispose(bool disposing) { }
~TempFileCollection()1808         ~TempFileCollection() { }
GetEnumerator()1809         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int start)1810         void System.Collections.ICollection.CopyTo(System.Array array, int start) { }
System.Collections.IEnumerable.GetEnumerator()1811         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.IDisposable.Dispose()1812         void System.IDisposable.Dispose() { }
1813     }
1814 }
1815 namespace System.Collections.Concurrent
1816 {
1817     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}, Type = {_collection}")]
1818     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.BlockingCollectionDebugView<T>")]
1819     public partial class BlockingCollection<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.IDisposable
1820     {
BlockingCollection()1821         public BlockingCollection() { }
BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection)1822         public BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection) { }
BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection, int boundedCapacity)1823         public BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection, int boundedCapacity) { }
BlockingCollection(int boundedCapacity)1824         public BlockingCollection(int boundedCapacity) { }
1825         public int BoundedCapacity { get { throw null; } }
1826         public int Count { get { throw null; } }
1827         public bool IsAddingCompleted { get { throw null; } }
1828         public bool IsCompleted { get { throw null; } }
1829         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1830         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)1831         public void Add(T item) { }
Add(T item, System.Threading.CancellationToken cancellationToken)1832         public void Add(T item, System.Threading.CancellationToken cancellationToken) { }
AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item)1833         public static int AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item) { throw null; }
AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.Threading.CancellationToken cancellationToken)1834         public static int AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.Threading.CancellationToken cancellationToken) { throw null; }
CompleteAdding()1835         public void CompleteAdding() { }
CopyTo(T[] array, int index)1836         public void CopyTo(T[] array, int index) { }
Dispose()1837         public void Dispose() { }
Dispose(bool disposing)1838         protected virtual void Dispose(bool disposing) { }
GetConsumingEnumerable()1839         public System.Collections.Generic.IEnumerable<T> GetConsumingEnumerable() { throw null; }
GetConsumingEnumerable(System.Threading.CancellationToken cancellationToken)1840         public System.Collections.Generic.IEnumerable<T> GetConsumingEnumerable(System.Threading.CancellationToken cancellationToken) { throw null; }
GetEnumerator()1841         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1842         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1843         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
Take()1844         public T Take() { throw null; }
Take(System.Threading.CancellationToken cancellationToken)1845         public T Take(System.Threading.CancellationToken cancellationToken) { throw null; }
TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item)1846         public static int TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item) { item = default(T); throw null; }
TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.Threading.CancellationToken cancellationToken)1847         public static int TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
ToArray()1848         public T[] ToArray() { throw null; }
TryAdd(T item)1849         public bool TryAdd(T item) { throw null; }
TryAdd(T item, int millisecondsTimeout)1850         public bool TryAdd(T item, int millisecondsTimeout) { throw null; }
TryAdd(T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)1851         public bool TryAdd(T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
TryAdd(T item, System.TimeSpan timeout)1852         public bool TryAdd(T item, System.TimeSpan timeout) { throw null; }
TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item)1853         public static int TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item) { throw null; }
TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, int millisecondsTimeout)1854         public static int TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, int millisecondsTimeout) { throw null; }
TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)1855         public static int TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.TimeSpan timeout)1856         public static int TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.TimeSpan timeout) { throw null; }
TryTake(out T item)1857         public bool TryTake(out T item) { item = default(T); throw null; }
TryTake(out T item, int millisecondsTimeout)1858         public bool TryTake(out T item, int millisecondsTimeout) { item = default(T); throw null; }
TryTake(out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)1859         public bool TryTake(out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
TryTake(out T item, System.TimeSpan timeout)1860         public bool TryTake(out T item, System.TimeSpan timeout) { item = default(T); throw null; }
TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item)1861         public static int TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item) { item = default(T); throw null; }
TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, int millisecondsTimeout)1862         public static int TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, int millisecondsTimeout) { item = default(T); throw null; }
TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)1863         public static int TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.TimeSpan timeout)1864         public static int TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.TimeSpan timeout) { item = default(T); throw null; }
1865     }
1866     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
1867     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.IProducerConsumerCollectionDebugView<T>")]
1868     [System.SerializableAttribute]
1869     public partial class ConcurrentBag<T> : System.Collections.Concurrent.IProducerConsumerCollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
1870     {
ConcurrentBag()1871         public ConcurrentBag() { }
ConcurrentBag(System.Collections.Generic.IEnumerable<T> collection)1872         public ConcurrentBag(System.Collections.Generic.IEnumerable<T> collection) { }
1873         public int Count { get { throw null; } }
1874         public bool IsEmpty { get { throw null; } }
1875         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1876         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)1877         public void Add(T item) { }
Clear()1878         public void Clear() { }
CopyTo(T[] array, int index)1879         public void CopyTo(T[] array, int index) { }
GetEnumerator()1880         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
TryAdd(T item)1881         bool System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd(T item) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1882         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1883         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()1884         public T[] ToArray() { throw null; }
TryPeek(out T result)1885         public bool TryPeek(out T result) { result = default(T); throw null; }
TryTake(out T result)1886         public bool TryTake(out T result) { result = default(T); throw null; }
1887     }
1888 }
1889 namespace System.Collections.Generic
1890 {
1891     public partial interface ISet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
1892     {
Add(T item)1893         new bool Add(T item);
ExceptWith(System.Collections.Generic.IEnumerable<T> other)1894         void ExceptWith(System.Collections.Generic.IEnumerable<T> other);
IntersectWith(System.Collections.Generic.IEnumerable<T> other)1895         void IntersectWith(System.Collections.Generic.IEnumerable<T> other);
IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)1896         bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other);
IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)1897         bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other);
IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)1898         bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other);
IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)1899         bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other);
Overlaps(System.Collections.Generic.IEnumerable<T> other)1900         bool Overlaps(System.Collections.Generic.IEnumerable<T> other);
SetEquals(System.Collections.Generic.IEnumerable<T> other)1901         bool SetEquals(System.Collections.Generic.IEnumerable<T> other);
SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other)1902         void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other);
UnionWith(System.Collections.Generic.IEnumerable<T> other)1903         void UnionWith(System.Collections.Generic.IEnumerable<T> other);
1904     }
1905     public sealed partial class LinkedListNode<T>
1906     {
LinkedListNode(T value)1907         public LinkedListNode(T value) { }
1908         public System.Collections.Generic.LinkedList<T> List { get { throw null; } }
1909         public System.Collections.Generic.LinkedListNode<T> Next { get { throw null; } }
1910         public System.Collections.Generic.LinkedListNode<T> Previous { get { throw null; } }
1911         public T Value { get { throw null; } set { } }
1912     }
1913     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
1914     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView<T>")]
1915     [System.SerializableAttribute]
1916     public partial class LinkedList<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
1917     {
LinkedList()1918         public LinkedList() { }
LinkedList(System.Collections.Generic.IEnumerable<T> collection)1919         public LinkedList(System.Collections.Generic.IEnumerable<T> collection) { }
LinkedList(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1920         protected LinkedList(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1921         public int Count { get { throw null; } }
1922         public System.Collections.Generic.LinkedListNode<T> First { get { throw null; } }
1923         public System.Collections.Generic.LinkedListNode<T> Last { get { throw null; } }
1924         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
1925         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1926         object System.Collections.ICollection.SyncRoot { get { throw null; } }
AddAfter(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode)1927         public void AddAfter(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode) { }
AddAfter(System.Collections.Generic.LinkedListNode<T> node, T value)1928         public System.Collections.Generic.LinkedListNode<T> AddAfter(System.Collections.Generic.LinkedListNode<T> node, T value) { throw null; }
AddBefore(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode)1929         public void AddBefore(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode) { }
AddBefore(System.Collections.Generic.LinkedListNode<T> node, T value)1930         public System.Collections.Generic.LinkedListNode<T> AddBefore(System.Collections.Generic.LinkedListNode<T> node, T value) { throw null; }
AddFirst(System.Collections.Generic.LinkedListNode<T> node)1931         public void AddFirst(System.Collections.Generic.LinkedListNode<T> node) { }
AddFirst(T value)1932         public System.Collections.Generic.LinkedListNode<T> AddFirst(T value) { throw null; }
AddLast(System.Collections.Generic.LinkedListNode<T> node)1933         public void AddLast(System.Collections.Generic.LinkedListNode<T> node) { }
AddLast(T value)1934         public System.Collections.Generic.LinkedListNode<T> AddLast(T value) { throw null; }
Clear()1935         public void Clear() { }
Contains(T value)1936         public bool Contains(T value) { throw null; }
CopyTo(T[] array, int index)1937         public void CopyTo(T[] array, int index) { }
Find(T value)1938         public System.Collections.Generic.LinkedListNode<T> Find(T value) { throw null; }
FindLast(T value)1939         public System.Collections.Generic.LinkedListNode<T> FindLast(T value) { throw null; }
GetEnumerator()1940         public System.Collections.Generic.LinkedList<T>.Enumerator GetEnumerator() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1941         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
OnDeserialization(object sender)1942         public virtual void OnDeserialization(object sender) { }
Remove(System.Collections.Generic.LinkedListNode<T> node)1943         public void Remove(System.Collections.Generic.LinkedListNode<T> node) { }
Remove(T value)1944         public bool Remove(T value) { throw null; }
RemoveFirst()1945         public void RemoveFirst() { }
RemoveLast()1946         public void RemoveLast() { }
Add(T value)1947         void System.Collections.Generic.ICollection<T>.Add(T value) { }
GetEnumerator()1948         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1949         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1950         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
1951         [System.SerializableAttribute]
1952         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
1953         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
1954         {
1955             public T Current { get { throw null; } }
1956             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.LinkedList.Enumerator1957             public void Dispose() { }
MoveNextSystem.Collections.Generic.LinkedList.Enumerator1958             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.LinkedList.Enumerator1959             void System.Collections.IEnumerator.Reset() { }
System.Runtime.Serialization.IDeserializationCallback.OnDeserializationSystem.Collections.Generic.LinkedList.Enumerator1960             void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectDataSystem.Collections.Generic.LinkedList.Enumerator1961             void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1962         }
1963     }
1964     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
1965     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.QueueDebugView<T>")]
1966     [System.SerializableAttribute]
1967     public partial class Queue<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
1968     {
Queue()1969         public Queue() { }
Queue(System.Collections.Generic.IEnumerable<T> collection)1970         public Queue(System.Collections.Generic.IEnumerable<T> collection) { }
Queue(int capacity)1971         public Queue(int capacity) { }
1972         public int Count { get { throw null; } }
1973         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1974         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Clear()1975         public void Clear() { }
Contains(T item)1976         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)1977         public void CopyTo(T[] array, int arrayIndex) { }
Dequeue()1978         public T Dequeue() { throw null; }
Enqueue(T item)1979         public void Enqueue(T item) { }
GetEnumerator()1980         public System.Collections.Generic.Queue<T>.Enumerator GetEnumerator() { throw null; }
Peek()1981         public T Peek() { throw null; }
GetEnumerator()1982         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1983         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1984         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()1985         public T[] ToArray() { throw null; }
TrimExcess()1986         public void TrimExcess() { }
TryDequeue(out T result)1987         public bool TryDequeue(out T result) { result = default(T); throw null; }
TryPeek(out T result)1988         public bool TryPeek(out T result) { result = default(T); throw null; }
1989         [System.SerializableAttribute]
1990         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
1991         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
1992         {
1993             public T Current { get { throw null; } }
1994             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.Queue.Enumerator1995             public void Dispose() { }
MoveNextSystem.Collections.Generic.Queue.Enumerator1996             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.Queue.Enumerator1997             void System.Collections.IEnumerator.Reset() { }
1998         }
1999     }
2000     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2001     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.IDictionaryDebugView<K, V>")]
2002     [System.SerializableAttribute]
2003     public partial class SortedDictionary<TKey, TValue> : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IDictionary<TKey, TValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2004     {
SortedDictionary()2005         public SortedDictionary() { }
SortedDictionary(System.Collections.Generic.IComparer<TKey> comparer)2006         public SortedDictionary(System.Collections.Generic.IComparer<TKey> comparer) { }
SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary)2007         public SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary) { }
SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer)2008         public SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer) { }
2009         public System.Collections.Generic.IComparer<TKey> Comparer { get { throw null; } }
2010         public int Count { get { throw null; } }
2011         public TValue this[TKey key] { get { throw null; } set { } }
2012         public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection Keys { get { throw null; } }
2013         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly { get { throw null; } }
2014         System.Collections.Generic.ICollection<TKey> System.Collections.Generic.IDictionary<TKey,TValue>.Keys { get { throw null; } }
2015         System.Collections.Generic.ICollection<TValue> System.Collections.Generic.IDictionary<TKey,TValue>.Values { get { throw null; } }
2016         System.Collections.Generic.IEnumerable<TKey> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Keys { get { throw null; } }
2017         System.Collections.Generic.IEnumerable<TValue> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Values { get { throw null; } }
2018         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2019         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2020         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2021         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
2022         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
2023         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
2024         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
2025         public System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection Values { get { throw null; } }
Add(TKey key, TValue value)2026         public void Add(TKey key, TValue value) { }
Clear()2027         public void Clear() { }
ContainsKey(TKey key)2028         public bool ContainsKey(TKey key) { throw null; }
ContainsValue(TValue value)2029         public bool ContainsValue(TValue value) { throw null; }
CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int index)2030         public void CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int index) { }
GetEnumerator()2031         public System.Collections.Generic.SortedDictionary<TKey, TValue>.Enumerator GetEnumerator() { throw null; }
Remove(TKey key)2032         public bool Remove(TKey key) { throw null; }
Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2033         void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { }
Contains(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2034         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2035         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
GetEnumerator()2036         System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2037         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object key, object value)2038         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Contains(object key)2039         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()2040         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)2041         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2042         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TryGetValue(TKey key, out TValue value)2043         public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
2044         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2045         public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.IDictionaryEnumerator, System.Collections.IEnumerator, System.IDisposable
2046         {
2047             public System.Collections.Generic.KeyValuePair<TKey, TValue> Current { get { throw null; } }
2048             System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator.Entry { get { throw null; } }
2049             object System.Collections.IDictionaryEnumerator.Key { get { throw null; } }
2050             object System.Collections.IDictionaryEnumerator.Value { get { throw null; } }
2051             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.Enumerator2052             public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.Enumerator2053             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.Enumerator2054             void System.Collections.IEnumerator.Reset() { }
2055         }
2056         [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2057         [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryKeyCollectionDebugView<TKey, TValue>")]
2058         [System.SerializableAttribute]
2059         public sealed partial class KeyCollection : System.Collections.Generic.ICollection<TKey>, System.Collections.Generic.IEnumerable<TKey>, System.Collections.Generic.IReadOnlyCollection<TKey>, System.Collections.ICollection, System.Collections.IEnumerable
2060         {
KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary)2061             public KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { }
2062             public int Count { get { throw null; } }
2063             bool System.Collections.Generic.ICollection<TKey>.IsReadOnly { get { throw null; } }
2064             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2065             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(TKey[] array, int index)2066             public void CopyTo(TKey[] array, int index) { }
GetEnumerator()2067             public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection.Enumerator GetEnumerator() { throw null; }
Add(TKey item)2068             void System.Collections.Generic.ICollection<TKey>.Add(TKey item) { }
Clear()2069             void System.Collections.Generic.ICollection<TKey>.Clear() { }
Contains(TKey item)2070             bool System.Collections.Generic.ICollection<TKey>.Contains(TKey item) { throw null; }
Remove(TKey item)2071             bool System.Collections.Generic.ICollection<TKey>.Remove(TKey item) { throw null; }
GetEnumerator()2072             System.Collections.Generic.IEnumerator<TKey> System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2073             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2074             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2075             [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2076             public partial struct Enumerator : System.Collections.Generic.IEnumerator<TKey>, System.Collections.IEnumerator, System.IDisposable
2077             {
2078                 public TKey Current { get { throw null; } }
2079                 object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator2080                 public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator2081                 public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator2082                 void System.Collections.IEnumerator.Reset() { }
2083             }
2084         }
2085         [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2086         [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryValueCollectionDebugView<TKey, TValue>")]
2087         [System.SerializableAttribute]
2088         public sealed partial class ValueCollection : System.Collections.Generic.ICollection<TValue>, System.Collections.Generic.IEnumerable<TValue>, System.Collections.Generic.IReadOnlyCollection<TValue>, System.Collections.ICollection, System.Collections.IEnumerable
2089         {
ValueCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary)2090             public ValueCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { }
2091             public int Count { get { throw null; } }
2092             bool System.Collections.Generic.ICollection<TValue>.IsReadOnly { get { throw null; } }
2093             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2094             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(TValue[] array, int index)2095             public void CopyTo(TValue[] array, int index) { }
GetEnumerator()2096             public System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection.Enumerator GetEnumerator() { throw null; }
Add(TValue item)2097             void System.Collections.Generic.ICollection<TValue>.Add(TValue item) { }
Clear()2098             void System.Collections.Generic.ICollection<TValue>.Clear() { }
Contains(TValue item)2099             bool System.Collections.Generic.ICollection<TValue>.Contains(TValue item) { throw null; }
Remove(TValue item)2100             bool System.Collections.Generic.ICollection<TValue>.Remove(TValue item) { throw null; }
GetEnumerator()2101             System.Collections.Generic.IEnumerator<TValue> System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2102             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2103             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2104             [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2105             public partial struct Enumerator : System.Collections.Generic.IEnumerator<TValue>, System.Collections.IEnumerator, System.IDisposable
2106             {
2107                 public TValue Current { get { throw null; } }
2108                 object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator2109                 public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator2110                 public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator2111                 void System.Collections.IEnumerator.Reset() { }
2112             }
2113         }
2114     }
2115     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2116     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.IDictionaryDebugView<K, V>")]
2117     [System.SerializableAttribute]
2118     public partial class SortedList<TKey, TValue> : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IDictionary<TKey, TValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2119     {
SortedList()2120         public SortedList() { }
SortedList(System.Collections.Generic.IComparer<TKey> comparer)2121         public SortedList(System.Collections.Generic.IComparer<TKey> comparer) { }
SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary)2122         public SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary) { }
SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer)2123         public SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer) { }
SortedList(int capacity)2124         public SortedList(int capacity) { }
SortedList(int capacity, System.Collections.Generic.IComparer<TKey> comparer)2125         public SortedList(int capacity, System.Collections.Generic.IComparer<TKey> comparer) { }
2126         public int Capacity { get { throw null; } set { } }
2127         public System.Collections.Generic.IComparer<TKey> Comparer { get { throw null; } }
2128         public int Count { get { throw null; } }
2129         public TValue this[TKey key] { get { throw null; } set { } }
2130         public System.Collections.Generic.IList<TKey> Keys { get { throw null; } }
2131         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly { get { throw null; } }
2132         System.Collections.Generic.ICollection<TKey> System.Collections.Generic.IDictionary<TKey,TValue>.Keys { get { throw null; } }
2133         System.Collections.Generic.ICollection<TValue> System.Collections.Generic.IDictionary<TKey,TValue>.Values { get { throw null; } }
2134         System.Collections.Generic.IEnumerable<TKey> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Keys { get { throw null; } }
2135         System.Collections.Generic.IEnumerable<TValue> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Values { get { throw null; } }
2136         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2137         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2138         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2139         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
2140         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
2141         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
2142         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
2143         public System.Collections.Generic.IList<TValue> Values { get { throw null; } }
Add(TKey key, TValue value)2144         public void Add(TKey key, TValue value) { }
Clear()2145         public void Clear() { }
ContainsKey(TKey key)2146         public bool ContainsKey(TKey key) { throw null; }
ContainsValue(TValue value)2147         public bool ContainsValue(TValue value) { throw null; }
GetEnumerator()2148         public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> GetEnumerator() { throw null; }
IndexOfKey(TKey key)2149         public int IndexOfKey(TKey key) { throw null; }
IndexOfValue(TValue value)2150         public int IndexOfValue(TValue value) { throw null; }
Remove(TKey key)2151         public bool Remove(TKey key) { throw null; }
RemoveAt(int index)2152         public void RemoveAt(int index) { }
Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2153         void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { }
Contains(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2154         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int arrayIndex)2155         void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int arrayIndex) { }
Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2156         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
GetEnumerator()2157         System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2158         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object key, object value)2159         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Contains(object key)2160         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()2161         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)2162         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2163         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TrimExcess()2164         public void TrimExcess() { }
TryGetValue(TKey key, out TValue value)2165         public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
2166     }
2167     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2168     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView<T>")]
2169     [System.SerializableAttribute]
2170     public partial class SortedSet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.Generic.ISet<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2171     {
SortedSet()2172         public SortedSet() { }
SortedSet(System.Collections.Generic.IComparer<T> comparer)2173         public SortedSet(System.Collections.Generic.IComparer<T> comparer) { }
SortedSet(System.Collections.Generic.IEnumerable<T> collection)2174         public SortedSet(System.Collections.Generic.IEnumerable<T> collection) { }
SortedSet(System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IComparer<T> comparer)2175         public SortedSet(System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IComparer<T> comparer) { }
SortedSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2176         protected SortedSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2177         public System.Collections.Generic.IComparer<T> Comparer { get { throw null; } }
2178         public int Count { get { throw null; } }
2179         public T Max { get { throw null; } }
2180         public T Min { get { throw null; } }
2181         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
2182         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2183         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)2184         public bool Add(T item) { throw null; }
Clear()2185         public virtual void Clear() { }
Contains(T item)2186         public virtual bool Contains(T item) { throw null; }
CopyTo(T[] array)2187         public void CopyTo(T[] array) { }
CopyTo(T[] array, int index)2188         public void CopyTo(T[] array, int index) { }
CopyTo(T[] array, int index, int count)2189         public void CopyTo(T[] array, int index, int count) { }
CreateSetComparer()2190         public static System.Collections.Generic.IEqualityComparer<System.Collections.Generic.SortedSet<T>> CreateSetComparer() { throw null; }
CreateSetComparer(System.Collections.Generic.IEqualityComparer<T> memberEqualityComparer)2191         public static System.Collections.Generic.IEqualityComparer<System.Collections.Generic.SortedSet<T>> CreateSetComparer(System.Collections.Generic.IEqualityComparer<T> memberEqualityComparer) { throw null; }
ExceptWith(System.Collections.Generic.IEnumerable<T> other)2192         public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
GetEnumerator()2193         public System.Collections.Generic.SortedSet<T>.Enumerator GetEnumerator() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2194         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetViewBetween(T lowerValue, T upperValue)2195         public virtual System.Collections.Generic.SortedSet<T> GetViewBetween(T lowerValue, T upperValue) { throw null; }
IntersectWith(System.Collections.Generic.IEnumerable<T> other)2196         public virtual void IntersectWith(System.Collections.Generic.IEnumerable<T> other) { }
IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)2197         public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)2198         public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)2199         public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)2200         public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
OnDeserialization(object sender)2201         protected virtual void OnDeserialization(object sender) { }
Overlaps(System.Collections.Generic.IEnumerable<T> other)2202         public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) { throw null; }
Remove(T item)2203         public bool Remove(T item) { throw null; }
RemoveWhere(System.Predicate<T> match)2204         public int RemoveWhere(System.Predicate<T> match) { throw null; }
Reverse()2205         public System.Collections.Generic.IEnumerable<T> Reverse() { throw null; }
SetEquals(System.Collections.Generic.IEnumerable<T> other)2206         public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) { throw null; }
SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other)2207         public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
Add(T item)2208         void System.Collections.Generic.ICollection<T>.Add(T item) { }
GetEnumerator()2209         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2210         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2211         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)2212         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2213         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
TryGetValue(T equalValue, out T actualValue)2214         public bool TryGetValue(T equalValue, out T actualValue) { actualValue = default(T); throw null; }
UnionWith(System.Collections.Generic.IEnumerable<T> other)2215         public void UnionWith(System.Collections.Generic.IEnumerable<T> other) { }
2216         [System.SerializableAttribute]
2217         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2218         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2219         {
2220             public T Current { get { throw null; } }
2221             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedSet.Enumerator2222             public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedSet.Enumerator2223             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedSet.Enumerator2224             void System.Collections.IEnumerator.Reset() { }
System.Runtime.Serialization.IDeserializationCallback.OnDeserializationSystem.Collections.Generic.SortedSet.Enumerator2225             void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectDataSystem.Collections.Generic.SortedSet.Enumerator2226             void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2227         }
2228     }
2229     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2230     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.StackDebugView<T>")]
2231     [System.SerializableAttribute]
2232     public partial class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
2233     {
Stack()2234         public Stack() { }
Stack(System.Collections.Generic.IEnumerable<T> collection)2235         public Stack(System.Collections.Generic.IEnumerable<T> collection) { }
Stack(int capacity)2236         public Stack(int capacity) { }
2237         public int Count { get { throw null; } }
2238         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2239         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Clear()2240         public void Clear() { }
Contains(T item)2241         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)2242         public void CopyTo(T[] array, int arrayIndex) { }
GetEnumerator()2243         public System.Collections.Generic.Stack<T>.Enumerator GetEnumerator() { throw null; }
Peek()2244         public T Peek() { throw null; }
Pop()2245         public T Pop() { throw null; }
Push(T item)2246         public void Push(T item) { }
GetEnumerator()2247         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex)2248         void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { }
System.Collections.IEnumerable.GetEnumerator()2249         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()2250         public T[] ToArray() { throw null; }
TrimExcess()2251         public void TrimExcess() { }
TryPeek(out T result)2252         public bool TryPeek(out T result) { result = default(T); throw null; }
TryPop(out T result)2253         public bool TryPop(out T result) { result = default(T); throw null; }
2254         [System.SerializableAttribute]
2255         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2256         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
2257         {
2258             public T Current { get { throw null; } }
2259             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.Stack.Enumerator2260             public void Dispose() { }
MoveNextSystem.Collections.Generic.Stack.Enumerator2261             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.Stack.Enumerator2262             void System.Collections.IEnumerator.Reset() { }
2263         }
2264     }
2265 }
2266 namespace System.Collections.ObjectModel
2267 {
2268     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2269     [System.SerializableAttribute]
2270     public partial class ObservableCollection<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
2271     {
ObservableCollection()2272         public ObservableCollection() { }
ObservableCollection(System.Collections.Generic.IEnumerable<T> collection)2273         public ObservableCollection(System.Collections.Generic.IEnumerable<T> collection) { }
ObservableCollection(System.Collections.Generic.List<T> list)2274         public ObservableCollection(System.Collections.Generic.List<T> list) { }
2275         public virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
2276         protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
2277         event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } }
BlockReentrancy()2278         protected System.IDisposable BlockReentrancy() { throw null; }
CheckReentrancy()2279         protected void CheckReentrancy() { }
ClearItems()2280         protected override void ClearItems() { }
InsertItem(int index, T item)2281         protected override void InsertItem(int index, T item) { }
Move(int oldIndex, int newIndex)2282         public void Move(int oldIndex, int newIndex) { }
MoveItem(int oldIndex, int newIndex)2283         protected virtual void MoveItem(int oldIndex, int newIndex) { }
OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)2284         protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e)2285         protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { }
RemoveItem(int index)2286         protected override void RemoveItem(int index) { }
SetItem(int index, T item)2287         protected override void SetItem(int index, T item) { }
2288     }
2289     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2290     [System.SerializableAttribute]
2291     public partial class ReadOnlyObservableCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
2292     {
ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list)2293         public ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list) : base (default(System.Collections.Generic.IList<T>)) { }
2294         protected virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
2295         protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
2296         event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } }
2297         event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } }
OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args)2298         protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args)2299         protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) { }
2300     }
2301 }
2302 namespace System.Collections.Specialized
2303 {
2304     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2305     public partial struct BitVector32
2306     {
BitVector32System.Collections.Specialized.BitVector322307         public BitVector32(System.Collections.Specialized.BitVector32 value) { throw null;}
BitVector32System.Collections.Specialized.BitVector322308         public BitVector32(int data) { throw null;}
2309         public int Data { get { throw null; } }
2310         public int this[System.Collections.Specialized.BitVector32.Section section] { get { throw null; } set { } }
2311         public bool this[int bit] { get { throw null; } set { } }
CreateMaskSystem.Collections.Specialized.BitVector322312         public static int CreateMask() { throw null; }
CreateMaskSystem.Collections.Specialized.BitVector322313         public static int CreateMask(int previous) { throw null; }
CreateSectionSystem.Collections.Specialized.BitVector322314         public static System.Collections.Specialized.BitVector32.Section CreateSection(short maxValue) { throw null; }
CreateSectionSystem.Collections.Specialized.BitVector322315         public static System.Collections.Specialized.BitVector32.Section CreateSection(short maxValue, System.Collections.Specialized.BitVector32.Section previous) { throw null; }
EqualsSystem.Collections.Specialized.BitVector322316         public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Collections.Specialized.BitVector322317         public override int GetHashCode() { throw null; }
ToStringSystem.Collections.Specialized.BitVector322318         public override string ToString() { throw null; }
ToStringSystem.Collections.Specialized.BitVector322319         public static string ToString(System.Collections.Specialized.BitVector32 value) { throw null; }
2320         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2321         public partial struct Section
2322         {
2323             public short Mask { get { throw null; } }
2324             public short Offset { get { throw null; } }
EqualsSystem.Collections.Specialized.BitVector32.Section2325             public bool Equals(System.Collections.Specialized.BitVector32.Section obj) { throw null; }
EqualsSystem.Collections.Specialized.BitVector32.Section2326             public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Collections.Specialized.BitVector32.Section2327             public override int GetHashCode() { throw null; }
operator ==System.Collections.Specialized.BitVector32.Section2328             public static bool operator ==(System.Collections.Specialized.BitVector32.Section a, System.Collections.Specialized.BitVector32.Section b) { throw null; }
operator !=System.Collections.Specialized.BitVector32.Section2329             public static bool operator !=(System.Collections.Specialized.BitVector32.Section a, System.Collections.Specialized.BitVector32.Section b) { throw null; }
ToStringSystem.Collections.Specialized.BitVector32.Section2330             public override string ToString() { throw null; }
ToStringSystem.Collections.Specialized.BitVector32.Section2331             public static string ToString(System.Collections.Specialized.BitVector32.Section value) { throw null; }
2332         }
2333     }
2334     public partial class CollectionsUtil
2335     {
CollectionsUtil()2336         public CollectionsUtil() { }
CreateCaseInsensitiveHashtable()2337         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable() { throw null; }
CreateCaseInsensitiveHashtable(System.Collections.IDictionary d)2338         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(System.Collections.IDictionary d) { throw null; }
CreateCaseInsensitiveHashtable(int capacity)2339         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(int capacity) { throw null; }
CreateCaseInsensitiveSortedList()2340         public static System.Collections.SortedList CreateCaseInsensitiveSortedList() { throw null; }
2341     }
2342     [System.SerializableAttribute]
2343     public partial class HybridDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2344     {
HybridDictionary()2345         public HybridDictionary() { }
HybridDictionary(bool caseInsensitive)2346         public HybridDictionary(bool caseInsensitive) { }
HybridDictionary(int initialSize)2347         public HybridDictionary(int initialSize) { }
HybridDictionary(int initialSize, bool caseInsensitive)2348         public HybridDictionary(int initialSize, bool caseInsensitive) { }
2349         public int Count { get { throw null; } }
2350         public bool IsFixedSize { get { throw null; } }
2351         public bool IsReadOnly { get { throw null; } }
2352         public bool IsSynchronized { get { throw null; } }
2353         public object this[object key] { get { throw null; } set { } }
2354         public System.Collections.ICollection Keys { get { throw null; } }
2355         public object SyncRoot { get { throw null; } }
2356         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)2357         public void Add(object key, object value) { }
Clear()2358         public void Clear() { }
Contains(object key)2359         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)2360         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2361         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
Remove(object key)2362         public void Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2363         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2364     }
2365     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2366     public partial interface INotifyCollectionChanged
2367     {
2368         event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged;
2369     }
2370     public partial interface IOrderedDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2371     {
2372         object this[int index] { get; set; }
GetEnumerator()2373         new System.Collections.IDictionaryEnumerator GetEnumerator();
Insert(int index, object key, object value)2374         void Insert(int index, object key, object value);
RemoveAt(int index)2375         void RemoveAt(int index);
2376     }
2377     [System.SerializableAttribute]
2378     public partial class ListDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2379     {
ListDictionary()2380         public ListDictionary() { }
ListDictionary(System.Collections.IComparer comparer)2381         public ListDictionary(System.Collections.IComparer comparer) { }
2382         public int Count { get { throw null; } }
2383         public bool IsFixedSize { get { throw null; } }
2384         public bool IsReadOnly { get { throw null; } }
2385         public bool IsSynchronized { get { throw null; } }
2386         public object this[object key] { get { throw null; } set { } }
2387         public System.Collections.ICollection Keys { get { throw null; } }
2388         public object SyncRoot { get { throw null; } }
2389         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)2390         public void Add(object key, object value) { }
Clear()2391         public void Clear() { }
Contains(object key)2392         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)2393         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2394         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
Remove(object key)2395         public void Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2396         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2397     }
2398     [System.SerializableAttribute]
2399     public abstract partial class NameObjectCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2400     {
NameObjectCollectionBase()2401         protected NameObjectCollectionBase() { }
NameObjectCollectionBase(System.Collections.IEqualityComparer equalityComparer)2402         protected NameObjectCollectionBase(System.Collections.IEqualityComparer equalityComparer) { }
2403         [System.ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.")]
NameObjectCollectionBase(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2404         protected NameObjectCollectionBase(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameObjectCollectionBase(int capacity)2405         protected NameObjectCollectionBase(int capacity) { }
NameObjectCollectionBase(int capacity, System.Collections.IEqualityComparer equalityComparer)2406         protected NameObjectCollectionBase(int capacity, System.Collections.IEqualityComparer equalityComparer) { }
2407         [System.ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.")]
NameObjectCollectionBase(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2408         protected NameObjectCollectionBase(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameObjectCollectionBase(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2409         protected NameObjectCollectionBase(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2410         public virtual int Count { get { throw null; } }
2411         protected bool IsReadOnly { get { throw null; } set { } }
2412         public virtual System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw null; } }
2413         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2414         object System.Collections.ICollection.SyncRoot { get { throw null; } }
BaseAdd(string name, object value)2415         protected void BaseAdd(string name, object value) { }
BaseClear()2416         protected void BaseClear() { }
BaseGet(int index)2417         protected object BaseGet(int index) { throw null; }
BaseGet(string name)2418         protected object BaseGet(string name) { throw null; }
BaseGetAllKeys()2419         protected string[] BaseGetAllKeys() { throw null; }
BaseGetAllValues()2420         protected object[] BaseGetAllValues() { throw null; }
BaseGetAllValues(System.Type type)2421         protected object[] BaseGetAllValues(System.Type type) { throw null; }
BaseGetKey(int index)2422         protected string BaseGetKey(int index) { throw null; }
BaseHasKeys()2423         protected bool BaseHasKeys() { throw null; }
BaseRemove(string name)2424         protected void BaseRemove(string name) { }
BaseRemoveAt(int index)2425         protected void BaseRemoveAt(int index) { }
BaseSet(int index, object value)2426         protected void BaseSet(int index, object value) { }
BaseSet(string name, object value)2427         protected void BaseSet(string name, object value) { }
GetEnumerator()2428         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
2429         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2430         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
OnDeserialization(object sender)2431         public virtual void OnDeserialization(object sender) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)2432         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
2433         [System.SerializableAttribute]
2434         public partial class KeysCollection : System.Collections.ICollection, System.Collections.IEnumerable
2435         {
KeysCollection()2436             internal KeysCollection() { }
2437             public int Count { get { throw null; } }
2438             public string this[int index] { get { throw null; } }
2439             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2440             object System.Collections.ICollection.SyncRoot { get { throw null; } }
Get(int index)2441             public virtual string Get(int index) { throw null; }
GetEnumerator()2442             public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2443             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
2444         }
2445     }
2446     [System.SerializableAttribute]
2447     public partial class NameValueCollection : System.Collections.Specialized.NameObjectCollectionBase
2448     {
NameValueCollection()2449         public NameValueCollection() { }
NameValueCollection(System.Collections.IEqualityComparer equalityComparer)2450         public NameValueCollection(System.Collections.IEqualityComparer equalityComparer) { }
2451         [System.ObsoleteAttribute("Please use NameValueCollection(IEqualityComparer) instead.")]
NameValueCollection(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2452         public NameValueCollection(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameValueCollection(System.Collections.Specialized.NameValueCollection col)2453         public NameValueCollection(System.Collections.Specialized.NameValueCollection col) { }
NameValueCollection(int capacity)2454         public NameValueCollection(int capacity) { }
NameValueCollection(int capacity, System.Collections.IEqualityComparer equalityComparer)2455         public NameValueCollection(int capacity, System.Collections.IEqualityComparer equalityComparer) { }
2456         [System.ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")]
NameValueCollection(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2457         public NameValueCollection(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameValueCollection(int capacity, System.Collections.Specialized.NameValueCollection col)2458         public NameValueCollection(int capacity, System.Collections.Specialized.NameValueCollection col) { }
NameValueCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2459         protected NameValueCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2460         public virtual string[] AllKeys { get { throw null; } }
2461         public string this[int index] { get { throw null; } }
2462         public string this[string name] { get { throw null; } set { } }
Add(System.Collections.Specialized.NameValueCollection c)2463         public void Add(System.Collections.Specialized.NameValueCollection c) { }
Add(string name, string value)2464         public virtual void Add(string name, string value) { }
Clear()2465         public virtual void Clear() { }
CopyTo(System.Array dest, int index)2466         public void CopyTo(System.Array dest, int index) { }
Get(int index)2467         public virtual string Get(int index) { throw null; }
Get(string name)2468         public virtual string Get(string name) { throw null; }
GetKey(int index)2469         public virtual string GetKey(int index) { throw null; }
GetValues(int index)2470         public virtual string[] GetValues(int index) { throw null; }
GetValues(string name)2471         public virtual string[] GetValues(string name) { throw null; }
HasKeys()2472         public bool HasKeys() { throw null; }
InvalidateCachedArrays()2473         protected void InvalidateCachedArrays() { }
Remove(string name)2474         public virtual void Remove(string name) { }
Set(string name, string value)2475         public virtual void Set(string name, string value) { }
2476     }
2477     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2478     public enum NotifyCollectionChangedAction
2479     {
2480         Add = 0,
2481         Move = 3,
2482         Remove = 1,
2483         Replace = 2,
2484         Reset = 4,
2485     }
2486     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2487     public partial class NotifyCollectionChangedEventArgs : System.EventArgs
2488     {
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action)2489         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems)2490         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems)2491         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex)2492         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList newItems, System.Collections.IList oldItems, int startingIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex)2493         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int startingIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex)2494         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem)2495         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index)2496         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex)2497         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem)2498         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index)2499         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) { }
2500         public System.Collections.Specialized.NotifyCollectionChangedAction Action { get { throw null; } }
2501         public System.Collections.IList NewItems { get { throw null; } }
2502         public int NewStartingIndex { get { throw null; } }
2503         public System.Collections.IList OldItems { get { throw null; } }
2504         public int OldStartingIndex { get { throw null; } }
2505     }
2506     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
NotifyCollectionChangedEventHandler(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)2507     public delegate void NotifyCollectionChangedEventHandler(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e);
2508     [System.SerializableAttribute]
2509     public partial class OrderedDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.Collections.Specialized.IOrderedDictionary, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2510     {
OrderedDictionary()2511         public OrderedDictionary() { }
OrderedDictionary(System.Collections.IEqualityComparer comparer)2512         public OrderedDictionary(System.Collections.IEqualityComparer comparer) { }
OrderedDictionary(int capacity)2513         public OrderedDictionary(int capacity) { }
OrderedDictionary(int capacity, System.Collections.IEqualityComparer comparer)2514         public OrderedDictionary(int capacity, System.Collections.IEqualityComparer comparer) { }
OrderedDictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2515         protected OrderedDictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2516         public int Count { get { throw null; } }
2517         public bool IsReadOnly { get { throw null; } }
2518         public object this[int index] { get { throw null; } set { } }
2519         public object this[object key] { get { throw null; } set { } }
2520         public System.Collections.ICollection Keys { get { throw null; } }
2521         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2522         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2523         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2524         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)2525         public void Add(object key, object value) { }
AsReadOnly()2526         public System.Collections.Specialized.OrderedDictionary AsReadOnly() { throw null; }
Clear()2527         public void Clear() { }
Contains(object key)2528         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)2529         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2530         public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
2531         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2532         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Insert(int index, object key, object value)2533         public void Insert(int index, object key, object value) { }
OnDeserialization(object sender)2534         protected virtual void OnDeserialization(object sender) { }
Remove(object key)2535         public void Remove(object key) { }
RemoveAt(int index)2536         public void RemoveAt(int index) { }
System.Collections.IEnumerable.GetEnumerator()2537         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)2538         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
2539     }
2540     [System.SerializableAttribute]
2541     public partial class StringCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
2542     {
StringCollection()2543         public StringCollection() { }
2544         public int Count { get { throw null; } }
2545         public bool IsReadOnly { get { throw null; } }
2546         public bool IsSynchronized { get { throw null; } }
2547         public string this[int index] { get { throw null; } set { } }
2548         public object SyncRoot { get { throw null; } }
2549         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2550         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2551         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(string value)2552         public int Add(string value) { throw null; }
AddRange(string[] value)2553         public void AddRange(string[] value) { }
Clear()2554         public void Clear() { }
Contains(string value)2555         public bool Contains(string value) { throw null; }
CopyTo(string[] array, int index)2556         public void CopyTo(string[] array, int index) { }
GetEnumerator()2557         public System.Collections.Specialized.StringEnumerator GetEnumerator() { throw null; }
IndexOf(string value)2558         public int IndexOf(string value) { throw null; }
Insert(int index, string value)2559         public void Insert(int index, string value) { }
Remove(string value)2560         public void Remove(string value) { }
RemoveAt(int index)2561         public void RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)2562         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2563         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)2564         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Contains(object value)2565         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)2566         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)2567         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)2568         void System.Collections.IList.Remove(object value) { }
2569     }
2570     [System.ComponentModel.Design.Serialization.DesignerSerializerAttribute("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2571     [System.SerializableAttribute]
2572     public partial class StringDictionary : System.Collections.IEnumerable
2573     {
StringDictionary()2574         public StringDictionary() { }
2575         public virtual int Count { get { throw null; } }
2576         public virtual bool IsSynchronized { get { throw null; } }
2577         public virtual string this[string key] { get { throw null; } set { } }
2578         public virtual System.Collections.ICollection Keys { get { throw null; } }
2579         public virtual object SyncRoot { get { throw null; } }
2580         public virtual System.Collections.ICollection Values { get { throw null; } }
Add(string key, string value)2581         public virtual void Add(string key, string value) { }
Clear()2582         public virtual void Clear() { }
ContainsKey(string key)2583         public virtual bool ContainsKey(string key) { throw null; }
ContainsValue(string value)2584         public virtual bool ContainsValue(string value) { throw null; }
CopyTo(System.Array array, int index)2585         public virtual void CopyTo(System.Array array, int index) { }
GetEnumerator()2586         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string key)2587         public virtual void Remove(string key) { }
2588     }
2589     public partial class StringEnumerator
2590     {
StringEnumerator()2591         internal StringEnumerator() { }
2592         public string Current { get { throw null; } }
MoveNext()2593         public bool MoveNext() { throw null; }
Reset()2594         public void Reset() { }
2595     }
2596 }
2597 namespace System.ComponentModel
2598 {
2599     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2600     public partial class AddingNewEventArgs : System.EventArgs
2601     {
AddingNewEventArgs()2602         public AddingNewEventArgs() { }
AddingNewEventArgs(object newObject)2603         public AddingNewEventArgs(object newObject) { }
2604         public object NewObject { get { throw null; } set { } }
2605     }
2606     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
AddingNewEventHandler(object sender, System.ComponentModel.AddingNewEventArgs e)2607     public delegate void AddingNewEventHandler(object sender, System.ComponentModel.AddingNewEventArgs e);
2608     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2609     public sealed partial class AmbientValueAttribute : System.Attribute
2610     {
AmbientValueAttribute(bool value)2611         public AmbientValueAttribute(bool value) { }
AmbientValueAttribute(byte value)2612         public AmbientValueAttribute(byte value) { }
AmbientValueAttribute(char value)2613         public AmbientValueAttribute(char value) { }
AmbientValueAttribute(double value)2614         public AmbientValueAttribute(double value) { }
AmbientValueAttribute(short value)2615         public AmbientValueAttribute(short value) { }
AmbientValueAttribute(int value)2616         public AmbientValueAttribute(int value) { }
AmbientValueAttribute(long value)2617         public AmbientValueAttribute(long value) { }
AmbientValueAttribute(object value)2618         public AmbientValueAttribute(object value) { }
AmbientValueAttribute(float value)2619         public AmbientValueAttribute(float value) { }
AmbientValueAttribute(string value)2620         public AmbientValueAttribute(string value) { }
AmbientValueAttribute(System.Type type, string value)2621         public AmbientValueAttribute(System.Type type, string value) { }
2622         public object Value { get { throw null; } }
Equals(object obj)2623         public override bool Equals(object obj) { throw null; }
GetHashCode()2624         public override int GetHashCode() { throw null; }
2625     }
2626     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2627     public partial class ArrayConverter : System.ComponentModel.CollectionConverter
2628     {
ArrayConverter()2629         public ArrayConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2630         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)2631         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2632         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
2633     }
2634     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2635     public partial class AsyncCompletedEventArgs : System.EventArgs
2636     {
2637         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2638         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
AsyncCompletedEventArgs()2639         public AsyncCompletedEventArgs() { }
AsyncCompletedEventArgs(System.Exception error, bool cancelled, object userState)2640         public AsyncCompletedEventArgs(System.Exception error, bool cancelled, object userState) { }
2641         public bool Cancelled { get { throw null; } }
2642         public System.Exception Error { get { throw null; } }
2643         public object UserState { get { throw null; } }
RaiseExceptionIfNecessary()2644         protected void RaiseExceptionIfNecessary() { }
2645     }
2646     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
AsyncCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e)2647     public delegate void AsyncCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
2648     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2649     public sealed partial class AsyncOperation
2650     {
AsyncOperation()2651         internal AsyncOperation() { }
2652         public System.Threading.SynchronizationContext SynchronizationContext { get { throw null; } }
2653         public object UserSuppliedState { get { throw null; } }
~AsyncOperation()2654         ~AsyncOperation() { }
OperationCompleted()2655         public void OperationCompleted() { }
Post(System.Threading.SendOrPostCallback d, object arg)2656         public void Post(System.Threading.SendOrPostCallback d, object arg) { }
PostOperationCompleted(System.Threading.SendOrPostCallback d, object arg)2657         public void PostOperationCompleted(System.Threading.SendOrPostCallback d, object arg) { }
2658     }
2659     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2660     public static partial class AsyncOperationManager
2661     {
2662         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
2663         public static System.Threading.SynchronizationContext SynchronizationContext { get { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
CreateOperation(object userSuppliedState)2664         public static System.ComponentModel.AsyncOperation CreateOperation(object userSuppliedState) { throw null; }
2665     }
2666     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2667     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
2668     public partial class AttributeCollection : System.Collections.ICollection, System.Collections.IEnumerable
2669     {
2670         public static readonly System.ComponentModel.AttributeCollection Empty;
AttributeCollection()2671         protected AttributeCollection() { }
AttributeCollection(params System.Attribute[] attributes)2672         public AttributeCollection(params System.Attribute[] attributes) { }
2673         protected virtual System.Attribute[] Attributes { get { throw null; } }
2674         public int Count { get { throw null; } }
2675         public virtual System.Attribute this[int index] { get { throw null; } }
2676         public virtual System.Attribute this[System.Type attributeType] { get { throw null; } }
2677         int System.Collections.ICollection.Count { get { throw null; } }
2678         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2679         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Contains(System.Attribute attribute)2680         public bool Contains(System.Attribute attribute) { throw null; }
Contains(System.Attribute[] attributes)2681         public bool Contains(System.Attribute[] attributes) { throw null; }
CopyTo(System.Array array, int index)2682         public void CopyTo(System.Array array, int index) { }
FromExisting(System.ComponentModel.AttributeCollection existing, params System.Attribute[] newAttributes)2683         public static System.ComponentModel.AttributeCollection FromExisting(System.ComponentModel.AttributeCollection existing, params System.Attribute[] newAttributes) { throw null; }
GetDefaultAttribute(System.Type attributeType)2684         protected System.Attribute GetDefaultAttribute(System.Type attributeType) { throw null; }
GetEnumerator()2685         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Matches(System.Attribute attribute)2686         public bool Matches(System.Attribute attribute) { throw null; }
Matches(System.Attribute[] attributes)2687         public bool Matches(System.Attribute[] attributes) { throw null; }
System.Collections.IEnumerable.GetEnumerator()2688         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2689     }
2690     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
2691     public partial class AttributeProviderAttribute : System.Attribute
2692     {
AttributeProviderAttribute(string typeName)2693         public AttributeProviderAttribute(string typeName) { }
AttributeProviderAttribute(string typeName, string propertyName)2694         public AttributeProviderAttribute(string typeName, string propertyName) { }
AttributeProviderAttribute(System.Type type)2695         public AttributeProviderAttribute(System.Type type) { }
2696         public string PropertyName { get { throw null; } }
2697         public string TypeName { get { throw null; } }
2698     }
2699     [System.ComponentModel.DefaultEventAttribute("DoWork")]
2700     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2701     public partial class BackgroundWorker : System.ComponentModel.Component
2702     {
BackgroundWorker()2703         public BackgroundWorker() { }
2704         [System.ComponentModel.BrowsableAttribute(false)]
2705         public bool CancellationPending { get { throw null; } }
2706         [System.ComponentModel.BrowsableAttribute(false)]
2707         public bool IsBusy { get { throw null; } }
2708         [System.ComponentModel.DefaultValueAttribute(false)]
2709         public bool WorkerReportsProgress { get { throw null; } set { } }
2710         [System.ComponentModel.DefaultValueAttribute(false)]
2711         public bool WorkerSupportsCancellation { get { throw null; } set { } }
2712         public event System.ComponentModel.DoWorkEventHandler DoWork { add { } remove { } }
2713         public event System.ComponentModel.ProgressChangedEventHandler ProgressChanged { add { } remove { } }
2714         public event System.ComponentModel.RunWorkerCompletedEventHandler RunWorkerCompleted { add { } remove { } }
CancelAsync()2715         public void CancelAsync() { }
OnDoWork(System.ComponentModel.DoWorkEventArgs e)2716         protected virtual void OnDoWork(System.ComponentModel.DoWorkEventArgs e) { }
OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs e)2717         protected virtual void OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs e) { }
OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e)2718         protected virtual void OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e) { }
ReportProgress(int percentProgress)2719         public void ReportProgress(int percentProgress) { }
ReportProgress(int percentProgress, object userState)2720         public void ReportProgress(int percentProgress, object userState) { }
RunWorkerAsync()2721         public void RunWorkerAsync() { }
RunWorkerAsync(object argument)2722         public void RunWorkerAsync(object argument) { }
2723     }
2724     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2725     public abstract partial class BaseNumberConverter : System.ComponentModel.TypeConverter
2726     {
BaseNumberConverter()2727         protected BaseNumberConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2728         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type t)2729         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type t) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2730         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2731         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
2732     }
2733     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2734     public sealed partial class BindableAttribute : System.Attribute
2735     {
2736         public static readonly System.ComponentModel.BindableAttribute Default;
2737         public static readonly System.ComponentModel.BindableAttribute No;
2738         public static readonly System.ComponentModel.BindableAttribute Yes;
BindableAttribute(bool bindable)2739         public BindableAttribute(bool bindable) { }
BindableAttribute(bool bindable, System.ComponentModel.BindingDirection direction)2740         public BindableAttribute(bool bindable, System.ComponentModel.BindingDirection direction) { }
BindableAttribute(System.ComponentModel.BindableSupport flags)2741         public BindableAttribute(System.ComponentModel.BindableSupport flags) { }
BindableAttribute(System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction)2742         public BindableAttribute(System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction) { }
2743         public bool Bindable { get { throw null; } }
2744         public System.ComponentModel.BindingDirection Direction { get { throw null; } }
Equals(object obj)2745         public override bool Equals(object obj) { throw null; }
GetHashCode()2746         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2747         public override bool IsDefaultAttribute() { throw null; }
2748     }
2749     public enum BindableSupport
2750     {
2751         Default = 2,
2752         No = 0,
2753         Yes = 1,
2754     }
2755     public enum BindingDirection
2756     {
2757         OneWay = 0,
2758         TwoWay = 1,
2759     }
2760     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2761     [System.SerializableAttribute]
2762     public partial class BindingList<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList, System.ComponentModel.ICancelAddNew, System.ComponentModel.IRaiseItemChangedEvents
2763     {
BindingList()2764         public BindingList() { }
BindingList(System.Collections.Generic.IList<T> list)2765         public BindingList(System.Collections.Generic.IList<T> list) { }
2766         public bool AllowEdit { get { throw null; } set { } }
2767         public bool AllowNew { get { throw null; } set { } }
2768         public bool AllowRemove { get { throw null; } set { } }
2769         protected virtual bool IsSortedCore { get { throw null; } }
2770         public bool RaiseListChangedEvents { get { throw null; } set { } }
2771         protected virtual System.ComponentModel.ListSortDirection SortDirectionCore { get { throw null; } }
2772         protected virtual System.ComponentModel.PropertyDescriptor SortPropertyCore { get { throw null; } }
2773         protected virtual bool SupportsChangeNotificationCore { get { throw null; } }
2774         protected virtual bool SupportsSearchingCore { get { throw null; } }
2775         protected virtual bool SupportsSortingCore { get { throw null; } }
2776         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
2777         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
2778         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
2779         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
2780         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
2781         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
2782         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
2783         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
2784         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
2785         bool System.ComponentModel.IRaiseItemChangedEvents.RaisesItemChangedEvents { get { throw null; } }
2786         public event System.ComponentModel.AddingNewEventHandler AddingNew { add { } remove { } }
2787         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
AddNew()2788         public T AddNew() { throw null; }
AddNewCore()2789         protected virtual object AddNewCore() { throw null; }
ApplySortCore(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction)2790         protected virtual void ApplySortCore(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction) { }
CancelNew(int itemIndex)2791         public virtual void CancelNew(int itemIndex) { }
ClearItems()2792         protected override void ClearItems() { }
EndNew(int itemIndex)2793         public virtual void EndNew(int itemIndex) { }
FindCore(System.ComponentModel.PropertyDescriptor prop, object key)2794         protected virtual int FindCore(System.ComponentModel.PropertyDescriptor prop, object key) { throw null; }
InsertItem(int index, T item)2795         protected override void InsertItem(int index, T item) { }
OnAddingNew(System.ComponentModel.AddingNewEventArgs e)2796         protected virtual void OnAddingNew(System.ComponentModel.AddingNewEventArgs e) { }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)2797         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
RemoveItem(int index)2798         protected override void RemoveItem(int index) { }
RemoveSortCore()2799         protected virtual void RemoveSortCore() { }
ResetBindings()2800         public void ResetBindings() { }
ResetItem(int position)2801         public void ResetItem(int position) { }
SetItem(int index, T item)2802         protected override void SetItem(int index, T item) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop)2803         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop) { }
System.ComponentModel.IBindingList.AddNew()2804         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction)2805         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor prop, object key)2806         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor prop, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop)2807         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop) { }
System.ComponentModel.IBindingList.RemoveSort()2808         void System.ComponentModel.IBindingList.RemoveSort() { }
2809     }
2810     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2811     public partial class BooleanConverter : System.ComponentModel.TypeConverter
2812     {
BooleanConverter()2813         public BooleanConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2814         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2815         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)2816         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)2817         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)2818         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
2819     }
2820     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2821     public sealed partial class BrowsableAttribute : System.Attribute
2822     {
2823         public static readonly System.ComponentModel.BrowsableAttribute Default;
2824         public static readonly System.ComponentModel.BrowsableAttribute No;
2825         public static readonly System.ComponentModel.BrowsableAttribute Yes;
BrowsableAttribute(bool browsable)2826         public BrowsableAttribute(bool browsable) { }
2827         public bool Browsable { get { throw null; } }
Equals(object obj)2828         public override bool Equals(object obj) { throw null; }
GetHashCode()2829         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2830         public override bool IsDefaultAttribute() { throw null; }
2831     }
2832     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2833     public partial class ByteConverter : System.ComponentModel.BaseNumberConverter
2834     {
ByteConverter()2835         public ByteConverter() { }
2836     }
2837     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2838     public partial class CancelEventArgs : System.EventArgs
2839     {
CancelEventArgs()2840         public CancelEventArgs() { }
CancelEventArgs(bool cancel)2841         public CancelEventArgs(bool cancel) { }
2842         public bool Cancel { get { throw null; } set { } }
2843     }
2844     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
CancelEventHandler(object sender, System.ComponentModel.CancelEventArgs e)2845     public delegate void CancelEventHandler(object sender, System.ComponentModel.CancelEventArgs e);
2846     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2847     public partial class CategoryAttribute : System.Attribute
2848     {
CategoryAttribute()2849         public CategoryAttribute() { }
CategoryAttribute(string category)2850         public CategoryAttribute(string category) { }
2851         public static System.ComponentModel.CategoryAttribute Action { get { throw null; } }
2852         public static System.ComponentModel.CategoryAttribute Appearance { get { throw null; } }
2853         public static System.ComponentModel.CategoryAttribute Asynchronous { get { throw null; } }
2854         public static System.ComponentModel.CategoryAttribute Behavior { get { throw null; } }
2855         public string Category { get { throw null; } }
2856         public static System.ComponentModel.CategoryAttribute Data { get { throw null; } }
2857         public static System.ComponentModel.CategoryAttribute Default { get { throw null; } }
2858         public static System.ComponentModel.CategoryAttribute Design { get { throw null; } }
2859         public static System.ComponentModel.CategoryAttribute DragDrop { get { throw null; } }
2860         public static System.ComponentModel.CategoryAttribute Focus { get { throw null; } }
2861         public static System.ComponentModel.CategoryAttribute Format { get { throw null; } }
2862         public static System.ComponentModel.CategoryAttribute Key { get { throw null; } }
2863         public static System.ComponentModel.CategoryAttribute Layout { get { throw null; } }
2864         public static System.ComponentModel.CategoryAttribute Mouse { get { throw null; } }
2865         public static System.ComponentModel.CategoryAttribute WindowStyle { get { throw null; } }
Equals(object obj)2866         public override bool Equals(object obj) { throw null; }
GetHashCode()2867         public override int GetHashCode() { throw null; }
GetLocalizedString(string value)2868         protected virtual string GetLocalizedString(string value) { throw null; }
IsDefaultAttribute()2869         public override bool IsDefaultAttribute() { throw null; }
2870     }
2871     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2872     public partial class CharConverter : System.ComponentModel.TypeConverter
2873     {
CharConverter()2874         public CharConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2875         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2876         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2877         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
2878     }
2879     public enum CollectionChangeAction
2880     {
2881         Add = 1,
2882         Refresh = 3,
2883         Remove = 2,
2884     }
2885     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2886     public partial class CollectionChangeEventArgs : System.EventArgs
2887     {
CollectionChangeEventArgs(System.ComponentModel.CollectionChangeAction action, object element)2888         public CollectionChangeEventArgs(System.ComponentModel.CollectionChangeAction action, object element) { }
2889         public virtual System.ComponentModel.CollectionChangeAction Action { get { throw null; } }
2890         public virtual object Element { get { throw null; } }
2891     }
2892     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
CollectionChangeEventHandler(object sender, System.ComponentModel.CollectionChangeEventArgs e)2893     public delegate void CollectionChangeEventHandler(object sender, System.ComponentModel.CollectionChangeEventArgs e);
2894     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2895     public partial class CollectionConverter : System.ComponentModel.TypeConverter
2896     {
CollectionConverter()2897         public CollectionConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2898         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)2899         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2900         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
2901     }
2902     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
2903     public sealed partial class ComplexBindingPropertiesAttribute : System.Attribute
2904     {
2905         public static readonly System.ComponentModel.ComplexBindingPropertiesAttribute Default;
ComplexBindingPropertiesAttribute()2906         public ComplexBindingPropertiesAttribute() { }
ComplexBindingPropertiesAttribute(string dataSource)2907         public ComplexBindingPropertiesAttribute(string dataSource) { }
ComplexBindingPropertiesAttribute(string dataSource, string dataMember)2908         public ComplexBindingPropertiesAttribute(string dataSource, string dataMember) { }
2909         public string DataMember { get { throw null; } }
2910         public string DataSource { get { throw null; } }
Equals(object obj)2911         public override bool Equals(object obj) { throw null; }
GetHashCode()2912         public override int GetHashCode() { throw null; }
2913     }
2914     [System.ComponentModel.DesignerCategoryAttribute("Component")]
2915     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
2916     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2917     public partial class Component : System.MarshalByRefObject, System.ComponentModel.IComponent, System.IDisposable
2918     {
Component()2919         public Component() { }
2920         protected virtual bool CanRaiseEvents { get { throw null; } }
2921         [System.ComponentModel.BrowsableAttribute(false)]
2922         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2923         public System.ComponentModel.IContainer Container { get { throw null; } }
2924         [System.ComponentModel.BrowsableAttribute(false)]
2925         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2926         protected bool DesignMode { get { throw null; } }
2927         protected System.ComponentModel.EventHandlerList Events { get { throw null; } }
2928         [System.ComponentModel.BrowsableAttribute(false)]
2929         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2930         public virtual System.ComponentModel.ISite Site { get { throw null; } set { } }
2931         [System.ComponentModel.BrowsableAttribute(false)]
2932         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
2933         public event System.EventHandler Disposed { add { } remove { } }
Dispose()2934         public void Dispose() { }
Dispose(bool disposing)2935         protected virtual void Dispose(bool disposing) { }
~Component()2936         ~Component() { }
GetService(System.Type service)2937         protected virtual object GetService(System.Type service) { throw null; }
ToString()2938         public override string ToString() { throw null; }
2939     }
2940     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2941     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
2942     public partial class ComponentCollection : System.Collections.ReadOnlyCollectionBase
2943     {
ComponentCollection(System.ComponentModel.IComponent[] components)2944         public ComponentCollection(System.ComponentModel.IComponent[] components) { }
2945         public virtual System.ComponentModel.IComponent this[int index] { get { throw null; } }
2946         public virtual System.ComponentModel.IComponent this[string name] { get { throw null; } }
CopyTo(System.ComponentModel.IComponent[] array, int index)2947         public void CopyTo(System.ComponentModel.IComponent[] array, int index) { }
2948     }
2949     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2950     public partial class ComponentConverter : System.ComponentModel.ReferenceConverter
2951     {
ComponentConverter(System.Type type)2952         public ComponentConverter(System.Type type) : base (default(System.Type)) { }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)2953         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2954         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
2955     }
2956     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2957     public abstract partial class ComponentEditor
2958     {
ComponentEditor()2959         protected ComponentEditor() { }
EditComponent(System.ComponentModel.ITypeDescriptorContext context, object component)2960         public abstract bool EditComponent(System.ComponentModel.ITypeDescriptorContext context, object component);
EditComponent(object component)2961         public bool EditComponent(object component) { throw null; }
2962     }
2963     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2964     public partial class ComponentResourceManager : System.Resources.ResourceManager
2965     {
ComponentResourceManager()2966         public ComponentResourceManager() { }
ComponentResourceManager(System.Type t)2967         public ComponentResourceManager(System.Type t) { }
ApplyResources(object value, string objectName)2968         public void ApplyResources(object value, string objectName) { }
ApplyResources(object value, string objectName, System.Globalization.CultureInfo culture)2969         public virtual void ApplyResources(object value, string objectName, System.Globalization.CultureInfo culture) { }
2970     }
2971     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2972     public partial class Container : System.ComponentModel.IContainer, System.IDisposable
2973     {
Container()2974         public Container() { }
2975         public virtual System.ComponentModel.ComponentCollection Components { get { throw null; } }
Add(System.ComponentModel.IComponent component)2976         public virtual void Add(System.ComponentModel.IComponent component) { }
Add(System.ComponentModel.IComponent component, string name)2977         public virtual void Add(System.ComponentModel.IComponent component, string name) { }
CreateSite(System.ComponentModel.IComponent component, string name)2978         protected virtual System.ComponentModel.ISite CreateSite(System.ComponentModel.IComponent component, string name) { throw null; }
Dispose()2979         public void Dispose() { }
Dispose(bool disposing)2980         protected virtual void Dispose(bool disposing) { }
~Container()2981         ~Container() { }
GetService(System.Type service)2982         protected virtual object GetService(System.Type service) { throw null; }
Remove(System.ComponentModel.IComponent component)2983         public virtual void Remove(System.ComponentModel.IComponent component) { }
RemoveWithoutUnsiting(System.ComponentModel.IComponent component)2984         protected void RemoveWithoutUnsiting(System.ComponentModel.IComponent component) { }
ValidateName(System.ComponentModel.IComponent component, string name)2985         protected virtual void ValidateName(System.ComponentModel.IComponent component, string name) { }
2986     }
2987     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2988     public abstract partial class ContainerFilterService
2989     {
ContainerFilterService()2990         protected ContainerFilterService() { }
FilterComponents(System.ComponentModel.ComponentCollection components)2991         public virtual System.ComponentModel.ComponentCollection FilterComponents(System.ComponentModel.ComponentCollection components) { throw null; }
2992     }
2993     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2994     public partial class CultureInfoConverter : System.ComponentModel.TypeConverter
2995     {
CultureInfoConverter()2996         public CultureInfoConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2997         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)2998         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2999         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3000         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetCultureName(System.Globalization.CultureInfo culture)3001         protected virtual string GetCultureName(System.Globalization.CultureInfo culture) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)3002         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)3003         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)3004         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3005     }
3006     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3007     public abstract partial class CustomTypeDescriptor : System.ComponentModel.ICustomTypeDescriptor
3008     {
CustomTypeDescriptor()3009         protected CustomTypeDescriptor() { }
CustomTypeDescriptor(System.ComponentModel.ICustomTypeDescriptor parent)3010         protected CustomTypeDescriptor(System.ComponentModel.ICustomTypeDescriptor parent) { }
GetAttributes()3011         public virtual System.ComponentModel.AttributeCollection GetAttributes() { throw null; }
GetClassName()3012         public virtual string GetClassName() { throw null; }
GetComponentName()3013         public virtual string GetComponentName() { throw null; }
GetConverter()3014         public virtual System.ComponentModel.TypeConverter GetConverter() { throw null; }
GetDefaultEvent()3015         public virtual System.ComponentModel.EventDescriptor GetDefaultEvent() { throw null; }
GetDefaultProperty()3016         public virtual System.ComponentModel.PropertyDescriptor GetDefaultProperty() { throw null; }
GetEditor(System.Type editorBaseType)3017         public virtual object GetEditor(System.Type editorBaseType) { throw null; }
GetEvents()3018         public virtual System.ComponentModel.EventDescriptorCollection GetEvents() { throw null; }
GetEvents(System.Attribute[] attributes)3019         public virtual System.ComponentModel.EventDescriptorCollection GetEvents(System.Attribute[] attributes) { throw null; }
GetProperties()3020         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties() { throw null; }
GetProperties(System.Attribute[] attributes)3021         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Attribute[] attributes) { throw null; }
GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)3022         public virtual object GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
3023     }
3024     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3025     public partial class DataErrorsChangedEventArgs : System.EventArgs
3026     {
DataErrorsChangedEventArgs(string propertyName)3027         public DataErrorsChangedEventArgs(string propertyName) { }
3028         public virtual string PropertyName { get { throw null; } }
3029     }
3030     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3031     public sealed partial class DataObjectAttribute : System.Attribute
3032     {
3033         public static readonly System.ComponentModel.DataObjectAttribute DataObject;
3034         public static readonly System.ComponentModel.DataObjectAttribute Default;
3035         public static readonly System.ComponentModel.DataObjectAttribute NonDataObject;
DataObjectAttribute()3036         public DataObjectAttribute() { }
DataObjectAttribute(bool isDataObject)3037         public DataObjectAttribute(bool isDataObject) { }
3038         public bool IsDataObject { get { throw null; } }
Equals(object obj)3039         public override bool Equals(object obj) { throw null; }
GetHashCode()3040         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3041         public override bool IsDefaultAttribute() { throw null; }
3042     }
3043     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
3044     public sealed partial class DataObjectFieldAttribute : System.Attribute
3045     {
DataObjectFieldAttribute(bool primaryKey)3046         public DataObjectFieldAttribute(bool primaryKey) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity)3047         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable)3048         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length)3049         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length) { }
3050         public bool IsIdentity { get { throw null; } }
3051         public bool IsNullable { get { throw null; } }
3052         public int Length { get { throw null; } }
3053         public bool PrimaryKey { get { throw null; } }
Equals(object obj)3054         public override bool Equals(object obj) { throw null; }
GetHashCode()3055         public override int GetHashCode() { throw null; }
3056     }
3057     [System.AttributeUsageAttribute((System.AttributeTargets)(64))]
3058     public sealed partial class DataObjectMethodAttribute : System.Attribute
3059     {
DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType)3060         public DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType) { }
DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType, bool isDefault)3061         public DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType, bool isDefault) { }
3062         public bool IsDefault { get { throw null; } }
3063         public System.ComponentModel.DataObjectMethodType MethodType { get { throw null; } }
Equals(object obj)3064         public override bool Equals(object obj) { throw null; }
GetHashCode()3065         public override int GetHashCode() { throw null; }
Match(object obj)3066         public override bool Match(object obj) { throw null; }
3067     }
3068     public enum DataObjectMethodType
3069     {
3070         Delete = 4,
3071         Fill = 0,
3072         Insert = 3,
3073         Select = 1,
3074         Update = 2,
3075     }
3076     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3077     public partial class DateTimeConverter : System.ComponentModel.TypeConverter
3078     {
DateTimeConverter()3079         public DateTimeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3080         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3081         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3082         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3083         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3084     }
3085     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3086     public partial class DateTimeOffsetConverter : System.ComponentModel.TypeConverter
3087     {
DateTimeOffsetConverter()3088         public DateTimeOffsetConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3089         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3090         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3091         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3092         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3093     }
3094     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3095     public partial class DecimalConverter : System.ComponentModel.BaseNumberConverter
3096     {
DecimalConverter()3097         public DecimalConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3098         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3099         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3100     }
3101     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3102     public sealed partial class DefaultBindingPropertyAttribute : System.Attribute
3103     {
3104         public static readonly System.ComponentModel.DefaultBindingPropertyAttribute Default;
DefaultBindingPropertyAttribute()3105         public DefaultBindingPropertyAttribute() { }
DefaultBindingPropertyAttribute(string name)3106         public DefaultBindingPropertyAttribute(string name) { }
3107         public string Name { get { throw null; } }
Equals(object obj)3108         public override bool Equals(object obj) { throw null; }
GetHashCode()3109         public override int GetHashCode() { throw null; }
3110     }
3111     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3112     public sealed partial class DefaultEventAttribute : System.Attribute
3113     {
3114         public static readonly System.ComponentModel.DefaultEventAttribute Default;
DefaultEventAttribute(string name)3115         public DefaultEventAttribute(string name) { }
3116         public string Name { get { throw null; } }
Equals(object obj)3117         public override bool Equals(object obj) { throw null; }
GetHashCode()3118         public override int GetHashCode() { throw null; }
3119     }
3120     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3121     public sealed partial class DefaultPropertyAttribute : System.Attribute
3122     {
3123         public static readonly System.ComponentModel.DefaultPropertyAttribute Default;
DefaultPropertyAttribute(string name)3124         public DefaultPropertyAttribute(string name) { }
3125         public string Name { get { throw null; } }
Equals(object obj)3126         public override bool Equals(object obj) { throw null; }
GetHashCode()3127         public override int GetHashCode() { throw null; }
3128     }
3129     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3130     public partial class DefaultValueAttribute : System.Attribute
3131     {
DefaultValueAttribute(bool value)3132         public DefaultValueAttribute(bool value) { }
DefaultValueAttribute(byte value)3133         public DefaultValueAttribute(byte value) { }
DefaultValueAttribute(char value)3134         public DefaultValueAttribute(char value) { }
DefaultValueAttribute(double value)3135         public DefaultValueAttribute(double value) { }
DefaultValueAttribute(short value)3136         public DefaultValueAttribute(short value) { }
DefaultValueAttribute(int value)3137         public DefaultValueAttribute(int value) { }
DefaultValueAttribute(long value)3138         public DefaultValueAttribute(long value) { }
DefaultValueAttribute(object value)3139         public DefaultValueAttribute(object value) { }
DefaultValueAttribute(float value)3140         public DefaultValueAttribute(float value) { }
DefaultValueAttribute(string value)3141         public DefaultValueAttribute(string value) { }
DefaultValueAttribute(System.Type type, string value)3142         public DefaultValueAttribute(System.Type type, string value) { }
3143         public virtual object Value { get { throw null; } }
Equals(object obj)3144         public override bool Equals(object obj) { throw null; }
GetHashCode()3145         public override int GetHashCode() { throw null; }
SetValue(object value)3146         protected void SetValue(object value) { }
3147     }
3148     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3149     public partial class DescriptionAttribute : System.Attribute
3150     {
3151         public static readonly System.ComponentModel.DescriptionAttribute Default;
DescriptionAttribute()3152         public DescriptionAttribute() { }
DescriptionAttribute(string description)3153         public DescriptionAttribute(string description) { }
3154         public virtual string Description { get { throw null; } }
3155         protected string DescriptionValue { get { throw null; } set { } }
Equals(object obj)3156         public override bool Equals(object obj) { throw null; }
GetHashCode()3157         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3158         public override bool IsDefaultAttribute() { throw null; }
3159     }
3160     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
3161     public sealed partial class DesignerAttribute : System.Attribute
3162     {
DesignerAttribute(string designerTypeName)3163         public DesignerAttribute(string designerTypeName) { }
DesignerAttribute(string designerTypeName, string designerBaseTypeName)3164         public DesignerAttribute(string designerTypeName, string designerBaseTypeName) { }
DesignerAttribute(string designerTypeName, System.Type designerBaseType)3165         public DesignerAttribute(string designerTypeName, System.Type designerBaseType) { }
DesignerAttribute(System.Type designerType)3166         public DesignerAttribute(System.Type designerType) { }
DesignerAttribute(System.Type designerType, System.Type designerBaseType)3167         public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { }
3168         public string DesignerBaseTypeName { get { throw null; } }
3169         public string DesignerTypeName { get { throw null; } }
3170         public override object TypeId { get { throw null; } }
Equals(object obj)3171         public override bool Equals(object obj) { throw null; }
GetHashCode()3172         public override int GetHashCode() { throw null; }
3173     }
3174     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=true)]
3175     public sealed partial class DesignerCategoryAttribute : System.Attribute
3176     {
3177         public static readonly System.ComponentModel.DesignerCategoryAttribute Component;
3178         public static readonly System.ComponentModel.DesignerCategoryAttribute Default;
3179         public static readonly System.ComponentModel.DesignerCategoryAttribute Form;
3180         public static readonly System.ComponentModel.DesignerCategoryAttribute Generic;
DesignerCategoryAttribute()3181         public DesignerCategoryAttribute() { }
DesignerCategoryAttribute(string category)3182         public DesignerCategoryAttribute(string category) { }
3183         public string Category { get { throw null; } }
3184         public override object TypeId { get { throw null; } }
Equals(object obj)3185         public override bool Equals(object obj) { throw null; }
GetHashCode()3186         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3187         public override bool IsDefaultAttribute() { throw null; }
3188     }
3189     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3190     public enum DesignerSerializationVisibility
3191     {
3192         Content = 2,
3193         Hidden = 0,
3194         Visible = 1,
3195     }
3196     [System.AttributeUsageAttribute((System.AttributeTargets)(960))]
3197     public sealed partial class DesignerSerializationVisibilityAttribute : System.Attribute
3198     {
3199         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Content;
3200         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Default;
3201         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Hidden;
3202         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Visible;
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility visibility)3203         public DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility visibility) { }
3204         public System.ComponentModel.DesignerSerializationVisibility Visibility { get { throw null; } }
Equals(object obj)3205         public override bool Equals(object obj) { throw null; }
GetHashCode()3206         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3207         public override bool IsDefaultAttribute() { throw null; }
3208     }
3209     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3210     public sealed partial class DesignOnlyAttribute : System.Attribute
3211     {
3212         public static readonly System.ComponentModel.DesignOnlyAttribute Default;
3213         public static readonly System.ComponentModel.DesignOnlyAttribute No;
3214         public static readonly System.ComponentModel.DesignOnlyAttribute Yes;
DesignOnlyAttribute(bool isDesignOnly)3215         public DesignOnlyAttribute(bool isDesignOnly) { }
3216         public bool IsDesignOnly { get { throw null; } }
Equals(object obj)3217         public override bool Equals(object obj) { throw null; }
GetHashCode()3218         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3219         public override bool IsDefaultAttribute() { throw null; }
3220     }
3221     [System.AttributeUsageAttribute((System.AttributeTargets)(1028))]
3222     public sealed partial class DesignTimeVisibleAttribute : System.Attribute
3223     {
3224         public static readonly System.ComponentModel.DesignTimeVisibleAttribute Default;
3225         public static readonly System.ComponentModel.DesignTimeVisibleAttribute No;
3226         public static readonly System.ComponentModel.DesignTimeVisibleAttribute Yes;
DesignTimeVisibleAttribute()3227         public DesignTimeVisibleAttribute() { }
DesignTimeVisibleAttribute(bool visible)3228         public DesignTimeVisibleAttribute(bool visible) { }
3229         public bool Visible { get { throw null; } }
Equals(object obj)3230         public override bool Equals(object obj) { throw null; }
GetHashCode()3231         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3232         public override bool IsDefaultAttribute() { throw null; }
3233     }
3234     [System.AttributeUsageAttribute((System.AttributeTargets)(708))]
3235     public partial class DisplayNameAttribute : System.Attribute
3236     {
3237         public static readonly System.ComponentModel.DisplayNameAttribute Default;
DisplayNameAttribute()3238         public DisplayNameAttribute() { }
DisplayNameAttribute(string displayName)3239         public DisplayNameAttribute(string displayName) { }
3240         public virtual string DisplayName { get { throw null; } }
3241         protected string DisplayNameValue { get { throw null; } set { } }
Equals(object obj)3242         public override bool Equals(object obj) { throw null; }
GetHashCode()3243         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3244         public override bool IsDefaultAttribute() { throw null; }
3245     }
3246     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3247     public partial class DoubleConverter : System.ComponentModel.BaseNumberConverter
3248     {
DoubleConverter()3249         public DoubleConverter() { }
3250     }
3251     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3252     public partial class DoWorkEventArgs : System.ComponentModel.CancelEventArgs
3253     {
DoWorkEventArgs(object argument)3254         public DoWorkEventArgs(object argument) { }
3255         public object Argument { get { throw null; } }
3256         public object Result { get { throw null; } set { } }
3257     }
3258     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DoWorkEventHandler(object sender, System.ComponentModel.DoWorkEventArgs e)3259     public delegate void DoWorkEventHandler(object sender, System.ComponentModel.DoWorkEventArgs e);
3260     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true, Inherited=true)]
3261     public sealed partial class EditorAttribute : System.Attribute
3262     {
EditorAttribute()3263         public EditorAttribute() { }
EditorAttribute(string typeName, string baseTypeName)3264         public EditorAttribute(string typeName, string baseTypeName) { }
EditorAttribute(string typeName, System.Type baseType)3265         public EditorAttribute(string typeName, System.Type baseType) { }
EditorAttribute(System.Type type, System.Type baseType)3266         public EditorAttribute(System.Type type, System.Type baseType) { }
3267         public string EditorBaseTypeName { get { throw null; } }
3268         public string EditorTypeName { get { throw null; } }
3269         public override object TypeId { get { throw null; } }
Equals(object obj)3270         public override bool Equals(object obj) { throw null; }
GetHashCode()3271         public override int GetHashCode() { throw null; }
3272     }
3273     [System.AttributeUsageAttribute((System.AttributeTargets)(6140))]
3274     public sealed partial class EditorBrowsableAttribute : System.Attribute
3275     {
EditorBrowsableAttribute()3276         public EditorBrowsableAttribute() { }
EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState state)3277         public EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState state) { }
3278         public System.ComponentModel.EditorBrowsableState State { get { throw null; } }
Equals(object obj)3279         public override bool Equals(object obj) { throw null; }
GetHashCode()3280         public override int GetHashCode() { throw null; }
3281     }
3282     public enum EditorBrowsableState
3283     {
3284         Advanced = 2,
3285         Always = 0,
3286         Never = 1,
3287     }
3288     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3289     public partial class EnumConverter : System.ComponentModel.TypeConverter
3290     {
EnumConverter(System.Type type)3291         public EnumConverter(System.Type type) { }
3292         protected virtual System.Collections.IComparer Comparer { get { throw null; } }
3293         protected System.Type EnumType { get { throw null; } }
3294         protected System.ComponentModel.TypeConverter.StandardValuesCollection Values { get { throw null; } set { } }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3295         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3296         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3297         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3298         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)3299         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)3300         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)3301         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)3302         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
3303     }
3304     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3305     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3306     public abstract partial class EventDescriptor : System.ComponentModel.MemberDescriptor
3307     {
EventDescriptor(System.ComponentModel.MemberDescriptor descr)3308         protected EventDescriptor(System.ComponentModel.MemberDescriptor descr) : base (default(string)) { }
EventDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs)3309         protected EventDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs) : base (default(string)) { }
EventDescriptor(string name, System.Attribute[] attrs)3310         protected EventDescriptor(string name, System.Attribute[] attrs) : base (default(string)) { }
3311         public abstract System.Type ComponentType { get; }
3312         public abstract System.Type EventType { get; }
3313         public abstract bool IsMulticast { get; }
AddEventHandler(object component, System.Delegate value)3314         public abstract void AddEventHandler(object component, System.Delegate value);
RemoveEventHandler(object component, System.Delegate value)3315         public abstract void RemoveEventHandler(object component, System.Delegate value);
3316     }
3317     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3318     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
3319     public partial class EventDescriptorCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
3320     {
3321         public static readonly System.ComponentModel.EventDescriptorCollection Empty;
EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events)3322         public EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events) { }
EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events, bool readOnly)3323         public EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events, bool readOnly) { }
3324         public int Count { get { throw null; } }
3325         public virtual System.ComponentModel.EventDescriptor this[int index] { get { throw null; } }
3326         public virtual System.ComponentModel.EventDescriptor this[string name] { get { throw null; } }
3327         int System.Collections.ICollection.Count { get { throw null; } }
3328         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3329         object System.Collections.ICollection.SyncRoot { get { throw null; } }
3330         bool System.Collections.IList.IsFixedSize { get { throw null; } }
3331         bool System.Collections.IList.IsReadOnly { get { throw null; } }
3332         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.EventDescriptor value)3333         public int Add(System.ComponentModel.EventDescriptor value) { throw null; }
Clear()3334         public void Clear() { }
Contains(System.ComponentModel.EventDescriptor value)3335         public bool Contains(System.ComponentModel.EventDescriptor value) { throw null; }
Find(string name, bool ignoreCase)3336         public virtual System.ComponentModel.EventDescriptor Find(string name, bool ignoreCase) { throw null; }
GetEnumerator()3337         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.EventDescriptor value)3338         public int IndexOf(System.ComponentModel.EventDescriptor value) { throw null; }
Insert(int index, System.ComponentModel.EventDescriptor value)3339         public void Insert(int index, System.ComponentModel.EventDescriptor value) { }
InternalSort(System.Collections.IComparer sorter)3340         protected void InternalSort(System.Collections.IComparer sorter) { }
InternalSort(string[] names)3341         protected void InternalSort(string[] names) { }
Remove(System.ComponentModel.EventDescriptor value)3342         public void Remove(System.ComponentModel.EventDescriptor value) { }
RemoveAt(int index)3343         public void RemoveAt(int index) { }
Sort()3344         public virtual System.ComponentModel.EventDescriptorCollection Sort() { throw null; }
Sort(System.Collections.IComparer comparer)3345         public virtual System.ComponentModel.EventDescriptorCollection Sort(System.Collections.IComparer comparer) { throw null; }
Sort(string[] names)3346         public virtual System.ComponentModel.EventDescriptorCollection Sort(string[] names) { throw null; }
Sort(string[] names, System.Collections.IComparer comparer)3347         public virtual System.ComponentModel.EventDescriptorCollection Sort(string[] names, System.Collections.IComparer comparer) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)3348         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()3349         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)3350         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()3351         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)3352         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)3353         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)3354         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)3355         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)3356         void System.Collections.IList.RemoveAt(int index) { }
3357     }
3358     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3359     public sealed partial class EventHandlerList : System.IDisposable
3360     {
EventHandlerList()3361         public EventHandlerList() { }
3362         public System.Delegate this[object key] { get { throw null; } set { } }
AddHandler(object key, System.Delegate value)3363         public void AddHandler(object key, System.Delegate value) { }
AddHandlers(System.ComponentModel.EventHandlerList listToAddFrom)3364         public void AddHandlers(System.ComponentModel.EventHandlerList listToAddFrom) { }
Dispose()3365         public void Dispose() { }
RemoveHandler(object key, System.Delegate value)3366         public void RemoveHandler(object key, System.Delegate value) { }
3367     }
3368     public partial class ExpandableObjectConverter : System.ComponentModel.TypeConverter
3369     {
ExpandableObjectConverter()3370         public ExpandableObjectConverter() { }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)3371         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)3372         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3373     }
3374     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3375     public sealed partial class ExtenderProvidedPropertyAttribute : System.Attribute
3376     {
ExtenderProvidedPropertyAttribute()3377         public ExtenderProvidedPropertyAttribute() { }
3378         public System.ComponentModel.PropertyDescriptor ExtenderProperty { get { throw null; } }
3379         public System.ComponentModel.IExtenderProvider Provider { get { throw null; } }
3380         public System.Type ReceiverType { get { throw null; } }
Equals(object obj)3381         public override bool Equals(object obj) { throw null; }
GetHashCode()3382         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3383         public override bool IsDefaultAttribute() { throw null; }
3384     }
3385     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3386     public partial class GuidConverter : System.ComponentModel.TypeConverter
3387     {
GuidConverter()3388         public GuidConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3389         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3390         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3391         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3392         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3393     }
3394     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3395     public partial class HandledEventArgs : System.EventArgs
3396     {
HandledEventArgs()3397         public HandledEventArgs() { }
HandledEventArgs(bool defaultHandledValue)3398         public HandledEventArgs(bool defaultHandledValue) { }
3399         public bool Handled { get { throw null; } set { } }
3400     }
3401     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
HandledEventHandler(object sender, System.ComponentModel.HandledEventArgs e)3402     public delegate void HandledEventHandler(object sender, System.ComponentModel.HandledEventArgs e);
3403     public partial interface IBindingList : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
3404     {
3405         bool AllowEdit { get; }
3406         bool AllowNew { get; }
3407         bool AllowRemove { get; }
3408         bool IsSorted { get; }
3409         System.ComponentModel.ListSortDirection SortDirection { get; }
3410         System.ComponentModel.PropertyDescriptor SortProperty { get; }
3411         bool SupportsChangeNotification { get; }
3412         bool SupportsSearching { get; }
3413         bool SupportsSorting { get; }
3414         event System.ComponentModel.ListChangedEventHandler ListChanged;
AddIndex(System.ComponentModel.PropertyDescriptor property)3415         void AddIndex(System.ComponentModel.PropertyDescriptor property);
AddNew()3416         object AddNew();
ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)3417         void ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction);
Find(System.ComponentModel.PropertyDescriptor property, object key)3418         int Find(System.ComponentModel.PropertyDescriptor property, object key);
RemoveIndex(System.ComponentModel.PropertyDescriptor property)3419         void RemoveIndex(System.ComponentModel.PropertyDescriptor property);
RemoveSort()3420         void RemoveSort();
3421     }
3422     public partial interface IBindingListView : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList
3423     {
3424         string Filter { get; set; }
3425         System.ComponentModel.ListSortDescriptionCollection SortDescriptions { get; }
3426         bool SupportsAdvancedSorting { get; }
3427         bool SupportsFiltering { get; }
ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts)3428         void ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts);
RemoveFilter()3429         void RemoveFilter();
3430     }
3431     public partial interface ICancelAddNew
3432     {
CancelNew(int itemIndex)3433         void CancelNew(int itemIndex);
EndNew(int itemIndex)3434         void EndNew(int itemIndex);
3435     }
3436     public partial interface IChangeTracking
3437     {
3438         bool IsChanged { get; }
AcceptChanges()3439         void AcceptChanges();
3440     }
3441     [System.ObsoleteAttribute("This interface has been deprecated. Add a TypeDescriptionProvider to handle type TypeDescriptor.ComObjectType instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
3442     public partial interface IComNativeDescriptorHandler
3443     {
GetAttributes(object component)3444         System.ComponentModel.AttributeCollection GetAttributes(object component);
GetClassName(object component)3445         string GetClassName(object component);
GetConverter(object component)3446         System.ComponentModel.TypeConverter GetConverter(object component);
GetDefaultEvent(object component)3447         System.ComponentModel.EventDescriptor GetDefaultEvent(object component);
GetDefaultProperty(object component)3448         System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component);
GetEditor(object component, System.Type baseEditorType)3449         object GetEditor(object component, System.Type baseEditorType);
GetEvents(object component)3450         System.ComponentModel.EventDescriptorCollection GetEvents(object component);
GetEvents(object component, System.Attribute[] attributes)3451         System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes);
GetName(object component)3452         string GetName(object component);
GetProperties(object component, System.Attribute[] attributes)3453         System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes);
GetPropertyValue(object component, int dispid, ref bool success)3454         object GetPropertyValue(object component, int dispid, ref bool success);
GetPropertyValue(object component, string propertyName, ref bool success)3455         object GetPropertyValue(object component, string propertyName, ref bool success);
3456     }
3457     [System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute("System.ComponentModel.Design.Serialization.RootCodeDomSerializer, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", true)]
3458     [System.ComponentModel.DesignerAttribute("System.ComponentModel.Design.ComponentDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IDesigner))]
3459     [System.ComponentModel.DesignerAttribute("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
3460     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ComponentConverter))]
3461     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3462     public partial interface IComponent : System.IDisposable
3463     {
3464         System.ComponentModel.ISite Site { get; set; }
3465         event System.EventHandler Disposed;
3466     }
3467     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3468     public partial interface IContainer : System.IDisposable
3469     {
3470         System.ComponentModel.ComponentCollection Components { get; }
Add(System.ComponentModel.IComponent component)3471         void Add(System.ComponentModel.IComponent component);
Add(System.ComponentModel.IComponent component, string name)3472         void Add(System.ComponentModel.IComponent component, string name);
Remove(System.ComponentModel.IComponent component)3473         void Remove(System.ComponentModel.IComponent component);
3474     }
3475     public partial interface ICustomTypeDescriptor
3476     {
GetAttributes()3477         System.ComponentModel.AttributeCollection GetAttributes();
GetClassName()3478         string GetClassName();
GetComponentName()3479         string GetComponentName();
GetConverter()3480         System.ComponentModel.TypeConverter GetConverter();
GetDefaultEvent()3481         System.ComponentModel.EventDescriptor GetDefaultEvent();
GetDefaultProperty()3482         System.ComponentModel.PropertyDescriptor GetDefaultProperty();
GetEditor(System.Type editorBaseType)3483         object GetEditor(System.Type editorBaseType);
GetEvents()3484         System.ComponentModel.EventDescriptorCollection GetEvents();
GetEvents(System.Attribute[] attributes)3485         System.ComponentModel.EventDescriptorCollection GetEvents(System.Attribute[] attributes);
GetProperties()3486         System.ComponentModel.PropertyDescriptorCollection GetProperties();
GetProperties(System.Attribute[] attributes)3487         System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Attribute[] attributes);
GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)3488         object GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd);
3489     }
3490     public partial interface IDataErrorInfo
3491     {
3492         string Error { get; }
3493         string this[string columnName] { get; }
3494     }
3495     public partial interface IEditableObject
3496     {
BeginEdit()3497         void BeginEdit();
CancelEdit()3498         void CancelEdit();
EndEdit()3499         void EndEdit();
3500     }
3501     public partial interface IExtenderProvider
3502     {
CanExtend(object extendee)3503         bool CanExtend(object extendee);
3504     }
3505     public partial interface IIntellisenseBuilder
3506     {
3507         string Name { get; }
Show(string language, string value, ref string newValue)3508         bool Show(string language, string value, ref string newValue);
3509     }
3510     [System.ComponentModel.EditorAttribute("System.Windows.Forms.Design.DataSourceListEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3511     [System.ComponentModel.MergablePropertyAttribute(false)]
3512     [System.ComponentModel.TypeConverterAttribute("System.Windows.Forms.Design.DataSourceConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3513     public partial interface IListSource
3514     {
3515         bool ContainsListCollection { get; }
GetList()3516         System.Collections.IList GetList();
3517     }
3518     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3519     public sealed partial class ImmutableObjectAttribute : System.Attribute
3520     {
3521         public static readonly System.ComponentModel.ImmutableObjectAttribute Default;
3522         public static readonly System.ComponentModel.ImmutableObjectAttribute No;
3523         public static readonly System.ComponentModel.ImmutableObjectAttribute Yes;
ImmutableObjectAttribute(bool immutable)3524         public ImmutableObjectAttribute(bool immutable) { }
3525         public bool Immutable { get { throw null; } }
Equals(object obj)3526         public override bool Equals(object obj) { throw null; }
GetHashCode()3527         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3528         public override bool IsDefaultAttribute() { throw null; }
3529     }
3530     public partial interface INestedContainer : System.ComponentModel.IContainer, System.IDisposable
3531     {
3532         System.ComponentModel.IComponent Owner { get; }
3533     }
3534     public partial interface INestedSite : System.ComponentModel.ISite, System.IServiceProvider
3535     {
3536         string FullName { get; }
3537     }
3538     [System.AttributeUsageAttribute((System.AttributeTargets)(896))]
3539     public sealed partial class InheritanceAttribute : System.Attribute
3540     {
3541         public static readonly System.ComponentModel.InheritanceAttribute Default;
3542         public static readonly System.ComponentModel.InheritanceAttribute Inherited;
3543         public static readonly System.ComponentModel.InheritanceAttribute InheritedReadOnly;
3544         public static readonly System.ComponentModel.InheritanceAttribute NotInherited;
InheritanceAttribute()3545         public InheritanceAttribute() { }
InheritanceAttribute(System.ComponentModel.InheritanceLevel inheritanceLevel)3546         public InheritanceAttribute(System.ComponentModel.InheritanceLevel inheritanceLevel) { }
3547         public System.ComponentModel.InheritanceLevel InheritanceLevel { get { throw null; } }
Equals(object value)3548         public override bool Equals(object value) { throw null; }
GetHashCode()3549         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3550         public override bool IsDefaultAttribute() { throw null; }
ToString()3551         public override string ToString() { throw null; }
3552     }
3553     public enum InheritanceLevel
3554     {
3555         Inherited = 1,
3556         InheritedReadOnly = 2,
3557         NotInherited = 3,
3558     }
3559     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3560     public sealed partial class InitializationEventAttribute : System.Attribute
3561     {
InitializationEventAttribute(string eventName)3562         public InitializationEventAttribute(string eventName) { }
3563         public string EventName { get { throw null; } }
3564     }
3565     public partial interface INotifyDataErrorInfo
3566     {
3567         bool HasErrors { get; }
3568         event System.EventHandler<System.ComponentModel.DataErrorsChangedEventArgs> ErrorsChanged;
GetErrors(string propertyName)3569         System.Collections.IEnumerable GetErrors(string propertyName);
3570     }
3571     public partial interface INotifyPropertyChanged
3572     {
3573         event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
3574     }
3575     public partial interface INotifyPropertyChanging
3576     {
3577         event System.ComponentModel.PropertyChangingEventHandler PropertyChanging;
3578     }
3579     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3580     public partial class InstallerTypeAttribute : System.Attribute
3581     {
InstallerTypeAttribute(string typeName)3582         public InstallerTypeAttribute(string typeName) { }
InstallerTypeAttribute(System.Type installerType)3583         public InstallerTypeAttribute(System.Type installerType) { }
3584         public virtual System.Type InstallerType { get { throw null; } }
Equals(object obj)3585         public override bool Equals(object obj) { throw null; }
GetHashCode()3586         public override int GetHashCode() { throw null; }
3587     }
3588     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3589     public abstract partial class InstanceCreationEditor
3590     {
InstanceCreationEditor()3591         protected InstanceCreationEditor() { }
3592         public virtual string Text { get { throw null; } }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Type instanceType)3593         public abstract object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Type instanceType);
3594     }
3595     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3596     public partial class Int16Converter : System.ComponentModel.BaseNumberConverter
3597     {
Int16Converter()3598         public Int16Converter() { }
3599     }
3600     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3601     public partial class Int32Converter : System.ComponentModel.BaseNumberConverter
3602     {
Int32Converter()3603         public Int32Converter() { }
3604     }
3605     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3606     public partial class Int64Converter : System.ComponentModel.BaseNumberConverter
3607     {
Int64Converter()3608         public Int64Converter() { }
3609     }
3610     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3611     [System.SerializableAttribute]
3612     public partial class InvalidAsynchronousStateException : System.ArgumentException
3613     {
InvalidAsynchronousStateException()3614         public InvalidAsynchronousStateException() { }
InvalidAsynchronousStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3615         protected InvalidAsynchronousStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidAsynchronousStateException(string message)3616         public InvalidAsynchronousStateException(string message) { }
InvalidAsynchronousStateException(string message, System.Exception innerException)3617         public InvalidAsynchronousStateException(string message, System.Exception innerException) { }
3618     }
3619     [System.SerializableAttribute]
3620     public partial class InvalidEnumArgumentException : System.ArgumentException
3621     {
InvalidEnumArgumentException()3622         public InvalidEnumArgumentException() { }
InvalidEnumArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3623         protected InvalidEnumArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidEnumArgumentException(string message)3624         public InvalidEnumArgumentException(string message) { }
InvalidEnumArgumentException(string message, System.Exception innerException)3625         public InvalidEnumArgumentException(string message, System.Exception innerException) { }
InvalidEnumArgumentException(string argumentName, int invalidValue, System.Type enumClass)3626         public InvalidEnumArgumentException(string argumentName, int invalidValue, System.Type enumClass) { }
3627     }
3628     public partial interface IRaiseItemChangedEvents
3629     {
3630         bool RaisesItemChangedEvents { get; }
3631     }
3632     public partial interface IRevertibleChangeTracking : System.ComponentModel.IChangeTracking
3633     {
RejectChanges()3634         void RejectChanges();
3635     }
3636     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3637     public partial interface ISite : System.IServiceProvider
3638     {
3639         System.ComponentModel.IComponent Component { get; }
3640         System.ComponentModel.IContainer Container { get; }
3641         bool DesignMode { get; }
3642         string Name { get; set; }
3643     }
3644     public partial interface ISupportInitialize
3645     {
BeginInit()3646         void BeginInit();
EndInit()3647         void EndInit();
3648     }
3649     public partial interface ISupportInitializeNotification : System.ComponentModel.ISupportInitialize
3650     {
3651         bool IsInitialized { get; }
3652         event System.EventHandler Initialized;
3653     }
3654     public partial interface ISynchronizeInvoke
3655     {
3656         bool InvokeRequired { get; }
3657         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
BeginInvoke(System.Delegate method, object[] args)3658         System.IAsyncResult BeginInvoke(System.Delegate method, object[] args);
EndInvoke(System.IAsyncResult result)3659         object EndInvoke(System.IAsyncResult result);
Invoke(System.Delegate method, object[] args)3660         object Invoke(System.Delegate method, object[] args);
3661     }
3662     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3663     public partial interface ITypeDescriptorContext : System.IServiceProvider
3664     {
3665         System.ComponentModel.IContainer Container { get; }
3666         object Instance { get; }
3667         System.ComponentModel.PropertyDescriptor PropertyDescriptor { get; }
OnComponentChanged()3668         void OnComponentChanged();
OnComponentChanging()3669         bool OnComponentChanging();
3670     }
3671     public partial interface ITypedList
3672     {
GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)3673         System.ComponentModel.PropertyDescriptorCollection GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors);
GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)3674         string GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors);
3675     }
3676     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3677     public abstract partial class License : System.IDisposable
3678     {
License()3679         protected License() { }
3680         public abstract string LicenseKey { get; }
Dispose()3681         public abstract void Dispose();
3682     }
3683     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3684     public partial class LicenseContext : System.IServiceProvider
3685     {
LicenseContext()3686         public LicenseContext() { }
3687         public virtual System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly)3688         public virtual string GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly) { throw null; }
GetService(System.Type type)3689         public virtual object GetService(System.Type type) { throw null; }
SetSavedLicenseKey(System.Type type, string key)3690         public virtual void SetSavedLicenseKey(System.Type type, string key) { }
3691     }
3692     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3693     [System.SerializableAttribute]
3694     public partial class LicenseException : System.SystemException
3695     {
LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3696         protected LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
LicenseException(System.Type type)3697         public LicenseException(System.Type type) { }
LicenseException(System.Type type, object instance)3698         public LicenseException(System.Type type, object instance) { }
LicenseException(System.Type type, object instance, string message)3699         public LicenseException(System.Type type, object instance, string message) { }
LicenseException(System.Type type, object instance, string message, System.Exception innerException)3700         public LicenseException(System.Type type, object instance, string message, System.Exception innerException) { }
3701         public System.Type LicensedType { get { throw null; } }
3702         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3703         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3704     }
3705     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalProcessMgmt=true)]
3706     public sealed partial class LicenseManager
3707     {
LicenseManager()3708         internal LicenseManager() { }
3709         public static System.ComponentModel.LicenseContext CurrentContext { get { throw null; } set { } }
3710         public static System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext)3711         public static object CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext) { throw null; }
CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext, object[] args)3712         public static object CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext, object[] args) { throw null; }
IsLicensed(System.Type type)3713         public static bool IsLicensed(System.Type type) { throw null; }
IsValid(System.Type type)3714         public static bool IsValid(System.Type type) { throw null; }
IsValid(System.Type type, object instance, out System.ComponentModel.License license)3715         public static bool IsValid(System.Type type, object instance, out System.ComponentModel.License license) { license = default(System.ComponentModel.License); throw null; }
LockContext(object contextUser)3716         public static void LockContext(object contextUser) { }
UnlockContext(object contextUser)3717         public static void UnlockContext(object contextUser) { }
Validate(System.Type type)3718         public static void Validate(System.Type type) { }
Validate(System.Type type, object instance)3719         public static System.ComponentModel.License Validate(System.Type type, object instance) { throw null; }
3720     }
3721     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3722     public abstract partial class LicenseProvider
3723     {
LicenseProvider()3724         protected LicenseProvider() { }
GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions)3725         public abstract System.ComponentModel.License GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions);
3726     }
3727     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)]
3728     public sealed partial class LicenseProviderAttribute : System.Attribute
3729     {
3730         public static readonly System.ComponentModel.LicenseProviderAttribute Default;
LicenseProviderAttribute()3731         public LicenseProviderAttribute() { }
LicenseProviderAttribute(string typeName)3732         public LicenseProviderAttribute(string typeName) { }
LicenseProviderAttribute(System.Type type)3733         public LicenseProviderAttribute(System.Type type) { }
3734         public System.Type LicenseProvider { get { throw null; } }
3735         public override object TypeId { get { throw null; } }
Equals(object value)3736         public override bool Equals(object value) { throw null; }
GetHashCode()3737         public override int GetHashCode() { throw null; }
3738     }
3739     public enum LicenseUsageMode
3740     {
3741         Designtime = 1,
3742         Runtime = 0,
3743     }
3744     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3745     public partial class LicFileLicenseProvider : System.ComponentModel.LicenseProvider
3746     {
LicFileLicenseProvider()3747         public LicFileLicenseProvider() { }
GetKey(System.Type type)3748         protected virtual string GetKey(System.Type type) { throw null; }
GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions)3749         public override System.ComponentModel.License GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions) { throw null; }
IsKeyValid(string key, System.Type type)3750         protected virtual bool IsKeyValid(string key, System.Type type) { throw null; }
3751     }
3752     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3753     public sealed partial class ListBindableAttribute : System.Attribute
3754     {
3755         public static readonly System.ComponentModel.ListBindableAttribute Default;
3756         public static readonly System.ComponentModel.ListBindableAttribute No;
3757         public static readonly System.ComponentModel.ListBindableAttribute Yes;
ListBindableAttribute(bool listBindable)3758         public ListBindableAttribute(bool listBindable) { }
ListBindableAttribute(System.ComponentModel.BindableSupport flags)3759         public ListBindableAttribute(System.ComponentModel.BindableSupport flags) { }
3760         public bool ListBindable { get { throw null; } }
Equals(object obj)3761         public override bool Equals(object obj) { throw null; }
GetHashCode()3762         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3763         public override bool IsDefaultAttribute() { throw null; }
3764     }
3765     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3766     public partial class ListChangedEventArgs : System.EventArgs
3767     {
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, System.ComponentModel.PropertyDescriptor propDesc)3768         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, System.ComponentModel.PropertyDescriptor propDesc) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex)3769         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, System.ComponentModel.PropertyDescriptor propDesc)3770         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, System.ComponentModel.PropertyDescriptor propDesc) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, int oldIndex)3771         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, int oldIndex) { }
3772         public System.ComponentModel.ListChangedType ListChangedType { get { throw null; } }
3773         public int NewIndex { get { throw null; } }
3774         public int OldIndex { get { throw null; } }
3775         public System.ComponentModel.PropertyDescriptor PropertyDescriptor { get { throw null; } }
3776     }
3777     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ListChangedEventHandler(object sender, System.ComponentModel.ListChangedEventArgs e)3778     public delegate void ListChangedEventHandler(object sender, System.ComponentModel.ListChangedEventArgs e);
3779     public enum ListChangedType
3780     {
3781         ItemAdded = 1,
3782         ItemChanged = 4,
3783         ItemDeleted = 2,
3784         ItemMoved = 3,
3785         PropertyDescriptorAdded = 5,
3786         PropertyDescriptorChanged = 7,
3787         PropertyDescriptorDeleted = 6,
3788         Reset = 0,
3789     }
3790     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3791     public partial class ListSortDescription
3792     {
ListSortDescription(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)3793         public ListSortDescription(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
3794         public System.ComponentModel.PropertyDescriptor PropertyDescriptor { get { throw null; } set { } }
3795         public System.ComponentModel.ListSortDirection SortDirection { get { throw null; } set { } }
3796     }
3797     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3798     public partial class ListSortDescriptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
3799     {
ListSortDescriptionCollection()3800         public ListSortDescriptionCollection() { }
ListSortDescriptionCollection(System.ComponentModel.ListSortDescription[] sorts)3801         public ListSortDescriptionCollection(System.ComponentModel.ListSortDescription[] sorts) { }
3802         public int Count { get { throw null; } }
3803         public System.ComponentModel.ListSortDescription this[int index] { get { throw null; } set { } }
3804         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3805         object System.Collections.ICollection.SyncRoot { get { throw null; } }
3806         bool System.Collections.IList.IsFixedSize { get { throw null; } }
3807         bool System.Collections.IList.IsReadOnly { get { throw null; } }
3808         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Contains(object value)3809         public bool Contains(object value) { throw null; }
CopyTo(System.Array array, int index)3810         public void CopyTo(System.Array array, int index) { }
IndexOf(object value)3811         public int IndexOf(object value) { throw null; }
System.Collections.IEnumerable.GetEnumerator()3812         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)3813         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()3814         void System.Collections.IList.Clear() { }
System.Collections.IList.Insert(int index, object value)3815         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)3816         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)3817         void System.Collections.IList.RemoveAt(int index) { }
3818     }
3819     public enum ListSortDirection
3820     {
3821         Ascending = 0,
3822         Descending = 1,
3823     }
3824     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3825     public sealed partial class LocalizableAttribute : System.Attribute
3826     {
3827         public static readonly System.ComponentModel.LocalizableAttribute Default;
3828         public static readonly System.ComponentModel.LocalizableAttribute No;
3829         public static readonly System.ComponentModel.LocalizableAttribute Yes;
LocalizableAttribute(bool isLocalizable)3830         public LocalizableAttribute(bool isLocalizable) { }
3831         public bool IsLocalizable { get { throw null; } }
Equals(object obj)3832         public override bool Equals(object obj) { throw null; }
GetHashCode()3833         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3834         public override bool IsDefaultAttribute() { throw null; }
3835     }
3836     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3837     public sealed partial class LookupBindingPropertiesAttribute : System.Attribute
3838     {
3839         public static readonly System.ComponentModel.LookupBindingPropertiesAttribute Default;
LookupBindingPropertiesAttribute()3840         public LookupBindingPropertiesAttribute() { }
LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember)3841         public LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember) { }
3842         public string DataSource { get { throw null; } }
3843         public string DisplayMember { get { throw null; } }
3844         public string LookupMember { get { throw null; } }
3845         public string ValueMember { get { throw null; } }
Equals(object obj)3846         public override bool Equals(object obj) { throw null; }
GetHashCode()3847         public override int GetHashCode() { throw null; }
3848     }
3849     [System.ComponentModel.DesignerAttribute("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
3850     [System.ComponentModel.DesignerCategoryAttribute("Component")]
3851     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ComponentConverter))]
3852     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3853     public partial class MarshalByValueComponent : System.ComponentModel.IComponent, System.IDisposable, System.IServiceProvider
3854     {
MarshalByValueComponent()3855         public MarshalByValueComponent() { }
3856         [System.ComponentModel.BrowsableAttribute(false)]
3857         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3858         public virtual System.ComponentModel.IContainer Container { get { throw null; } }
3859         [System.ComponentModel.BrowsableAttribute(false)]
3860         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3861         public virtual bool DesignMode { get { throw null; } }
3862         protected System.ComponentModel.EventHandlerList Events { get { throw null; } }
3863         [System.ComponentModel.BrowsableAttribute(false)]
3864         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3865         public virtual System.ComponentModel.ISite Site { get { throw null; } set { } }
3866         public event System.EventHandler Disposed { add { } remove { } }
Dispose()3867         public void Dispose() { }
Dispose(bool disposing)3868         protected virtual void Dispose(bool disposing) { }
~MarshalByValueComponent()3869         ~MarshalByValueComponent() { }
GetService(System.Type service)3870         public virtual object GetService(System.Type service) { throw null; }
ToString()3871         public override string ToString() { throw null; }
3872     }
3873     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3874     public partial class MaskedTextProvider : System.ICloneable
3875     {
MaskedTextProvider(string mask)3876         public MaskedTextProvider(string mask) { }
MaskedTextProvider(string mask, bool restrictToAscii)3877         public MaskedTextProvider(string mask, bool restrictToAscii) { }
MaskedTextProvider(string mask, char passwordChar, bool allowPromptAsInput)3878         public MaskedTextProvider(string mask, char passwordChar, bool allowPromptAsInput) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture)3879         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, bool restrictToAscii)3880         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, bool restrictToAscii) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, bool allowPromptAsInput, char promptChar, char passwordChar, bool restrictToAscii)3881         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, bool allowPromptAsInput, char promptChar, char passwordChar, bool restrictToAscii) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, char passwordChar, bool allowPromptAsInput)3882         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, char passwordChar, bool allowPromptAsInput) { }
3883         public bool AllowPromptAsInput { get { throw null; } }
3884         public bool AsciiOnly { get { throw null; } }
3885         public int AssignedEditPositionCount { get { throw null; } }
3886         public int AvailableEditPositionCount { get { throw null; } }
3887         public System.Globalization.CultureInfo Culture { get { throw null; } }
3888         public static char DefaultPasswordChar { get { throw null; } }
3889         public int EditPositionCount { get { throw null; } }
3890         public System.Collections.IEnumerator EditPositions { get { throw null; } }
3891         public bool IncludeLiterals { get { throw null; } set { } }
3892         public bool IncludePrompt { get { throw null; } set { } }
3893         public static int InvalidIndex { get { throw null; } }
3894         public bool IsPassword { get { throw null; } set { } }
3895         public char this[int index] { get { throw null; } }
3896         public int LastAssignedPosition { get { throw null; } }
3897         public int Length { get { throw null; } }
3898         public string Mask { get { throw null; } }
3899         public bool MaskCompleted { get { throw null; } }
3900         public bool MaskFull { get { throw null; } }
3901         public char PasswordChar { get { throw null; } set { } }
3902         public char PromptChar { get { throw null; } set { } }
3903         public bool ResetOnPrompt { get { throw null; } set { } }
3904         public bool ResetOnSpace { get { throw null; } set { } }
3905         public bool SkipLiterals { get { throw null; } set { } }
Add(char input)3906         public bool Add(char input) { throw null; }
Add(char input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3907         public bool Add(char input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Add(string input)3908         public bool Add(string input) { throw null; }
Add(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3909         public bool Add(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Clear()3910         public void Clear() { }
Clear(out System.ComponentModel.MaskedTextResultHint resultHint)3911         public void Clear(out System.ComponentModel.MaskedTextResultHint resultHint) { resultHint = default(System.ComponentModel.MaskedTextResultHint); }
Clone()3912         public object Clone() { throw null; }
FindAssignedEditPositionFrom(int position, bool direction)3913         public int FindAssignedEditPositionFrom(int position, bool direction) { throw null; }
FindAssignedEditPositionInRange(int startPosition, int endPosition, bool direction)3914         public int FindAssignedEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindEditPositionFrom(int position, bool direction)3915         public int FindEditPositionFrom(int position, bool direction) { throw null; }
FindEditPositionInRange(int startPosition, int endPosition, bool direction)3916         public int FindEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindNonEditPositionFrom(int position, bool direction)3917         public int FindNonEditPositionFrom(int position, bool direction) { throw null; }
FindNonEditPositionInRange(int startPosition, int endPosition, bool direction)3918         public int FindNonEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindUnassignedEditPositionFrom(int position, bool direction)3919         public int FindUnassignedEditPositionFrom(int position, bool direction) { throw null; }
FindUnassignedEditPositionInRange(int startPosition, int endPosition, bool direction)3920         public int FindUnassignedEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint hint)3921         public static bool GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint hint) { throw null; }
InsertAt(char input, int position)3922         public bool InsertAt(char input, int position) { throw null; }
InsertAt(char input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3923         public bool InsertAt(char input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
InsertAt(string input, int position)3924         public bool InsertAt(string input, int position) { throw null; }
InsertAt(string input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3925         public bool InsertAt(string input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
IsAvailablePosition(int position)3926         public bool IsAvailablePosition(int position) { throw null; }
IsEditPosition(int position)3927         public bool IsEditPosition(int position) { throw null; }
IsValidInputChar(char c)3928         public static bool IsValidInputChar(char c) { throw null; }
IsValidMaskChar(char c)3929         public static bool IsValidMaskChar(char c) { throw null; }
IsValidPasswordChar(char c)3930         public static bool IsValidPasswordChar(char c) { throw null; }
Remove()3931         public bool Remove() { throw null; }
Remove(out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3932         public bool Remove(out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
RemoveAt(int position)3933         public bool RemoveAt(int position) { throw null; }
RemoveAt(int startPosition, int endPosition)3934         public bool RemoveAt(int startPosition, int endPosition) { throw null; }
RemoveAt(int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3935         public bool RemoveAt(int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Replace(char input, int position)3936         public bool Replace(char input, int position) { throw null; }
Replace(char input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3937         public bool Replace(char input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Replace(char input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3938         public bool Replace(char input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Replace(string input, int position)3939         public bool Replace(string input, int position) { throw null; }
Replace(string input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3940         public bool Replace(string input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Replace(string input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3941         public bool Replace(string input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Set(string input)3942         public bool Set(string input) { throw null; }
Set(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3943         public bool Set(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
ToDisplayString()3944         public string ToDisplayString() { throw null; }
ToString()3945         public override string ToString() { throw null; }
ToString(bool ignorePasswordChar)3946         public string ToString(bool ignorePasswordChar) { throw null; }
ToString(bool includePrompt, bool includeLiterals)3947         public string ToString(bool includePrompt, bool includeLiterals) { throw null; }
ToString(bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int startPosition, int length)3948         public string ToString(bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int startPosition, int length) { throw null; }
ToString(bool includePrompt, bool includeLiterals, int startPosition, int length)3949         public string ToString(bool includePrompt, bool includeLiterals, int startPosition, int length) { throw null; }
ToString(bool ignorePasswordChar, int startPosition, int length)3950         public string ToString(bool ignorePasswordChar, int startPosition, int length) { throw null; }
ToString(int startPosition, int length)3951         public string ToString(int startPosition, int length) { throw null; }
VerifyChar(char input, int position, out System.ComponentModel.MaskedTextResultHint hint)3952         public bool VerifyChar(char input, int position, out System.ComponentModel.MaskedTextResultHint hint) { hint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
VerifyEscapeChar(char input, int position)3953         public bool VerifyEscapeChar(char input, int position) { throw null; }
VerifyString(string input)3954         public bool VerifyString(string input) { throw null; }
VerifyString(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)3955         public bool VerifyString(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
3956     }
3957     public enum MaskedTextResultHint
3958     {
3959         AlphanumericCharacterExpected = -2,
3960         AsciiCharacterExpected = -1,
3961         CharacterEscaped = 1,
3962         DigitExpected = -3,
3963         InvalidInput = -51,
3964         LetterExpected = -4,
3965         NoEffect = 2,
3966         NonEditPosition = -54,
3967         PositionOutOfRange = -55,
3968         PromptCharNotAllowed = -52,
3969         SideEffect = 3,
3970         SignedDigitExpected = -5,
3971         Success = 4,
3972         UnavailableEditPosition = -53,
3973         Unknown = 0,
3974     }
3975     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3976     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3977     public abstract partial class MemberDescriptor
3978     {
MemberDescriptor(System.ComponentModel.MemberDescriptor descr)3979         protected MemberDescriptor(System.ComponentModel.MemberDescriptor descr) { }
MemberDescriptor(System.ComponentModel.MemberDescriptor oldMemberDescriptor, System.Attribute[] newAttributes)3980         protected MemberDescriptor(System.ComponentModel.MemberDescriptor oldMemberDescriptor, System.Attribute[] newAttributes) { }
MemberDescriptor(string name)3981         protected MemberDescriptor(string name) { }
MemberDescriptor(string name, System.Attribute[] attributes)3982         protected MemberDescriptor(string name, System.Attribute[] attributes) { }
3983         protected virtual System.Attribute[] AttributeArray { get { throw null; } set { } }
3984         public virtual System.ComponentModel.AttributeCollection Attributes { get { throw null; } }
3985         public virtual string Category { get { throw null; } }
3986         public virtual string Description { get { throw null; } }
3987         public virtual bool DesignTimeOnly { get { throw null; } }
3988         public virtual string DisplayName { get { throw null; } }
3989         public virtual bool IsBrowsable { get { throw null; } }
3990         public virtual string Name { get { throw null; } }
3991         protected virtual int NameHashCode { get { throw null; } }
CreateAttributeCollection()3992         protected virtual System.ComponentModel.AttributeCollection CreateAttributeCollection() { throw null; }
Equals(object obj)3993         public override bool Equals(object obj) { throw null; }
FillAttributes(System.Collections.IList attributeList)3994         protected virtual void FillAttributes(System.Collections.IList attributeList) { }
FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType)3995         protected static System.Reflection.MethodInfo FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType) { throw null; }
FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType, bool publicOnly)3996         protected static System.Reflection.MethodInfo FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType, bool publicOnly) { throw null; }
GetHashCode()3997         public override int GetHashCode() { throw null; }
GetInvocationTarget(System.Type type, object instance)3998         protected virtual object GetInvocationTarget(System.Type type, object instance) { throw null; }
3999         [System.ObsoleteAttribute("This method has been deprecated. Use GetInvocationTarget instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
GetInvokee(System.Type componentClass, object component)4000         protected static object GetInvokee(System.Type componentClass, object component) { throw null; }
GetSite(object component)4001         protected static System.ComponentModel.ISite GetSite(object component) { throw null; }
4002     }
4003     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4004     public sealed partial class MergablePropertyAttribute : System.Attribute
4005     {
4006         public static readonly System.ComponentModel.MergablePropertyAttribute Default;
4007         public static readonly System.ComponentModel.MergablePropertyAttribute No;
4008         public static readonly System.ComponentModel.MergablePropertyAttribute Yes;
MergablePropertyAttribute(bool allowMerge)4009         public MergablePropertyAttribute(bool allowMerge) { }
4010         public bool AllowMerge { get { throw null; } }
Equals(object obj)4011         public override bool Equals(object obj) { throw null; }
GetHashCode()4012         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4013         public override bool IsDefaultAttribute() { throw null; }
4014     }
4015     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4016     public partial class MultilineStringConverter : System.ComponentModel.TypeConverter
4017     {
MultilineStringConverter()4018         public MultilineStringConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4019         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)4020         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)4021         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
4022     }
4023     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4024     public partial class NestedContainer : System.ComponentModel.Container, System.ComponentModel.IContainer, System.ComponentModel.INestedContainer, System.IDisposable
4025     {
NestedContainer(System.ComponentModel.IComponent owner)4026         public NestedContainer(System.ComponentModel.IComponent owner) { }
4027         public System.ComponentModel.IComponent Owner { get { throw null; } }
4028         protected virtual string OwnerName { get { throw null; } }
CreateSite(System.ComponentModel.IComponent component, string name)4029         protected override System.ComponentModel.ISite CreateSite(System.ComponentModel.IComponent component, string name) { throw null; }
Dispose(bool disposing)4030         protected override void Dispose(bool disposing) { }
GetService(System.Type service)4031         protected override object GetService(System.Type service) { throw null; }
4032     }
4033     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4034     public sealed partial class NotifyParentPropertyAttribute : System.Attribute
4035     {
4036         public static readonly System.ComponentModel.NotifyParentPropertyAttribute Default;
4037         public static readonly System.ComponentModel.NotifyParentPropertyAttribute No;
4038         public static readonly System.ComponentModel.NotifyParentPropertyAttribute Yes;
NotifyParentPropertyAttribute(bool notifyParent)4039         public NotifyParentPropertyAttribute(bool notifyParent) { }
4040         public bool NotifyParent { get { throw null; } }
Equals(object obj)4041         public override bool Equals(object obj) { throw null; }
GetHashCode()4042         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4043         public override bool IsDefaultAttribute() { throw null; }
4044     }
4045     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4046     public partial class NullableConverter : System.ComponentModel.TypeConverter
4047     {
NullableConverter(System.Type type)4048         public NullableConverter(System.Type type) { }
4049         public System.Type NullableType { get { throw null; } }
4050         public System.Type UnderlyingType { get { throw null; } }
4051         public System.ComponentModel.TypeConverter UnderlyingTypeConverter { get { throw null; } }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4052         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4053         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4054         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4055         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues)4056         public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)4057         public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)4058         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)4059         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4060         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4061         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4062         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)4063         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
4064     }
4065     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4066     public sealed partial class ParenthesizePropertyNameAttribute : System.Attribute
4067     {
4068         public static readonly System.ComponentModel.ParenthesizePropertyNameAttribute Default;
ParenthesizePropertyNameAttribute()4069         public ParenthesizePropertyNameAttribute() { }
ParenthesizePropertyNameAttribute(bool needParenthesis)4070         public ParenthesizePropertyNameAttribute(bool needParenthesis) { }
4071         public bool NeedParenthesis { get { throw null; } }
Equals(object o)4072         public override bool Equals(object o) { throw null; }
GetHashCode()4073         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4074         public override bool IsDefaultAttribute() { throw null; }
4075     }
4076     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4077     public sealed partial class PasswordPropertyTextAttribute : System.Attribute
4078     {
4079         public static readonly System.ComponentModel.PasswordPropertyTextAttribute Default;
4080         public static readonly System.ComponentModel.PasswordPropertyTextAttribute No;
4081         public static readonly System.ComponentModel.PasswordPropertyTextAttribute Yes;
PasswordPropertyTextAttribute()4082         public PasswordPropertyTextAttribute() { }
PasswordPropertyTextAttribute(bool password)4083         public PasswordPropertyTextAttribute(bool password) { }
4084         public bool Password { get { throw null; } }
Equals(object o)4085         public override bool Equals(object o) { throw null; }
GetHashCode()4086         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4087         public override bool IsDefaultAttribute() { throw null; }
4088     }
4089     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4090     public partial class ProgressChangedEventArgs : System.EventArgs
4091     {
ProgressChangedEventArgs(int progressPercentage, object userState)4092         public ProgressChangedEventArgs(int progressPercentage, object userState) { }
4093         public int ProgressPercentage { get { throw null; } }
4094         public object UserState { get { throw null; } }
4095     }
4096     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ProgressChangedEventHandler(object sender, System.ComponentModel.ProgressChangedEventArgs e)4097     public delegate void ProgressChangedEventHandler(object sender, System.ComponentModel.ProgressChangedEventArgs e);
4098     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4099     public partial class PropertyChangedEventArgs : System.EventArgs
4100     {
PropertyChangedEventArgs(string propertyName)4101         public PropertyChangedEventArgs(string propertyName) { }
4102         public virtual string PropertyName { get { throw null; } }
4103     }
4104     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
PropertyChangedEventHandler(object sender, System.ComponentModel.PropertyChangedEventArgs e)4105     public delegate void PropertyChangedEventHandler(object sender, System.ComponentModel.PropertyChangedEventArgs e);
4106     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4107     public partial class PropertyChangingEventArgs : System.EventArgs
4108     {
PropertyChangingEventArgs(string propertyName)4109         public PropertyChangingEventArgs(string propertyName) { }
4110         public virtual string PropertyName { get { throw null; } }
4111     }
4112     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
PropertyChangingEventHandler(object sender, System.ComponentModel.PropertyChangingEventArgs e)4113     public delegate void PropertyChangingEventHandler(object sender, System.ComponentModel.PropertyChangingEventArgs e);
4114     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4115     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4116     public abstract partial class PropertyDescriptor : System.ComponentModel.MemberDescriptor
4117     {
PropertyDescriptor(System.ComponentModel.MemberDescriptor descr)4118         protected PropertyDescriptor(System.ComponentModel.MemberDescriptor descr) : base (default(string)) { }
PropertyDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs)4119         protected PropertyDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs) : base (default(string)) { }
PropertyDescriptor(string name, System.Attribute[] attrs)4120         protected PropertyDescriptor(string name, System.Attribute[] attrs) : base (default(string)) { }
4121         public abstract System.Type ComponentType { get; }
4122         public virtual System.ComponentModel.TypeConverter Converter { get { throw null; } }
4123         public virtual bool IsLocalizable { get { throw null; } }
4124         public abstract bool IsReadOnly { get; }
4125         public abstract System.Type PropertyType { get; }
4126         public System.ComponentModel.DesignerSerializationVisibility SerializationVisibility { get { throw null; } }
4127         public virtual bool SupportsChangeEvents { get { throw null; } }
AddValueChanged(object component, System.EventHandler handler)4128         public virtual void AddValueChanged(object component, System.EventHandler handler) { }
CanResetValue(object component)4129         public abstract bool CanResetValue(object component);
CreateInstance(System.Type type)4130         protected object CreateInstance(System.Type type) { throw null; }
Equals(object obj)4131         public override bool Equals(object obj) { throw null; }
FillAttributes(System.Collections.IList attributeList)4132         protected override void FillAttributes(System.Collections.IList attributeList) { }
GetChildProperties()4133         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties() { throw null; }
GetChildProperties(System.Attribute[] filter)4134         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties(System.Attribute[] filter) { throw null; }
GetChildProperties(object instance)4135         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties(object instance) { throw null; }
GetChildProperties(object instance, System.Attribute[] filter)4136         public virtual System.ComponentModel.PropertyDescriptorCollection GetChildProperties(object instance, System.Attribute[] filter) { throw null; }
GetEditor(System.Type editorBaseType)4137         public virtual object GetEditor(System.Type editorBaseType) { throw null; }
GetHashCode()4138         public override int GetHashCode() { throw null; }
GetInvocationTarget(System.Type type, object instance)4139         protected override object GetInvocationTarget(System.Type type, object instance) { throw null; }
GetTypeFromName(string typeName)4140         protected System.Type GetTypeFromName(string typeName) { throw null; }
GetValue(object component)4141         public abstract object GetValue(object component);
GetValueChangedHandler(object component)4142         protected internal System.EventHandler GetValueChangedHandler(object component) { throw null; }
OnValueChanged(object component, System.EventArgs e)4143         protected virtual void OnValueChanged(object component, System.EventArgs e) { }
RemoveValueChanged(object component, System.EventHandler handler)4144         public virtual void RemoveValueChanged(object component, System.EventHandler handler) { }
ResetValue(object component)4145         public abstract void ResetValue(object component);
SetValue(object component, object value)4146         public abstract void SetValue(object component, object value);
ShouldSerializeValue(object component)4147         public abstract bool ShouldSerializeValue(object component);
4148     }
4149     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
4150     public partial class PropertyDescriptorCollection : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.Collections.IList
4151     {
4152         public static readonly System.ComponentModel.PropertyDescriptorCollection Empty;
PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties)4153         public PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties) { }
PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties, bool readOnly)4154         public PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties, bool readOnly) { }
4155         public int Count { get { throw null; } }
4156         public virtual System.ComponentModel.PropertyDescriptor this[int index] { get { throw null; } }
4157         public virtual System.ComponentModel.PropertyDescriptor this[string name] { get { throw null; } }
4158         int System.Collections.ICollection.Count { get { throw null; } }
4159         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4160         object System.Collections.ICollection.SyncRoot { get { throw null; } }
4161         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
4162         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
4163         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
4164         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
4165         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
4166         bool System.Collections.IList.IsFixedSize { get { throw null; } }
4167         bool System.Collections.IList.IsReadOnly { get { throw null; } }
4168         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.PropertyDescriptor value)4169         public int Add(System.ComponentModel.PropertyDescriptor value) { throw null; }
Clear()4170         public void Clear() { }
Contains(System.ComponentModel.PropertyDescriptor value)4171         public bool Contains(System.ComponentModel.PropertyDescriptor value) { throw null; }
CopyTo(System.Array array, int index)4172         public void CopyTo(System.Array array, int index) { }
Find(string name, bool ignoreCase)4173         public virtual System.ComponentModel.PropertyDescriptor Find(string name, bool ignoreCase) { throw null; }
GetEnumerator()4174         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.PropertyDescriptor value)4175         public int IndexOf(System.ComponentModel.PropertyDescriptor value) { throw null; }
Insert(int index, System.ComponentModel.PropertyDescriptor value)4176         public void Insert(int index, System.ComponentModel.PropertyDescriptor value) { }
InternalSort(System.Collections.IComparer sorter)4177         protected void InternalSort(System.Collections.IComparer sorter) { }
InternalSort(string[] names)4178         protected void InternalSort(string[] names) { }
Remove(System.ComponentModel.PropertyDescriptor value)4179         public void Remove(System.ComponentModel.PropertyDescriptor value) { }
RemoveAt(int index)4180         public void RemoveAt(int index) { }
Sort()4181         public virtual System.ComponentModel.PropertyDescriptorCollection Sort() { throw null; }
Sort(System.Collections.IComparer comparer)4182         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(System.Collections.IComparer comparer) { throw null; }
Sort(string[] names)4183         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(string[] names) { throw null; }
Sort(string[] names, System.Collections.IComparer comparer)4184         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(string[] names, System.Collections.IComparer comparer) { throw null; }
System.Collections.IDictionary.Add(object key, object value)4185         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Clear()4186         void System.Collections.IDictionary.Clear() { }
System.Collections.IDictionary.Contains(object key)4187         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()4188         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)4189         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()4190         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)4191         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()4192         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)4193         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)4194         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)4195         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)4196         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)4197         void System.Collections.IList.RemoveAt(int index) { }
4198     }
4199     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4200     public partial class PropertyTabAttribute : System.Attribute
4201     {
PropertyTabAttribute()4202         public PropertyTabAttribute() { }
PropertyTabAttribute(string tabClassName)4203         public PropertyTabAttribute(string tabClassName) { }
PropertyTabAttribute(string tabClassName, System.ComponentModel.PropertyTabScope tabScope)4204         public PropertyTabAttribute(string tabClassName, System.ComponentModel.PropertyTabScope tabScope) { }
PropertyTabAttribute(System.Type tabClass)4205         public PropertyTabAttribute(System.Type tabClass) { }
PropertyTabAttribute(System.Type tabClass, System.ComponentModel.PropertyTabScope tabScope)4206         public PropertyTabAttribute(System.Type tabClass, System.ComponentModel.PropertyTabScope tabScope) { }
4207         public System.Type[] TabClasses { get { throw null; } }
4208         protected string[] TabClassNames { get { throw null; } }
4209         public System.ComponentModel.PropertyTabScope[] TabScopes { get { throw null; } }
Equals(System.ComponentModel.PropertyTabAttribute other)4210         public bool Equals(System.ComponentModel.PropertyTabAttribute other) { throw null; }
Equals(object other)4211         public override bool Equals(object other) { throw null; }
GetHashCode()4212         public override int GetHashCode() { throw null; }
InitializeArrays(string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes)4213         protected void InitializeArrays(string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes) { }
InitializeArrays(System.Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes)4214         protected void InitializeArrays(System.Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes) { }
4215     }
4216     public enum PropertyTabScope
4217     {
4218         Component = 3,
4219         Document = 2,
4220         Global = 1,
4221         Static = 0,
4222     }
4223     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true)]
4224     public sealed partial class ProvidePropertyAttribute : System.Attribute
4225     {
ProvidePropertyAttribute(string propertyName, string receiverTypeName)4226         public ProvidePropertyAttribute(string propertyName, string receiverTypeName) { }
ProvidePropertyAttribute(string propertyName, System.Type receiverType)4227         public ProvidePropertyAttribute(string propertyName, System.Type receiverType) { }
4228         public string PropertyName { get { throw null; } }
4229         public string ReceiverTypeName { get { throw null; } }
4230         public override object TypeId { get { throw null; } }
Equals(object obj)4231         public override bool Equals(object obj) { throw null; }
GetHashCode()4232         public override int GetHashCode() { throw null; }
4233     }
4234     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4235     public sealed partial class ReadOnlyAttribute : System.Attribute
4236     {
4237         public static readonly System.ComponentModel.ReadOnlyAttribute Default;
4238         public static readonly System.ComponentModel.ReadOnlyAttribute No;
4239         public static readonly System.ComponentModel.ReadOnlyAttribute Yes;
ReadOnlyAttribute(bool isReadOnly)4240         public ReadOnlyAttribute(bool isReadOnly) { }
4241         public bool IsReadOnly { get { throw null; } }
Equals(object value)4242         public override bool Equals(object value) { throw null; }
GetHashCode()4243         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4244         public override bool IsDefaultAttribute() { throw null; }
4245     }
4246     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4247     [System.ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
4248     public partial class RecommendedAsConfigurableAttribute : System.Attribute
4249     {
4250         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute Default;
4251         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute No;
4252         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute Yes;
RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable)4253         public RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable) { }
4254         public bool RecommendedAsConfigurable { get { throw null; } }
Equals(object obj)4255         public override bool Equals(object obj) { throw null; }
GetHashCode()4256         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4257         public override bool IsDefaultAttribute() { throw null; }
4258     }
4259     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4260     public partial class ReferenceConverter : System.ComponentModel.TypeConverter
4261     {
ReferenceConverter(System.Type type)4262         public ReferenceConverter(System.Type type) { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4263         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4264         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4265         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4266         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4267         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4268         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValueAllowed(System.ComponentModel.ITypeDescriptorContext context, object value)4269         protected virtual bool IsValueAllowed(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
4270     }
4271     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4272     public partial class RefreshEventArgs : System.EventArgs
4273     {
RefreshEventArgs(object componentChanged)4274         public RefreshEventArgs(object componentChanged) { }
RefreshEventArgs(System.Type typeChanged)4275         public RefreshEventArgs(System.Type typeChanged) { }
4276         public object ComponentChanged { get { throw null; } }
4277         public System.Type TypeChanged { get { throw null; } }
4278     }
4279     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
RefreshEventHandler(System.ComponentModel.RefreshEventArgs e)4280     public delegate void RefreshEventHandler(System.ComponentModel.RefreshEventArgs e);
4281     public enum RefreshProperties
4282     {
4283         All = 1,
4284         None = 0,
4285         Repaint = 2,
4286     }
4287     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4288     public sealed partial class RefreshPropertiesAttribute : System.Attribute
4289     {
4290         public static readonly System.ComponentModel.RefreshPropertiesAttribute All;
4291         public static readonly System.ComponentModel.RefreshPropertiesAttribute Default;
4292         public static readonly System.ComponentModel.RefreshPropertiesAttribute Repaint;
RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties refresh)4293         public RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties refresh) { }
4294         public System.ComponentModel.RefreshProperties RefreshProperties { get { throw null; } }
Equals(object value)4295         public override bool Equals(object value) { throw null; }
GetHashCode()4296         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4297         public override bool IsDefaultAttribute() { throw null; }
4298     }
4299     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
4300     public partial class RunInstallerAttribute : System.Attribute
4301     {
4302         public static readonly System.ComponentModel.RunInstallerAttribute Default;
4303         public static readonly System.ComponentModel.RunInstallerAttribute No;
4304         public static readonly System.ComponentModel.RunInstallerAttribute Yes;
RunInstallerAttribute(bool runInstaller)4305         public RunInstallerAttribute(bool runInstaller) { }
4306         public bool RunInstaller { get { throw null; } }
Equals(object obj)4307         public override bool Equals(object obj) { throw null; }
GetHashCode()4308         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4309         public override bool IsDefaultAttribute() { throw null; }
4310     }
4311     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4312     public partial class RunWorkerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
4313     {
RunWorkerCompletedEventArgs(object result, System.Exception error, bool cancelled)4314         public RunWorkerCompletedEventArgs(object result, System.Exception error, bool cancelled) : base (default(System.Exception), default(bool), default(object)) { }
4315         public object Result { get { throw null; } }
4316         [System.ComponentModel.BrowsableAttribute(false)]
4317         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4318         public new object UserState { get { throw null; } }
4319     }
4320     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
RunWorkerCompletedEventHandler(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)4321     public delegate void RunWorkerCompletedEventHandler(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e);
4322     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4323     public partial class SByteConverter : System.ComponentModel.BaseNumberConverter
4324     {
SByteConverter()4325         public SByteConverter() { }
4326     }
4327     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4328     public sealed partial class SettingsBindableAttribute : System.Attribute
4329     {
4330         public static readonly System.ComponentModel.SettingsBindableAttribute No;
4331         public static readonly System.ComponentModel.SettingsBindableAttribute Yes;
SettingsBindableAttribute(bool bindable)4332         public SettingsBindableAttribute(bool bindable) { }
4333         public bool Bindable { get { throw null; } }
Equals(object obj)4334         public override bool Equals(object obj) { throw null; }
GetHashCode()4335         public override int GetHashCode() { throw null; }
4336     }
4337     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4338     public partial class SingleConverter : System.ComponentModel.BaseNumberConverter
4339     {
SingleConverter()4340         public SingleConverter() { }
4341     }
4342     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4343     public partial class StringConverter : System.ComponentModel.TypeConverter
4344     {
StringConverter()4345         public StringConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4346         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4347         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
4348     }
4349     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4350     public static partial class SyntaxCheck
4351     {
CheckMachineName(string value)4352         public static bool CheckMachineName(string value) { throw null; }
CheckPath(string value)4353         public static bool CheckPath(string value) { throw null; }
CheckRootedPath(string value)4354         public static bool CheckRootedPath(string value) { throw null; }
4355     }
4356     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4357     public partial class TimeSpanConverter : System.ComponentModel.TypeConverter
4358     {
TimeSpanConverter()4359         public TimeSpanConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4360         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4361         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4362         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4363         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
4364     }
4365     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4366     public partial class ToolboxItemAttribute : System.Attribute
4367     {
4368         public static readonly System.ComponentModel.ToolboxItemAttribute Default;
4369         public static readonly System.ComponentModel.ToolboxItemAttribute None;
ToolboxItemAttribute(bool defaultType)4370         public ToolboxItemAttribute(bool defaultType) { }
ToolboxItemAttribute(string toolboxItemTypeName)4371         public ToolboxItemAttribute(string toolboxItemTypeName) { }
ToolboxItemAttribute(System.Type toolboxItemType)4372         public ToolboxItemAttribute(System.Type toolboxItemType) { }
4373         public System.Type ToolboxItemType { get { throw null; } }
4374         public string ToolboxItemTypeName { get { throw null; } }
Equals(object obj)4375         public override bool Equals(object obj) { throw null; }
GetHashCode()4376         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4377         public override bool IsDefaultAttribute() { throw null; }
4378     }
4379     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true, Inherited=true)]
4380     [System.SerializableAttribute]
4381     public sealed partial class ToolboxItemFilterAttribute : System.Attribute
4382     {
ToolboxItemFilterAttribute(string filterString)4383         public ToolboxItemFilterAttribute(string filterString) { }
ToolboxItemFilterAttribute(string filterString, System.ComponentModel.ToolboxItemFilterType filterType)4384         public ToolboxItemFilterAttribute(string filterString, System.ComponentModel.ToolboxItemFilterType filterType) { }
4385         public string FilterString { get { throw null; } }
4386         public System.ComponentModel.ToolboxItemFilterType FilterType { get { throw null; } }
4387         public override object TypeId { get { throw null; } }
Equals(object obj)4388         public override bool Equals(object obj) { throw null; }
GetHashCode()4389         public override int GetHashCode() { throw null; }
Match(object obj)4390         public override bool Match(object obj) { throw null; }
ToString()4391         public override string ToString() { throw null; }
4392     }
4393     public enum ToolboxItemFilterType
4394     {
4395         Allow = 0,
4396         Custom = 1,
4397         Prevent = 2,
4398         Require = 3,
4399     }
4400     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4401     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4402     public partial class TypeConverter
4403     {
TypeConverter()4404         public TypeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4405         public virtual bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertFrom(System.Type sourceType)4406         public bool CanConvertFrom(System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4407         public virtual bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
CanConvertTo(System.Type destinationType)4408         public bool CanConvertTo(System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4409         public virtual object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertFrom(object value)4410         public object ConvertFrom(object value) { throw null; }
ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext context, string text)4411         public object ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext context, string text) { throw null; }
ConvertFromInvariantString(string text)4412         public object ConvertFromInvariantString(string text) { throw null; }
ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text)4413         public object ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text) { throw null; }
ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, string text)4414         public object ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, string text) { throw null; }
ConvertFromString(string text)4415         public object ConvertFromString(string text) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4416         public virtual object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
ConvertTo(object value, System.Type destinationType)4417         public object ConvertTo(object value, System.Type destinationType) { throw null; }
ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext context, object value)4418         public string ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
ConvertToInvariantString(object value)4419         public string ConvertToInvariantString(object value) { throw null; }
ConvertToString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4420         public string ConvertToString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertToString(System.ComponentModel.ITypeDescriptorContext context, object value)4421         public string ConvertToString(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
ConvertToString(object value)4422         public string ConvertToString(object value) { throw null; }
CreateInstance(System.Collections.IDictionary propertyValues)4423         public object CreateInstance(System.Collections.IDictionary propertyValues) { throw null; }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues)4424         public virtual object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
GetConvertFromException(object value)4425         protected System.Exception GetConvertFromException(object value) { throw null; }
GetConvertToException(object value, System.Type destinationType)4426         protected System.Exception GetConvertToException(object value, System.Type destinationType) { throw null; }
GetCreateInstanceSupported()4427         public bool GetCreateInstanceSupported() { throw null; }
GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)4428         public virtual bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value)4429         public System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)4430         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetProperties(object value)4431         public System.ComponentModel.PropertyDescriptorCollection GetProperties(object value) { throw null; }
GetPropertiesSupported()4432         public bool GetPropertiesSupported() { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)4433         public virtual bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValues()4434         public System.Collections.ICollection GetStandardValues() { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4435         public virtual System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive()4436         public bool GetStandardValuesExclusive() { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4437         public virtual bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported()4438         public bool GetStandardValuesSupported() { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4439         public virtual bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)4440         public virtual bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
IsValid(object value)4441         public bool IsValid(object value) { throw null; }
SortProperties(System.ComponentModel.PropertyDescriptorCollection props, string[] names)4442         protected System.ComponentModel.PropertyDescriptorCollection SortProperties(System.ComponentModel.PropertyDescriptorCollection props, string[] names) { throw null; }
4443         protected abstract partial class SimplePropertyDescriptor : System.ComponentModel.PropertyDescriptor
4444         {
SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType)4445             protected SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType) : base (default(string), default(System.Attribute[])) { }
SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType, System.Attribute[] attributes)4446             protected SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType, System.Attribute[] attributes) : base (default(string), default(System.Attribute[])) { }
4447             public override System.Type ComponentType { get { throw null; } }
4448             public override bool IsReadOnly { get { throw null; } }
4449             public override System.Type PropertyType { get { throw null; } }
CanResetValue(object component)4450             public override bool CanResetValue(object component) { throw null; }
ResetValue(object component)4451             public override void ResetValue(object component) { }
ShouldSerializeValue(object component)4452             public override bool ShouldSerializeValue(object component) { throw null; }
4453         }
4454         public partial class StandardValuesCollection : System.Collections.ICollection, System.Collections.IEnumerable
4455         {
StandardValuesCollection(System.Collections.ICollection values)4456             public StandardValuesCollection(System.Collections.ICollection values) { }
4457             public int Count { get { throw null; } }
4458             public object this[int index] { get { throw null; } }
4459             int System.Collections.ICollection.Count { get { throw null; } }
4460             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4461             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)4462             public void CopyTo(System.Array array, int index) { }
GetEnumerator()4463             public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)4464             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()4465             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
4466         }
4467     }
4468     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4469     public sealed partial class TypeConverterAttribute : System.Attribute
4470     {
4471         public static readonly System.ComponentModel.TypeConverterAttribute Default;
TypeConverterAttribute()4472         public TypeConverterAttribute() { }
TypeConverterAttribute(string typeName)4473         public TypeConverterAttribute(string typeName) { }
TypeConverterAttribute(System.Type type)4474         public TypeConverterAttribute(System.Type type) { }
4475         public string ConverterTypeName { get { throw null; } }
Equals(object obj)4476         public override bool Equals(object obj) { throw null; }
GetHashCode()4477         public override int GetHashCode() { throw null; }
4478     }
4479     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4480     public abstract partial class TypeDescriptionProvider
4481     {
TypeDescriptionProvider()4482         protected TypeDescriptionProvider() { }
TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider parent)4483         protected TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider parent) { }
CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args)4484         public virtual object CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args) { throw null; }
GetCache(object instance)4485         public virtual System.Collections.IDictionary GetCache(object instance) { throw null; }
GetExtendedTypeDescriptor(object instance)4486         public virtual System.ComponentModel.ICustomTypeDescriptor GetExtendedTypeDescriptor(object instance) { throw null; }
GetExtenderProviders(object instance)4487         protected internal virtual System.ComponentModel.IExtenderProvider[] GetExtenderProviders(object instance) { throw null; }
GetFullComponentName(object component)4488         public virtual string GetFullComponentName(object component) { throw null; }
GetReflectionType(object instance)4489         public System.Type GetReflectionType(object instance) { throw null; }
GetReflectionType(System.Type objectType)4490         public System.Type GetReflectionType(System.Type objectType) { throw null; }
GetReflectionType(System.Type objectType, object instance)4491         public virtual System.Type GetReflectionType(System.Type objectType, object instance) { throw null; }
GetRuntimeType(System.Type reflectionType)4492         public virtual System.Type GetRuntimeType(System.Type reflectionType) { throw null; }
GetTypeDescriptor(object instance)4493         public System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(object instance) { throw null; }
GetTypeDescriptor(System.Type objectType)4494         public System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType) { throw null; }
GetTypeDescriptor(System.Type objectType, object instance)4495         public virtual System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType, object instance) { throw null; }
IsSupportedType(System.Type type)4496         public virtual bool IsSupportedType(System.Type type) { throw null; }
4497     }
4498     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=true)]
4499     public sealed partial class TypeDescriptionProviderAttribute : System.Attribute
4500     {
TypeDescriptionProviderAttribute(string typeName)4501         public TypeDescriptionProviderAttribute(string typeName) { }
TypeDescriptionProviderAttribute(System.Type type)4502         public TypeDescriptionProviderAttribute(System.Type type) { }
4503         public string TypeName { get { throw null; } }
4504     }
4505     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4506     public sealed partial class TypeDescriptor
4507     {
TypeDescriptor()4508         internal TypeDescriptor() { }
4509         [System.ObsoleteAttribute("This property has been deprecated.  Use a type description provider to supply type information for COM types instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
4510         public static System.ComponentModel.IComNativeDescriptorHandler ComNativeDescriptorHandler { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]get { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
4511         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4512         public static System.Type ComObjectType { get { throw null; } }
4513         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4514         public static System.Type InterfaceType { get { throw null; } }
4515         public static event System.ComponentModel.RefreshEventHandler Refreshed { add { } remove { } }
4516         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4517         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddAttributes(object instance, params System.Attribute[] attributes)4518         public static System.ComponentModel.TypeDescriptionProvider AddAttributes(object instance, params System.Attribute[] attributes) { throw null; }
4519         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4520         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddAttributes(System.Type type, params System.Attribute[] attributes)4521         public static System.ComponentModel.TypeDescriptionProvider AddAttributes(System.Type type, params System.Attribute[] attributes) { throw null; }
4522         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddEditorTable(System.Type editorBaseType, System.Collections.Hashtable table)4523         public static void AddEditorTable(System.Type editorBaseType, System.Collections.Hashtable table) { }
4524         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4525         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance)4526         public static void AddProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4527         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4528         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4529         public static void AddProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
4530         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance)4531         public static void AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4532         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4533         public static void AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
4534         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4535         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CreateAssociation(object primary, object secondary)4536         public static void CreateAssociation(object primary, object secondary) { }
CreateDesigner(System.ComponentModel.IComponent component, System.Type designerBaseType)4537         public static System.ComponentModel.Design.IDesigner CreateDesigner(System.ComponentModel.IComponent component, System.Type designerBaseType) { throw null; }
4538         [System.Security.Permissions.ReflectionPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.ReflectionPermissionFlag)(2))]
CreateEvent(System.Type componentType, System.ComponentModel.EventDescriptor oldEventDescriptor, params System.Attribute[] attributes)4539         public static System.ComponentModel.EventDescriptor CreateEvent(System.Type componentType, System.ComponentModel.EventDescriptor oldEventDescriptor, params System.Attribute[] attributes) { throw null; }
4540         [System.Security.Permissions.ReflectionPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.ReflectionPermissionFlag)(2))]
CreateEvent(System.Type componentType, string name, System.Type type, params System.Attribute[] attributes)4541         public static System.ComponentModel.EventDescriptor CreateEvent(System.Type componentType, string name, System.Type type, params System.Attribute[] attributes) { throw null; }
CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args)4542         public static object CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args) { throw null; }
4543         [System.Security.Permissions.ReflectionPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.ReflectionPermissionFlag)(2))]
CreateProperty(System.Type componentType, System.ComponentModel.PropertyDescriptor oldPropertyDescriptor, params System.Attribute[] attributes)4544         public static System.ComponentModel.PropertyDescriptor CreateProperty(System.Type componentType, System.ComponentModel.PropertyDescriptor oldPropertyDescriptor, params System.Attribute[] attributes) { throw null; }
4545         [System.Security.Permissions.ReflectionPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.ReflectionPermissionFlag)(2))]
CreateProperty(System.Type componentType, string name, System.Type type, params System.Attribute[] attributes)4546         public static System.ComponentModel.PropertyDescriptor CreateProperty(System.Type componentType, string name, System.Type type, params System.Attribute[] attributes) { throw null; }
4547         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetAssociation(System.Type type, object primary)4548         public static object GetAssociation(System.Type type, object primary) { throw null; }
GetAttributes(object component)4549         public static System.ComponentModel.AttributeCollection GetAttributes(object component) { throw null; }
4550         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetAttributes(object component, bool noCustomTypeDesc)4551         public static System.ComponentModel.AttributeCollection GetAttributes(object component, bool noCustomTypeDesc) { throw null; }
GetAttributes(System.Type componentType)4552         public static System.ComponentModel.AttributeCollection GetAttributes(System.Type componentType) { throw null; }
GetClassName(object component)4553         public static string GetClassName(object component) { throw null; }
4554         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetClassName(object component, bool noCustomTypeDesc)4555         public static string GetClassName(object component, bool noCustomTypeDesc) { throw null; }
GetClassName(System.Type componentType)4556         public static string GetClassName(System.Type componentType) { throw null; }
GetComponentName(object component)4557         public static string GetComponentName(object component) { throw null; }
4558         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetComponentName(object component, bool noCustomTypeDesc)4559         public static string GetComponentName(object component, bool noCustomTypeDesc) { throw null; }
GetConverter(object component)4560         public static System.ComponentModel.TypeConverter GetConverter(object component) { throw null; }
4561         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetConverter(object component, bool noCustomTypeDesc)4562         public static System.ComponentModel.TypeConverter GetConverter(object component, bool noCustomTypeDesc) { throw null; }
GetConverter(System.Type type)4563         public static System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
GetDefaultEvent(object component)4564         public static System.ComponentModel.EventDescriptor GetDefaultEvent(object component) { throw null; }
4565         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDefaultEvent(object component, bool noCustomTypeDesc)4566         public static System.ComponentModel.EventDescriptor GetDefaultEvent(object component, bool noCustomTypeDesc) { throw null; }
GetDefaultEvent(System.Type componentType)4567         public static System.ComponentModel.EventDescriptor GetDefaultEvent(System.Type componentType) { throw null; }
GetDefaultProperty(object component)4568         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component) { throw null; }
4569         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDefaultProperty(object component, bool noCustomTypeDesc)4570         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component, bool noCustomTypeDesc) { throw null; }
GetDefaultProperty(System.Type componentType)4571         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(System.Type componentType) { throw null; }
GetEditor(object component, System.Type editorBaseType)4572         public static object GetEditor(object component, System.Type editorBaseType) { throw null; }
4573         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEditor(object component, System.Type editorBaseType, bool noCustomTypeDesc)4574         public static object GetEditor(object component, System.Type editorBaseType, bool noCustomTypeDesc) { throw null; }
GetEditor(System.Type type, System.Type editorBaseType)4575         public static object GetEditor(System.Type type, System.Type editorBaseType) { throw null; }
GetEvents(object component)4576         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component) { throw null; }
GetEvents(object component, System.Attribute[] attributes)4577         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes) { throw null; }
4578         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEvents(object component, System.Attribute[] attributes, bool noCustomTypeDesc)4579         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes, bool noCustomTypeDesc) { throw null; }
4580         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEvents(object component, bool noCustomTypeDesc)4581         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, bool noCustomTypeDesc) { throw null; }
GetEvents(System.Type componentType)4582         public static System.ComponentModel.EventDescriptorCollection GetEvents(System.Type componentType) { throw null; }
GetEvents(System.Type componentType, System.Attribute[] attributes)4583         public static System.ComponentModel.EventDescriptorCollection GetEvents(System.Type componentType, System.Attribute[] attributes) { throw null; }
GetFullComponentName(object component)4584         public static string GetFullComponentName(object component) { throw null; }
GetProperties(object component)4585         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component) { throw null; }
GetProperties(object component, System.Attribute[] attributes)4586         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes) { throw null; }
GetProperties(object component, System.Attribute[] attributes, bool noCustomTypeDesc)4587         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes, bool noCustomTypeDesc) { throw null; }
4588         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProperties(object component, bool noCustomTypeDesc)4589         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, bool noCustomTypeDesc) { throw null; }
GetProperties(System.Type componentType)4590         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Type componentType) { throw null; }
GetProperties(System.Type componentType, System.Attribute[] attributes)4591         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Type componentType, System.Attribute[] attributes) { throw null; }
4592         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProvider(object instance)4593         public static System.ComponentModel.TypeDescriptionProvider GetProvider(object instance) { throw null; }
4594         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProvider(System.Type type)4595         public static System.ComponentModel.TypeDescriptionProvider GetProvider(System.Type type) { throw null; }
4596         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetReflectionType(object instance)4597         public static System.Type GetReflectionType(object instance) { throw null; }
4598         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetReflectionType(System.Type type)4599         public static System.Type GetReflectionType(System.Type type) { throw null; }
Refresh(object component)4600         public static void Refresh(object component) { }
Refresh(System.Reflection.Assembly assembly)4601         public static void Refresh(System.Reflection.Assembly assembly) { }
Refresh(System.Reflection.Module module)4602         public static void Refresh(System.Reflection.Module module) { }
Refresh(System.Type type)4603         public static void Refresh(System.Type type) { }
4604         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4605         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveAssociation(object primary, object secondary)4606         public static void RemoveAssociation(object primary, object secondary) { }
4607         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4608         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveAssociations(object primary)4609         public static void RemoveAssociations(object primary) { }
4610         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4611         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance)4612         public static void RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4613         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4614         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4615         public static void RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
4616         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance)4617         public static void RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4618         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4619         public static void RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
SortDescriptorArray(System.Collections.IList infos)4620         public static void SortDescriptorArray(System.Collections.IList infos) { }
4621     }
4622     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4623     public abstract partial class TypeListConverter : System.ComponentModel.TypeConverter
4624     {
TypeListConverter(System.Type[] types)4625         protected TypeListConverter(System.Type[] types) { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4626         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4627         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4628         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4629         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4630         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4631         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4632         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
4633     }
4634     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4635     public partial class UInt16Converter : System.ComponentModel.BaseNumberConverter
4636     {
UInt16Converter()4637         public UInt16Converter() { }
4638     }
4639     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4640     public partial class UInt32Converter : System.ComponentModel.BaseNumberConverter
4641     {
UInt32Converter()4642         public UInt32Converter() { }
4643     }
4644     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4645     public partial class UInt64Converter : System.ComponentModel.BaseNumberConverter
4646     {
UInt64Converter()4647         public UInt64Converter() { }
4648     }
4649     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4650     [System.SerializableAttribute]
4651     public partial class WarningException : System.SystemException
4652     {
WarningException()4653         public WarningException() { }
WarningException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4654         protected WarningException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
WarningException(string message)4655         public WarningException(string message) { }
WarningException(string message, System.Exception innerException)4656         public WarningException(string message, System.Exception innerException) { }
WarningException(string message, string helpUrl)4657         public WarningException(string message, string helpUrl) { }
WarningException(string message, string helpUrl, string helpTopic)4658         public WarningException(string message, string helpUrl, string helpTopic) { }
4659         public string HelpTopic { get { throw null; } }
4660         public string HelpUrl { get { throw null; } }
4661         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4662         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
4663     }
4664     [System.Security.SuppressUnmanagedCodeSecurityAttribute]
4665     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4666     [System.SerializableAttribute]
4667     public partial class Win32Exception : System.Runtime.InteropServices.ExternalException, System.Runtime.Serialization.ISerializable
4668     {
4669         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception()4670         public Win32Exception() { }
4671         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(int error)4672         public Win32Exception(int error) { }
4673         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(int error, string message)4674         public Win32Exception(int error, string message) { }
Win32Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4675         protected Win32Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
4676         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(string message)4677         public Win32Exception(string message) { }
4678         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(string message, System.Exception innerException)4679         public Win32Exception(string message, System.Exception innerException) { }
4680         public int NativeErrorCode { get { throw null; } }
4681         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4682         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
4683     }
4684 }
4685 namespace System.ComponentModel.Design
4686 {
4687     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4688     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4689     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4690     public partial class ActiveDesignerEventArgs : System.EventArgs
4691     {
ActiveDesignerEventArgs(System.ComponentModel.Design.IDesignerHost oldDesigner, System.ComponentModel.Design.IDesignerHost newDesigner)4692         public ActiveDesignerEventArgs(System.ComponentModel.Design.IDesignerHost oldDesigner, System.ComponentModel.Design.IDesignerHost newDesigner) { }
4693         public System.ComponentModel.Design.IDesignerHost NewDesigner { get { throw null; } }
4694         public System.ComponentModel.Design.IDesignerHost OldDesigner { get { throw null; } }
4695     }
4696     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ActiveDesignerEventHandler(object sender, System.ComponentModel.Design.ActiveDesignerEventArgs e)4697     public delegate void ActiveDesignerEventHandler(object sender, System.ComponentModel.Design.ActiveDesignerEventArgs e);
4698     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4699     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4700     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4701     [System.SerializableAttribute]
4702     public partial class CheckoutException : System.Runtime.InteropServices.ExternalException
4703     {
4704         public static readonly System.ComponentModel.Design.CheckoutException Canceled;
CheckoutException()4705         public CheckoutException() { }
CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4706         protected CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
CheckoutException(string message)4707         public CheckoutException(string message) { }
CheckoutException(string message, System.Exception innerException)4708         public CheckoutException(string message, System.Exception innerException) { }
CheckoutException(string message, int errorCode)4709         public CheckoutException(string message, int errorCode) { }
4710     }
4711     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4712     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4713     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4714     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4715     public partial class CommandID
4716     {
CommandID(System.Guid menuGroup, int commandID)4717         public CommandID(System.Guid menuGroup, int commandID) { }
4718         public virtual System.Guid Guid { get { throw null; } }
4719         public virtual int ID { get { throw null; } }
Equals(object obj)4720         public override bool Equals(object obj) { throw null; }
GetHashCode()4721         public override int GetHashCode() { throw null; }
ToString()4722         public override string ToString() { throw null; }
4723     }
4724     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4725     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4726     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4727     public sealed partial class ComponentChangedEventArgs : System.EventArgs
4728     {
ComponentChangedEventArgs(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue)4729         public ComponentChangedEventArgs(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue) { }
4730         public object Component { get { throw null; } }
4731         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
4732         public object NewValue { get { throw null; } }
4733         public object OldValue { get { throw null; } }
4734     }
4735     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4736     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentChangedEventHandler(object sender, System.ComponentModel.Design.ComponentChangedEventArgs e)4737     public delegate void ComponentChangedEventHandler(object sender, System.ComponentModel.Design.ComponentChangedEventArgs e);
4738     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4739     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4740     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4741     public sealed partial class ComponentChangingEventArgs : System.EventArgs
4742     {
ComponentChangingEventArgs(object component, System.ComponentModel.MemberDescriptor member)4743         public ComponentChangingEventArgs(object component, System.ComponentModel.MemberDescriptor member) { }
4744         public object Component { get { throw null; } }
4745         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
4746     }
4747     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4748     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentChangingEventHandler(object sender, System.ComponentModel.Design.ComponentChangingEventArgs e)4749     public delegate void ComponentChangingEventHandler(object sender, System.ComponentModel.Design.ComponentChangingEventArgs e);
4750     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4751     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4752     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4753     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4754     public partial class ComponentEventArgs : System.EventArgs
4755     {
ComponentEventArgs(System.ComponentModel.IComponent component)4756         public ComponentEventArgs(System.ComponentModel.IComponent component) { }
4757         public virtual System.ComponentModel.IComponent Component { get { throw null; } }
4758     }
4759     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4760     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentEventHandler(object sender, System.ComponentModel.Design.ComponentEventArgs e)4761     public delegate void ComponentEventHandler(object sender, System.ComponentModel.Design.ComponentEventArgs e);
4762     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4763     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4764     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4765     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4766     public partial class ComponentRenameEventArgs : System.EventArgs
4767     {
ComponentRenameEventArgs(object component, string oldName, string newName)4768         public ComponentRenameEventArgs(object component, string oldName, string newName) { }
4769         public object Component { get { throw null; } }
4770         public virtual string NewName { get { throw null; } }
4771         public virtual string OldName { get { throw null; } }
4772     }
4773     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4774     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentRenameEventHandler(object sender, System.ComponentModel.Design.ComponentRenameEventArgs e)4775     public delegate void ComponentRenameEventHandler(object sender, System.ComponentModel.Design.ComponentRenameEventArgs e);
4776     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4777     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4778     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4779     public partial class DesignerCollection : System.Collections.ICollection, System.Collections.IEnumerable
4780     {
DesignerCollection(System.Collections.IList designers)4781         public DesignerCollection(System.Collections.IList designers) { }
DesignerCollection(System.ComponentModel.Design.IDesignerHost[] designers)4782         public DesignerCollection(System.ComponentModel.Design.IDesignerHost[] designers) { }
4783         public int Count { get { throw null; } }
4784         public virtual System.ComponentModel.Design.IDesignerHost this[int index] { get { throw null; } }
4785         int System.Collections.ICollection.Count { get { throw null; } }
4786         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4787         object System.Collections.ICollection.SyncRoot { get { throw null; } }
GetEnumerator()4788         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)4789         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()4790         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
4791     }
4792     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4793     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4794     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4795     public partial class DesignerEventArgs : System.EventArgs
4796     {
DesignerEventArgs(System.ComponentModel.Design.IDesignerHost host)4797         public DesignerEventArgs(System.ComponentModel.Design.IDesignerHost host) { }
4798         public System.ComponentModel.Design.IDesignerHost Designer { get { throw null; } }
4799     }
4800     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DesignerEventHandler(object sender, System.ComponentModel.Design.DesignerEventArgs e)4801     public delegate void DesignerEventHandler(object sender, System.ComponentModel.Design.DesignerEventArgs e);
4802     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4803     public abstract partial class DesignerOptionService : System.ComponentModel.Design.IDesignerOptionService
4804     {
DesignerOptionService()4805         protected DesignerOptionService() { }
4806         public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection Options { get { throw null; } }
CreateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection parent, string name, object value)4807         protected System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection CreateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection parent, string name, object value) { throw null; }
PopulateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options)4808         protected virtual void PopulateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options) { }
ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject)4809         protected virtual bool ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject) { throw null; }
System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName)4810         object System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName) { throw null; }
System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value)4811         void System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value) { }
4812         [System.ComponentModel.EditorAttribute("", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4813         [System.ComponentModel.TypeConverterAttribute("System.ComponentModel.Design.DesignerOptionService.DesignerOptionConverter")]
4814         public sealed partial class DesignerOptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
4815         {
DesignerOptionCollection()4816             internal DesignerOptionCollection() { }
4817             public int Count { get { throw null; } }
4818             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[int index] { get { throw null; } }
4819             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[string name] { get { throw null; } }
4820             public string Name { get { throw null; } }
4821             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection Parent { get { throw null; } }
4822             public System.ComponentModel.PropertyDescriptorCollection Properties { get { throw null; } }
4823             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4824             object System.Collections.ICollection.SyncRoot { get { throw null; } }
4825             bool System.Collections.IList.IsFixedSize { get { throw null; } }
4826             bool System.Collections.IList.IsReadOnly { get { throw null; } }
4827             object System.Collections.IList.this[int index] { get { throw null; } set { } }
CopyTo(System.Array array, int index)4828             public void CopyTo(System.Array array, int index) { }
GetEnumerator()4829             public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection value)4830             public int IndexOf(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection value) { throw null; }
ShowDialog()4831             public bool ShowDialog() { throw null; }
System.Collections.IList.Add(object value)4832             int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()4833             void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)4834             bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)4835             int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)4836             void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)4837             void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)4838             void System.Collections.IList.RemoveAt(int index) { }
4839         }
4840     }
4841     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4842     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4843     public abstract partial class DesignerTransaction : System.IDisposable
4844     {
DesignerTransaction()4845         protected DesignerTransaction() { }
DesignerTransaction(string description)4846         protected DesignerTransaction(string description) { }
4847         public bool Canceled { get { throw null; } }
4848         public bool Committed { get { throw null; } }
4849         public string Description { get { throw null; } }
Cancel()4850         public void Cancel() { }
Commit()4851         public void Commit() { }
Dispose(bool disposing)4852         protected virtual void Dispose(bool disposing) { }
~DesignerTransaction()4853         ~DesignerTransaction() { }
OnCancel()4854         protected abstract void OnCancel();
OnCommit()4855         protected abstract void OnCommit();
System.IDisposable.Dispose()4856         void System.IDisposable.Dispose() { }
4857     }
4858     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4859     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4860     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4861     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4862     public partial class DesignerTransactionCloseEventArgs : System.EventArgs
4863     {
4864         [System.ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool, bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
DesignerTransactionCloseEventArgs(bool commit)4865         public DesignerTransactionCloseEventArgs(bool commit) { }
DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction)4866         public DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction) { }
4867         public bool LastTransaction { get { throw null; } }
4868         public bool TransactionCommitted { get { throw null; } }
4869     }
4870     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4871     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DesignerTransactionCloseEventHandler(object sender, System.ComponentModel.Design.DesignerTransactionCloseEventArgs e)4872     public delegate void DesignerTransactionCloseEventHandler(object sender, System.ComponentModel.Design.DesignerTransactionCloseEventArgs e);
4873     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4874     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4875     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4876     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4877     public partial class DesignerVerb : System.ComponentModel.Design.MenuCommand
4878     {
DesignerVerb(string text, System.EventHandler handler)4879         public DesignerVerb(string text, System.EventHandler handler) : base (default(System.EventHandler), default(System.ComponentModel.Design.CommandID)) { }
DesignerVerb(string text, System.EventHandler handler, System.ComponentModel.Design.CommandID startCommandID)4880         public DesignerVerb(string text, System.EventHandler handler, System.ComponentModel.Design.CommandID startCommandID) : base (default(System.EventHandler), default(System.ComponentModel.Design.CommandID)) { }
4881         public string Description { get { throw null; } set { } }
4882         public string Text { get { throw null; } }
ToString()4883         public override string ToString() { throw null; }
4884     }
4885     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4886     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4887     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4888     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4889     public partial class DesignerVerbCollection : System.Collections.CollectionBase
4890     {
DesignerVerbCollection()4891         public DesignerVerbCollection() { }
DesignerVerbCollection(System.ComponentModel.Design.DesignerVerb[] value)4892         public DesignerVerbCollection(System.ComponentModel.Design.DesignerVerb[] value) { }
4893         public System.ComponentModel.Design.DesignerVerb this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.Design.DesignerVerb value)4894         public int Add(System.ComponentModel.Design.DesignerVerb value) { throw null; }
AddRange(System.ComponentModel.Design.DesignerVerbCollection value)4895         public void AddRange(System.ComponentModel.Design.DesignerVerbCollection value) { }
AddRange(System.ComponentModel.Design.DesignerVerb[] value)4896         public void AddRange(System.ComponentModel.Design.DesignerVerb[] value) { }
Contains(System.ComponentModel.Design.DesignerVerb value)4897         public bool Contains(System.ComponentModel.Design.DesignerVerb value) { throw null; }
CopyTo(System.ComponentModel.Design.DesignerVerb[] array, int index)4898         public void CopyTo(System.ComponentModel.Design.DesignerVerb[] array, int index) { }
IndexOf(System.ComponentModel.Design.DesignerVerb value)4899         public int IndexOf(System.ComponentModel.Design.DesignerVerb value) { throw null; }
Insert(int index, System.ComponentModel.Design.DesignerVerb value)4900         public void Insert(int index, System.ComponentModel.Design.DesignerVerb value) { }
OnClear()4901         protected override void OnClear() { }
OnInsert(int index, object value)4902         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)4903         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)4904         protected override void OnSet(int index, object oldValue, object newValue) { }
OnValidate(object value)4905         protected override void OnValidate(object value) { }
Remove(System.ComponentModel.Design.DesignerVerb value)4906         public void Remove(System.ComponentModel.Design.DesignerVerb value) { }
4907     }
4908     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4909     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4910     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4911     public partial class DesigntimeLicenseContext : System.ComponentModel.LicenseContext
4912     {
DesigntimeLicenseContext()4913         public DesigntimeLicenseContext() { }
4914         public override System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly)4915         public override string GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly) { throw null; }
SetSavedLicenseKey(System.Type type, string key)4916         public override void SetSavedLicenseKey(System.Type type, string key) { }
4917     }
4918     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4919     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4920     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4921     public partial class DesigntimeLicenseContextSerializer
4922     {
DesigntimeLicenseContextSerializer()4923         internal DesigntimeLicenseContextSerializer() { }
Serialize(System.IO.Stream o, string cryptoKey, System.ComponentModel.Design.DesigntimeLicenseContext context)4924         public static void Serialize(System.IO.Stream o, string cryptoKey, System.ComponentModel.Design.DesigntimeLicenseContext context) { }
4925     }
4926     public enum HelpContextType
4927     {
4928         Ambient = 0,
4929         Selection = 2,
4930         ToolWindowSelection = 3,
4931         Window = 1,
4932     }
4933     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=false, Inherited=false)]
4934     [System.SerializableAttribute]
4935     public sealed partial class HelpKeywordAttribute : System.Attribute
4936     {
4937         public static readonly System.ComponentModel.Design.HelpKeywordAttribute Default;
HelpKeywordAttribute()4938         public HelpKeywordAttribute() { }
HelpKeywordAttribute(string keyword)4939         public HelpKeywordAttribute(string keyword) { }
HelpKeywordAttribute(System.Type t)4940         public HelpKeywordAttribute(System.Type t) { }
4941         public string HelpKeyword { get { throw null; } }
Equals(object obj)4942         public override bool Equals(object obj) { throw null; }
GetHashCode()4943         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4944         public override bool IsDefaultAttribute() { throw null; }
4945     }
4946     public enum HelpKeywordType
4947     {
4948         F1Keyword = 0,
4949         FilterKeyword = 2,
4950         GeneralKeyword = 1,
4951     }
4952     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4953     public partial interface IComponentChangeService
4954     {
4955         event System.ComponentModel.Design.ComponentEventHandler ComponentAdded;
4956         event System.ComponentModel.Design.ComponentEventHandler ComponentAdding;
4957         event System.ComponentModel.Design.ComponentChangedEventHandler ComponentChanged;
4958         event System.ComponentModel.Design.ComponentChangingEventHandler ComponentChanging;
4959         event System.ComponentModel.Design.ComponentEventHandler ComponentRemoved;
4960         event System.ComponentModel.Design.ComponentEventHandler ComponentRemoving;
4961         event System.ComponentModel.Design.ComponentRenameEventHandler ComponentRename;
OnComponentChanged(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue)4962         void OnComponentChanged(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue);
OnComponentChanging(object component, System.ComponentModel.MemberDescriptor member)4963         void OnComponentChanging(object component, System.ComponentModel.MemberDescriptor member);
4964     }
4965     public partial interface IComponentDiscoveryService
4966     {
GetComponentTypes(System.ComponentModel.Design.IDesignerHost designerHost, System.Type baseType)4967         System.Collections.ICollection GetComponentTypes(System.ComponentModel.Design.IDesignerHost designerHost, System.Type baseType);
4968     }
4969     public partial interface IComponentInitializer
4970     {
InitializeExistingComponent(System.Collections.IDictionary defaultValues)4971         void InitializeExistingComponent(System.Collections.IDictionary defaultValues);
InitializeNewComponent(System.Collections.IDictionary defaultValues)4972         void InitializeNewComponent(System.Collections.IDictionary defaultValues);
4973     }
4974     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4975     public partial interface IDesigner : System.IDisposable
4976     {
4977         System.ComponentModel.IComponent Component { get; }
4978         System.ComponentModel.Design.DesignerVerbCollection Verbs { get; }
DoDefaultAction()4979         void DoDefaultAction();
Initialize(System.ComponentModel.IComponent component)4980         void Initialize(System.ComponentModel.IComponent component);
4981     }
4982     public partial interface IDesignerEventService
4983     {
4984         System.ComponentModel.Design.IDesignerHost ActiveDesigner { get; }
4985         System.ComponentModel.Design.DesignerCollection Designers { get; }
4986         event System.ComponentModel.Design.ActiveDesignerEventHandler ActiveDesignerChanged;
4987         event System.ComponentModel.Design.DesignerEventHandler DesignerCreated;
4988         event System.ComponentModel.Design.DesignerEventHandler DesignerDisposed;
4989         event System.EventHandler SelectionChanged;
4990     }
4991     public partial interface IDesignerFilter
4992     {
PostFilterAttributes(System.Collections.IDictionary attributes)4993         void PostFilterAttributes(System.Collections.IDictionary attributes);
PostFilterEvents(System.Collections.IDictionary events)4994         void PostFilterEvents(System.Collections.IDictionary events);
PostFilterProperties(System.Collections.IDictionary properties)4995         void PostFilterProperties(System.Collections.IDictionary properties);
PreFilterAttributes(System.Collections.IDictionary attributes)4996         void PreFilterAttributes(System.Collections.IDictionary attributes);
PreFilterEvents(System.Collections.IDictionary events)4997         void PreFilterEvents(System.Collections.IDictionary events);
PreFilterProperties(System.Collections.IDictionary properties)4998         void PreFilterProperties(System.Collections.IDictionary properties);
4999     }
5000     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5001     public partial interface IDesignerHost : System.ComponentModel.Design.IServiceContainer, System.IServiceProvider
5002     {
5003         System.ComponentModel.IContainer Container { get; }
5004         bool InTransaction { get; }
5005         bool Loading { get; }
5006         System.ComponentModel.IComponent RootComponent { get; }
5007         string RootComponentClassName { get; }
5008         string TransactionDescription { get; }
5009         event System.EventHandler Activated;
5010         event System.EventHandler Deactivated;
5011         event System.EventHandler LoadComplete;
5012         event System.ComponentModel.Design.DesignerTransactionCloseEventHandler TransactionClosed;
5013         event System.ComponentModel.Design.DesignerTransactionCloseEventHandler TransactionClosing;
5014         event System.EventHandler TransactionOpened;
5015         event System.EventHandler TransactionOpening;
Activate()5016         void Activate();
CreateComponent(System.Type componentClass)5017         System.ComponentModel.IComponent CreateComponent(System.Type componentClass);
CreateComponent(System.Type componentClass, string name)5018         System.ComponentModel.IComponent CreateComponent(System.Type componentClass, string name);
CreateTransaction()5019         System.ComponentModel.Design.DesignerTransaction CreateTransaction();
CreateTransaction(string description)5020         System.ComponentModel.Design.DesignerTransaction CreateTransaction(string description);
DestroyComponent(System.ComponentModel.IComponent component)5021         void DestroyComponent(System.ComponentModel.IComponent component);
GetDesigner(System.ComponentModel.IComponent component)5022         System.ComponentModel.Design.IDesigner GetDesigner(System.ComponentModel.IComponent component);
GetType(string typeName)5023         System.Type GetType(string typeName);
5024     }
5025     public partial interface IDesignerHostTransactionState
5026     {
5027         bool IsClosingTransaction { get; }
5028     }
5029     public partial interface IDesignerOptionService
5030     {
GetOptionValue(string pageName, string valueName)5031         object GetOptionValue(string pageName, string valueName);
SetOptionValue(string pageName, string valueName, object value)5032         void SetOptionValue(string pageName, string valueName, object value);
5033     }
5034     public partial interface IDictionaryService
5035     {
GetKey(object value)5036         object GetKey(object value);
GetValue(object key)5037         object GetValue(object key);
SetValue(object key, object value)5038         void SetValue(object key, object value);
5039     }
5040     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5041     public partial interface IEventBindingService
5042     {
CreateUniqueMethodName(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e)5043         string CreateUniqueMethodName(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
GetCompatibleMethods(System.ComponentModel.EventDescriptor e)5044         System.Collections.ICollection GetCompatibleMethods(System.ComponentModel.EventDescriptor e);
GetEvent(System.ComponentModel.PropertyDescriptor property)5045         System.ComponentModel.EventDescriptor GetEvent(System.ComponentModel.PropertyDescriptor property);
GetEventProperties(System.ComponentModel.EventDescriptorCollection events)5046         System.ComponentModel.PropertyDescriptorCollection GetEventProperties(System.ComponentModel.EventDescriptorCollection events);
GetEventProperty(System.ComponentModel.EventDescriptor e)5047         System.ComponentModel.PropertyDescriptor GetEventProperty(System.ComponentModel.EventDescriptor e);
ShowCode()5048         bool ShowCode();
ShowCode(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e)5049         bool ShowCode(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
ShowCode(int lineNumber)5050         bool ShowCode(int lineNumber);
5051     }
5052     public partial interface IExtenderListService
5053     {
GetExtenderProviders()5054         System.ComponentModel.IExtenderProvider[] GetExtenderProviders();
5055     }
5056     public partial interface IExtenderProviderService
5057     {
AddExtenderProvider(System.ComponentModel.IExtenderProvider provider)5058         void AddExtenderProvider(System.ComponentModel.IExtenderProvider provider);
RemoveExtenderProvider(System.ComponentModel.IExtenderProvider provider)5059         void RemoveExtenderProvider(System.ComponentModel.IExtenderProvider provider);
5060     }
5061     public partial interface IHelpService
5062     {
AddContextAttribute(string name, string value, System.ComponentModel.Design.HelpKeywordType keywordType)5063         void AddContextAttribute(string name, string value, System.ComponentModel.Design.HelpKeywordType keywordType);
ClearContextAttributes()5064         void ClearContextAttributes();
CreateLocalContext(System.ComponentModel.Design.HelpContextType contextType)5065         System.ComponentModel.Design.IHelpService CreateLocalContext(System.ComponentModel.Design.HelpContextType contextType);
RemoveContextAttribute(string name, string value)5066         void RemoveContextAttribute(string name, string value);
RemoveLocalContext(System.ComponentModel.Design.IHelpService localContext)5067         void RemoveLocalContext(System.ComponentModel.Design.IHelpService localContext);
ShowHelpFromKeyword(string helpKeyword)5068         void ShowHelpFromKeyword(string helpKeyword);
ShowHelpFromUrl(string helpUrl)5069         void ShowHelpFromUrl(string helpUrl);
5070     }
5071     public partial interface IInheritanceService
5072     {
AddInheritedComponents(System.ComponentModel.IComponent component, System.ComponentModel.IContainer container)5073         void AddInheritedComponents(System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
GetInheritanceAttribute(System.ComponentModel.IComponent component)5074         System.ComponentModel.InheritanceAttribute GetInheritanceAttribute(System.ComponentModel.IComponent component);
5075     }
5076     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5077     public partial interface IMenuCommandService
5078     {
5079         System.ComponentModel.Design.DesignerVerbCollection Verbs { get; }
AddCommand(System.ComponentModel.Design.MenuCommand command)5080         void AddCommand(System.ComponentModel.Design.MenuCommand command);
AddVerb(System.ComponentModel.Design.DesignerVerb verb)5081         void AddVerb(System.ComponentModel.Design.DesignerVerb verb);
FindCommand(System.ComponentModel.Design.CommandID commandID)5082         System.ComponentModel.Design.MenuCommand FindCommand(System.ComponentModel.Design.CommandID commandID);
GlobalInvoke(System.ComponentModel.Design.CommandID commandID)5083         bool GlobalInvoke(System.ComponentModel.Design.CommandID commandID);
RemoveCommand(System.ComponentModel.Design.MenuCommand command)5084         void RemoveCommand(System.ComponentModel.Design.MenuCommand command);
RemoveVerb(System.ComponentModel.Design.DesignerVerb verb)5085         void RemoveVerb(System.ComponentModel.Design.DesignerVerb verb);
ShowContextMenu(System.ComponentModel.Design.CommandID menuID, int x, int y)5086         void ShowContextMenu(System.ComponentModel.Design.CommandID menuID, int x, int y);
5087     }
5088     public partial interface IReferenceService
5089     {
GetComponent(object reference)5090         System.ComponentModel.IComponent GetComponent(object reference);
GetName(object reference)5091         string GetName(object reference);
GetReference(string name)5092         object GetReference(string name);
GetReferences()5093         object[] GetReferences();
GetReferences(System.Type baseType)5094         object[] GetReferences(System.Type baseType);
5095     }
5096     public partial interface IResourceService
5097     {
GetResourceReader(System.Globalization.CultureInfo info)5098         System.Resources.IResourceReader GetResourceReader(System.Globalization.CultureInfo info);
GetResourceWriter(System.Globalization.CultureInfo info)5099         System.Resources.IResourceWriter GetResourceWriter(System.Globalization.CultureInfo info);
5100     }
5101     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5102     public partial interface IRootDesigner : System.ComponentModel.Design.IDesigner, System.IDisposable
5103     {
5104         System.ComponentModel.Design.ViewTechnology[] SupportedTechnologies { get; }
GetView(System.ComponentModel.Design.ViewTechnology technology)5105         object GetView(System.ComponentModel.Design.ViewTechnology technology);
5106     }
5107     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5108     public partial interface ISelectionService
5109     {
5110         object PrimarySelection { get; }
5111         int SelectionCount { get; }
5112         event System.EventHandler SelectionChanged;
5113         event System.EventHandler SelectionChanging;
GetComponentSelected(object component)5114         bool GetComponentSelected(object component);
GetSelectedComponents()5115         System.Collections.ICollection GetSelectedComponents();
SetSelectedComponents(System.Collections.ICollection components)5116         void SetSelectedComponents(System.Collections.ICollection components);
SetSelectedComponents(System.Collections.ICollection components, System.ComponentModel.Design.SelectionTypes selectionType)5117         void SetSelectedComponents(System.Collections.ICollection components, System.ComponentModel.Design.SelectionTypes selectionType);
5118     }
5119     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5120     public partial interface IServiceContainer : System.IServiceProvider
5121     {
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback)5122         void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback);
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote)5123         void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote);
AddService(System.Type serviceType, object serviceInstance)5124         void AddService(System.Type serviceType, object serviceInstance);
AddService(System.Type serviceType, object serviceInstance, bool promote)5125         void AddService(System.Type serviceType, object serviceInstance, bool promote);
RemoveService(System.Type serviceType)5126         void RemoveService(System.Type serviceType);
RemoveService(System.Type serviceType, bool promote)5127         void RemoveService(System.Type serviceType, bool promote);
5128     }
5129     public partial interface ITreeDesigner : System.ComponentModel.Design.IDesigner, System.IDisposable
5130     {
5131         System.Collections.ICollection Children { get; }
5132         System.ComponentModel.Design.IDesigner Parent { get; }
5133     }
5134     public partial interface ITypeDescriptorFilterService
5135     {
FilterAttributes(System.ComponentModel.IComponent component, System.Collections.IDictionary attributes)5136         bool FilterAttributes(System.ComponentModel.IComponent component, System.Collections.IDictionary attributes);
FilterEvents(System.ComponentModel.IComponent component, System.Collections.IDictionary events)5137         bool FilterEvents(System.ComponentModel.IComponent component, System.Collections.IDictionary events);
FilterProperties(System.ComponentModel.IComponent component, System.Collections.IDictionary properties)5138         bool FilterProperties(System.ComponentModel.IComponent component, System.Collections.IDictionary properties);
5139     }
5140     public partial interface ITypeDiscoveryService
5141     {
GetTypes(System.Type baseType, bool excludeGlobalTypes)5142         System.Collections.ICollection GetTypes(System.Type baseType, bool excludeGlobalTypes);
5143     }
5144     public partial interface ITypeResolutionService
5145     {
GetAssembly(System.Reflection.AssemblyName name)5146         System.Reflection.Assembly GetAssembly(System.Reflection.AssemblyName name);
GetAssembly(System.Reflection.AssemblyName name, bool throwOnError)5147         System.Reflection.Assembly GetAssembly(System.Reflection.AssemblyName name, bool throwOnError);
GetPathOfAssembly(System.Reflection.AssemblyName name)5148         string GetPathOfAssembly(System.Reflection.AssemblyName name);
GetType(string name)5149         System.Type GetType(string name);
GetType(string name, bool throwOnError)5150         System.Type GetType(string name, bool throwOnError);
GetType(string name, bool throwOnError, bool ignoreCase)5151         System.Type GetType(string name, bool throwOnError, bool ignoreCase);
ReferenceAssembly(System.Reflection.AssemblyName name)5152         void ReferenceAssembly(System.Reflection.AssemblyName name);
5153     }
5154     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5155     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5156     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5157     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5158     public partial class MenuCommand
5159     {
MenuCommand(System.EventHandler handler, System.ComponentModel.Design.CommandID command)5160         public MenuCommand(System.EventHandler handler, System.ComponentModel.Design.CommandID command) { }
5161         public virtual bool Checked { get { throw null; } set { } }
5162         public virtual System.ComponentModel.Design.CommandID CommandID { get { throw null; } }
5163         public virtual bool Enabled { get { throw null; } set { } }
5164         public virtual int OleStatus { get { throw null; } }
5165         public virtual System.Collections.IDictionary Properties { get { throw null; } }
5166         public virtual bool Supported { get { throw null; } set { } }
5167         public virtual bool Visible { get { throw null; } set { } }
5168         public event System.EventHandler CommandChanged { add { } remove { } }
Invoke()5169         public virtual void Invoke() { }
Invoke(object arg)5170         public virtual void Invoke(object arg) { }
OnCommandChanged(System.EventArgs e)5171         protected virtual void OnCommandChanged(System.EventArgs e) { }
ToString()5172         public override string ToString() { throw null; }
5173     }
5174     [System.FlagsAttribute]
5175     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5176     public enum SelectionTypes
5177     {
5178         Add = 64,
5179         Auto = 1,
5180         [System.ObsoleteAttribute("This value has been deprecated. Use SelectionTypes.Primary instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5181         Click = 16,
5182         [System.ObsoleteAttribute("This value has been deprecated.  It is no longer supported. http://go.microsoft.com/fwlink/?linkid=14202")]
5183         MouseDown = 4,
5184         [System.ObsoleteAttribute("This value has been deprecated.  It is no longer supported. http://go.microsoft.com/fwlink/?linkid=14202")]
5185         MouseUp = 8,
5186         [System.ObsoleteAttribute("This value has been deprecated. Use SelectionTypes.Auto instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5187         Normal = 1,
5188         Primary = 16,
5189         Remove = 128,
5190         Replace = 2,
5191         Toggle = 32,
5192         [System.ObsoleteAttribute("This value has been deprecated. Use Enum class methods to determine valid values, or use a type converter. http://go.microsoft.com/fwlink/?linkid=14202")]
5193         Valid = 31,
5194     }
5195     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5196     public partial class ServiceContainer : System.ComponentModel.Design.IServiceContainer, System.IDisposable, System.IServiceProvider
5197     {
ServiceContainer()5198         public ServiceContainer() { }
ServiceContainer(System.IServiceProvider parentProvider)5199         public ServiceContainer(System.IServiceProvider parentProvider) { }
5200         protected virtual System.Type[] DefaultServices { get { throw null; } }
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback)5201         public void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback) { }
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote)5202         public virtual void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote) { }
AddService(System.Type serviceType, object serviceInstance)5203         public void AddService(System.Type serviceType, object serviceInstance) { }
AddService(System.Type serviceType, object serviceInstance, bool promote)5204         public virtual void AddService(System.Type serviceType, object serviceInstance, bool promote) { }
Dispose()5205         public void Dispose() { }
Dispose(bool disposing)5206         protected virtual void Dispose(bool disposing) { }
GetService(System.Type serviceType)5207         public virtual object GetService(System.Type serviceType) { throw null; }
RemoveService(System.Type serviceType)5208         public void RemoveService(System.Type serviceType) { }
RemoveService(System.Type serviceType, bool promote)5209         public virtual void RemoveService(System.Type serviceType, bool promote) { }
5210     }
5211     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5212     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ServiceCreatorCallback(System.ComponentModel.Design.IServiceContainer container, System.Type serviceType)5213     public delegate object ServiceCreatorCallback(System.ComponentModel.Design.IServiceContainer container, System.Type serviceType);
5214     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5215     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5216     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5217     public partial class StandardCommands
5218     {
5219         public static readonly System.ComponentModel.Design.CommandID AlignBottom;
5220         public static readonly System.ComponentModel.Design.CommandID AlignHorizontalCenters;
5221         public static readonly System.ComponentModel.Design.CommandID AlignLeft;
5222         public static readonly System.ComponentModel.Design.CommandID AlignRight;
5223         public static readonly System.ComponentModel.Design.CommandID AlignToGrid;
5224         public static readonly System.ComponentModel.Design.CommandID AlignTop;
5225         public static readonly System.ComponentModel.Design.CommandID AlignVerticalCenters;
5226         public static readonly System.ComponentModel.Design.CommandID ArrangeBottom;
5227         public static readonly System.ComponentModel.Design.CommandID ArrangeIcons;
5228         public static readonly System.ComponentModel.Design.CommandID ArrangeRight;
5229         public static readonly System.ComponentModel.Design.CommandID BringForward;
5230         public static readonly System.ComponentModel.Design.CommandID BringToFront;
5231         public static readonly System.ComponentModel.Design.CommandID CenterHorizontally;
5232         public static readonly System.ComponentModel.Design.CommandID CenterVertically;
5233         public static readonly System.ComponentModel.Design.CommandID Copy;
5234         public static readonly System.ComponentModel.Design.CommandID Cut;
5235         public static readonly System.ComponentModel.Design.CommandID Delete;
5236         public static readonly System.ComponentModel.Design.CommandID DocumentOutline;
5237         public static readonly System.ComponentModel.Design.CommandID F1Help;
5238         public static readonly System.ComponentModel.Design.CommandID Group;
5239         public static readonly System.ComponentModel.Design.CommandID HorizSpaceConcatenate;
5240         public static readonly System.ComponentModel.Design.CommandID HorizSpaceDecrease;
5241         public static readonly System.ComponentModel.Design.CommandID HorizSpaceIncrease;
5242         public static readonly System.ComponentModel.Design.CommandID HorizSpaceMakeEqual;
5243         public static readonly System.ComponentModel.Design.CommandID LineupIcons;
5244         public static readonly System.ComponentModel.Design.CommandID LockControls;
5245         public static readonly System.ComponentModel.Design.CommandID MultiLevelRedo;
5246         public static readonly System.ComponentModel.Design.CommandID MultiLevelUndo;
5247         public static readonly System.ComponentModel.Design.CommandID Paste;
5248         public static readonly System.ComponentModel.Design.CommandID Properties;
5249         public static readonly System.ComponentModel.Design.CommandID PropertiesWindow;
5250         public static readonly System.ComponentModel.Design.CommandID Redo;
5251         public static readonly System.ComponentModel.Design.CommandID Replace;
5252         public static readonly System.ComponentModel.Design.CommandID SelectAll;
5253         public static readonly System.ComponentModel.Design.CommandID SendBackward;
5254         public static readonly System.ComponentModel.Design.CommandID SendToBack;
5255         public static readonly System.ComponentModel.Design.CommandID ShowGrid;
5256         public static readonly System.ComponentModel.Design.CommandID ShowLargeIcons;
5257         public static readonly System.ComponentModel.Design.CommandID SizeToControl;
5258         public static readonly System.ComponentModel.Design.CommandID SizeToControlHeight;
5259         public static readonly System.ComponentModel.Design.CommandID SizeToControlWidth;
5260         public static readonly System.ComponentModel.Design.CommandID SizeToFit;
5261         public static readonly System.ComponentModel.Design.CommandID SizeToGrid;
5262         public static readonly System.ComponentModel.Design.CommandID SnapToGrid;
5263         public static readonly System.ComponentModel.Design.CommandID TabOrder;
5264         public static readonly System.ComponentModel.Design.CommandID Undo;
5265         public static readonly System.ComponentModel.Design.CommandID Ungroup;
5266         public static readonly System.ComponentModel.Design.CommandID VerbFirst;
5267         public static readonly System.ComponentModel.Design.CommandID VerbLast;
5268         public static readonly System.ComponentModel.Design.CommandID VertSpaceConcatenate;
5269         public static readonly System.ComponentModel.Design.CommandID VertSpaceDecrease;
5270         public static readonly System.ComponentModel.Design.CommandID VertSpaceIncrease;
5271         public static readonly System.ComponentModel.Design.CommandID VertSpaceMakeEqual;
5272         public static readonly System.ComponentModel.Design.CommandID ViewCode;
5273         public static readonly System.ComponentModel.Design.CommandID ViewGrid;
StandardCommands()5274         public StandardCommands() { }
5275     }
5276     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5277     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5278     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5279     public partial class StandardToolWindows
5280     {
5281         public static readonly System.Guid ObjectBrowser;
5282         public static readonly System.Guid OutputWindow;
5283         public static readonly System.Guid ProjectExplorer;
5284         public static readonly System.Guid PropertyBrowser;
5285         public static readonly System.Guid RelatedLinks;
5286         public static readonly System.Guid ServerExplorer;
5287         public static readonly System.Guid TaskList;
5288         public static readonly System.Guid Toolbox;
StandardToolWindows()5289         public StandardToolWindows() { }
5290     }
5291     public abstract partial class TypeDescriptionProviderService
5292     {
TypeDescriptionProviderService()5293         protected TypeDescriptionProviderService() { }
GetProvider(object instance)5294         public abstract System.ComponentModel.TypeDescriptionProvider GetProvider(object instance);
GetProvider(System.Type type)5295         public abstract System.ComponentModel.TypeDescriptionProvider GetProvider(System.Type type);
5296     }
5297     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5298     public enum ViewTechnology
5299     {
5300         Default = 2,
5301         [System.ObsoleteAttribute("This value has been deprecated. Use ViewTechnology.Default instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5302         Passthrough = 0,
5303         [System.ObsoleteAttribute("This value has been deprecated. Use ViewTechnology.Default instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5304         WindowsForms = 1,
5305     }
5306 }
5307 namespace System.ComponentModel.Design.Serialization
5308 {
5309     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5310     public abstract partial class ComponentSerializationService
5311     {
ComponentSerializationService()5312         protected ComponentSerializationService() { }
CreateStore()5313         public abstract System.ComponentModel.Design.Serialization.SerializationStore CreateStore();
Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store)5314         public abstract System.Collections.ICollection Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store);
Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container)5315         public abstract System.Collections.ICollection Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container);
DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container)5316         public void DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container) { }
DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container, bool validateRecycledTypes)5317         public void DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container, bool validateRecycledTypes) { }
DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container, bool validateRecycledTypes, bool applyDefaults)5318         public abstract void DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container, bool validateRecycledTypes, bool applyDefaults);
LoadStore(System.IO.Stream stream)5319         public abstract System.ComponentModel.Design.Serialization.SerializationStore LoadStore(System.IO.Stream stream);
Serialize(System.ComponentModel.Design.Serialization.SerializationStore store, object value)5320         public abstract void Serialize(System.ComponentModel.Design.Serialization.SerializationStore store, object value);
SerializeAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object value)5321         public abstract void SerializeAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object value);
SerializeMember(System.ComponentModel.Design.Serialization.SerializationStore store, object owningObject, System.ComponentModel.MemberDescriptor member)5322         public abstract void SerializeMember(System.ComponentModel.Design.Serialization.SerializationStore store, object owningObject, System.ComponentModel.MemberDescriptor member);
SerializeMemberAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object owningObject, System.ComponentModel.MemberDescriptor member)5323         public abstract void SerializeMemberAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object owningObject, System.ComponentModel.MemberDescriptor member);
5324     }
5325     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5326     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5327     public sealed partial class ContextStack
5328     {
ContextStack()5329         public ContextStack() { }
5330         public object Current { get { throw null; } }
5331         public object this[int level] { get { throw null; } }
5332         public object this[System.Type type] { get { throw null; } }
Append(object context)5333         public void Append(object context) { }
Pop()5334         public object Pop() { throw null; }
Push(object context)5335         public void Push(object context) { }
5336     }
5337     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=false)]
5338     public sealed partial class DefaultSerializationProviderAttribute : System.Attribute
5339     {
DefaultSerializationProviderAttribute(string providerTypeName)5340         public DefaultSerializationProviderAttribute(string providerTypeName) { }
DefaultSerializationProviderAttribute(System.Type providerType)5341         public DefaultSerializationProviderAttribute(System.Type providerType) { }
5342         public string ProviderTypeName { get { throw null; } }
5343     }
5344     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5345     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5346     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5347     public abstract partial class DesignerLoader
5348     {
DesignerLoader()5349         protected DesignerLoader() { }
5350         public virtual bool Loading { get { throw null; } }
BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost host)5351         public abstract void BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost host);
Dispose()5352         public abstract void Dispose();
Flush()5353         public virtual void Flush() { }
5354     }
5355     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
5356     public sealed partial class DesignerSerializerAttribute : System.Attribute
5357     {
DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName)5358         public DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName) { }
DesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType)5359         public DesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType) { }
DesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType)5360         public DesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType) { }
5361         public string SerializerBaseTypeName { get { throw null; } }
5362         public string SerializerTypeName { get { throw null; } }
5363         public override object TypeId { get { throw null; } }
5364     }
5365     public partial interface IDesignerLoaderHost : System.ComponentModel.Design.IDesignerHost, System.ComponentModel.Design.IServiceContainer, System.IServiceProvider
5366     {
EndLoad(string baseClassName, bool successful, System.Collections.ICollection errorCollection)5367         void EndLoad(string baseClassName, bool successful, System.Collections.ICollection errorCollection);
Reload()5368         void Reload();
5369     }
5370     public partial interface IDesignerLoaderHost2 : System.ComponentModel.Design.IDesignerHost, System.ComponentModel.Design.IServiceContainer, System.ComponentModel.Design.Serialization.IDesignerLoaderHost, System.IServiceProvider
5371     {
5372         bool CanReloadWithErrors { get; set; }
5373         bool IgnoreErrorsDuringReload { get; set; }
5374     }
5375     public partial interface IDesignerLoaderService
5376     {
AddLoadDependency()5377         void AddLoadDependency();
DependentLoadComplete(bool successful, System.Collections.ICollection errorCollection)5378         void DependentLoadComplete(bool successful, System.Collections.ICollection errorCollection);
Reload()5379         bool Reload();
5380     }
5381     public partial interface IDesignerSerializationManager : System.IServiceProvider
5382     {
5383         System.ComponentModel.Design.Serialization.ContextStack Context { get; }
5384         System.ComponentModel.PropertyDescriptorCollection Properties { get; }
5385         event System.ComponentModel.Design.Serialization.ResolveNameEventHandler ResolveName;
5386         event System.EventHandler SerializationComplete;
AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider)5387         void AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider);
CreateInstance(System.Type type, System.Collections.ICollection arguments, string name, bool addToContainer)5388         object CreateInstance(System.Type type, System.Collections.ICollection arguments, string name, bool addToContainer);
GetInstance(string name)5389         object GetInstance(string name);
GetName(object value)5390         string GetName(object value);
GetSerializer(System.Type objectType, System.Type serializerType)5391         object GetSerializer(System.Type objectType, System.Type serializerType);
GetType(string typeName)5392         System.Type GetType(string typeName);
RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider)5393         void RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider);
ReportError(object errorInformation)5394         void ReportError(object errorInformation);
SetName(object instance, string name)5395         void SetName(object instance, string name);
5396     }
5397     public partial interface IDesignerSerializationProvider
5398     {
GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager manager, object currentSerializer, System.Type objectType, System.Type serializerType)5399         object GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager manager, object currentSerializer, System.Type objectType, System.Type serializerType);
5400     }
5401     public partial interface IDesignerSerializationService
5402     {
Deserialize(object serializationData)5403         System.Collections.ICollection Deserialize(object serializationData);
Serialize(System.Collections.ICollection objects)5404         object Serialize(System.Collections.ICollection objects);
5405     }
5406     public partial interface INameCreationService
5407     {
CreateName(System.ComponentModel.IContainer container, System.Type dataType)5408         string CreateName(System.ComponentModel.IContainer container, System.Type dataType);
IsValidName(string name)5409         bool IsValidName(string name);
ValidateName(string name)5410         void ValidateName(string name);
5411     }
5412     public sealed partial class InstanceDescriptor
5413     {
InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments)5414         public InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments) { }
InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments, bool isComplete)5415         public InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments, bool isComplete) { }
5416         public System.Collections.ICollection Arguments { get { throw null; } }
5417         public bool IsComplete { get { throw null; } }
5418         public System.Reflection.MemberInfo MemberInfo { get { throw null; } }
Invoke()5419         public object Invoke() { throw null; }
5420     }
5421     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5422     public partial struct MemberRelationship
5423     {
5424         public static readonly System.ComponentModel.Design.Serialization.MemberRelationship Empty;
MemberRelationshipSystem.ComponentModel.Design.Serialization.MemberRelationship5425         public MemberRelationship(object owner, System.ComponentModel.MemberDescriptor member) { throw null;}
5426         public bool IsEmpty { get { throw null; } }
5427         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
5428         public object Owner { get { throw null; } }
EqualsSystem.ComponentModel.Design.Serialization.MemberRelationship5429         public override bool Equals(object obj) { throw null; }
GetHashCodeSystem.ComponentModel.Design.Serialization.MemberRelationship5430         public override int GetHashCode() { throw null; }
operator ==System.ComponentModel.Design.Serialization.MemberRelationship5431         public static bool operator ==(System.ComponentModel.Design.Serialization.MemberRelationship left, System.ComponentModel.Design.Serialization.MemberRelationship right) { throw null; }
operator !=System.ComponentModel.Design.Serialization.MemberRelationship5432         public static bool operator !=(System.ComponentModel.Design.Serialization.MemberRelationship left, System.ComponentModel.Design.Serialization.MemberRelationship right) { throw null; }
5433     }
5434     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5435     public abstract partial class MemberRelationshipService
5436     {
MemberRelationshipService()5437         protected MemberRelationshipService() { }
5438         public System.ComponentModel.Design.Serialization.MemberRelationship this[System.ComponentModel.Design.Serialization.MemberRelationship source] { get { throw null; } set { } }
5439         public System.ComponentModel.Design.Serialization.MemberRelationship this[object sourceOwner, System.ComponentModel.MemberDescriptor sourceMember] { get { throw null; } set { } }
GetRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source)5440         protected virtual System.ComponentModel.Design.Serialization.MemberRelationship GetRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source) { throw null; }
SetRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source, System.ComponentModel.Design.Serialization.MemberRelationship relationship)5441         protected virtual void SetRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source, System.ComponentModel.Design.Serialization.MemberRelationship relationship) { }
SupportsRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source, System.ComponentModel.Design.Serialization.MemberRelationship relationship)5442         public abstract bool SupportsRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source, System.ComponentModel.Design.Serialization.MemberRelationship relationship);
5443     }
5444     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5445     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5446     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5447     public partial class ResolveNameEventArgs : System.EventArgs
5448     {
ResolveNameEventArgs(string name)5449         public ResolveNameEventArgs(string name) { }
5450         public string Name { get { throw null; } }
5451         public object Value { get { throw null; } set { } }
5452     }
5453     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ResolveNameEventHandler(object sender, System.ComponentModel.Design.Serialization.ResolveNameEventArgs e)5454     public delegate void ResolveNameEventHandler(object sender, System.ComponentModel.Design.Serialization.ResolveNameEventArgs e);
5455     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
5456     [System.ObsoleteAttribute("This attribute has been deprecated. Use DesignerSerializerAttribute instead.  For example, to specify a root designer for CodeDom, use DesignerSerializerAttribute(...,typeof(TypeCodeDomSerializer)).  http://go.microsoft.com/fwlink/?linkid=14202")]
5457     public sealed partial class RootDesignerSerializerAttribute : System.Attribute
5458     {
RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable)5459         public RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable) { }
RootDesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType, bool reloadable)5460         public RootDesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType, bool reloadable) { }
RootDesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType, bool reloadable)5461         public RootDesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType, bool reloadable) { }
5462         public bool Reloadable { get { throw null; } }
5463         public string SerializerBaseTypeName { get { throw null; } }
5464         public string SerializerTypeName { get { throw null; } }
5465         public override object TypeId { get { throw null; } }
5466     }
5467     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5468     public abstract partial class SerializationStore : System.IDisposable
5469     {
SerializationStore()5470         protected SerializationStore() { }
5471         public abstract System.Collections.ICollection Errors { get; }
Close()5472         public abstract void Close();
Dispose(bool disposing)5473         protected virtual void Dispose(bool disposing) { }
Save(System.IO.Stream stream)5474         public abstract void Save(System.IO.Stream stream);
System.IDisposable.Dispose()5475         void System.IDisposable.Dispose() { }
5476     }
5477 }
5478 namespace System.Configuration
5479 {
5480     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5481     public sealed partial class ApplicationScopedSettingAttribute : System.Configuration.SettingAttribute
5482     {
ApplicationScopedSettingAttribute()5483         public ApplicationScopedSettingAttribute() { }
5484     }
5485     public abstract partial class ApplicationSettingsBase : System.Configuration.SettingsBase, System.ComponentModel.INotifyPropertyChanged
5486     {
ApplicationSettingsBase()5487         protected ApplicationSettingsBase() { }
ApplicationSettingsBase(System.ComponentModel.IComponent owner)5488         protected ApplicationSettingsBase(System.ComponentModel.IComponent owner) { }
ApplicationSettingsBase(System.ComponentModel.IComponent owner, string settingsKey)5489         protected ApplicationSettingsBase(System.ComponentModel.IComponent owner, string settingsKey) { }
ApplicationSettingsBase(string settingsKey)5490         protected ApplicationSettingsBase(string settingsKey) { }
5491         [System.ComponentModel.BrowsableAttribute(false)]
5492         public override System.Configuration.SettingsContext Context { get { throw null; } }
5493         [System.MonoTODOAttribute]
5494         public override object this[string propertyName] { get { throw null; } set { } }
5495         [System.ComponentModel.BrowsableAttribute(false)]
5496         public override System.Configuration.SettingsPropertyCollection Properties { get { throw null; } }
5497         [System.ComponentModel.BrowsableAttribute(false)]
5498         public override System.Configuration.SettingsPropertyValueCollection PropertyValues { get { throw null; } }
5499         [System.ComponentModel.BrowsableAttribute(false)]
5500         public override System.Configuration.SettingsProviderCollection Providers { get { throw null; } }
5501         [System.ComponentModel.BrowsableAttribute(false)]
5502         public string SettingsKey { get { throw null; } set { } }
5503         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
5504         public event System.Configuration.SettingChangingEventHandler SettingChanging { add { } remove { } }
5505         public event System.Configuration.SettingsLoadedEventHandler SettingsLoaded { add { } remove { } }
5506         public event System.Configuration.SettingsSavingEventHandler SettingsSaving { add { } remove { } }
GetPreviousVersion(string propertyName)5507         public object GetPreviousVersion(string propertyName) { throw null; }
OnPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)5508         protected virtual void OnPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) { }
OnSettingChanging(object sender, System.Configuration.SettingChangingEventArgs e)5509         protected virtual void OnSettingChanging(object sender, System.Configuration.SettingChangingEventArgs e) { }
OnSettingsLoaded(object sender, System.Configuration.SettingsLoadedEventArgs e)5510         protected virtual void OnSettingsLoaded(object sender, System.Configuration.SettingsLoadedEventArgs e) { }
OnSettingsSaving(object sender, System.ComponentModel.CancelEventArgs e)5511         protected virtual void OnSettingsSaving(object sender, System.ComponentModel.CancelEventArgs e) { }
Reload()5512         public void Reload() { }
Reset()5513         public void Reset() { }
Save()5514         public override void Save() { }
Upgrade()5515         public virtual void Upgrade() { }
5516     }
5517     public sealed partial class ApplicationSettingsGroup : System.Configuration.ConfigurationSectionGroup
5518     {
ApplicationSettingsGroup()5519         public ApplicationSettingsGroup() { }
5520     }
5521     public partial class AppSettingsReader
5522     {
AppSettingsReader()5523         public AppSettingsReader() { }
GetValue(string key, System.Type type)5524         public object GetValue(string key, System.Type type) { throw null; }
5525     }
5526     public sealed partial class ClientSettingsSection : System.Configuration.ConfigurationSection
5527     {
ClientSettingsSection()5528         public ClientSettingsSection() { }
5529         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5530         [System.Configuration.ConfigurationPropertyAttribute("", Options=(System.Configuration.ConfigurationPropertyOptions)(1))]
5531         public System.Configuration.SettingElementCollection Settings { get { throw null; } }
5532     }
5533     [System.SerializableAttribute]
5534     public partial class ConfigurationException : System.SystemException
5535     {
5536         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException()5537         public ConfigurationException() { }
ConfigurationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5538         protected ConfigurationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
5539         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message)5540         public ConfigurationException(string message) { }
5541         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Exception inner)5542         public ConfigurationException(string message, System.Exception inner) { }
5543         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Exception inner, string filename, int line)5544         public ConfigurationException(string message, System.Exception inner, string filename, int line) { }
5545         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Exception inner, System.Xml.XmlNode node)5546         public ConfigurationException(string message, System.Exception inner, System.Xml.XmlNode node) { }
5547         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, string filename, int line)5548         public ConfigurationException(string message, string filename, int line) { }
5549         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Xml.XmlNode node)5550         public ConfigurationException(string message, System.Xml.XmlNode node) { }
5551         public virtual string BareMessage { get { throw null; } }
5552         public virtual string Filename { get { throw null; } }
5553         public virtual int Line { get { throw null; } }
5554         public override string Message { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5555         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
5556         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
GetXmlNodeFilename(System.Xml.XmlNode node)5557         public static string GetXmlNodeFilename(System.Xml.XmlNode node) { throw null; }
5558         [System.ObsoleteAttribute("This class is obsolete.  Use System.Configuration.ConfigurationErrorsException")]
GetXmlNodeLineNumber(System.Xml.XmlNode node)5559         public static int GetXmlNodeLineNumber(System.Xml.XmlNode node) { throw null; }
5560     }
5561     public sealed partial class ConfigurationSettings
5562     {
ConfigurationSettings()5563         internal ConfigurationSettings() { }
5564         [System.ObsoleteAttribute("This property is obsolete.  Please use System.Configuration.ConfigurationManager.AppSettings")]
5565         public static System.Collections.Specialized.NameValueCollection AppSettings { get { throw null; } }
5566         [System.ObsoleteAttribute("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection")]
GetConfig(string sectionName)5567         public static object GetConfig(string sectionName) { throw null; }
5568     }
5569     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
5570     public sealed partial class ConfigXmlDocument : System.Xml.XmlDocument, System.Configuration.Internal.IConfigErrorInfo
5571     {
ConfigXmlDocument()5572         public ConfigXmlDocument() { }
5573         public string Filename { get { throw null; } }
5574         public int LineNumber { get { throw null; } }
5575         string System.Configuration.Internal.IConfigErrorInfo.Filename { get { throw null; } }
5576         int System.Configuration.Internal.IConfigErrorInfo.LineNumber { get { throw null; } }
CreateAttribute(string prefix, string localName, string namespaceUri)5577         public override System.Xml.XmlAttribute CreateAttribute(string prefix, string localName, string namespaceUri) { throw null; }
CreateCDataSection(string data)5578         public override System.Xml.XmlCDataSection CreateCDataSection(string data) { throw null; }
CreateComment(string data)5579         public override System.Xml.XmlComment CreateComment(string data) { throw null; }
CreateElement(string prefix, string localName, string namespaceUri)5580         public override System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceUri) { throw null; }
CreateSignificantWhitespace(string data)5581         public override System.Xml.XmlSignificantWhitespace CreateSignificantWhitespace(string data) { throw null; }
CreateTextNode(string text)5582         public override System.Xml.XmlText CreateTextNode(string text) { throw null; }
CreateWhitespace(string data)5583         public override System.Xml.XmlWhitespace CreateWhitespace(string data) { throw null; }
Load(string filename)5584         public override void Load(string filename) { }
LoadSingleElement(string filename, System.Xml.XmlTextReader sourceReader)5585         public void LoadSingleElement(string filename, System.Xml.XmlTextReader sourceReader) { }
5586     }
5587     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5588     public sealed partial class DefaultSettingValueAttribute : System.Attribute
5589     {
DefaultSettingValueAttribute(string value)5590         public DefaultSettingValueAttribute(string value) { }
5591         public string Value { get { throw null; } }
5592     }
5593     public partial class DictionarySectionHandler : System.Configuration.IConfigurationSectionHandler
5594     {
DictionarySectionHandler()5595         public DictionarySectionHandler() { }
5596         protected virtual string KeyAttributeName { get { throw null; } }
5597         protected virtual string ValueAttributeName { get { throw null; } }
Create(object parent, object context, System.Xml.XmlNode section)5598         public virtual object Create(object parent, object context, System.Xml.XmlNode section) { throw null; }
5599     }
5600     public partial interface IApplicationSettingsProvider
5601     {
GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property)5602         System.Configuration.SettingsPropertyValue GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property);
Reset(System.Configuration.SettingsContext context)5603         void Reset(System.Configuration.SettingsContext context);
Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)5604         void Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties);
5605     }
5606     public partial interface IConfigurationSectionHandler
5607     {
Create(object parent, object configContext, System.Xml.XmlNode section)5608         object Create(object parent, object configContext, System.Xml.XmlNode section);
5609     }
5610     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5611     public partial interface IConfigurationSystem
5612     {
GetConfig(string configKey)5613         object GetConfig(string configKey);
Init()5614         void Init();
5615     }
5616     public sealed partial class IdnElement : System.Configuration.ConfigurationElement
5617     {
IdnElement()5618         public IdnElement() { }
5619         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=(System.UriIdnScope)(0), Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
5620         public System.UriIdnScope Enabled { get { throw null; } set { } }
5621         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
Equals(object o)5622         public override bool Equals(object o) { throw null; }
GetHashCode()5623         public override int GetHashCode() { throw null; }
5624     }
5625     public partial class IgnoreSectionHandler : System.Configuration.IConfigurationSectionHandler
5626     {
IgnoreSectionHandler()5627         public IgnoreSectionHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)5628         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
5629     }
5630     public partial interface IPersistComponentSettings
5631     {
5632         bool SaveSettings { get; set; }
5633         string SettingsKey { get; set; }
LoadComponentSettings()5634         void LoadComponentSettings();
ResetComponentSettings()5635         void ResetComponentSettings();
SaveComponentSettings()5636         void SaveComponentSettings();
5637     }
5638     public sealed partial class IriParsingElement : System.Configuration.ConfigurationElement
5639     {
IriParsingElement()5640         public IriParsingElement() { }
5641         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false, Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
5642         public bool Enabled { get { throw null; } set { } }
5643         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
Equals(object o)5644         public override bool Equals(object o) { throw null; }
GetHashCode()5645         public override int GetHashCode() { throw null; }
5646     }
5647     public partial interface ISettingsProviderService
5648     {
GetSettingsProvider(System.Configuration.SettingsProperty property)5649         System.Configuration.SettingsProvider GetSettingsProvider(System.Configuration.SettingsProperty property);
5650     }
5651     public partial class LocalFileSettingsProvider : System.Configuration.SettingsProvider, System.Configuration.IApplicationSettingsProvider
5652     {
LocalFileSettingsProvider()5653         public LocalFileSettingsProvider() { }
5654         public override string ApplicationName { get { throw null; } set { } }
5655         [System.MonoTODOAttribute]
GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property)5656         public System.Configuration.SettingsPropertyValue GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property) { throw null; }
5657         [System.MonoTODOAttribute]
GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)5658         public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties) { throw null; }
Initialize(string name, System.Collections.Specialized.NameValueCollection values)5659         public override void Initialize(string name, System.Collections.Specialized.NameValueCollection values) { }
5660         [System.MonoTODOAttribute]
Reset(System.Configuration.SettingsContext context)5661         public void Reset(System.Configuration.SettingsContext context) { }
5662         [System.MonoTODOAttribute]
SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection values)5663         public override void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection values) { }
5664         [System.MonoTODOAttribute]
Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)5665         public void Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties) { }
5666     }
5667     public partial class NameValueFileSectionHandler : System.Configuration.IConfigurationSectionHandler
5668     {
NameValueFileSectionHandler()5669         public NameValueFileSectionHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)5670         public object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
5671     }
5672     public partial class NameValueSectionHandler : System.Configuration.IConfigurationSectionHandler
5673     {
NameValueSectionHandler()5674         public NameValueSectionHandler() { }
5675         protected virtual string KeyAttributeName { get { throw null; } }
5676         protected virtual string ValueAttributeName { get { throw null; } }
Create(object parent, object context, System.Xml.XmlNode section)5677         public object Create(object parent, object context, System.Xml.XmlNode section) { throw null; }
5678     }
5679     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5680     public sealed partial class NoSettingsVersionUpgradeAttribute : System.Attribute
5681     {
NoSettingsVersionUpgradeAttribute()5682         public NoSettingsVersionUpgradeAttribute() { }
5683     }
5684     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5685     public partial class SettingAttribute : System.Attribute
5686     {
SettingAttribute()5687         public SettingAttribute() { }
5688     }
5689     public partial class SettingChangingEventArgs : System.ComponentModel.CancelEventArgs
5690     {
SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel)5691         public SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel) { }
5692         public object NewValue { get { throw null; } }
5693         public string SettingClass { get { throw null; } }
5694         public string SettingKey { get { throw null; } }
5695         public string SettingName { get { throw null; } }
5696     }
SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e)5697     public delegate void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e);
5698     public sealed partial class SettingElement : System.Configuration.ConfigurationElement
5699     {
SettingElement()5700         public SettingElement() { }
SettingElement(string name, System.Configuration.SettingsSerializeAs serializeAs)5701         public SettingElement(string name, System.Configuration.SettingsSerializeAs serializeAs) { }
5702         [System.Configuration.ConfigurationPropertyAttribute("name", DefaultValue="", Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
5703         public string Name { get { throw null; } set { } }
5704         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5705         [System.Configuration.ConfigurationPropertyAttribute("serializeAs", DefaultValue=(System.Configuration.SettingsSerializeAs)(0), Options=(System.Configuration.ConfigurationPropertyOptions)(2))]
5706         public System.Configuration.SettingsSerializeAs SerializeAs { get { throw null; } set { } }
5707         [System.Configuration.ConfigurationPropertyAttribute("value", DefaultValue=null, Options=(System.Configuration.ConfigurationPropertyOptions)(2))]
5708         public System.Configuration.SettingValueElement Value { get { throw null; } set { } }
Equals(object settings)5709         public override bool Equals(object settings) { throw null; }
GetHashCode()5710         public override int GetHashCode() { throw null; }
5711     }
5712     public sealed partial class SettingElementCollection : System.Configuration.ConfigurationElementCollection
5713     {
SettingElementCollection()5714         public SettingElementCollection() { }
5715         public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw null; } }
5716         protected override string ElementName { get { throw null; } }
Add(System.Configuration.SettingElement element)5717         public void Add(System.Configuration.SettingElement element) { }
Clear()5718         public void Clear() { }
CreateNewElement()5719         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
Get(string elementKey)5720         public System.Configuration.SettingElement Get(string elementKey) { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)5721         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
Remove(System.Configuration.SettingElement element)5722         public void Remove(System.Configuration.SettingElement element) { }
5723     }
5724     [System.SerializableAttribute]
5725     public partial class SettingsAttributeDictionary : System.Collections.Hashtable
5726     {
SettingsAttributeDictionary()5727         public SettingsAttributeDictionary() { }
SettingsAttributeDictionary(System.Configuration.SettingsAttributeDictionary attributes)5728         public SettingsAttributeDictionary(System.Configuration.SettingsAttributeDictionary attributes) { }
5729     }
5730     public abstract partial class SettingsBase
5731     {
SettingsBase()5732         protected SettingsBase() { }
5733         public virtual System.Configuration.SettingsContext Context { get { throw null; } }
5734         [System.ComponentModel.BrowsableAttribute(false)]
5735         public bool IsSynchronized { get { throw null; } }
5736         public virtual object this[string propertyName] { get { throw null; } set { } }
5737         public virtual System.Configuration.SettingsPropertyCollection Properties { get { throw null; } }
5738         public virtual System.Configuration.SettingsPropertyValueCollection PropertyValues { get { throw null; } }
5739         public virtual System.Configuration.SettingsProviderCollection Providers { get { throw null; } }
Initialize(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties, System.Configuration.SettingsProviderCollection providers)5740         public void Initialize(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties, System.Configuration.SettingsProviderCollection providers) { }
Save()5741         public virtual void Save() { }
Synchronized(System.Configuration.SettingsBase settingsBase)5742         public static System.Configuration.SettingsBase Synchronized(System.Configuration.SettingsBase settingsBase) { throw null; }
5743     }
5744     [System.SerializableAttribute]
5745     public partial class SettingsContext : System.Collections.Hashtable
5746     {
SettingsContext()5747         public SettingsContext() { }
5748     }
5749     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5750     public sealed partial class SettingsDescriptionAttribute : System.Attribute
5751     {
SettingsDescriptionAttribute(string description)5752         public SettingsDescriptionAttribute(string description) { }
5753         public string Description { get { throw null; } }
5754     }
5755     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
5756     public sealed partial class SettingsGroupDescriptionAttribute : System.Attribute
5757     {
SettingsGroupDescriptionAttribute(string description)5758         public SettingsGroupDescriptionAttribute(string description) { }
5759         public string Description { get { throw null; } }
5760     }
5761     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
5762     public sealed partial class SettingsGroupNameAttribute : System.Attribute
5763     {
SettingsGroupNameAttribute(string groupName)5764         public SettingsGroupNameAttribute(string groupName) { }
5765         public string GroupName { get { throw null; } }
5766     }
5767     public partial class SettingsLoadedEventArgs : System.EventArgs
5768     {
SettingsLoadedEventArgs(System.Configuration.SettingsProvider provider)5769         public SettingsLoadedEventArgs(System.Configuration.SettingsProvider provider) { }
5770         public System.Configuration.SettingsProvider Provider { get { throw null; } }
5771     }
SettingsLoadedEventHandler(object sender, System.Configuration.SettingsLoadedEventArgs e)5772     public delegate void SettingsLoadedEventHandler(object sender, System.Configuration.SettingsLoadedEventArgs e);
5773     public enum SettingsManageability
5774     {
5775         Roaming = 0,
5776     }
5777     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
5778     public sealed partial class SettingsManageabilityAttribute : System.Attribute
5779     {
SettingsManageabilityAttribute(System.Configuration.SettingsManageability manageability)5780         public SettingsManageabilityAttribute(System.Configuration.SettingsManageability manageability) { }
5781         public System.Configuration.SettingsManageability Manageability { get { throw null; } }
5782     }
5783     public partial class SettingsProperty
5784     {
SettingsProperty(System.Configuration.SettingsProperty propertyToCopy)5785         public SettingsProperty(System.Configuration.SettingsProperty propertyToCopy) { }
SettingsProperty(string name)5786         public SettingsProperty(string name) { }
SettingsProperty(string name, System.Type propertyType, System.Configuration.SettingsProvider provider, bool isReadOnly, object defaultValue, System.Configuration.SettingsSerializeAs serializeAs, System.Configuration.SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing)5787         public SettingsProperty(string name, System.Type propertyType, System.Configuration.SettingsProvider provider, bool isReadOnly, object defaultValue, System.Configuration.SettingsSerializeAs serializeAs, System.Configuration.SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing) { }
5788         public virtual System.Configuration.SettingsAttributeDictionary Attributes { get { throw null; } }
5789         public virtual object DefaultValue { get { throw null; } set { } }
5790         public virtual bool IsReadOnly { get { throw null; } set { } }
5791         public virtual string Name { get { throw null; } set { } }
5792         public virtual System.Type PropertyType { get { throw null; } set { } }
5793         public virtual System.Configuration.SettingsProvider Provider { get { throw null; } set { } }
5794         public virtual System.Configuration.SettingsSerializeAs SerializeAs { get { throw null; } set { } }
5795         public bool ThrowOnErrorDeserializing { get { throw null; } set { } }
5796         public bool ThrowOnErrorSerializing { get { throw null; } set { } }
5797     }
5798     public partial class SettingsPropertyCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable
5799     {
SettingsPropertyCollection()5800         public SettingsPropertyCollection() { }
5801         public int Count { get { throw null; } }
5802         public bool IsSynchronized { get { throw null; } }
5803         public System.Configuration.SettingsProperty this[string name] { get { throw null; } }
5804         public object SyncRoot { get { throw null; } }
Add(System.Configuration.SettingsProperty property)5805         public void Add(System.Configuration.SettingsProperty property) { }
Clear()5806         public void Clear() { }
Clone()5807         public object Clone() { throw null; }
CopyTo(System.Array array, int index)5808         public void CopyTo(System.Array array, int index) { }
GetEnumerator()5809         public System.Collections.IEnumerator GetEnumerator() { throw null; }
OnAdd(System.Configuration.SettingsProperty property)5810         protected virtual void OnAdd(System.Configuration.SettingsProperty property) { }
OnAddComplete(System.Configuration.SettingsProperty property)5811         protected virtual void OnAddComplete(System.Configuration.SettingsProperty property) { }
OnClear()5812         protected virtual void OnClear() { }
OnClearComplete()5813         protected virtual void OnClearComplete() { }
OnRemove(System.Configuration.SettingsProperty property)5814         protected virtual void OnRemove(System.Configuration.SettingsProperty property) { }
OnRemoveComplete(System.Configuration.SettingsProperty property)5815         protected virtual void OnRemoveComplete(System.Configuration.SettingsProperty property) { }
Remove(string name)5816         public void Remove(string name) { }
SetReadOnly()5817         public void SetReadOnly() { }
5818     }
5819     [System.SerializableAttribute]
5820     public partial class SettingsPropertyIsReadOnlyException : System.Exception
5821     {
SettingsPropertyIsReadOnlyException()5822         public SettingsPropertyIsReadOnlyException() { }
SettingsPropertyIsReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5823         protected SettingsPropertyIsReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SettingsPropertyIsReadOnlyException(string message)5824         public SettingsPropertyIsReadOnlyException(string message) { }
SettingsPropertyIsReadOnlyException(string message, System.Exception innerException)5825         public SettingsPropertyIsReadOnlyException(string message, System.Exception innerException) { }
5826     }
5827     [System.SerializableAttribute]
5828     public partial class SettingsPropertyNotFoundException : System.Exception
5829     {
SettingsPropertyNotFoundException()5830         public SettingsPropertyNotFoundException() { }
SettingsPropertyNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5831         protected SettingsPropertyNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SettingsPropertyNotFoundException(string message)5832         public SettingsPropertyNotFoundException(string message) { }
SettingsPropertyNotFoundException(string message, System.Exception innerException)5833         public SettingsPropertyNotFoundException(string message, System.Exception innerException) { }
5834     }
5835     public partial class SettingsPropertyValue
5836     {
SettingsPropertyValue(System.Configuration.SettingsProperty property)5837         public SettingsPropertyValue(System.Configuration.SettingsProperty property) { }
5838         public bool Deserialized { get { throw null; } set { } }
5839         public bool IsDirty { get { throw null; } set { } }
5840         public string Name { get { throw null; } }
5841         public System.Configuration.SettingsProperty Property { get { throw null; } }
5842         public object PropertyValue { get { throw null; } set { } }
5843         public object SerializedValue { get { throw null; } set { } }
5844         public bool UsingDefaultValue { get { throw null; } }
5845     }
5846     public partial class SettingsPropertyValueCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable
5847     {
SettingsPropertyValueCollection()5848         public SettingsPropertyValueCollection() { }
5849         public int Count { get { throw null; } }
5850         public bool IsSynchronized { get { throw null; } }
5851         public System.Configuration.SettingsPropertyValue this[string name] { get { throw null; } }
5852         public object SyncRoot { get { throw null; } }
Add(System.Configuration.SettingsPropertyValue property)5853         public void Add(System.Configuration.SettingsPropertyValue property) { }
Clear()5854         public void Clear() { }
Clone()5855         public object Clone() { throw null; }
CopyTo(System.Array array, int index)5856         public void CopyTo(System.Array array, int index) { }
GetEnumerator()5857         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string name)5858         public void Remove(string name) { }
SetReadOnly()5859         public void SetReadOnly() { }
5860     }
5861     [System.SerializableAttribute]
5862     public partial class SettingsPropertyWrongTypeException : System.Exception
5863     {
SettingsPropertyWrongTypeException()5864         public SettingsPropertyWrongTypeException() { }
SettingsPropertyWrongTypeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5865         protected SettingsPropertyWrongTypeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SettingsPropertyWrongTypeException(string message)5866         public SettingsPropertyWrongTypeException(string message) { }
SettingsPropertyWrongTypeException(string message, System.Exception innerException)5867         public SettingsPropertyWrongTypeException(string message, System.Exception innerException) { }
5868     }
5869     public abstract partial class SettingsProvider : System.Configuration.Provider.ProviderBase
5870     {
SettingsProvider()5871         protected SettingsProvider() { }
5872         public abstract string ApplicationName { get; set; }
GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection)5873         public abstract System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection);
SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection collection)5874         public abstract void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection collection);
5875     }
5876     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
5877     public sealed partial class SettingsProviderAttribute : System.Attribute
5878     {
SettingsProviderAttribute(string providerTypeName)5879         public SettingsProviderAttribute(string providerTypeName) { }
SettingsProviderAttribute(System.Type providerType)5880         public SettingsProviderAttribute(System.Type providerType) { }
5881         public string ProviderTypeName { get { throw null; } }
5882     }
5883     public partial class SettingsProviderCollection : System.Configuration.Provider.ProviderCollection
5884     {
SettingsProviderCollection()5885         public SettingsProviderCollection() { }
5886         public new System.Configuration.SettingsProvider this[string name] { get { throw null; } }
Add(System.Configuration.Provider.ProviderBase provider)5887         public override void Add(System.Configuration.Provider.ProviderBase provider) { }
5888     }
SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e)5889     public delegate void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e);
5890     public enum SettingsSerializeAs
5891     {
5892         Binary = 2,
5893         ProviderSpecific = 3,
5894         String = 0,
5895         Xml = 1,
5896     }
5897     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
5898     public sealed partial class SettingsSerializeAsAttribute : System.Attribute
5899     {
SettingsSerializeAsAttribute(System.Configuration.SettingsSerializeAs serializeAs)5900         public SettingsSerializeAsAttribute(System.Configuration.SettingsSerializeAs serializeAs) { }
5901         public System.Configuration.SettingsSerializeAs SerializeAs { get { throw null; } }
5902     }
5903     public sealed partial class SettingValueElement : System.Configuration.ConfigurationElement
5904     {
5905         [System.MonoTODOAttribute]
SettingValueElement()5906         public SettingValueElement() { }
5907         [System.MonoTODOAttribute]
5908         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5909         public System.Xml.XmlNode ValueXml { get { throw null; } set { } }
5910         [System.MonoTODOAttribute]
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)5911         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
Equals(object settingValue)5912         public override bool Equals(object settingValue) { throw null; }
GetHashCode()5913         public override int GetHashCode() { throw null; }
IsModified()5914         protected override bool IsModified() { throw null; }
Reset(System.Configuration.ConfigurationElement parentElement)5915         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
ResetModified()5916         protected override void ResetModified() { }
SerializeToXmlElement(System.Xml.XmlWriter writer, string elementName)5917         protected override bool SerializeToXmlElement(System.Xml.XmlWriter writer, string elementName) { throw null; }
Unmerge(System.Configuration.ConfigurationElement sourceElement, System.Configuration.ConfigurationElement parentElement, System.Configuration.ConfigurationSaveMode saveMode)5918         protected override void Unmerge(System.Configuration.ConfigurationElement sourceElement, System.Configuration.ConfigurationElement parentElement, System.Configuration.ConfigurationSaveMode saveMode) { }
5919     }
5920     public partial class SingleTagSectionHandler : System.Configuration.IConfigurationSectionHandler
5921     {
SingleTagSectionHandler()5922         public SingleTagSectionHandler() { }
Create(object parent, object context, System.Xml.XmlNode section)5923         public virtual object Create(object parent, object context, System.Xml.XmlNode section) { throw null; }
5924     }
5925     public enum SpecialSetting
5926     {
5927         ConnectionString = 0,
5928         WebServiceUrl = 1,
5929     }
5930     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
5931     public sealed partial class SpecialSettingAttribute : System.Attribute
5932     {
SpecialSettingAttribute(System.Configuration.SpecialSetting specialSetting)5933         public SpecialSettingAttribute(System.Configuration.SpecialSetting specialSetting) { }
5934         public System.Configuration.SpecialSetting SpecialSetting { get { throw null; } }
5935     }
5936     public sealed partial class UriSection : System.Configuration.ConfigurationSection
5937     {
UriSection()5938         public UriSection() { }
5939         [System.Configuration.ConfigurationPropertyAttribute("idn")]
5940         public System.Configuration.IdnElement Idn { get { throw null; } }
5941         [System.Configuration.ConfigurationPropertyAttribute("iriParsing")]
5942         public System.Configuration.IriParsingElement IriParsing { get { throw null; } }
5943         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5944     }
5945     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5946     public sealed partial class UserScopedSettingAttribute : System.Configuration.SettingAttribute
5947     {
UserScopedSettingAttribute()5948         public UserScopedSettingAttribute() { }
5949     }
5950     public sealed partial class UserSettingsGroup : System.Configuration.ConfigurationSectionGroup
5951     {
UserSettingsGroup()5952         public UserSettingsGroup() { }
5953     }
5954 }
5955 namespace System.Diagnostics
5956 {
5957     [System.Diagnostics.SwitchLevelAttribute(typeof(bool))]
5958     public partial class BooleanSwitch : System.Diagnostics.Switch
5959     {
BooleanSwitch(string displayName, string description)5960         public BooleanSwitch(string displayName, string description) : base (default(string), default(string)) { }
BooleanSwitch(string displayName, string description, string defaultSwitchValue)5961         public BooleanSwitch(string displayName, string description, string defaultSwitchValue) : base (default(string), default(string)) { }
5962         public bool Enabled { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
OnValueChanged()5963         protected override void OnValueChanged() { }
5964     }
5965     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
5966     public partial class ConsoleTraceListener : System.Diagnostics.TextWriterTraceListener
5967     {
ConsoleTraceListener()5968         public ConsoleTraceListener() { }
ConsoleTraceListener(bool useErrorStream)5969         public ConsoleTraceListener(bool useErrorStream) { }
Close()5970         public override void Close() { }
5971     }
5972     public partial class CorrelationManager
5973     {
CorrelationManager()5974         internal CorrelationManager() { }
5975         public System.Guid ActivityId { get { throw null; } set { } }
5976         public System.Collections.Stack LogicalOperationStack { get { throw null; } }
StartLogicalOperation()5977         public void StartLogicalOperation() { }
StartLogicalOperation(object operationId)5978         public void StartLogicalOperation(object operationId) { }
StopLogicalOperation()5979         public void StopLogicalOperation() { }
5980     }
5981     [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.CounterCreationDataConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
5982     [System.SerializableAttribute]
5983     public partial class CounterCreationData
5984     {
CounterCreationData()5985         public CounterCreationData() { }
CounterCreationData(string counterName, string counterHelp, System.Diagnostics.PerformanceCounterType counterType)5986         public CounterCreationData(string counterName, string counterHelp, System.Diagnostics.PerformanceCounterType counterType) { }
5987         [System.ComponentModel.DefaultValueAttribute("")]
5988         [System.Diagnostics.MonitoringDescriptionAttribute("Description of this counter.")]
5989         public string CounterHelp { get { throw null; } set { } }
5990         [System.ComponentModel.DefaultValueAttribute("")]
5991         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
5992         [System.Diagnostics.MonitoringDescriptionAttribute("Name of this counter.")]
5993         public string CounterName { get { throw null; } set { } }
5994         [System.ComponentModel.DefaultValueAttribute(typeof(System.Diagnostics.PerformanceCounterType), "NumberOfItems32")]
5995         [System.Diagnostics.MonitoringDescriptionAttribute("Type of this counter.")]
5996         public System.Diagnostics.PerformanceCounterType CounterType { get { throw null; } set { } }
5997     }
5998     [System.SerializableAttribute]
5999     public partial class CounterCreationDataCollection : System.Collections.CollectionBase
6000     {
CounterCreationDataCollection()6001         public CounterCreationDataCollection() { }
CounterCreationDataCollection(System.Diagnostics.CounterCreationDataCollection value)6002         public CounterCreationDataCollection(System.Diagnostics.CounterCreationDataCollection value) { }
CounterCreationDataCollection(System.Diagnostics.CounterCreationData[] value)6003         public CounterCreationDataCollection(System.Diagnostics.CounterCreationData[] value) { }
6004         public System.Diagnostics.CounterCreationData this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.CounterCreationData value)6005         public int Add(System.Diagnostics.CounterCreationData value) { throw null; }
AddRange(System.Diagnostics.CounterCreationDataCollection value)6006         public void AddRange(System.Diagnostics.CounterCreationDataCollection value) { }
AddRange(System.Diagnostics.CounterCreationData[] value)6007         public void AddRange(System.Diagnostics.CounterCreationData[] value) { }
Contains(System.Diagnostics.CounterCreationData value)6008         public bool Contains(System.Diagnostics.CounterCreationData value) { throw null; }
CopyTo(System.Diagnostics.CounterCreationData[] array, int index)6009         public void CopyTo(System.Diagnostics.CounterCreationData[] array, int index) { }
IndexOf(System.Diagnostics.CounterCreationData value)6010         public int IndexOf(System.Diagnostics.CounterCreationData value) { throw null; }
Insert(int index, System.Diagnostics.CounterCreationData value)6011         public void Insert(int index, System.Diagnostics.CounterCreationData value) { }
OnValidate(object value)6012         protected override void OnValidate(object value) { }
Remove(System.Diagnostics.CounterCreationData value)6013         public virtual void Remove(System.Diagnostics.CounterCreationData value) { }
6014     }
6015     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
6016     public partial struct CounterSample
6017     {
6018         public static System.Diagnostics.CounterSample Empty;
CounterSampleSystem.Diagnostics.CounterSample6019         public CounterSample(long rawValue, long baseValue, long counterFrequency, long systemFrequency, long timeStamp, long timeStamp100nSec, System.Diagnostics.PerformanceCounterType counterType) { throw null;}
CounterSampleSystem.Diagnostics.CounterSample6020         public CounterSample(long rawValue, long baseValue, long counterFrequency, long systemFrequency, long timeStamp, long timeStamp100nSec, System.Diagnostics.PerformanceCounterType counterType, long counterTimeStamp) { throw null;}
6021         public long BaseValue { get { throw null; } }
6022         public long CounterFrequency { get { throw null; } }
6023         public long CounterTimeStamp { get { throw null; } }
6024         public System.Diagnostics.PerformanceCounterType CounterType { get { throw null; } }
6025         public long RawValue { get { throw null; } }
6026         public long SystemFrequency { get { throw null; } }
6027         public long TimeStamp { get { throw null; } }
6028         public long TimeStamp100nSec { get { throw null; } }
CalculateSystem.Diagnostics.CounterSample6029         public static float Calculate(System.Diagnostics.CounterSample counterSample) { throw null; }
CalculateSystem.Diagnostics.CounterSample6030         public static float Calculate(System.Diagnostics.CounterSample counterSample, System.Diagnostics.CounterSample nextCounterSample) { throw null; }
EqualsSystem.Diagnostics.CounterSample6031         public bool Equals(System.Diagnostics.CounterSample sample) { throw null; }
EqualsSystem.Diagnostics.CounterSample6032         public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Diagnostics.CounterSample6033         public override int GetHashCode() { throw null; }
operator ==System.Diagnostics.CounterSample6034         public static bool operator ==(System.Diagnostics.CounterSample a, System.Diagnostics.CounterSample b) { throw null; }
operator !=System.Diagnostics.CounterSample6035         public static bool operator !=(System.Diagnostics.CounterSample a, System.Diagnostics.CounterSample b) { throw null; }
6036     }
6037     public static partial class CounterSampleCalculator
6038     {
ComputeCounterValue(System.Diagnostics.CounterSample newSample)6039         public static float ComputeCounterValue(System.Diagnostics.CounterSample newSample) { throw null; }
6040         [System.MonoTODOAttribute("What's the algorithm?")]
ComputeCounterValue(System.Diagnostics.CounterSample oldSample, System.Diagnostics.CounterSample newSample)6041         public static float ComputeCounterValue(System.Diagnostics.CounterSample oldSample, System.Diagnostics.CounterSample newSample) { throw null; }
6042     }
6043     public partial class DataReceivedEventArgs : System.EventArgs
6044     {
DataReceivedEventArgs()6045         internal DataReceivedEventArgs() { }
6046         public string Data { get { throw null; } }
6047     }
DataReceivedEventHandler(object sender, System.Diagnostics.DataReceivedEventArgs e)6048     public delegate void DataReceivedEventHandler(object sender, System.Diagnostics.DataReceivedEventArgs e);
6049     public static partial class Debug
6050     {
6051         public static bool AutoFlush { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
6052         public static int IndentLevel { get { throw null; } set { } }
6053         public static int IndentSize { get { throw null; } set { } }
6054         public static System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2)), System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]get { throw null; } }
6055         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition)6056         public static void Assert(bool condition) { }
6057         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message)6058         public static void Assert(bool condition, string message) { }
6059         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message, string detailMessage)6060         public static void Assert(bool condition, string message, string detailMessage) { }
6061         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message, string detailMessageFormat, params object[] args)6062         public static void Assert(bool condition, string message, string detailMessageFormat, params object[] args) { }
6063         [System.Diagnostics.ConditionalAttribute("DEBUG")]
6064         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Close()6065         public static void Close() { }
6066         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Fail(string message)6067         public static void Fail(string message) { }
6068         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Fail(string message, string detailMessage)6069         public static void Fail(string message, string detailMessage) { }
6070         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Flush()6071         public static void Flush() { }
6072         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Indent()6073         public static void Indent() { }
6074         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Print(string message)6075         public static void Print(string message) { }
6076         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Print(string format, params object[] args)6077         public static void Print(string format, params object[] args) { }
6078         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Unindent()6079         public static void Unindent() { }
6080         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(object value)6081         public static void Write(object value) { }
6082         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(object value, string category)6083         public static void Write(object value, string category) { }
6084         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(string message)6085         public static void Write(string message) { }
6086         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(string message, string category)6087         public static void Write(string message, string category) { }
6088         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, object value)6089         public static void WriteIf(bool condition, object value) { }
6090         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, object value, string category)6091         public static void WriteIf(bool condition, object value, string category) { }
6092         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, string message)6093         public static void WriteIf(bool condition, string message) { }
6094         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, string message, string category)6095         public static void WriteIf(bool condition, string message, string category) { }
6096         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(object value)6097         public static void WriteLine(object value) { }
6098         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(object value, string category)6099         public static void WriteLine(object value, string category) { }
6100         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string message)6101         public static void WriteLine(string message) { }
6102         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string format, params object[] args)6103         public static void WriteLine(string format, params object[] args) { }
6104         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string message, string category)6105         public static void WriteLine(string message, string category) { }
6106         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, object value)6107         public static void WriteLineIf(bool condition, object value) { }
6108         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, object value, string category)6109         public static void WriteLineIf(bool condition, object value, string category) { }
6110         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, string message)6111         public static void WriteLineIf(bool condition, string message) { }
6112         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, string message, string category)6113         public static void WriteLineIf(bool condition, string message, string category) { }
6114     }
6115     public partial class DefaultTraceListener : System.Diagnostics.TraceListener
6116     {
DefaultTraceListener()6117         public DefaultTraceListener() { }
6118         [System.MonoTODOAttribute("AssertUiEnabled defaults to False; should follow Environment.UserInteractive.")]
6119         public bool AssertUiEnabled { get { throw null; } set { } }
6120         [System.MonoTODOAttribute]
6121         public string LogFileName { get { throw null; } set { } }
Fail(string message)6122         public override void Fail(string message) { }
Fail(string message, string detailMessage)6123         public override void Fail(string message, string detailMessage) { }
Write(string message)6124         public override void Write(string message) { }
WriteLine(string message)6125         public override void WriteLine(string message) { }
6126     }
6127     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
6128     public partial class DelimitedListTraceListener : System.Diagnostics.TextWriterTraceListener
6129     {
DelimitedListTraceListener(System.IO.Stream stream)6130         public DelimitedListTraceListener(System.IO.Stream stream) { }
DelimitedListTraceListener(System.IO.Stream stream, string name)6131         public DelimitedListTraceListener(System.IO.Stream stream, string name) { }
DelimitedListTraceListener(System.IO.TextWriter writer)6132         public DelimitedListTraceListener(System.IO.TextWriter writer) { }
DelimitedListTraceListener(System.IO.TextWriter writer, string name)6133         public DelimitedListTraceListener(System.IO.TextWriter writer, string name) { }
DelimitedListTraceListener(string fileName)6134         public DelimitedListTraceListener(string fileName) { }
DelimitedListTraceListener(string fileName, string name)6135         public DelimitedListTraceListener(string fileName, string name) { }
6136         public string Delimiter { get { throw null; } set { } }
GetSupportedAttributes()6137         protected internal override string[] GetSupportedAttributes() { throw null; }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)6138         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data)6139         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message)6140         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)6141         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
6142     }
6143     [System.ObsoleteAttribute("This class is obsoleted")]
6144     public partial class DiagnosticsConfigurationHandler : System.Configuration.IConfigurationSectionHandler
6145     {
DiagnosticsConfigurationHandler()6146         public DiagnosticsConfigurationHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)6147         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
6148     }
6149     public partial class EntryWrittenEventArgs : System.EventArgs
6150     {
EntryWrittenEventArgs()6151         public EntryWrittenEventArgs() { }
EntryWrittenEventArgs(System.Diagnostics.EventLogEntry entry)6152         public EntryWrittenEventArgs(System.Diagnostics.EventLogEntry entry) { }
6153         public System.Diagnostics.EventLogEntry Entry { get { throw null; } }
6154     }
EntryWrittenEventHandler(object sender, System.Diagnostics.EntryWrittenEventArgs e)6155     public delegate void EntryWrittenEventHandler(object sender, System.Diagnostics.EntryWrittenEventArgs e);
6156     public partial class EventInstance
6157     {
EventInstance(long instanceId, int categoryId)6158         public EventInstance(long instanceId, int categoryId) { }
EventInstance(long instanceId, int categoryId, System.Diagnostics.EventLogEntryType entryType)6159         public EventInstance(long instanceId, int categoryId, System.Diagnostics.EventLogEntryType entryType) { }
6160         public int CategoryId { get { throw null; } set { } }
6161         public System.Diagnostics.EventLogEntryType EntryType { get { throw null; } set { } }
6162         public long InstanceId { get { throw null; } set { } }
6163     }
6164     [System.ComponentModel.DefaultEventAttribute("EntryWritten")]
6165     [System.ComponentModel.InstallerTypeAttribute("System.Diagnostics.EventLogInstaller")]
6166     [System.Diagnostics.MonitoringDescriptionAttribute("Represents an event log")]
6167     public partial class EventLog : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
6168     {
EventLog()6169         public EventLog() { }
EventLog(string logName)6170         public EventLog(string logName) { }
EventLog(string logName, string machineName)6171         public EventLog(string logName, string machineName) { }
EventLog(string logName, string machineName, string source)6172         public EventLog(string logName, string machineName, string source) { }
6173         [System.ComponentModel.BrowsableAttribute(false)]
6174         [System.ComponentModel.DefaultValueAttribute(false)]
6175         [System.Diagnostics.MonitoringDescriptionAttribute("If enabled raises event when a log is written.")]
6176         public bool EnableRaisingEvents { get { throw null; } set { } }
6177         [System.ComponentModel.BrowsableAttribute(false)]
6178         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6179         [System.Diagnostics.MonitoringDescriptionAttribute("The entries in the log.")]
6180         public System.Diagnostics.EventLogEntryCollection Entries { get { throw null; } }
6181         [System.ComponentModel.DefaultValueAttribute("")]
6182         [System.ComponentModel.ReadOnlyAttribute(true)]
6183         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
6184         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.LogConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6185         [System.Diagnostics.MonitoringDescriptionAttribute("Name of the log that is read and written.")]
6186         public string Log { get { throw null; } set { } }
6187         [System.ComponentModel.BrowsableAttribute(false)]
6188         public string LogDisplayName { get { throw null; } }
6189         [System.ComponentModel.DefaultValueAttribute(".")]
6190         [System.ComponentModel.ReadOnlyAttribute(true)]
6191         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
6192         [System.Diagnostics.MonitoringDescriptionAttribute("Name of the machine that this log get written to.")]
6193         public string MachineName { get { throw null; } set { } }
6194         [System.ComponentModel.BrowsableAttribute(false)]
6195         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6196         [System.MonoTODOAttribute]
6197         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6198         public long MaximumKilobytes { get { throw null; } set { } }
6199         [System.ComponentModel.BrowsableAttribute(false)]
6200         [System.MonoTODOAttribute]
6201         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6202         public int MinimumRetentionDays { get { throw null; } }
6203         [System.ComponentModel.BrowsableAttribute(false)]
6204         [System.MonoTODOAttribute]
6205         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6206         public System.Diagnostics.OverflowAction OverflowAction { get { throw null; } }
6207         [System.ComponentModel.DefaultValueAttribute("")]
6208         [System.ComponentModel.ReadOnlyAttribute(true)]
6209         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
6210         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6211         [System.Diagnostics.MonitoringDescriptionAttribute("The application name that writes the log.")]
6212         public string Source { get { throw null; } set { } }
6213         [System.ComponentModel.BrowsableAttribute(false)]
6214         [System.ComponentModel.DefaultValueAttribute(null)]
6215         [System.Diagnostics.MonitoringDescriptionAttribute("An object that synchronizes event handler calls.")]
6216         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
6217         [System.Diagnostics.MonitoringDescriptionAttribute("Raised for each EventLog entry written.")]
6218         public event System.Diagnostics.EntryWrittenEventHandler EntryWritten { add { } remove { } }
BeginInit()6219         public void BeginInit() { }
Clear()6220         public void Clear() { }
Close()6221         public void Close() { }
6222         [System.MonoNotSupportedAttribute("remote machine is not supported")]
CreateEventSource(System.Diagnostics.EventSourceCreationData sourceData)6223         public static void CreateEventSource(System.Diagnostics.EventSourceCreationData sourceData) { }
CreateEventSource(string source, string logName)6224         public static void CreateEventSource(string source, string logName) { }
6225         [System.ObsoleteAttribute("use CreateEventSource(EventSourceCreationData) instead")]
CreateEventSource(string source, string logName, string machineName)6226         public static void CreateEventSource(string source, string logName, string machineName) { }
Delete(string logName)6227         public static void Delete(string logName) { }
6228         [System.MonoNotSupportedAttribute("remote machine is not supported")]
Delete(string logName, string machineName)6229         public static void Delete(string logName, string machineName) { }
DeleteEventSource(string source)6230         public static void DeleteEventSource(string source) { }
6231         [System.MonoNotSupportedAttribute("remote machine is not supported")]
DeleteEventSource(string source, string machineName)6232         public static void DeleteEventSource(string source, string machineName) { }
Dispose(bool disposing)6233         protected override void Dispose(bool disposing) { }
EndInit()6234         public void EndInit() { }
Exists(string logName)6235         public static bool Exists(string logName) { throw null; }
6236         [System.MonoNotSupportedAttribute("remote machine is not supported")]
Exists(string logName, string machineName)6237         public static bool Exists(string logName, string machineName) { throw null; }
GetEventLogs()6238         public static System.Diagnostics.EventLog[] GetEventLogs() { throw null; }
6239         [System.MonoNotSupportedAttribute("remote machine is not supported")]
GetEventLogs(string machineName)6240         public static System.Diagnostics.EventLog[] GetEventLogs(string machineName) { throw null; }
6241         [System.MonoNotSupportedAttribute("remote machine is not supported")]
LogNameFromSourceName(string source, string machineName)6242         public static string LogNameFromSourceName(string source, string machineName) { throw null; }
6243         [System.MonoTODOAttribute]
6244         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
ModifyOverflowPolicy(System.Diagnostics.OverflowAction action, int retentionDays)6245         public void ModifyOverflowPolicy(System.Diagnostics.OverflowAction action, int retentionDays) { }
6246         [System.MonoTODOAttribute]
6247         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
RegisterDisplayName(string resourceFile, long resourceId)6248         public void RegisterDisplayName(string resourceFile, long resourceId) { }
SourceExists(string source)6249         public static bool SourceExists(string source) { throw null; }
6250         [System.MonoNotSupportedAttribute("remote machine is not supported")]
SourceExists(string source, string machineName)6251         public static bool SourceExists(string source, string machineName) { throw null; }
WriteEntry(string message)6252         public void WriteEntry(string message) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type)6253         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID)6254         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID, short category)6255         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID, short category) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID, short category, byte[] rawData)6256         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID, short category, byte[] rawData) { }
WriteEntry(string source, string message)6257         public static void WriteEntry(string source, string message) { }
WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type)6258         public static void WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type) { }
WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID)6259         public static void WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID) { }
WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID, short category)6260         public static void WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID, short category) { }
WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID, short category, byte[] rawData)6261         public static void WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID, short category, byte[] rawData) { }
6262         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
WriteEvent(System.Diagnostics.EventInstance instance, byte[] data, params object[] values)6263         public void WriteEvent(System.Diagnostics.EventInstance instance, byte[] data, params object[] values) { }
6264         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
WriteEvent(System.Diagnostics.EventInstance instance, params object[] values)6265         public void WriteEvent(System.Diagnostics.EventInstance instance, params object[] values) { }
WriteEvent(string source, System.Diagnostics.EventInstance instance, byte[] data, params object[] values)6266         public static void WriteEvent(string source, System.Diagnostics.EventInstance instance, byte[] data, params object[] values) { }
WriteEvent(string source, System.Diagnostics.EventInstance instance, params object[] values)6267         public static void WriteEvent(string source, System.Diagnostics.EventInstance instance, params object[] values) { }
6268     }
6269     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
6270     [System.ComponentModel.ToolboxItemAttribute(false)]
6271     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
6272     [System.SerializableAttribute]
6273     public sealed partial class EventLogEntry : System.ComponentModel.Component, System.Runtime.Serialization.ISerializable
6274     {
EventLogEntry()6275         internal EventLogEntry() { }
6276         [System.Diagnostics.MonitoringDescriptionAttribute("The category of this event entry.")]
6277         public string Category { get { throw null; } }
6278         [System.Diagnostics.MonitoringDescriptionAttribute("An ID for the category of this event entry.")]
6279         public short CategoryNumber { get { throw null; } }
6280         [System.Diagnostics.MonitoringDescriptionAttribute("Binary data associated with this event entry.")]
6281         public byte[] Data { get { throw null; } }
6282         [System.Diagnostics.MonitoringDescriptionAttribute("The type of this event entry.")]
6283         public System.Diagnostics.EventLogEntryType EntryType { get { throw null; } }
6284         [System.Diagnostics.MonitoringDescriptionAttribute("An ID number for this event entry.")]
6285         [System.ObsoleteAttribute("Use InstanceId")]
6286         public int EventID { get { throw null; } }
6287         [System.Diagnostics.MonitoringDescriptionAttribute("Sequence numer of this event entry.")]
6288         public int Index { get { throw null; } }
6289         [System.Diagnostics.MonitoringDescriptionAttribute("The instance ID for this event entry.")]
6290         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6291         public long InstanceId { get { throw null; } }
6292         [System.Diagnostics.MonitoringDescriptionAttribute("The Computer on which this event entry occured.")]
6293         public string MachineName { get { throw null; } }
6294         [System.ComponentModel.EditorAttribute("System.ComponentModel.Design.BinaryEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6295         [System.Diagnostics.MonitoringDescriptionAttribute("The message of this event entry.")]
6296         public string Message { get { throw null; } }
6297         [System.Diagnostics.MonitoringDescriptionAttribute("Application strings for this event entry.")]
6298         public string[] ReplacementStrings { get { throw null; } }
6299         [System.Diagnostics.MonitoringDescriptionAttribute("The source application of this event entry.")]
6300         public string Source { get { throw null; } }
6301         [System.Diagnostics.MonitoringDescriptionAttribute("Generation time of this event entry.")]
6302         public System.DateTime TimeGenerated { get { throw null; } }
6303         [System.Diagnostics.MonitoringDescriptionAttribute("The time at which this event entry was written to the logfile.")]
6304         public System.DateTime TimeWritten { get { throw null; } }
6305         [System.Diagnostics.MonitoringDescriptionAttribute("The name of a user associated with this event entry.")]
6306         public string UserName { get { throw null; } }
Equals(System.Diagnostics.EventLogEntry otherEntry)6307         public bool Equals(System.Diagnostics.EventLogEntry otherEntry) { throw null; }
6308         [System.MonoTODOAttribute("Needs serialization support")]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)6309         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
6310     }
6311     public partial class EventLogEntryCollection : System.Collections.ICollection, System.Collections.IEnumerable
6312     {
EventLogEntryCollection()6313         internal EventLogEntryCollection() { }
6314         public int Count { get { throw null; } }
6315         public virtual System.Diagnostics.EventLogEntry this[int index] { get { throw null; } }
6316         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
6317         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Diagnostics.EventLogEntry[] entries, int index)6318         public void CopyTo(System.Diagnostics.EventLogEntry[] entries, int index) { }
GetEnumerator()6319         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)6320         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
6321     }
6322     public enum EventLogEntryType
6323     {
6324         Error = 1,
6325         FailureAudit = 16,
6326         Information = 4,
6327         SuccessAudit = 8,
6328         Warning = 2,
6329     }
6330     [System.SerializableAttribute]
6331     public sealed partial class EventLogPermission : System.Security.Permissions.ResourcePermissionBase
6332     {
EventLogPermission()6333         public EventLogPermission() { }
EventLogPermission(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName)6334         public EventLogPermission(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName) { }
EventLogPermission(System.Diagnostics.EventLogPermissionEntry[] permissionAccessEntries)6335         public EventLogPermission(System.Diagnostics.EventLogPermissionEntry[] permissionAccessEntries) { }
EventLogPermission(System.Security.Permissions.PermissionState state)6336         public EventLogPermission(System.Security.Permissions.PermissionState state) { }
6337         public System.Diagnostics.EventLogPermissionEntryCollection PermissionEntries { get { throw null; } }
6338     }
6339     [System.FlagsAttribute]
6340     public enum EventLogPermissionAccess
6341     {
6342         Administer = 48,
6343         [System.ObsoleteAttribute]
6344         Audit = 10,
6345         [System.ObsoleteAttribute]
6346         Browse = 2,
6347         [System.ObsoleteAttribute]
6348         Instrument = 6,
6349         None = 0,
6350         Write = 16,
6351     }
6352     [System.AttributeUsageAttribute((System.AttributeTargets)(621), AllowMultiple=true, Inherited=false)]
6353     [System.SerializableAttribute]
6354     public partial class EventLogPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
6355     {
EventLogPermissionAttribute(System.Security.Permissions.SecurityAction action)6356         public EventLogPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
6357         public string MachineName { get { throw null; } set { } }
6358         public System.Diagnostics.EventLogPermissionAccess PermissionAccess { get { throw null; } set { } }
CreatePermission()6359         public override System.Security.IPermission CreatePermission() { throw null; }
6360     }
6361     [System.SerializableAttribute]
6362     public partial class EventLogPermissionEntry
6363     {
EventLogPermissionEntry(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName)6364         public EventLogPermissionEntry(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName) { }
6365         public string MachineName { get { throw null; } }
6366         public System.Diagnostics.EventLogPermissionAccess PermissionAccess { get { throw null; } }
6367     }
6368     [System.SerializableAttribute]
6369     public partial class EventLogPermissionEntryCollection : System.Collections.CollectionBase
6370     {
EventLogPermissionEntryCollection()6371         internal EventLogPermissionEntryCollection() { }
6372         public System.Diagnostics.EventLogPermissionEntry this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.EventLogPermissionEntry value)6373         public int Add(System.Diagnostics.EventLogPermissionEntry value) { throw null; }
AddRange(System.Diagnostics.EventLogPermissionEntryCollection value)6374         public void AddRange(System.Diagnostics.EventLogPermissionEntryCollection value) { }
AddRange(System.Diagnostics.EventLogPermissionEntry[] value)6375         public void AddRange(System.Diagnostics.EventLogPermissionEntry[] value) { }
Contains(System.Diagnostics.EventLogPermissionEntry value)6376         public bool Contains(System.Diagnostics.EventLogPermissionEntry value) { throw null; }
CopyTo(System.Diagnostics.EventLogPermissionEntry[] array, int index)6377         public void CopyTo(System.Diagnostics.EventLogPermissionEntry[] array, int index) { }
IndexOf(System.Diagnostics.EventLogPermissionEntry value)6378         public int IndexOf(System.Diagnostics.EventLogPermissionEntry value) { throw null; }
Insert(int index, System.Diagnostics.EventLogPermissionEntry value)6379         public void Insert(int index, System.Diagnostics.EventLogPermissionEntry value) { }
OnClear()6380         protected override void OnClear() { }
OnInsert(int index, object value)6381         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)6382         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)6383         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Diagnostics.EventLogPermissionEntry value)6384         public void Remove(System.Diagnostics.EventLogPermissionEntry value) { }
6385     }
6386     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
6387     public sealed partial class EventLogTraceListener : System.Diagnostics.TraceListener
6388     {
EventLogTraceListener()6389         public EventLogTraceListener() { }
EventLogTraceListener(System.Diagnostics.EventLog eventLog)6390         public EventLogTraceListener(System.Diagnostics.EventLog eventLog) { }
EventLogTraceListener(string source)6391         public EventLogTraceListener(string source) { }
6392         public System.Diagnostics.EventLog EventLog { get { throw null; } set { } }
6393         public override string Name { get { throw null; } set { } }
Close()6394         public override void Close() { }
Dispose(bool disposing)6395         protected override void Dispose(bool disposing) { }
6396         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, object data)6397         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, object data) { }
6398         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, params object[] data)6399         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, params object[] data) { }
6400         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message)6401         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message) { }
6402         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args)6403         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args) { }
Write(string message)6404         public override void Write(string message) { }
WriteLine(string message)6405         public override void WriteLine(string message) { }
6406     }
6407     public partial class EventSourceCreationData
6408     {
EventSourceCreationData(string source, string logName)6409         public EventSourceCreationData(string source, string logName) { }
6410         public int CategoryCount { get { throw null; } set { } }
6411         public string CategoryResourceFile { get { throw null; } set { } }
6412         public string LogName { get { throw null; } set { } }
6413         public string MachineName { get { throw null; } set { } }
6414         public string MessageResourceFile { get { throw null; } set { } }
6415         public string ParameterResourceFile { get { throw null; } set { } }
6416         public string Source { get { throw null; } set { } }
6417     }
6418     public partial class EventTypeFilter : System.Diagnostics.TraceFilter
6419     {
EventTypeFilter(System.Diagnostics.SourceLevels level)6420         public EventTypeFilter(System.Diagnostics.SourceLevels level) { }
6421         public System.Diagnostics.SourceLevels EventType { get { throw null; } set { } }
ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data)6422         public override bool ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data) { throw null; }
6423     }
6424     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
6425     public sealed partial class FileVersionInfo
6426     {
FileVersionInfo()6427         internal FileVersionInfo() { }
6428         public string Comments { get { throw null; } }
6429         public string CompanyName { get { throw null; } }
6430         public int FileBuildPart { get { throw null; } }
6431         public string FileDescription { get { throw null; } }
6432         public int FileMajorPart { get { throw null; } }
6433         public int FileMinorPart { get { throw null; } }
6434         public string FileName { get { throw null; } }
6435         public int FilePrivatePart { get { throw null; } }
6436         public string FileVersion { get { throw null; } }
6437         public string InternalName { get { throw null; } }
6438         public bool IsDebug { get { throw null; } }
6439         public bool IsPatched { get { throw null; } }
6440         public bool IsPreRelease { get { throw null; } }
6441         public bool IsPrivateBuild { get { throw null; } }
6442         public bool IsSpecialBuild { get { throw null; } }
6443         public string Language { get { throw null; } }
6444         public string LegalCopyright { get { throw null; } }
6445         public string LegalTrademarks { get { throw null; } }
6446         public string OriginalFilename { get { throw null; } }
6447         public string PrivateBuild { get { throw null; } }
6448         public int ProductBuildPart { get { throw null; } }
6449         public int ProductMajorPart { get { throw null; } }
6450         public int ProductMinorPart { get { throw null; } }
6451         public string ProductName { get { throw null; } }
6452         public int ProductPrivatePart { get { throw null; } }
6453         public string ProductVersion { get { throw null; } }
6454         public string SpecialBuild { get { throw null; } }
GetVersionInfo(string fileName)6455         public static System.Diagnostics.FileVersionInfo GetVersionInfo(string fileName) { throw null; }
ToString()6456         public override string ToString() { throw null; }
6457     }
6458     [System.Runtime.InteropServices.GuidAttribute("73386977-D6FD-11D2-BED5-00C04F79E3AE")]
6459     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
6460     public partial interface ICollectData
6461     {
CloseData()6462         void CloseData();
6463         [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I4)]
CollectData([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I4)]int id, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SysInt)]System.IntPtr valueName, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SysInt)]System.IntPtr data, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I4)]int totalBytes, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SysInt)]out System.IntPtr res)6464         void CollectData([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I4)]int id, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SysInt)]System.IntPtr valueName, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SysInt)]System.IntPtr data, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.I4)]int totalBytes, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SysInt)]out System.IntPtr res);
6465     }
6466     public partial class InstanceData
6467     {
InstanceData(string instanceName, System.Diagnostics.CounterSample sample)6468         public InstanceData(string instanceName, System.Diagnostics.CounterSample sample) { }
6469         public string InstanceName { get { throw null; } }
6470         public long RawValue { get { throw null; } }
6471         public System.Diagnostics.CounterSample Sample { get { throw null; } }
6472     }
6473     public partial class InstanceDataCollection : System.Collections.DictionaryBase
6474     {
6475         [System.ObsoleteAttribute("Use InstanceDataCollectionCollection indexer instead.")]
InstanceDataCollection(string counterName)6476         public InstanceDataCollection(string counterName) { }
6477         public string CounterName { get { throw null; } }
6478         public System.Diagnostics.InstanceData this[string instanceName] { get { throw null; } }
6479         public System.Collections.ICollection Keys { get { throw null; } }
6480         public System.Collections.ICollection Values { get { throw null; } }
Contains(string instanceName)6481         public bool Contains(string instanceName) { throw null; }
CopyTo(System.Diagnostics.InstanceData[] instances, int index)6482         public void CopyTo(System.Diagnostics.InstanceData[] instances, int index) { }
6483     }
6484     public partial class InstanceDataCollectionCollection : System.Collections.DictionaryBase
6485     {
6486         [System.ObsoleteAttribute("Use PerformanceCounterCategory.ReadCategory()")]
InstanceDataCollectionCollection()6487         public InstanceDataCollectionCollection() { }
6488         public System.Diagnostics.InstanceDataCollection this[string counterName] { get { throw null; } }
6489         public System.Collections.ICollection Keys { get { throw null; } }
6490         public System.Collections.ICollection Values { get { throw null; } }
Contains(string counterName)6491         public bool Contains(string counterName) { throw null; }
CopyTo(System.Diagnostics.InstanceDataCollection[] counters, int index)6492         public void CopyTo(System.Diagnostics.InstanceDataCollection[] counters, int index) { }
6493     }
6494     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
6495     public partial class MonitoringDescriptionAttribute : System.ComponentModel.DescriptionAttribute
6496     {
MonitoringDescriptionAttribute(string description)6497         public MonitoringDescriptionAttribute(string description) { }
6498         public override string Description { get { throw null; } }
6499     }
6500     public enum OverflowAction
6501     {
6502         DoNotOverwrite = -1,
6503         OverwriteAsNeeded = 0,
6504         OverwriteOlder = 1,
6505     }
6506     [System.ComponentModel.InstallerTypeAttribute("System.Diagnostics.PerformanceCounterInstaller")]
6507     public sealed partial class PerformanceCounter : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
6508     {
6509         [System.ObsoleteAttribute]
6510         public static int DefaultFileMappingSize;
PerformanceCounter()6511         public PerformanceCounter() { }
PerformanceCounter(string categoryName, string counterName)6512         public PerformanceCounter(string categoryName, string counterName) { }
PerformanceCounter(string categoryName, string counterName, bool readOnly)6513         public PerformanceCounter(string categoryName, string counterName, bool readOnly) { }
PerformanceCounter(string categoryName, string counterName, string instanceName)6514         public PerformanceCounter(string categoryName, string counterName, string instanceName) { }
PerformanceCounter(string categoryName, string counterName, string instanceName, bool readOnly)6515         public PerformanceCounter(string categoryName, string counterName, string instanceName, bool readOnly) { }
PerformanceCounter(string categoryName, string counterName, string instanceName, string machineName)6516         public PerformanceCounter(string categoryName, string counterName, string instanceName, string machineName) { }
6517         [System.ComponentModel.DefaultValueAttribute("")]
6518         [System.ComponentModel.ReadOnlyAttribute(true)]
6519         [System.ComponentModel.SettingsBindableAttribute(true)]
6520         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.CategoryValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6521         public string CategoryName { get { throw null; } set { } }
6522         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6523         [System.ComponentModel.ReadOnlyAttribute(true)]
6524         [System.Diagnostics.MonitoringDescriptionAttribute("A description describing the counter.")]
6525         [System.MonoTODOAttribute]
6526         public string CounterHelp { get { throw null; } }
6527         [System.ComponentModel.DefaultValueAttribute("")]
6528         [System.ComponentModel.ReadOnlyAttribute(true)]
6529         [System.ComponentModel.SettingsBindableAttribute(true)]
6530         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.CounterNameConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6531         public string CounterName { get { throw null; } set { } }
6532         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6533         [System.Diagnostics.MonitoringDescriptionAttribute("The type of the counter.")]
6534         public System.Diagnostics.PerformanceCounterType CounterType { get { throw null; } }
6535         [System.ComponentModel.DefaultValueAttribute((System.Diagnostics.PerformanceCounterInstanceLifetime)(0))]
6536         [System.MonoTODOAttribute]
6537         public System.Diagnostics.PerformanceCounterInstanceLifetime InstanceLifetime { get { throw null; } set { } }
6538         [System.ComponentModel.DefaultValueAttribute("")]
6539         [System.ComponentModel.ReadOnlyAttribute(true)]
6540         [System.ComponentModel.SettingsBindableAttribute(true)]
6541         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.InstanceNameConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6542         public string InstanceName { get { throw null; } set { } }
6543         [System.ComponentModel.BrowsableAttribute(false)]
6544         [System.ComponentModel.DefaultValueAttribute(".")]
6545         [System.ComponentModel.SettingsBindableAttribute(true)]
6546         [System.MonoTODOAttribute("What's the machine name format?")]
6547         public string MachineName { get { throw null; } set { } }
6548         [System.ComponentModel.BrowsableAttribute(false)]
6549         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6550         [System.Diagnostics.MonitoringDescriptionAttribute("The raw value of the counter.")]
6551         public long RawValue { get { throw null; } set { } }
6552         [System.ComponentModel.BrowsableAttribute(false)]
6553         [System.ComponentModel.DefaultValueAttribute(true)]
6554         [System.Diagnostics.MonitoringDescriptionAttribute("The accessability level of the counter.")]
6555         public bool ReadOnly { get { throw null; } set { } }
BeginInit()6556         public void BeginInit() { }
Close()6557         public void Close() { }
CloseSharedResources()6558         public static void CloseSharedResources() { }
Decrement()6559         public long Decrement() { throw null; }
Dispose(bool disposing)6560         protected override void Dispose(bool disposing) { }
EndInit()6561         public void EndInit() { }
Increment()6562         public long Increment() { throw null; }
6563         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(1))]
IncrementBy(long value)6564         public long IncrementBy(long value) { throw null; }
NextSample()6565         public System.Diagnostics.CounterSample NextSample() { throw null; }
NextValue()6566         public float NextValue() { throw null; }
6567         [System.MonoTODOAttribute]
6568         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(1))]
RemoveInstance()6569         public void RemoveInstance() { }
6570     }
6571     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
6572     public sealed partial class PerformanceCounterCategory
6573     {
PerformanceCounterCategory()6574         public PerformanceCounterCategory() { }
PerformanceCounterCategory(string categoryName)6575         public PerformanceCounterCategory(string categoryName) { }
PerformanceCounterCategory(string categoryName, string machineName)6576         public PerformanceCounterCategory(string categoryName, string machineName) { }
6577         public string CategoryHelp { get { throw null; } }
6578         public string CategoryName { get { throw null; } set { } }
6579         public System.Diagnostics.PerformanceCounterCategoryType CategoryType { get { throw null; } }
6580         public string MachineName { get { throw null; } set { } }
CounterExists(string counterName)6581         public bool CounterExists(string counterName) { throw null; }
CounterExists(string counterName, string categoryName)6582         public static bool CounterExists(string counterName, string categoryName) { throw null; }
CounterExists(string counterName, string categoryName, string machineName)6583         public static bool CounterExists(string counterName, string categoryName, string machineName) { throw null; }
6584         [System.ObsoleteAttribute("Use another overload that uses PerformanceCounterCategoryType instead")]
Create(string categoryName, string categoryHelp, System.Diagnostics.CounterCreationDataCollection counterData)6585         public static System.Diagnostics.PerformanceCounterCategory Create(string categoryName, string categoryHelp, System.Diagnostics.CounterCreationDataCollection counterData) { throw null; }
Create(string categoryName, string categoryHelp, System.Diagnostics.PerformanceCounterCategoryType categoryType, System.Diagnostics.CounterCreationDataCollection counterData)6586         public static System.Diagnostics.PerformanceCounterCategory Create(string categoryName, string categoryHelp, System.Diagnostics.PerformanceCounterCategoryType categoryType, System.Diagnostics.CounterCreationDataCollection counterData) { throw null; }
Create(string categoryName, string categoryHelp, System.Diagnostics.PerformanceCounterCategoryType categoryType, string counterName, string counterHelp)6587         public static System.Diagnostics.PerformanceCounterCategory Create(string categoryName, string categoryHelp, System.Diagnostics.PerformanceCounterCategoryType categoryType, string counterName, string counterHelp) { throw null; }
6588         [System.ObsoleteAttribute("Use another overload that uses PerformanceCounterCategoryType instead")]
Create(string categoryName, string categoryHelp, string counterName, string counterHelp)6589         public static System.Diagnostics.PerformanceCounterCategory Create(string categoryName, string categoryHelp, string counterName, string counterHelp) { throw null; }
Delete(string categoryName)6590         public static void Delete(string categoryName) { }
Exists(string categoryName)6591         public static bool Exists(string categoryName) { throw null; }
Exists(string categoryName, string machineName)6592         public static bool Exists(string categoryName, string machineName) { throw null; }
GetCategories()6593         public static System.Diagnostics.PerformanceCounterCategory[] GetCategories() { throw null; }
GetCategories(string machineName)6594         public static System.Diagnostics.PerformanceCounterCategory[] GetCategories(string machineName) { throw null; }
GetCounters()6595         public System.Diagnostics.PerformanceCounter[] GetCounters() { throw null; }
GetCounters(string instanceName)6596         public System.Diagnostics.PerformanceCounter[] GetCounters(string instanceName) { throw null; }
GetInstanceNames()6597         public string[] GetInstanceNames() { throw null; }
InstanceExists(string instanceName)6598         public bool InstanceExists(string instanceName) { throw null; }
InstanceExists(string instanceName, string categoryName)6599         public static bool InstanceExists(string instanceName, string categoryName) { throw null; }
InstanceExists(string instanceName, string categoryName, string machineName)6600         public static bool InstanceExists(string instanceName, string categoryName, string machineName) { throw null; }
6601         [System.MonoTODOAttribute]
ReadCategory()6602         public System.Diagnostics.InstanceDataCollectionCollection ReadCategory() { throw null; }
6603     }
6604     public enum PerformanceCounterCategoryType
6605     {
6606         MultiInstance = 1,
6607         SingleInstance = 0,
6608         Unknown = -1,
6609     }
6610     public enum PerformanceCounterInstanceLifetime
6611     {
6612         Global = 0,
6613         Process = 1,
6614     }
6615     [System.MonoTODOAttribute("not implemented")]
6616     [System.ObsoleteAttribute("use PerformanceCounter")]
6617     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
6618     [System.Runtime.InteropServices.GuidAttribute("82840be1-d273-11d2-b94a-00600893b17a")]
6619     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
6620     public sealed partial class PerformanceCounterManager : System.Diagnostics.ICollectData
6621     {
6622         [System.ObsoleteAttribute("use PerformanceCounter")]
PerformanceCounterManager()6623         public PerformanceCounterManager() { }
System.Diagnostics.ICollectData.CloseData()6624         void System.Diagnostics.ICollectData.CloseData() { }
System.Diagnostics.ICollectData.CollectData(int callIdx, System.IntPtr valueNamePtr, System.IntPtr dataPtr, int totalBytes, out System.IntPtr res)6625         void System.Diagnostics.ICollectData.CollectData(int callIdx, System.IntPtr valueNamePtr, System.IntPtr dataPtr, int totalBytes, out System.IntPtr res) { res = default(System.IntPtr); }
6626     }
6627     [System.SerializableAttribute]
6628     public sealed partial class PerformanceCounterPermission : System.Security.Permissions.ResourcePermissionBase
6629     {
PerformanceCounterPermission()6630         public PerformanceCounterPermission() { }
PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName)6631         public PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName) { }
PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionEntry[] permissionAccessEntries)6632         public PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionEntry[] permissionAccessEntries) { }
PerformanceCounterPermission(System.Security.Permissions.PermissionState state)6633         public PerformanceCounterPermission(System.Security.Permissions.PermissionState state) { }
6634         public System.Diagnostics.PerformanceCounterPermissionEntryCollection PermissionEntries { get { throw null; } }
6635     }
6636     [System.FlagsAttribute]
6637     public enum PerformanceCounterPermissionAccess
6638     {
6639         Administer = 7,
6640         [System.ObsoleteAttribute]
6641         Browse = 1,
6642         [System.ObsoleteAttribute]
6643         Instrument = 3,
6644         None = 0,
6645         Read = 1,
6646         Write = 2,
6647     }
6648     [System.AttributeUsageAttribute((System.AttributeTargets)(621), AllowMultiple=true, Inherited=false)]
6649     [System.SerializableAttribute]
6650     public partial class PerformanceCounterPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
6651     {
PerformanceCounterPermissionAttribute(System.Security.Permissions.SecurityAction action)6652         public PerformanceCounterPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
6653         public string CategoryName { get { throw null; } set { } }
6654         public string MachineName { get { throw null; } set { } }
6655         public System.Diagnostics.PerformanceCounterPermissionAccess PermissionAccess { get { throw null; } set { } }
CreatePermission()6656         public override System.Security.IPermission CreatePermission() { throw null; }
6657     }
6658     [System.SerializableAttribute]
6659     public partial class PerformanceCounterPermissionEntry
6660     {
PerformanceCounterPermissionEntry(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName)6661         public PerformanceCounterPermissionEntry(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName) { }
6662         public string CategoryName { get { throw null; } }
6663         public string MachineName { get { throw null; } }
6664         public System.Diagnostics.PerformanceCounterPermissionAccess PermissionAccess { get { throw null; } }
6665     }
6666     [System.SerializableAttribute]
6667     public partial class PerformanceCounterPermissionEntryCollection : System.Collections.CollectionBase
6668     {
PerformanceCounterPermissionEntryCollection()6669         internal PerformanceCounterPermissionEntryCollection() { }
6670         public System.Diagnostics.PerformanceCounterPermissionEntry this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.PerformanceCounterPermissionEntry value)6671         public int Add(System.Diagnostics.PerformanceCounterPermissionEntry value) { throw null; }
AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection value)6672         public void AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection value) { }
AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[] value)6673         public void AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[] value) { }
Contains(System.Diagnostics.PerformanceCounterPermissionEntry value)6674         public bool Contains(System.Diagnostics.PerformanceCounterPermissionEntry value) { throw null; }
CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[] array, int index)6675         public void CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[] array, int index) { }
IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry value)6676         public int IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry value) { throw null; }
Insert(int index, System.Diagnostics.PerformanceCounterPermissionEntry value)6677         public void Insert(int index, System.Diagnostics.PerformanceCounterPermissionEntry value) { }
OnClear()6678         protected override void OnClear() { }
OnInsert(int index, object value)6679         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)6680         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)6681         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Diagnostics.PerformanceCounterPermissionEntry value)6682         public void Remove(System.Diagnostics.PerformanceCounterPermissionEntry value) { }
6683     }
6684     [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.AlphabeticalEnumConverter")]
6685     public enum PerformanceCounterType
6686     {
6687         AverageBase = 1073939458,
6688         AverageCount64 = 1073874176,
6689         AverageTimer32 = 805438464,
6690         CounterDelta32 = 4195328,
6691         CounterDelta64 = 4195584,
6692         CounterMultiBase = 1107494144,
6693         CounterMultiTimer = 574686464,
6694         CounterMultiTimer100Ns = 575735040,
6695         CounterMultiTimer100NsInverse = 592512256,
6696         CounterMultiTimerInverse = 591463680,
6697         CounterTimer = 541132032,
6698         CounterTimerInverse = 557909248,
6699         CountPerTimeInterval32 = 4523008,
6700         CountPerTimeInterval64 = 4523264,
6701         ElapsedTime = 807666944,
6702         NumberOfItems32 = 65536,
6703         NumberOfItems64 = 65792,
6704         NumberOfItemsHEX32 = 0,
6705         NumberOfItemsHEX64 = 256,
6706         RateOfCountsPerSecond32 = 272696320,
6707         RateOfCountsPerSecond64 = 272696576,
6708         RawBase = 1073939459,
6709         RawFraction = 537003008,
6710         SampleBase = 1073939457,
6711         SampleCounter = 4260864,
6712         SampleFraction = 549585920,
6713         Timer100Ns = 542180608,
6714         Timer100NsInverse = 558957824,
6715     }
6716     [System.ComponentModel.DefaultEventAttribute("Exited")]
6717     [System.ComponentModel.DefaultPropertyAttribute("StartInfo")]
6718     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6719     [System.Diagnostics.MonitoringDescriptionAttribute("Provides access to local and remote processes, enabling starting and stopping of local processes.")]
6720     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
6721     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
6722     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, Synchronization=true, ExternalProcessMgmt=true, SelfAffectingProcessMgmt=true)]
6723     public partial class Process : System.ComponentModel.Component
6724     {
Process()6725         public Process() { }
6726         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6727         [System.Diagnostics.MonitoringDescriptionAttribute("Base process priority.")]
6728         [System.MonoTODOAttribute]
6729         public int BasePriority { get { throw null; } }
6730         [System.ComponentModel.BrowsableAttribute(false)]
6731         [System.ComponentModel.DefaultValueAttribute(false)]
6732         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process component should watch for the associated process to exit, and raise the Exited event.")]
6733         public bool EnableRaisingEvents { get { throw null; } set { } }
6734         [System.ComponentModel.BrowsableAttribute(false)]
6735         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6736         [System.Diagnostics.MonitoringDescriptionAttribute("The value returned from the associated process when it terminated.")]
6737         public int ExitCode { get { throw null; } }
6738         [System.ComponentModel.BrowsableAttribute(false)]
6739         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6740         [System.Diagnostics.MonitoringDescriptionAttribute("The time that the associated process exited.")]
6741         public System.DateTime ExitTime { get { throw null; } }
6742         [System.ComponentModel.BrowsableAttribute(false)]
6743         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6744         [System.Diagnostics.MonitoringDescriptionAttribute("Returns the native handle for this process.   The handle is only available if the process was started using this component.")]
6745         public System.IntPtr Handle { get { throw null; } }
6746         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6747         [System.Diagnostics.MonitoringDescriptionAttribute("Handles for this process.")]
6748         [System.MonoTODOAttribute]
6749         public int HandleCount { get { throw null; } }
6750         [System.ComponentModel.BrowsableAttribute(false)]
6751         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6752         [System.Diagnostics.MonitoringDescriptionAttribute("Indicates if the associated process has been terminated.")]
6753         public bool HasExited { get { throw null; } }
6754         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6755         [System.Diagnostics.MonitoringDescriptionAttribute("The unique identifier for the process.")]
6756         public int Id { get { throw null; } }
6757         [System.ComponentModel.BrowsableAttribute(false)]
6758         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6759         [System.Diagnostics.MonitoringDescriptionAttribute("The name of the machine the running the process.")]
6760         public string MachineName { get { throw null; } }
6761         [System.ComponentModel.BrowsableAttribute(false)]
6762         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6763         [System.Diagnostics.MonitoringDescriptionAttribute("The main module of the process.")]
6764         public System.Diagnostics.ProcessModule MainModule { get { throw null; } }
6765         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6766         [System.Diagnostics.MonitoringDescriptionAttribute("The handle of the main window of the process.")]
6767         [System.MonoTODOAttribute]
6768         public System.IntPtr MainWindowHandle { get { throw null; } }
6769         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6770         [System.Diagnostics.MonitoringDescriptionAttribute("The title of the main window of the process.")]
6771         [System.MonoTODOAttribute]
6772         public string MainWindowTitle { get { throw null; } }
6773         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6774         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of physical memory the process has required since it was started.")]
6775         public System.IntPtr MaxWorkingSet { get { throw null; } set { } }
6776         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6777         [System.Diagnostics.MonitoringDescriptionAttribute("The minimum amount of physical memory the process has required since it was started.")]
6778         public System.IntPtr MinWorkingSet { get { throw null; } set { } }
6779         [System.ComponentModel.BrowsableAttribute(false)]
6780         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6781         [System.Diagnostics.MonitoringDescriptionAttribute("The modules that are loaded as part of this process.")]
6782         public System.Diagnostics.ProcessModuleCollection Modules { get { throw null; } }
6783         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6784         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are not pageable.")]
6785         [System.MonoTODOAttribute]
6786         [System.ObsoleteAttribute("Use NonpagedSystemMemorySize64")]
6787         public int NonpagedSystemMemorySize { get { throw null; } }
6788         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6789         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are not pageable.")]
6790         [System.MonoTODOAttribute]
6791         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6792         public long NonpagedSystemMemorySize64 { get { throw null; } }
6793         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6794         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are paged.")]
6795         [System.ObsoleteAttribute("Use PagedMemorySize64")]
6796         public int PagedMemorySize { get { throw null; } }
6797         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6798         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are paged.")]
6799         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6800         public long PagedMemorySize64 { get { throw null; } }
6801         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6802         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of paged system memory in bytes.")]
6803         [System.ObsoleteAttribute("Use PagedSystemMemorySize64")]
6804         public int PagedSystemMemorySize { get { throw null; } }
6805         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6806         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of paged system memory in bytes.")]
6807         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6808         public long PagedSystemMemorySize64 { get { throw null; } }
6809         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6810         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of paged memory used by this process.")]
6811         [System.MonoTODOAttribute]
6812         [System.ObsoleteAttribute("Use PeakPagedMemorySize64")]
6813         public int PeakPagedMemorySize { get { throw null; } }
6814         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6815         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of paged memory used by this process.")]
6816         [System.MonoTODOAttribute]
6817         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6818         public long PeakPagedMemorySize64 { get { throw null; } }
6819         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6820         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of virtual memory used by this process.")]
6821         [System.ObsoleteAttribute("Use PeakVirtualMemorySize64")]
6822         public int PeakVirtualMemorySize { get { throw null; } }
6823         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6824         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of virtual memory used by this process.")]
6825         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6826         public long PeakVirtualMemorySize64 { get { throw null; } }
6827         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6828         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of system memory used by this process.")]
6829         [System.ObsoleteAttribute("Use PeakWorkingSet64")]
6830         public int PeakWorkingSet { get { throw null; } }
6831         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6832         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of system memory used by this process.")]
6833         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6834         public long PeakWorkingSet64 { get { throw null; } }
6835         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6836         [System.Diagnostics.MonitoringDescriptionAttribute("Process will be of higher priority while it is actively used.")]
6837         [System.MonoTODOAttribute]
6838         public bool PriorityBoostEnabled { get { throw null; } set { } }
6839         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6840         [System.Diagnostics.MonitoringDescriptionAttribute("The priority that the threads in the process run relative to.")]
6841         public System.Diagnostics.ProcessPriorityClass PriorityClass { get { throw null; } set { } }
6842         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6843         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of memory exclusively used by this process.")]
6844         [System.ObsoleteAttribute("Use PrivateMemorySize64")]
6845         public int PrivateMemorySize { get { throw null; } }
6846         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6847         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of memory exclusively used by this process.")]
6848         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6849         public long PrivateMemorySize64 { get { throw null; } }
6850         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6851         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time the process spent inside the operating system core.")]
6852         public System.TimeSpan PrivilegedProcessorTime { get { throw null; } }
6853         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6854         [System.Diagnostics.MonitoringDescriptionAttribute("The name of this process.")]
6855         public string ProcessName { get { throw null; } }
6856         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6857         [System.Diagnostics.MonitoringDescriptionAttribute("Allowed processor that can be used by this process.")]
6858         [System.MonoTODOAttribute]
6859         public System.IntPtr ProcessorAffinity { get { throw null; } set { } }
6860         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6861         [System.Diagnostics.MonitoringDescriptionAttribute("Is this process responsive.")]
6862         [System.MonoTODOAttribute]
6863         public bool Responding { get { throw null; } }
6864         [System.ComponentModel.BrowsableAttribute(false)]
6865         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6866         public Microsoft.Win32.SafeHandles.SafeProcessHandle SafeHandle { get { throw null; } }
6867         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6868         [System.Diagnostics.MonitoringDescriptionAttribute("The session ID for this process.")]
6869         [System.MonoNotSupportedAttribute("")]
6870         public int SessionId { get { throw null; } }
6871         [System.ComponentModel.BrowsableAttribute(false)]
6872         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6873         [System.Diagnostics.MonitoringDescriptionAttribute("Standard error stream of the process.")]
6874         public System.IO.StreamReader StandardError { get { throw null; } }
6875         [System.ComponentModel.BrowsableAttribute(false)]
6876         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6877         [System.Diagnostics.MonitoringDescriptionAttribute("Standard input stream of the process.")]
6878         public System.IO.StreamWriter StandardInput { get { throw null; } }
6879         [System.ComponentModel.BrowsableAttribute(false)]
6880         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6881         [System.Diagnostics.MonitoringDescriptionAttribute("Standard output stream of the process.")]
6882         public System.IO.StreamReader StandardOutput { get { throw null; } }
6883         [System.ComponentModel.BrowsableAttribute(false)]
6884         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
6885         [System.Diagnostics.MonitoringDescriptionAttribute("Specifies information used to start a process.")]
6886         public System.Diagnostics.ProcessStartInfo StartInfo { get { throw null; } set { } }
6887         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6888         [System.Diagnostics.MonitoringDescriptionAttribute("The time at which the process was started.")]
6889         public System.DateTime StartTime { get { throw null; } }
6890         [System.ComponentModel.BrowsableAttribute(false)]
6891         [System.ComponentModel.DefaultValueAttribute(null)]
6892         [System.Diagnostics.MonitoringDescriptionAttribute("The object used to marshal the event handler calls issued as a result of a Process exit.")]
6893         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
6894         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6895         [System.Diagnostics.MonitoringDescriptionAttribute("The number of threads of this process.")]
6896         [System.MonoTODOAttribute]
6897         public System.Diagnostics.ProcessThreadCollection Threads { get { throw null; } }
6898         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6899         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time the process has used.")]
6900         public System.TimeSpan TotalProcessorTime { get { throw null; } }
6901         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6902         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time the process spent outside the operating system core.")]
6903         public System.TimeSpan UserProcessorTime { get { throw null; } }
6904         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6905         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of virtual memory currently used for this process.")]
6906         [System.ObsoleteAttribute("Use VirtualMemorySize64")]
6907         public int VirtualMemorySize { get { throw null; } }
6908         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6909         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of virtual memory currently used for this process.")]
6910         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6911         public long VirtualMemorySize64 { get { throw null; } }
6912         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6913         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of physical memory currently used for this process.")]
6914         [System.ObsoleteAttribute("Use WorkingSet64")]
6915         public int WorkingSet { get { throw null; } }
6916         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6917         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of physical memory currently used for this process.")]
6918         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6919         public long WorkingSet64 { get { throw null; } }
6920         [System.ComponentModel.BrowsableAttribute(true)]
6921         [System.Diagnostics.MonitoringDescriptionAttribute("Indicates if the process component is associated with a real process.")]
6922         public event System.Diagnostics.DataReceivedEventHandler ErrorDataReceived { add { } remove { } }
6923         [System.ComponentModel.CategoryAttribute("Behavior")]
6924         [System.Diagnostics.MonitoringDescriptionAttribute("If the WatchForExit property is set to true, then this event is raised when the associated process exits.")]
6925         public event System.EventHandler Exited { add { } remove { } }
6926         [System.ComponentModel.BrowsableAttribute(true)]
6927         [System.Diagnostics.MonitoringDescriptionAttribute("Indicates if the process component is associated with a real process.")]
6928         public event System.Diagnostics.DataReceivedEventHandler OutputDataReceived { add { } remove { } }
6929         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
BeginErrorReadLine()6930         public void BeginErrorReadLine() { }
6931         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
BeginOutputReadLine()6932         public void BeginOutputReadLine() { }
6933         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CancelErrorRead()6934         public void CancelErrorRead() { }
6935         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CancelOutputRead()6936         public void CancelOutputRead() { }
Close()6937         public void Close() { }
CloseMainWindow()6938         public bool CloseMainWindow() { throw null; }
Dispose(bool disposing)6939         protected override void Dispose(bool disposing) { }
EnterDebugMode()6940         public static void EnterDebugMode() { }
GetCurrentProcess()6941         public static System.Diagnostics.Process GetCurrentProcess() { throw null; }
GetProcessById(int processId)6942         public static System.Diagnostics.Process GetProcessById(int processId) { throw null; }
6943         [System.MonoTODOAttribute("There is no support for retrieving process information from a remote machine")]
GetProcessById(int processId, string machineName)6944         public static System.Diagnostics.Process GetProcessById(int processId, string machineName) { throw null; }
GetProcesses()6945         public static System.Diagnostics.Process[] GetProcesses() { throw null; }
6946         [System.MonoTODOAttribute("There is no support for retrieving process information from a remote machine")]
GetProcesses(string machineName)6947         public static System.Diagnostics.Process[] GetProcesses(string machineName) { throw null; }
GetProcessesByName(string processName)6948         public static System.Diagnostics.Process[] GetProcessesByName(string processName) { throw null; }
GetProcessesByName(string processName, string machineName)6949         public static System.Diagnostics.Process[] GetProcessesByName(string processName, string machineName) { throw null; }
Kill()6950         public void Kill() { }
LeaveDebugMode()6951         public static void LeaveDebugMode() { }
OnExited()6952         protected void OnExited() { }
Refresh()6953         public void Refresh() { }
Start()6954         public bool Start() { throw null; }
Start(System.Diagnostics.ProcessStartInfo startInfo)6955         public static System.Diagnostics.Process Start(System.Diagnostics.ProcessStartInfo startInfo) { throw null; }
Start(string fileName)6956         public static System.Diagnostics.Process Start(string fileName) { throw null; }
Start(string fileName, string arguments)6957         public static System.Diagnostics.Process Start(string fileName, string arguments) { throw null; }
Start(string fileName, string userName, System.Security.SecureString password, string domain)6958         public static System.Diagnostics.Process Start(string fileName, string userName, System.Security.SecureString password, string domain) { throw null; }
Start(string fileName, string arguments, string userName, System.Security.SecureString password, string domain)6959         public static System.Diagnostics.Process Start(string fileName, string arguments, string userName, System.Security.SecureString password, string domain) { throw null; }
ToString()6960         public override string ToString() { throw null; }
WaitForExit()6961         public void WaitForExit() { }
WaitForExit(int milliseconds)6962         public bool WaitForExit(int milliseconds) { throw null; }
WaitForInputIdle()6963         public bool WaitForInputIdle() { throw null; }
WaitForInputIdle(int milliseconds)6964         public bool WaitForInputIdle(int milliseconds) { throw null; }
6965     }
6966     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessModuleDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6967     public partial class ProcessModule : System.ComponentModel.Component
6968     {
ProcessModule()6969         internal ProcessModule() { }
6970         [System.Diagnostics.MonitoringDescriptionAttribute("The base memory address of this module")]
6971         public System.IntPtr BaseAddress { get { throw null; } }
6972         [System.Diagnostics.MonitoringDescriptionAttribute("The base memory address of the entry point of this module")]
6973         public System.IntPtr EntryPointAddress { get { throw null; } }
6974         [System.Diagnostics.MonitoringDescriptionAttribute("The file name of this module")]
6975         public string FileName { get { throw null; } }
6976         [System.ComponentModel.BrowsableAttribute(false)]
6977         public System.Diagnostics.FileVersionInfo FileVersionInfo { get { throw null; } }
6978         [System.Diagnostics.MonitoringDescriptionAttribute("The memory needed by this module")]
6979         public int ModuleMemorySize { get { throw null; } }
6980         [System.Diagnostics.MonitoringDescriptionAttribute("The name of this module")]
6981         public string ModuleName { get { throw null; } }
ToString()6982         public override string ToString() { throw null; }
6983     }
6984     public partial class ProcessModuleCollection : System.Collections.ReadOnlyCollectionBase
6985     {
ProcessModuleCollection()6986         protected ProcessModuleCollection() { }
ProcessModuleCollection(System.Diagnostics.ProcessModule[] processModules)6987         public ProcessModuleCollection(System.Diagnostics.ProcessModule[] processModules) { }
6988         public System.Diagnostics.ProcessModule this[int index] { get { throw null; } }
Contains(System.Diagnostics.ProcessModule module)6989         public bool Contains(System.Diagnostics.ProcessModule module) { throw null; }
CopyTo(System.Diagnostics.ProcessModule[] array, int index)6990         public void CopyTo(System.Diagnostics.ProcessModule[] array, int index) { }
IndexOf(System.Diagnostics.ProcessModule module)6991         public int IndexOf(System.Diagnostics.ProcessModule module) { throw null; }
6992     }
6993     public enum ProcessPriorityClass
6994     {
6995         AboveNormal = 32768,
6996         BelowNormal = 16384,
6997         High = 128,
6998         Idle = 64,
6999         Normal = 32,
7000         RealTime = 256,
7001     }
7002     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
7003     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
7004     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, SelfAffectingProcessMgmt=true)]
7005     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
7006     public sealed partial class ProcessStartInfo
7007     {
ProcessStartInfo()7008         public ProcessStartInfo() { }
ProcessStartInfo(string fileName)7009         public ProcessStartInfo(string fileName) { }
ProcessStartInfo(string fileName, string arguments)7010         public ProcessStartInfo(string fileName, string arguments) { }
7011         [System.ComponentModel.DefaultValueAttribute("")]
7012         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7013         [System.ComponentModel.SettingsBindableAttribute(true)]
7014         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7015         [System.Diagnostics.MonitoringDescriptionAttribute("Command line arguments that will be passed to the application specified by the FileName property.")]
7016         public string Arguments { get { throw null; } set { } }
7017         [System.ComponentModel.DefaultValueAttribute(false)]
7018         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7019         [System.Diagnostics.MonitoringDescriptionAttribute("Whether to start the process without creating a new window to contain it.")]
7020         public bool CreateNoWindow { get { throw null; } set { } }
7021         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7022         public string Domain { get { throw null; } set { } }
7023         [System.ComponentModel.DefaultValueAttribute(null)]
7024         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7025         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7026         public System.Collections.Generic.IDictionary<string, string> Environment { get { throw null; } }
7027         [System.ComponentModel.DefaultValueAttribute(null)]
7028         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
7029         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.StringDictionaryEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7030         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7031         [System.Diagnostics.MonitoringDescriptionAttribute("Set of environment variables that apply to this process and child processes.")]
7032         public System.Collections.Specialized.StringDictionary EnvironmentVariables { get { throw null; } }
7033         [System.ComponentModel.DefaultValueAttribute(false)]
7034         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7035         [System.Diagnostics.MonitoringDescriptionAttribute("Whether to show an error dialog to the user if there is an error.")]
7036         public bool ErrorDialog { get { throw null; } set { } }
7037         [System.ComponentModel.BrowsableAttribute(false)]
7038         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7039         public System.IntPtr ErrorDialogParentHandle { get { throw null; } set { } }
7040         [System.ComponentModel.DefaultValueAttribute("")]
7041         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.StartFileNameEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7042         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7043         [System.ComponentModel.SettingsBindableAttribute(true)]
7044         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7045         [System.Diagnostics.MonitoringDescriptionAttribute("The name of the application, document or URL to start.")]
7046         public string FileName { get { throw null; } set { } }
7047         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7048         public bool LoadUserProfile { get { throw null; } set { } }
7049         public System.Security.SecureString Password { get { throw null; } set { } }
7050         [System.ComponentModel.BrowsableAttribute(false)]
7051         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7052         public string PasswordInClearText { get { throw null; } set { } }
7053         [System.ComponentModel.DefaultValueAttribute(false)]
7054         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7055         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process's error output is written to the Process instance's StandardError member.")]
7056         public bool RedirectStandardError { get { throw null; } set { } }
7057         [System.ComponentModel.DefaultValueAttribute(false)]
7058         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7059         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process command input is read from the Process instance's StandardInput member.")]
7060         public bool RedirectStandardInput { get { throw null; } set { } }
7061         [System.ComponentModel.DefaultValueAttribute(false)]
7062         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7063         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process output is written to the Process instance's StandardOutput member.")]
7064         public bool RedirectStandardOutput { get { throw null; } set { } }
7065         public System.Text.Encoding StandardErrorEncoding { get { throw null; } set { } }
7066         public System.Text.Encoding StandardOutputEncoding { get { throw null; } set { } }
7067         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7068         public string UserName { get { throw null; } set { } }
7069         [System.ComponentModel.DefaultValueAttribute(true)]
7070         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7071         [System.Diagnostics.MonitoringDescriptionAttribute("Whether to use the operating system shell to start the process.")]
7072         public bool UseShellExecute { get { throw null; } set { } }
7073         [System.ComponentModel.DefaultValueAttribute("")]
7074         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7075         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.VerbConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7076         [System.Diagnostics.MonitoringDescriptionAttribute("The verb to apply to the document specified by the FileName property.")]
7077         public string Verb { get { throw null; } set { } }
7078         [System.ComponentModel.BrowsableAttribute(false)]
7079         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7080         public string[] Verbs { get { throw null; } }
7081         [System.ComponentModel.DefaultValueAttribute((System.Diagnostics.ProcessWindowStyle)(0))]
7082         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7083         [System.Diagnostics.MonitoringDescriptionAttribute("How the main window should be created when the process starts.")]
7084         public System.Diagnostics.ProcessWindowStyle WindowStyle { get { throw null; } set { } }
7085         [System.ComponentModel.DefaultValueAttribute("")]
7086         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.WorkingDirectoryEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7087         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7088         [System.ComponentModel.SettingsBindableAttribute(true)]
7089         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7090         [System.Diagnostics.MonitoringDescriptionAttribute("The initial working directory for the process.")]
7091         public string WorkingDirectory { get { throw null; } set { } }
7092     }
7093     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessThreadDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7094     public partial class ProcessThread : System.ComponentModel.Component
7095     {
ProcessThread()7096         internal ProcessThread() { }
7097         [System.Diagnostics.MonitoringDescriptionAttribute("The base priority of this thread.")]
7098         [System.MonoTODOAttribute]
7099         public int BasePriority { get { throw null; } }
7100         [System.Diagnostics.MonitoringDescriptionAttribute("The current priority of this thread.")]
7101         [System.MonoTODOAttribute]
7102         public int CurrentPriority { get { throw null; } }
7103         [System.Diagnostics.MonitoringDescriptionAttribute("The ID of this thread.")]
7104         [System.MonoTODOAttribute]
7105         public int Id { get { throw null; } }
7106         [System.ComponentModel.BrowsableAttribute(false)]
7107         [System.MonoTODOAttribute]
7108         public int IdealProcessor { set { } }
7109         [System.Diagnostics.MonitoringDescriptionAttribute("Thread gets a priority boot when interactively used by a user.")]
7110         [System.MonoTODOAttribute]
7111         public bool PriorityBoostEnabled { get { throw null; } set { } }
7112         [System.Diagnostics.MonitoringDescriptionAttribute("The priority level of this thread.")]
7113         [System.MonoTODOAttribute]
7114         public System.Diagnostics.ThreadPriorityLevel PriorityLevel { get { throw null; } set { } }
7115         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time used in privileged mode.")]
7116         [System.MonoTODOAttribute]
7117         public System.TimeSpan PrivilegedProcessorTime { get { throw null; } }
7118         [System.ComponentModel.BrowsableAttribute(false)]
7119         [System.MonoTODOAttribute]
7120         public System.IntPtr ProcessorAffinity { set { } }
7121         [System.Diagnostics.MonitoringDescriptionAttribute("The start address in memory of this thread.")]
7122         [System.MonoTODOAttribute]
7123         public System.IntPtr StartAddress { get { throw null; } }
7124         [System.Diagnostics.MonitoringDescriptionAttribute("The time this thread was started.")]
7125         [System.MonoTODOAttribute]
7126         public System.DateTime StartTime { get { throw null; } }
7127         [System.Diagnostics.MonitoringDescriptionAttribute("The current state of this thread.")]
7128         [System.MonoTODOAttribute]
7129         public System.Diagnostics.ThreadState ThreadState { get { throw null; } }
7130         [System.Diagnostics.MonitoringDescriptionAttribute("The total amount of CPU time used.")]
7131         [System.MonoTODOAttribute]
7132         public System.TimeSpan TotalProcessorTime { get { throw null; } }
7133         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time used in user mode.")]
7134         [System.MonoTODOAttribute]
7135         public System.TimeSpan UserProcessorTime { get { throw null; } }
7136         [System.Diagnostics.MonitoringDescriptionAttribute("The reason why this thread is waiting.")]
7137         [System.MonoTODOAttribute]
7138         public System.Diagnostics.ThreadWaitReason WaitReason { get { throw null; } }
7139         [System.MonoTODOAttribute]
ResetIdealProcessor()7140         public void ResetIdealProcessor() { }
7141     }
7142     public partial class ProcessThreadCollection : System.Collections.ReadOnlyCollectionBase
7143     {
ProcessThreadCollection()7144         protected ProcessThreadCollection() { }
ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads)7145         public ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads) { }
7146         public System.Diagnostics.ProcessThread this[int index] { get { throw null; } }
Add(System.Diagnostics.ProcessThread thread)7147         public int Add(System.Diagnostics.ProcessThread thread) { throw null; }
Contains(System.Diagnostics.ProcessThread thread)7148         public bool Contains(System.Diagnostics.ProcessThread thread) { throw null; }
CopyTo(System.Diagnostics.ProcessThread[] array, int index)7149         public void CopyTo(System.Diagnostics.ProcessThread[] array, int index) { }
IndexOf(System.Diagnostics.ProcessThread thread)7150         public int IndexOf(System.Diagnostics.ProcessThread thread) { throw null; }
Insert(int index, System.Diagnostics.ProcessThread thread)7151         public void Insert(int index, System.Diagnostics.ProcessThread thread) { }
Remove(System.Diagnostics.ProcessThread thread)7152         public void Remove(System.Diagnostics.ProcessThread thread) { }
7153     }
7154     public enum ProcessWindowStyle
7155     {
7156         Hidden = 1,
7157         Maximized = 3,
7158         Minimized = 2,
7159         Normal = 0,
7160     }
7161     public partial class SourceFilter : System.Diagnostics.TraceFilter
7162     {
SourceFilter(string source)7163         public SourceFilter(string source) { }
7164         public string Source { get { throw null; } set { } }
ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data)7165         public override bool ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data) { throw null; }
7166     }
7167     [System.FlagsAttribute]
7168     public enum SourceLevels
7169     {
7170         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7171         ActivityTracing = 65280,
7172         All = -1,
7173         Critical = 1,
7174         Error = 3,
7175         Information = 15,
7176         Off = 0,
7177         Verbose = 31,
7178         Warning = 7,
7179     }
7180     public partial class SourceSwitch : System.Diagnostics.Switch
7181     {
SourceSwitch(string name)7182         public SourceSwitch(string name) : base (default(string), default(string)) { }
SourceSwitch(string displayName, string defaultSwitchValue)7183         public SourceSwitch(string displayName, string defaultSwitchValue) : base (default(string), default(string)) { }
7184         public System.Diagnostics.SourceLevels Level { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
OnValueChanged()7185         protected override void OnValueChanged() { }
ShouldTrace(System.Diagnostics.TraceEventType eventType)7186         public bool ShouldTrace(System.Diagnostics.TraceEventType eventType) { throw null; }
7187     }
7188     public partial class Stopwatch
7189     {
7190         public static readonly long Frequency;
7191         public static readonly bool IsHighResolution;
Stopwatch()7192         public Stopwatch() { }
7193         public System.TimeSpan Elapsed { get { throw null; } }
7194         public long ElapsedMilliseconds { get { throw null; } }
7195         public long ElapsedTicks { get { throw null; } }
7196         public bool IsRunning { get { throw null; } }
GetTimestamp()7197         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long GetTimestamp() { throw null; }
Reset()7198         public void Reset() { }
Restart()7199         public void Restart() { }
Start()7200         public void Start() { }
StartNew()7201         public static System.Diagnostics.Stopwatch StartNew() { throw null; }
Stop()7202         public void Stop() { }
7203     }
7204     public abstract partial class Switch
7205     {
Switch(string displayName, string description)7206         protected Switch(string displayName, string description) { }
Switch(string displayName, string description, string defaultSwitchValue)7207         protected Switch(string displayName, string description, string defaultSwitchValue) { }
7208         [System.Xml.Serialization.XmlIgnoreAttribute]
7209         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
7210         public string Description { get { throw null; } }
7211         public string DisplayName { get { throw null; } }
7212         protected int SwitchSetting { get { throw null; } set { } }
7213         protected string Value { get { throw null; } set { } }
GetSupportedAttributes()7214         protected internal virtual string[] GetSupportedAttributes() { throw null; }
OnSwitchSettingChanged()7215         protected virtual void OnSwitchSettingChanged() { }
OnValueChanged()7216         protected virtual void OnValueChanged() { }
7217     }
7218     [System.AttributeUsageAttribute((System.AttributeTargets)(741))]
7219     public sealed partial class SwitchAttribute : System.Attribute
7220     {
SwitchAttribute(string switchName, System.Type switchType)7221         public SwitchAttribute(string switchName, System.Type switchType) { }
7222         public string SwitchDescription { get { throw null; } set { } }
7223         public string SwitchName { get { throw null; } set { } }
7224         public System.Type SwitchType { get { throw null; } set { } }
GetAll(System.Reflection.Assembly assembly)7225         public static System.Diagnostics.SwitchAttribute[] GetAll(System.Reflection.Assembly assembly) { throw null; }
7226     }
7227     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
7228     public sealed partial class SwitchLevelAttribute : System.Attribute
7229     {
SwitchLevelAttribute(System.Type switchLevelType)7230         public SwitchLevelAttribute(System.Type switchLevelType) { }
7231         public System.Type SwitchLevelType { get { throw null; } set { } }
7232     }
7233     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
7234     public partial class TextWriterTraceListener : System.Diagnostics.TraceListener
7235     {
TextWriterTraceListener()7236         public TextWriterTraceListener() { }
TextWriterTraceListener(System.IO.Stream stream)7237         public TextWriterTraceListener(System.IO.Stream stream) { }
TextWriterTraceListener(System.IO.Stream stream, string name)7238         public TextWriterTraceListener(System.IO.Stream stream, string name) { }
TextWriterTraceListener(System.IO.TextWriter writer)7239         public TextWriterTraceListener(System.IO.TextWriter writer) { }
TextWriterTraceListener(System.IO.TextWriter writer, string name)7240         public TextWriterTraceListener(System.IO.TextWriter writer, string name) { }
TextWriterTraceListener(string fileName)7241         public TextWriterTraceListener(string fileName) { }
TextWriterTraceListener(string fileName, string name)7242         public TextWriterTraceListener(string fileName, string name) { }
7243         public System.IO.TextWriter Writer { get { throw null; } set { } }
Close()7244         public override void Close() { }
Dispose(bool disposing)7245         protected override void Dispose(bool disposing) { }
Flush()7246         public override void Flush() { }
Write(string message)7247         public override void Write(string message) { }
WriteLine(string message)7248         public override void WriteLine(string message) { }
7249     }
7250     public enum ThreadPriorityLevel
7251     {
7252         AboveNormal = 1,
7253         BelowNormal = -1,
7254         Highest = 2,
7255         Idle = -15,
7256         Lowest = -2,
7257         Normal = 0,
7258         TimeCritical = 15,
7259     }
7260     public enum ThreadState
7261     {
7262         Initialized = 0,
7263         Ready = 1,
7264         Running = 2,
7265         Standby = 3,
7266         Terminated = 4,
7267         Transition = 6,
7268         Unknown = 7,
7269         Wait = 5,
7270     }
7271     public enum ThreadWaitReason
7272     {
7273         EventPairHigh = 7,
7274         EventPairLow = 8,
7275         ExecutionDelay = 4,
7276         Executive = 0,
7277         FreePage = 1,
7278         LpcReceive = 9,
7279         LpcReply = 10,
7280         PageIn = 2,
7281         PageOut = 12,
7282         Suspended = 5,
7283         SystemAllocation = 3,
7284         Unknown = 13,
7285         UserRequest = 6,
7286         VirtualMemory = 11,
7287     }
7288     public sealed partial class Trace
7289     {
Trace()7290         internal Trace() { }
7291         public static bool AutoFlush { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
7292         public static System.Diagnostics.CorrelationManager CorrelationManager { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
7293         public static int IndentLevel { get { throw null; } set { } }
7294         public static int IndentSize { get { throw null; } set { } }
7295         public static System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]get { throw null; } }
7296         public static bool UseGlobalLock { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
7297         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition)7298         public static void Assert(bool condition) { }
7299         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition, string message)7300         public static void Assert(bool condition, string message) { }
7301         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition, string message, string detailMessage)7302         public static void Assert(bool condition, string message, string detailMessage) { }
7303         [System.Diagnostics.ConditionalAttribute("TRACE")]
Close()7304         public static void Close() { }
7305         [System.Diagnostics.ConditionalAttribute("TRACE")]
Fail(string message)7306         public static void Fail(string message) { }
7307         [System.Diagnostics.ConditionalAttribute("TRACE")]
Fail(string message, string detailMessage)7308         public static void Fail(string message, string detailMessage) { }
7309         [System.Diagnostics.ConditionalAttribute("TRACE")]
Flush()7310         public static void Flush() { }
7311         [System.Diagnostics.ConditionalAttribute("TRACE")]
Indent()7312         public static void Indent() { }
Refresh()7313         public static void Refresh() { }
7314         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceError(string message)7315         public static void TraceError(string message) { }
7316         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceError(string format, params object[] args)7317         public static void TraceError(string format, params object[] args) { }
7318         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string message)7319         public static void TraceInformation(string message) { }
7320         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string format, params object[] args)7321         public static void TraceInformation(string format, params object[] args) { }
7322         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceWarning(string message)7323         public static void TraceWarning(string message) { }
7324         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceWarning(string format, params object[] args)7325         public static void TraceWarning(string format, params object[] args) { }
7326         [System.Diagnostics.ConditionalAttribute("TRACE")]
Unindent()7327         public static void Unindent() { }
7328         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(object value)7329         public static void Write(object value) { }
7330         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(object value, string category)7331         public static void Write(object value, string category) { }
7332         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(string message)7333         public static void Write(string message) { }
7334         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(string message, string category)7335         public static void Write(string message, string category) { }
7336         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, object value)7337         public static void WriteIf(bool condition, object value) { }
7338         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, object value, string category)7339         public static void WriteIf(bool condition, object value, string category) { }
7340         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, string message)7341         public static void WriteIf(bool condition, string message) { }
7342         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, string message, string category)7343         public static void WriteIf(bool condition, string message, string category) { }
7344         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(object value)7345         public static void WriteLine(object value) { }
7346         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(object value, string category)7347         public static void WriteLine(object value, string category) { }
7348         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(string message)7349         public static void WriteLine(string message) { }
7350         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(string message, string category)7351         public static void WriteLine(string message, string category) { }
7352         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, object value)7353         public static void WriteLineIf(bool condition, object value) { }
7354         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, object value, string category)7355         public static void WriteLineIf(bool condition, object value, string category) { }
7356         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, string message)7357         public static void WriteLineIf(bool condition, string message) { }
7358         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, string message, string category)7359         public static void WriteLineIf(bool condition, string message, string category) { }
7360     }
7361     public partial class TraceEventCache
7362     {
TraceEventCache()7363         public TraceEventCache() { }
7364         public string Callstack { get { throw null; } }
7365         public System.DateTime DateTime { get { throw null; } }
7366         public System.Collections.Stack LogicalOperationStack { get { throw null; } }
7367         public int ProcessId { get { throw null; } }
7368         public string ThreadId { get { throw null; } }
7369         public long Timestamp { get { throw null; } }
7370     }
7371     public enum TraceEventType
7372     {
7373         Critical = 1,
7374         Error = 2,
7375         Information = 8,
7376         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7377         Resume = 2048,
7378         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7379         Start = 256,
7380         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7381         Stop = 512,
7382         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7383         Suspend = 1024,
7384         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7385         Transfer = 4096,
7386         Verbose = 16,
7387         Warning = 4,
7388     }
7389     public abstract partial class TraceFilter
7390     {
TraceFilter()7391         protected TraceFilter() { }
ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data)7392         public abstract bool ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data);
7393     }
7394     public enum TraceLevel
7395     {
7396         Error = 1,
7397         Info = 3,
7398         Off = 0,
7399         Verbose = 4,
7400         Warning = 2,
7401     }
7402     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
7403     public abstract partial class TraceListener : System.MarshalByRefObject, System.IDisposable
7404     {
TraceListener()7405         protected TraceListener() { }
TraceListener(string name)7406         protected TraceListener(string name) { }
7407         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
7408         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7409         public System.Diagnostics.TraceFilter Filter { get { throw null; } set { } }
7410         public int IndentLevel { get { throw null; } set { } }
7411         public int IndentSize { get { throw null; } set { } }
7412         public virtual bool IsThreadSafe { get { throw null; } }
7413         public virtual string Name { get { throw null; } set { } }
7414         protected bool NeedIndent { get { throw null; } set { } }
7415         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7416         public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } }
Close()7417         public virtual void Close() { }
Dispose()7418         public void Dispose() { }
Dispose(bool disposing)7419         protected virtual void Dispose(bool disposing) { }
Fail(string message)7420         public virtual void Fail(string message) { }
Fail(string message, string detailMessage)7421         public virtual void Fail(string message, string detailMessage) { }
Flush()7422         public virtual void Flush() { }
GetSupportedAttributes()7423         protected internal virtual string[] GetSupportedAttributes() { throw null; }
7424         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)7425         public virtual void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
7426         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data)7427         public virtual void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
7428         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id)7429         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id) { }
7430         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message)7431         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
7432         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)7433         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
7434         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId)7435         public virtual void TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId) { }
Write(object o)7436         public virtual void Write(object o) { }
Write(object o, string category)7437         public virtual void Write(object o, string category) { }
Write(string message)7438         public abstract void Write(string message);
Write(string message, string category)7439         public virtual void Write(string message, string category) { }
WriteIndent()7440         protected virtual void WriteIndent() { }
WriteLine(object o)7441         public virtual void WriteLine(object o) { }
WriteLine(object o, string category)7442         public virtual void WriteLine(object o, string category) { }
WriteLine(string message)7443         public abstract void WriteLine(string message);
WriteLine(string message, string category)7444         public virtual void WriteLine(string message, string category) { }
7445     }
7446     public partial class TraceListenerCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
7447     {
TraceListenerCollection()7448         internal TraceListenerCollection() { }
7449         public int Count { get { throw null; } }
7450         public System.Diagnostics.TraceListener this[int i] { get { throw null; } set { } }
7451         public System.Diagnostics.TraceListener this[string name] { get { throw null; } }
7452         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
7453         object System.Collections.ICollection.SyncRoot { get { throw null; } }
7454         bool System.Collections.IList.IsFixedSize { get { throw null; } }
7455         bool System.Collections.IList.IsReadOnly { get { throw null; } }
7456         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.TraceListener listener)7457         public int Add(System.Diagnostics.TraceListener listener) { throw null; }
AddRange(System.Diagnostics.TraceListenerCollection value)7458         public void AddRange(System.Diagnostics.TraceListenerCollection value) { }
AddRange(System.Diagnostics.TraceListener[] value)7459         public void AddRange(System.Diagnostics.TraceListener[] value) { }
Clear()7460         public void Clear() { }
Contains(System.Diagnostics.TraceListener listener)7461         public bool Contains(System.Diagnostics.TraceListener listener) { throw null; }
CopyTo(System.Diagnostics.TraceListener[] listeners, int index)7462         public void CopyTo(System.Diagnostics.TraceListener[] listeners, int index) { }
GetEnumerator()7463         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.Diagnostics.TraceListener listener)7464         public int IndexOf(System.Diagnostics.TraceListener listener) { throw null; }
Insert(int index, System.Diagnostics.TraceListener listener)7465         public void Insert(int index, System.Diagnostics.TraceListener listener) { }
Remove(System.Diagnostics.TraceListener listener)7466         public void Remove(System.Diagnostics.TraceListener listener) { }
Remove(string name)7467         public void Remove(string name) { }
RemoveAt(int index)7468         public void RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)7469         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IList.Add(object value)7470         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Contains(object value)7471         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)7472         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)7473         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)7474         void System.Collections.IList.Remove(object value) { }
7475     }
7476     [System.FlagsAttribute]
7477     public enum TraceOptions
7478     {
7479         Callstack = 32,
7480         DateTime = 2,
7481         LogicalOperationStack = 1,
7482         None = 0,
7483         ProcessId = 8,
7484         ThreadId = 16,
7485         Timestamp = 4,
7486     }
7487     public partial class TraceSource
7488     {
TraceSource(string name)7489         public TraceSource(string name) { }
TraceSource(string name, System.Diagnostics.SourceLevels defaultLevel)7490         public TraceSource(string name, System.Diagnostics.SourceLevels defaultLevel) { }
7491         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
7492         public System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
7493         public string Name { get { throw null; } }
7494         public System.Diagnostics.SourceSwitch Switch { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
7495         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Close()7496         public void Close() { }
Flush()7497         public void Flush() { }
GetSupportedAttributes()7498         protected internal virtual string[] GetSupportedAttributes() { throw null; }
7499         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceData(System.Diagnostics.TraceEventType eventType, int id, object data)7500         public void TraceData(System.Diagnostics.TraceEventType eventType, int id, object data) { }
7501         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceData(System.Diagnostics.TraceEventType eventType, int id, params object[] data)7502         public void TraceData(System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
7503         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id)7504         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id) { }
7505         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string message)7506         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string message) { }
7507         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)7508         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
7509         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string message)7510         public void TraceInformation(string message) { }
7511         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string format, params object[] args)7512         public void TraceInformation(string format, params object[] args) { }
7513         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceTransfer(int id, string message, System.Guid relatedActivityId)7514         public void TraceTransfer(int id, string message, System.Guid relatedActivityId) { }
7515     }
7516     [System.Diagnostics.SwitchLevelAttribute(typeof(System.Diagnostics.TraceLevel))]
7517     public partial class TraceSwitch : System.Diagnostics.Switch
7518     {
TraceSwitch(string displayName, string description)7519         public TraceSwitch(string displayName, string description) : base (default(string), default(string)) { }
TraceSwitch(string displayName, string description, string defaultSwitchValue)7520         public TraceSwitch(string displayName, string description, string defaultSwitchValue) : base (default(string), default(string)) { }
7521         public System.Diagnostics.TraceLevel Level { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
7522         public bool TraceError { get { throw null; } }
7523         public bool TraceInfo { get { throw null; } }
7524         public bool TraceVerbose { get { throw null; } }
7525         public bool TraceWarning { get { throw null; } }
OnSwitchSettingChanged()7526         protected override void OnSwitchSettingChanged() { }
OnValueChanged()7527         protected override void OnValueChanged() { }
7528     }
7529     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
7530     public partial class XmlWriterTraceListener : System.Diagnostics.TextWriterTraceListener
7531     {
XmlWriterTraceListener(System.IO.Stream stream)7532         public XmlWriterTraceListener(System.IO.Stream stream) { }
XmlWriterTraceListener(System.IO.Stream stream, string name)7533         public XmlWriterTraceListener(System.IO.Stream stream, string name) { }
XmlWriterTraceListener(System.IO.TextWriter writer)7534         public XmlWriterTraceListener(System.IO.TextWriter writer) { }
XmlWriterTraceListener(System.IO.TextWriter writer, string name)7535         public XmlWriterTraceListener(System.IO.TextWriter writer, string name) { }
XmlWriterTraceListener(string filename)7536         public XmlWriterTraceListener(string filename) { }
XmlWriterTraceListener(string filename, string name)7537         public XmlWriterTraceListener(string filename, string name) { }
Close()7538         public override void Close() { }
Fail(string message, string detailMessage)7539         public override void Fail(string message, string detailMessage) { }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)7540         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data)7541         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message)7542         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)7543         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId)7544         public override void TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId) { }
Write(string message)7545         public override void Write(string message) { }
WriteLine(string message)7546         public override void WriteLine(string message) { }
7547     }
7548 }
7549 namespace System.Diagnostics.CodeAnalysis
7550 {
7551     [System.AttributeUsageAttribute((System.AttributeTargets)(748), Inherited=false, AllowMultiple=false)]
7552     public sealed partial class ExcludeFromCodeCoverageAttribute : System.Attribute
7553     {
ExcludeFromCodeCoverageAttribute()7554         public ExcludeFromCodeCoverageAttribute() { }
7555     }
7556 }
7557 namespace System.IO
7558 {
7559     public partial class ErrorEventArgs : System.EventArgs
7560     {
ErrorEventArgs(System.Exception exception)7561         public ErrorEventArgs(System.Exception exception) { }
GetException()7562         public virtual System.Exception GetException() { throw null; }
7563     }
ErrorEventHandler(object sender, System.IO.ErrorEventArgs e)7564     public delegate void ErrorEventHandler(object sender, System.IO.ErrorEventArgs e);
7565     public partial class FileSystemEventArgs : System.EventArgs
7566     {
FileSystemEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name)7567         public FileSystemEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name) { }
7568         public System.IO.WatcherChangeTypes ChangeType { get { throw null; } }
7569         public string FullPath { get { throw null; } }
7570         public string Name { get { throw null; } }
7571     }
FileSystemEventHandler(object sender, System.IO.FileSystemEventArgs e)7572     public delegate void FileSystemEventHandler(object sender, System.IO.FileSystemEventArgs e);
7573     [System.ComponentModel.DefaultEventAttribute("Changed")]
7574     [System.IO.IODescriptionAttribute("")]
7575     public partial class FileSystemWatcher : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
7576     {
FileSystemWatcher()7577         public FileSystemWatcher() { }
FileSystemWatcher(string path)7578         public FileSystemWatcher(string path) { }
FileSystemWatcher(string path, string filter)7579         public FileSystemWatcher(string path, string filter) { }
7580         [System.ComponentModel.DefaultValueAttribute(false)]
7581         [System.IO.IODescriptionAttribute("Flag to indicate if this instance is active")]
7582         public bool EnableRaisingEvents { get { throw null; } set { } }
7583         [System.ComponentModel.DefaultValueAttribute("*.*")]
7584         [System.ComponentModel.SettingsBindableAttribute(true)]
7585         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7586         [System.IO.IODescriptionAttribute("File name filter pattern")]
7587         public string Filter { get { throw null; } set { } }
7588         [System.ComponentModel.DefaultValueAttribute(false)]
7589         [System.IO.IODescriptionAttribute("Flag to indicate we want to watch subdirectories")]
7590         public bool IncludeSubdirectories { get { throw null; } set { } }
7591         [System.ComponentModel.BrowsableAttribute(false)]
7592         [System.ComponentModel.DefaultValueAttribute(8192)]
7593         public int InternalBufferSize { get { throw null; } set { } }
7594         [System.ComponentModel.DefaultValueAttribute((System.IO.NotifyFilters)(19))]
7595         [System.IO.IODescriptionAttribute("Flag to indicate which change event we want to monitor")]
7596         public System.IO.NotifyFilters NotifyFilter { get { throw null; } set { } }
7597         [System.ComponentModel.DefaultValueAttribute("")]
7598         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.FSWPathEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7599         [System.ComponentModel.SettingsBindableAttribute(true)]
7600         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7601         [System.IO.IODescriptionAttribute("The directory to monitor")]
7602         public string Path { get { throw null; } set { } }
7603         [System.ComponentModel.BrowsableAttribute(false)]
7604         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
7605         [System.ComponentModel.BrowsableAttribute(false)]
7606         [System.ComponentModel.DefaultValueAttribute(null)]
7607         [System.IO.IODescriptionAttribute("The object used to marshal the event handler calls resulting from a directory change")]
7608         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
7609         [System.IO.IODescriptionAttribute("Occurs when a file/directory change matches the filter")]
7610         public event System.IO.FileSystemEventHandler Changed { add { } remove { } }
7611         [System.IO.IODescriptionAttribute("Occurs when a file/directory creation matches the filter")]
7612         public event System.IO.FileSystemEventHandler Created { add { } remove { } }
7613         [System.IO.IODescriptionAttribute("Occurs when a file/directory deletion matches the filter")]
7614         public event System.IO.FileSystemEventHandler Deleted { add { } remove { } }
7615         [System.ComponentModel.BrowsableAttribute(false)]
7616         public event System.IO.ErrorEventHandler Error { add { } remove { } }
7617         [System.IO.IODescriptionAttribute("Occurs when a file/directory rename matches the filter")]
7618         public event System.IO.RenamedEventHandler Renamed { add { } remove { } }
BeginInit()7619         public void BeginInit() { }
Dispose(bool disposing)7620         protected override void Dispose(bool disposing) { }
EndInit()7621         public void EndInit() { }
~FileSystemWatcher()7622         ~FileSystemWatcher() { }
OnChanged(System.IO.FileSystemEventArgs e)7623         protected void OnChanged(System.IO.FileSystemEventArgs e) { }
OnCreated(System.IO.FileSystemEventArgs e)7624         protected void OnCreated(System.IO.FileSystemEventArgs e) { }
OnDeleted(System.IO.FileSystemEventArgs e)7625         protected void OnDeleted(System.IO.FileSystemEventArgs e) { }
OnError(System.IO.ErrorEventArgs e)7626         protected void OnError(System.IO.ErrorEventArgs e) { }
OnRenamed(System.IO.RenamedEventArgs e)7627         protected void OnRenamed(System.IO.RenamedEventArgs e) { }
WaitForChanged(System.IO.WatcherChangeTypes changeType)7628         public System.IO.WaitForChangedResult WaitForChanged(System.IO.WatcherChangeTypes changeType) { throw null; }
WaitForChanged(System.IO.WatcherChangeTypes changeType, int timeout)7629         public System.IO.WaitForChangedResult WaitForChanged(System.IO.WatcherChangeTypes changeType, int timeout) { throw null; }
7630     }
7631     [System.SerializableAttribute]
7632     public partial class InternalBufferOverflowException : System.SystemException
7633     {
InternalBufferOverflowException()7634         public InternalBufferOverflowException() { }
InternalBufferOverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7635         protected InternalBufferOverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InternalBufferOverflowException(string message)7636         public InternalBufferOverflowException(string message) { }
InternalBufferOverflowException(string message, System.Exception inner)7637         public InternalBufferOverflowException(string message, System.Exception inner) { }
7638     }
7639     [System.SerializableAttribute]
7640     public sealed partial class InvalidDataException : System.SystemException
7641     {
InvalidDataException()7642         public InvalidDataException() { }
InvalidDataException(string message)7643         public InvalidDataException(string message) { }
InvalidDataException(string message, System.Exception innerException)7644         public InvalidDataException(string message, System.Exception innerException) { }
7645     }
7646     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
7647     public partial class IODescriptionAttribute : System.ComponentModel.DescriptionAttribute
7648     {
IODescriptionAttribute(string description)7649         public IODescriptionAttribute(string description) { }
7650         public override string Description { get { throw null; } }
7651     }
7652     [System.FlagsAttribute]
7653     public enum NotifyFilters
7654     {
7655         Attributes = 4,
7656         CreationTime = 64,
7657         DirectoryName = 2,
7658         FileName = 1,
7659         LastAccess = 32,
7660         LastWrite = 16,
7661         Security = 256,
7662         Size = 8,
7663     }
7664     public partial class RenamedEventArgs : System.IO.FileSystemEventArgs
7665     {
RenamedEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name, string oldName)7666         public RenamedEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name, string oldName) : base (default(System.IO.WatcherChangeTypes), default(string), default(string)) { }
7667         public string OldFullPath { get { throw null; } }
7668         public string OldName { get { throw null; } }
7669     }
RenamedEventHandler(object sender, System.IO.RenamedEventArgs e)7670     public delegate void RenamedEventHandler(object sender, System.IO.RenamedEventArgs e);
7671     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
7672     public partial struct WaitForChangedResult
7673     {
7674         public System.IO.WatcherChangeTypes ChangeType { get { throw null; } set { } }
7675         public string Name { get { throw null; } set { } }
7676         public string OldName { get { throw null; } set { } }
7677         public bool TimedOut { get { throw null; } set { } }
7678     }
7679     [System.FlagsAttribute]
7680     public enum WatcherChangeTypes
7681     {
7682         All = 15,
7683         Changed = 4,
7684         Created = 1,
7685         Deleted = 2,
7686         Renamed = 8,
7687     }
7688 }
7689 namespace System.IO.Compression
7690 {
7691     public enum CompressionLevel
7692     {
7693         Fastest = 1,
7694         NoCompression = 2,
7695         Optimal = 0,
7696     }
7697     public enum CompressionMode
7698     {
7699         Compress = 1,
7700         Decompress = 0,
7701     }
7702     public partial class DeflateStream : System.IO.Stream
7703     {
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel)7704         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen)7705         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode)7706         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen)7707         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
7708         public System.IO.Stream BaseStream { get { throw null; } }
7709         public override bool CanRead { get { throw null; } }
7710         public override bool CanSeek { get { throw null; } }
7711         public override bool CanWrite { get { throw null; } }
7712         public override long Length { get { throw null; } }
7713         public override long Position { get { throw null; } set { } }
BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7714         public override System.IAsyncResult BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7715         public override System.IAsyncResult BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)7716         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)7717         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)7718         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()7719         public override void Flush() { }
Read(byte[] array, int offset, int count)7720         public override int Read(byte[] array, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)7721         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)7722         public override void SetLength(long value) { }
Write(byte[] array, int offset, int count)7723         public override void Write(byte[] array, int offset, int count) { }
7724     }
7725     public partial class GZipStream : System.IO.Stream
7726     {
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel)7727         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen)7728         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode)7729         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen)7730         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
7731         public System.IO.Stream BaseStream { get { throw null; } }
7732         public override bool CanRead { get { throw null; } }
7733         public override bool CanSeek { get { throw null; } }
7734         public override bool CanWrite { get { throw null; } }
7735         public override long Length { get { throw null; } }
7736         public override long Position { get { throw null; } set { } }
BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7737         public override System.IAsyncResult BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7738         public override System.IAsyncResult BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
CopyTo(System.IO.Stream destination, int bufferSize)7739         public override void CopyTo(System.IO.Stream destination, int bufferSize) { }
CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken)7740         public override System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken) { throw null; }
Dispose(bool disposing)7741         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)7742         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)7743         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()7744         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)7745         public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read(byte[] array, int offset, int count)7746         public override int Read(byte[] array, int offset, int count) { throw null; }
Read(System.Span<byte> destination)7747         public override int Read(System.Span<byte> destination) { throw null; }
ReadAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken)7748         public override System.Threading.Tasks.Task<int> ReadAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
ReadAsync(System.Memory<byte> destination, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))7749         public override System.Threading.Tasks.ValueTask<int> ReadAsync(System.Memory<byte> destination, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
ReadByte()7750         public override int ReadByte() { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)7751         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)7752         public override void SetLength(long value) { }
Write(byte[] array, int offset, int count)7753         public override void Write(byte[] array, int offset, int count) { }
Write(System.ReadOnlySpan<byte> source)7754         public override void Write(System.ReadOnlySpan<byte> source) { }
WriteAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken)7755         public override System.Threading.Tasks.Task WriteAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
7756     }
7757 }
7758 namespace System.IO.Ports
7759 {
7760     public enum Handshake
7761     {
7762         None = 0,
7763         RequestToSend = 2,
7764         RequestToSendXOnXOff = 3,
7765         XOnXOff = 1,
7766     }
7767     public enum Parity
7768     {
7769         Even = 2,
7770         Mark = 3,
7771         None = 0,
7772         Odd = 1,
7773         Space = 4,
7774     }
7775     public enum SerialData
7776     {
7777         Chars = 1,
7778         Eof = 2,
7779     }
7780     public partial class SerialDataReceivedEventArgs : System.EventArgs
7781     {
SerialDataReceivedEventArgs()7782         internal SerialDataReceivedEventArgs() { }
7783         public System.IO.Ports.SerialData EventType { get { throw null; } }
7784     }
SerialDataReceivedEventHandler(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)7785     public delegate void SerialDataReceivedEventHandler(object sender, System.IO.Ports.SerialDataReceivedEventArgs e);
7786     public enum SerialError
7787     {
7788         Frame = 8,
7789         Overrun = 2,
7790         RXOver = 1,
7791         RXParity = 4,
7792         TXFull = 256,
7793     }
7794     public partial class SerialErrorReceivedEventArgs : System.EventArgs
7795     {
SerialErrorReceivedEventArgs()7796         internal SerialErrorReceivedEventArgs() { }
7797         public System.IO.Ports.SerialError EventType { get { throw null; } }
7798     }
SerialErrorReceivedEventHandler(object sender, System.IO.Ports.SerialErrorReceivedEventArgs e)7799     public delegate void SerialErrorReceivedEventHandler(object sender, System.IO.Ports.SerialErrorReceivedEventArgs e);
7800     public enum SerialPinChange
7801     {
7802         Break = 64,
7803         CDChanged = 32,
7804         CtsChanged = 8,
7805         DsrChanged = 16,
7806         Ring = 256,
7807     }
7808     public partial class SerialPinChangedEventArgs : System.EventArgs
7809     {
SerialPinChangedEventArgs()7810         internal SerialPinChangedEventArgs() { }
7811         public System.IO.Ports.SerialPinChange EventType { get { throw null; } }
7812     }
SerialPinChangedEventHandler(object sender, System.IO.Ports.SerialPinChangedEventArgs e)7813     public delegate void SerialPinChangedEventHandler(object sender, System.IO.Ports.SerialPinChangedEventArgs e);
7814     [System.Diagnostics.MonitoringDescriptionAttribute("")]
7815     public partial class SerialPort : System.ComponentModel.Component
7816     {
7817         public const int InfiniteTimeout = -1;
SerialPort()7818         public SerialPort() { }
SerialPort(System.ComponentModel.IContainer container)7819         public SerialPort(System.ComponentModel.IContainer container) { }
SerialPort(string portName)7820         public SerialPort(string portName) { }
SerialPort(string portName, int baudRate)7821         public SerialPort(string portName, int baudRate) { }
SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity)7822         public SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity) { }
SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits)7823         public SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits) { }
SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits, System.IO.Ports.StopBits stopBits)7824         public SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits, System.IO.Ports.StopBits stopBits) { }
7825         [System.ComponentModel.BrowsableAttribute(false)]
7826         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7827         public System.IO.Stream BaseStream { get { throw null; } }
7828         [System.ComponentModel.BrowsableAttribute(true)]
7829         [System.ComponentModel.DefaultValueAttribute(9600)]
7830         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7831         public int BaudRate { get { throw null; } set { } }
7832         [System.ComponentModel.BrowsableAttribute(false)]
7833         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7834         public bool BreakState { get { throw null; } set { } }
7835         [System.ComponentModel.BrowsableAttribute(false)]
7836         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7837         public int BytesToRead { get { throw null; } }
7838         [System.ComponentModel.BrowsableAttribute(false)]
7839         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7840         public int BytesToWrite { get { throw null; } }
7841         [System.ComponentModel.BrowsableAttribute(false)]
7842         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7843         public bool CDHolding { get { throw null; } }
7844         [System.ComponentModel.BrowsableAttribute(false)]
7845         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7846         public bool CtsHolding { get { throw null; } }
7847         [System.ComponentModel.BrowsableAttribute(true)]
7848         [System.ComponentModel.DefaultValueAttribute(8)]
7849         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7850         public int DataBits { get { throw null; } set { } }
7851         [System.ComponentModel.BrowsableAttribute(true)]
7852         [System.ComponentModel.DefaultValueAttribute(false)]
7853         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7854         [System.MonoTODOAttribute("Not implemented")]
7855         public bool DiscardNull { get { throw null; } set { } }
7856         [System.ComponentModel.BrowsableAttribute(false)]
7857         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7858         public bool DsrHolding { get { throw null; } }
7859         [System.ComponentModel.BrowsableAttribute(true)]
7860         [System.ComponentModel.DefaultValueAttribute(false)]
7861         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7862         public bool DtrEnable { get { throw null; } set { } }
7863         [System.ComponentModel.BrowsableAttribute(false)]
7864         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7865         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7866         public System.Text.Encoding Encoding { get { throw null; } set { } }
7867         [System.ComponentModel.BrowsableAttribute(true)]
7868         [System.ComponentModel.DefaultValueAttribute((System.IO.Ports.Handshake)(0))]
7869         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7870         public System.IO.Ports.Handshake Handshake { get { throw null; } set { } }
7871         [System.ComponentModel.BrowsableAttribute(false)]
7872         public bool IsOpen { get { throw null; } }
7873         [System.ComponentModel.BrowsableAttribute(false)]
7874         [System.ComponentModel.DefaultValueAttribute("\n")]
7875         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7876         public string NewLine { get { throw null; } set { } }
7877         [System.ComponentModel.BrowsableAttribute(true)]
7878         [System.ComponentModel.DefaultValueAttribute((System.IO.Ports.Parity)(0))]
7879         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7880         public System.IO.Ports.Parity Parity { get { throw null; } set { } }
7881         [System.ComponentModel.BrowsableAttribute(true)]
7882         [System.ComponentModel.DefaultValueAttribute(63)]
7883         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7884         [System.MonoTODOAttribute("Not implemented")]
7885         public byte ParityReplace { get { throw null; } set { } }
7886         [System.ComponentModel.BrowsableAttribute(true)]
7887         [System.ComponentModel.DefaultValueAttribute("COM1")]
7888         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7889         public string PortName { get { throw null; } set { } }
7890         [System.ComponentModel.BrowsableAttribute(true)]
7891         [System.ComponentModel.DefaultValueAttribute(4096)]
7892         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7893         public int ReadBufferSize { get { throw null; } set { } }
7894         [System.ComponentModel.BrowsableAttribute(true)]
7895         [System.ComponentModel.DefaultValueAttribute(-1)]
7896         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7897         public int ReadTimeout { get { throw null; } set { } }
7898         [System.ComponentModel.BrowsableAttribute(true)]
7899         [System.ComponentModel.DefaultValueAttribute(1)]
7900         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7901         [System.MonoTODOAttribute("Not implemented")]
7902         public int ReceivedBytesThreshold { get { throw null; } set { } }
7903         [System.ComponentModel.BrowsableAttribute(true)]
7904         [System.ComponentModel.DefaultValueAttribute(false)]
7905         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7906         public bool RtsEnable { get { throw null; } set { } }
7907         [System.ComponentModel.BrowsableAttribute(true)]
7908         [System.ComponentModel.DefaultValueAttribute((System.IO.Ports.StopBits)(1))]
7909         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7910         public System.IO.Ports.StopBits StopBits { get { throw null; } set { } }
7911         [System.ComponentModel.BrowsableAttribute(true)]
7912         [System.ComponentModel.DefaultValueAttribute(2048)]
7913         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7914         public int WriteBufferSize { get { throw null; } set { } }
7915         [System.ComponentModel.BrowsableAttribute(true)]
7916         [System.ComponentModel.DefaultValueAttribute(-1)]
7917         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7918         public int WriteTimeout { get { throw null; } set { } }
7919         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7920         public event System.IO.Ports.SerialDataReceivedEventHandler DataReceived { add { } remove { } }
7921         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7922         public event System.IO.Ports.SerialErrorReceivedEventHandler ErrorReceived { add { } remove { } }
7923         [System.Diagnostics.MonitoringDescriptionAttribute("")]
7924         public event System.IO.Ports.SerialPinChangedEventHandler PinChanged { add { } remove { } }
Close()7925         public void Close() { }
DiscardInBuffer()7926         public void DiscardInBuffer() { }
DiscardOutBuffer()7927         public void DiscardOutBuffer() { }
Dispose(bool disposing)7928         protected override void Dispose(bool disposing) { }
GetPortNames()7929         public static string[] GetPortNames() { throw null; }
Open()7930         public void Open() { }
Read(byte[] buffer, int offset, int count)7931         public int Read(byte[] buffer, int offset, int count) { throw null; }
Read(char[] buffer, int offset, int count)7932         public int Read(char[] buffer, int offset, int count) { throw null; }
ReadByte()7933         public int ReadByte() { throw null; }
ReadChar()7934         public int ReadChar() { throw null; }
ReadExisting()7935         public string ReadExisting() { throw null; }
ReadLine()7936         public string ReadLine() { throw null; }
ReadTo(string value)7937         public string ReadTo(string value) { throw null; }
Write(byte[] buffer, int offset, int count)7938         public void Write(byte[] buffer, int offset, int count) { }
Write(char[] buffer, int offset, int count)7939         public void Write(char[] buffer, int offset, int count) { }
Write(string text)7940         public void Write(string text) { }
WriteLine(string text)7941         public void WriteLine(string text) { }
7942     }
7943     public enum StopBits
7944     {
7945         None = 0,
7946         One = 1,
7947         OnePointFive = 3,
7948         Two = 2,
7949     }
7950 }
7951 namespace System.Media
7952 {
7953     [System.ComponentModel.ToolboxItemAttribute(false)]
7954     [System.SerializableAttribute]
7955     public partial class SoundPlayer : System.ComponentModel.Component, System.Runtime.Serialization.ISerializable
7956     {
SoundPlayer()7957         public SoundPlayer() { }
SoundPlayer(System.IO.Stream stream)7958         public SoundPlayer(System.IO.Stream stream) { }
SoundPlayer(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context)7959         protected SoundPlayer(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) { }
SoundPlayer(string soundLocation)7960         public SoundPlayer(string soundLocation) { }
7961         public bool IsLoadCompleted { get { throw null; } }
7962         public int LoadTimeout { get { throw null; } set { } }
7963         public string SoundLocation { get { throw null; } set { } }
7964         public System.IO.Stream Stream { get { throw null; } set { } }
7965         public object Tag { get { throw null; } set { } }
7966         public event System.ComponentModel.AsyncCompletedEventHandler LoadCompleted { add { } remove { } }
7967         public event System.EventHandler SoundLocationChanged { add { } remove { } }
7968         public event System.EventHandler StreamChanged { add { } remove { } }
Load()7969         public void Load() { }
LoadAsync()7970         public void LoadAsync() { }
OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs e)7971         protected virtual void OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
OnSoundLocationChanged(System.EventArgs e)7972         protected virtual void OnSoundLocationChanged(System.EventArgs e) { }
OnStreamChanged(System.EventArgs e)7973         protected virtual void OnStreamChanged(System.EventArgs e) { }
Play()7974         public void Play() { }
PlayLooping()7975         public void PlayLooping() { }
PlaySync()7976         public void PlaySync() { }
Stop()7977         public void Stop() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7978         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
7979     }
7980     public partial class SystemSound
7981     {
SystemSound()7982         internal SystemSound() { }
Play()7983         public void Play() { }
7984     }
7985     public sealed partial class SystemSounds
7986     {
SystemSounds()7987         internal SystemSounds() { }
7988         public static System.Media.SystemSound Asterisk { get { throw null; } }
7989         public static System.Media.SystemSound Beep { get { throw null; } }
7990         public static System.Media.SystemSound Exclamation { get { throw null; } }
7991         public static System.Media.SystemSound Hand { get { throw null; } }
7992         public static System.Media.SystemSound Question { get { throw null; } }
7993     }
7994 }
7995 namespace System.Net
7996 {
7997     public partial class AuthenticationManager
7998     {
AuthenticationManager()7999         internal AuthenticationManager() { }
8000         public static System.Net.ICredentialPolicy CredentialPolicy { get { throw null; } set { } }
8001         [System.MonoTODOAttribute]
8002         public static System.Collections.Specialized.StringDictionary CustomTargetNameDictionary { get { throw null; } }
8003         public static System.Collections.IEnumerator RegisteredModules { get { throw null; } }
Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials)8004         public static System.Net.Authorization Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials) { throw null; }
PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials)8005         public static System.Net.Authorization PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials) { throw null; }
Register(System.Net.IAuthenticationModule authenticationModule)8006         public static void Register(System.Net.IAuthenticationModule authenticationModule) { }
Unregister(System.Net.IAuthenticationModule authenticationModule)8007         public static void Unregister(System.Net.IAuthenticationModule authenticationModule) { }
Unregister(string authenticationScheme)8008         public static void Unregister(string authenticationScheme) { }
8009     }
8010     [System.FlagsAttribute]
8011     public enum AuthenticationSchemes
8012     {
8013         Anonymous = 32768,
8014         Basic = 8,
8015         Digest = 1,
8016         IntegratedWindowsAuthentication = 6,
8017         Negotiate = 2,
8018         None = 0,
8019         Ntlm = 4,
8020     }
AuthenticationSchemeSelector(System.Net.HttpListenerRequest httpRequest)8021     public delegate System.Net.AuthenticationSchemes AuthenticationSchemeSelector(System.Net.HttpListenerRequest httpRequest);
8022     public partial class Authorization
8023     {
Authorization(string token)8024         public Authorization(string token) { }
Authorization(string token, bool finished)8025         public Authorization(string token, bool finished) { }
Authorization(string token, bool finished, string connectionGroupId)8026         public Authorization(string token, bool finished, string connectionGroupId) { }
8027         public bool Complete { get { throw null; } }
8028         public string ConnectionGroupId { get { throw null; } }
8029         public string Message { get { throw null; } }
8030         public bool MutuallyAuthenticated { get { throw null; } set { } }
8031         public string[] ProtectionRealm { get { throw null; } set { } }
8032     }
BindIPEndPoint(System.Net.ServicePoint servicePoint, System.Net.IPEndPoint remoteEndPoint, int retryCount)8033     public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.Net.IPEndPoint remoteEndPoint, int retryCount);
8034     [System.SerializableAttribute]
8035     public sealed partial class Cookie
8036     {
Cookie()8037         public Cookie() { }
Cookie(string name, string value)8038         public Cookie(string name, string value) { }
Cookie(string name, string value, string path)8039         public Cookie(string name, string value, string path) { }
Cookie(string name, string value, string path, string domain)8040         public Cookie(string name, string value, string path, string domain) { }
8041         public string Comment { get { throw null; } set { } }
8042         public System.Uri CommentUri { get { throw null; } set { } }
8043         public bool Discard { get { throw null; } set { } }
8044         public string Domain { get { throw null; } set { } }
8045         public bool Expired { get { throw null; } set { } }
8046         public System.DateTime Expires { get { throw null; } set { } }
8047         public bool HttpOnly { get { throw null; } set { } }
8048         public string Name { get { throw null; } set { } }
8049         public string Path { get { throw null; } set { } }
8050         public string Port { get { throw null; } set { } }
8051         public bool Secure { get { throw null; } set { } }
8052         public System.DateTime TimeStamp { get { throw null; } }
8053         public string Value { get { throw null; } set { } }
8054         public int Version { get { throw null; } set { } }
Equals(object comparand)8055         public override bool Equals(object comparand) { throw null; }
GetHashCode()8056         public override int GetHashCode() { throw null; }
ToString()8057         public override string ToString() { throw null; }
8058     }
8059     [System.SerializableAttribute]
8060     public partial class CookieCollection : System.Collections.ICollection, System.Collections.IEnumerable
8061     {
CookieCollection()8062         public CookieCollection() { }
8063         public int Count { get { throw null; } }
8064         public bool IsReadOnly { get { throw null; } }
8065         public bool IsSynchronized { get { throw null; } }
8066         public System.Net.Cookie this[int index] { get { throw null; } }
8067         public System.Net.Cookie this[string name] { get { throw null; } }
8068         public object SyncRoot { get { throw null; } }
Add(System.Net.Cookie cookie)8069         public void Add(System.Net.Cookie cookie) { }
Add(System.Net.CookieCollection cookies)8070         public void Add(System.Net.CookieCollection cookies) { }
CopyTo(System.Array array, int index)8071         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Net.Cookie[] array, int index)8072         public void CopyTo(System.Net.Cookie[] array, int index) { }
GetEnumerator()8073         public System.Collections.IEnumerator GetEnumerator() { throw null; }
8074     }
8075     [System.SerializableAttribute]
8076     public partial class CookieContainer
8077     {
8078         public const int DefaultCookieLengthLimit = 4096;
8079         public const int DefaultCookieLimit = 300;
8080         public const int DefaultPerDomainCookieLimit = 20;
CookieContainer()8081         public CookieContainer() { }
CookieContainer(int capacity)8082         public CookieContainer(int capacity) { }
CookieContainer(int capacity, int perDomainCapacity, int maxCookieSize)8083         public CookieContainer(int capacity, int perDomainCapacity, int maxCookieSize) { }
8084         public int Capacity { get { throw null; } set { } }
8085         public int Count { get { throw null; } }
8086         public int MaxCookieSize { get { throw null; } set { } }
8087         public int PerDomainCapacity { get { throw null; } set { } }
Add(System.Net.Cookie cookie)8088         public void Add(System.Net.Cookie cookie) { }
Add(System.Net.CookieCollection cookies)8089         public void Add(System.Net.CookieCollection cookies) { }
Add(System.Uri uri, System.Net.Cookie cookie)8090         public void Add(System.Uri uri, System.Net.Cookie cookie) { }
Add(System.Uri uri, System.Net.CookieCollection cookies)8091         public void Add(System.Uri uri, System.Net.CookieCollection cookies) { }
GetCookieHeader(System.Uri uri)8092         public string GetCookieHeader(System.Uri uri) { throw null; }
GetCookies(System.Uri uri)8093         public System.Net.CookieCollection GetCookies(System.Uri uri) { throw null; }
SetCookies(System.Uri uri, string cookieHeader)8094         public void SetCookies(System.Uri uri, string cookieHeader) { }
8095     }
8096     [System.SerializableAttribute]
8097     public partial class CookieException : System.FormatException, System.Runtime.Serialization.ISerializable
8098     {
CookieException()8099         public CookieException() { }
CookieException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8100         protected CookieException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8101         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8102         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8103         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8104         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8105     }
8106     public partial class CredentialCache : System.Collections.IEnumerable, System.Net.ICredentials, System.Net.ICredentialsByHost
8107     {
CredentialCache()8108         public CredentialCache() { }
8109         public static System.Net.ICredentials DefaultCredentials { get { throw null; } }
8110         public static System.Net.NetworkCredential DefaultNetworkCredentials { get { throw null; } }
Add(string host, int port, string authenticationType, System.Net.NetworkCredential credential)8111         public void Add(string host, int port, string authenticationType, System.Net.NetworkCredential credential) { }
Add(System.Uri uriPrefix, string authType, System.Net.NetworkCredential cred)8112         public void Add(System.Uri uriPrefix, string authType, System.Net.NetworkCredential cred) { }
GetCredential(string host, int port, string authenticationType)8113         public System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType) { throw null; }
GetCredential(System.Uri uriPrefix, string authType)8114         public System.Net.NetworkCredential GetCredential(System.Uri uriPrefix, string authType) { throw null; }
GetEnumerator()8115         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string host, int port, string authenticationType)8116         public void Remove(string host, int port, string authenticationType) { }
Remove(System.Uri uriPrefix, string authType)8117         public void Remove(System.Uri uriPrefix, string authType) { }
8118     }
8119     [System.FlagsAttribute]
8120     public enum DecompressionMethods
8121     {
8122         Deflate = 2,
8123         GZip = 1,
8124         None = 0,
8125     }
8126     public static partial class Dns
8127     {
BeginGetHostAddresses(string hostNameOrAddress, System.AsyncCallback requestCallback, object state)8128         public static System.IAsyncResult BeginGetHostAddresses(string hostNameOrAddress, System.AsyncCallback requestCallback, object state) { throw null; }
8129         [System.ObsoleteAttribute("Use BeginGetHostEntry instead")]
BeginGetHostByName(string hostName, System.AsyncCallback requestCallback, object stateObject)8130         public static System.IAsyncResult BeginGetHostByName(string hostName, System.AsyncCallback requestCallback, object stateObject) { throw null; }
BeginGetHostEntry(System.Net.IPAddress address, System.AsyncCallback requestCallback, object stateObject)8131         public static System.IAsyncResult BeginGetHostEntry(System.Net.IPAddress address, System.AsyncCallback requestCallback, object stateObject) { throw null; }
BeginGetHostEntry(string hostNameOrAddress, System.AsyncCallback requestCallback, object stateObject)8132         public static System.IAsyncResult BeginGetHostEntry(string hostNameOrAddress, System.AsyncCallback requestCallback, object stateObject) { throw null; }
8133         [System.ObsoleteAttribute("Use BeginGetHostEntry instead")]
BeginResolve(string hostName, System.AsyncCallback requestCallback, object stateObject)8134         public static System.IAsyncResult BeginResolve(string hostName, System.AsyncCallback requestCallback, object stateObject) { throw null; }
EndGetHostAddresses(System.IAsyncResult asyncResult)8135         public static System.Net.IPAddress[] EndGetHostAddresses(System.IAsyncResult asyncResult) { throw null; }
8136         [System.ObsoleteAttribute("Use EndGetHostEntry instead")]
EndGetHostByName(System.IAsyncResult asyncResult)8137         public static System.Net.IPHostEntry EndGetHostByName(System.IAsyncResult asyncResult) { throw null; }
EndGetHostEntry(System.IAsyncResult asyncResult)8138         public static System.Net.IPHostEntry EndGetHostEntry(System.IAsyncResult asyncResult) { throw null; }
8139         [System.ObsoleteAttribute("Use EndGetHostEntry instead")]
EndResolve(System.IAsyncResult asyncResult)8140         public static System.Net.IPHostEntry EndResolve(System.IAsyncResult asyncResult) { throw null; }
GetHostAddresses(string hostNameOrAddress)8141         public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; }
GetHostAddressesAsync(string hostNameOrAddress)8142         public static System.Threading.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw null; }
8143         [System.ObsoleteAttribute("Use GetHostEntry instead")]
GetHostByAddress(System.Net.IPAddress address)8144         public static System.Net.IPHostEntry GetHostByAddress(System.Net.IPAddress address) { throw null; }
8145         [System.ObsoleteAttribute("Use GetHostEntry instead")]
GetHostByAddress(string address)8146         public static System.Net.IPHostEntry GetHostByAddress(string address) { throw null; }
8147         [System.ObsoleteAttribute("Use GetHostEntry instead")]
GetHostByName(string hostName)8148         public static System.Net.IPHostEntry GetHostByName(string hostName) { throw null; }
GetHostEntry(System.Net.IPAddress address)8149         public static System.Net.IPHostEntry GetHostEntry(System.Net.IPAddress address) { throw null; }
GetHostEntry(string hostNameOrAddress)8150         public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; }
GetHostEntryAsync(System.Net.IPAddress address)8151         public static System.Threading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(System.Net.IPAddress address) { throw null; }
GetHostEntryAsync(string hostNameOrAddress)8152         public static System.Threading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw null; }
GetHostName()8153         public static string GetHostName() { throw null; }
8154         [System.ObsoleteAttribute("Use GetHostEntry instead")]
Resolve(string hostName)8155         public static System.Net.IPHostEntry Resolve(string hostName) { throw null; }
8156     }
8157     public partial class DnsEndPoint : System.Net.EndPoint
8158     {
DnsEndPoint(string host, int port)8159         public DnsEndPoint(string host, int port) { }
DnsEndPoint(string host, int port, System.Net.Sockets.AddressFamily addressFamily)8160         public DnsEndPoint(string host, int port, System.Net.Sockets.AddressFamily addressFamily) { }
8161         public override System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
8162         public string Host { get { throw null; } }
8163         public int Port { get { throw null; } }
Equals(object comparand)8164         public override bool Equals(object comparand) { throw null; }
GetHashCode()8165         public override int GetHashCode() { throw null; }
ToString()8166         public override string ToString() { throw null; }
8167     }
8168     [System.SerializableAttribute]
8169     public sealed partial class DnsPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
8170     {
DnsPermission(System.Security.Permissions.PermissionState state)8171         public DnsPermission(System.Security.Permissions.PermissionState state) { }
Copy()8172         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)8173         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)8174         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)8175         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()8176         public bool IsUnrestricted() { throw null; }
ToXml()8177         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)8178         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
8179     }
8180     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
8181     [System.SerializableAttribute]
8182     public sealed partial class DnsPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
8183     {
DnsPermissionAttribute(System.Security.Permissions.SecurityAction action)8184         public DnsPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()8185         public override System.Security.IPermission CreatePermission() { throw null; }
8186     }
8187     public partial class DownloadDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
8188     {
DownloadDataCompletedEventArgs()8189         internal DownloadDataCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
8190         public byte[] Result { get { throw null; } }
8191     }
DownloadDataCompletedEventHandler(object sender, System.Net.DownloadDataCompletedEventArgs e)8192     public delegate void DownloadDataCompletedEventHandler(object sender, System.Net.DownloadDataCompletedEventArgs e);
8193     public partial class DownloadProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs
8194     {
DownloadProgressChangedEventArgs()8195         internal DownloadProgressChangedEventArgs() : base (default(int), default(object)) { }
8196         public long BytesReceived { get { throw null; } }
8197         public long TotalBytesToReceive { get { throw null; } }
8198     }
DownloadProgressChangedEventHandler(object sender, System.Net.DownloadProgressChangedEventArgs e)8199     public delegate void DownloadProgressChangedEventHandler(object sender, System.Net.DownloadProgressChangedEventArgs e);
8200     public partial class DownloadStringCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
8201     {
DownloadStringCompletedEventArgs()8202         internal DownloadStringCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
8203         public string Result { get { throw null; } }
8204     }
DownloadStringCompletedEventHandler(object sender, System.Net.DownloadStringCompletedEventArgs e)8205     public delegate void DownloadStringCompletedEventHandler(object sender, System.Net.DownloadStringCompletedEventArgs e);
8206     [System.SerializableAttribute]
8207     public abstract partial class EndPoint
8208     {
EndPoint()8209         protected EndPoint() { }
8210         public virtual System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
Create(System.Net.SocketAddress socketAddress)8211         public virtual System.Net.EndPoint Create(System.Net.SocketAddress socketAddress) { throw null; }
Serialize()8212         public virtual System.Net.SocketAddress Serialize() { throw null; }
8213     }
8214     [System.SerializableAttribute]
8215     public partial class EndpointPermission
8216     {
EndpointPermission()8217         internal EndpointPermission() { }
8218         public string Hostname { get { throw null; } }
8219         public int Port { get { throw null; } }
8220         public System.Net.TransportType Transport { get { throw null; } }
Equals(object obj)8221         public override bool Equals(object obj) { throw null; }
GetHashCode()8222         public override int GetHashCode() { throw null; }
ToString()8223         public override string ToString() { throw null; }
8224     }
8225     [System.SerializableAttribute]
8226     public partial class FileWebRequest : System.Net.WebRequest, System.Runtime.Serialization.ISerializable
8227     {
8228         [System.ObsoleteAttribute("Serialization is obsoleted for this type. http://go.microsoft.com/fwlink/?linkid=14202")]
FileWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8229         protected FileWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8230         public override string ConnectionGroupName { get { throw null; } set { } }
8231         public override long ContentLength { get { throw null; } set { } }
8232         public override string ContentType { get { throw null; } set { } }
8233         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
8234         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8235         public override string Method { get { throw null; } set { } }
8236         public override bool PreAuthenticate { get { throw null; } set { } }
8237         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
8238         public override System.Uri RequestUri { get { throw null; } }
8239         public override int Timeout { get { throw null; } set { } }
8240         public override bool UseDefaultCredentials { get { throw null; } set { } }
Abort()8241         public override void Abort() { }
8242         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)8243         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
8244         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)8245         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)8246         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)8247         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
8248         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8249         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()8250         public override System.IO.Stream GetRequestStream() { throw null; }
GetResponse()8251         public override System.Net.WebResponse GetResponse() { throw null; }
8252         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8253         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8254     }
8255     [System.SerializableAttribute]
8256     public partial class FileWebResponse : System.Net.WebResponse, System.Runtime.Serialization.ISerializable
8257     {
8258         [System.ObsoleteAttribute("Serialization is obsoleted for this type. http://go.microsoft.com/fwlink/?linkid=14202")]
FileWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8259         protected FileWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8260         public override long ContentLength { get { throw null; } }
8261         public override string ContentType { get { throw null; } }
8262         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8263         public override System.Uri ResponseUri { get { throw null; } }
8264         public override bool SupportsHeaders { get { throw null; } }
Close()8265         public override void Close() { }
8266         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8267         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseStream()8268         public override System.IO.Stream GetResponseStream() { throw null; }
8269         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8270         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8271     }
8272     public enum FtpStatusCode
8273     {
8274         AccountNeeded = 532,
8275         ActionAbortedLocalProcessingError = 451,
8276         ActionAbortedUnknownPageType = 551,
8277         ActionNotTakenFilenameNotAllowed = 553,
8278         ActionNotTakenFileUnavailable = 550,
8279         ActionNotTakenFileUnavailableOrBusy = 450,
8280         ActionNotTakenInsufficientSpace = 452,
8281         ArgumentSyntaxError = 501,
8282         BadCommandSequence = 503,
8283         CantOpenData = 425,
8284         ClosingControl = 221,
8285         ClosingData = 226,
8286         CommandExtraneous = 202,
8287         CommandNotImplemented = 502,
8288         CommandOK = 200,
8289         CommandSyntaxError = 500,
8290         ConnectionClosed = 426,
8291         DataAlreadyOpen = 125,
8292         DirectoryStatus = 212,
8293         EnteringPassive = 227,
8294         FileActionAborted = 552,
8295         FileActionOK = 250,
8296         FileCommandPending = 350,
8297         FileStatus = 213,
8298         LoggedInProceed = 230,
8299         NeedLoginAccount = 332,
8300         NotLoggedIn = 530,
8301         OpeningData = 150,
8302         PathnameCreated = 257,
8303         RestartMarker = 110,
8304         SendPasswordCommand = 331,
8305         SendUserCommand = 220,
8306         ServerWantsSecureSession = 234,
8307         ServiceNotAvailable = 421,
8308         ServiceTemporarilyNotAvailable = 120,
8309         SystemType = 215,
8310         Undefined = 0,
8311     }
8312     public sealed partial class FtpWebRequest : System.Net.WebRequest
8313     {
FtpWebRequest()8314         internal FtpWebRequest() { }
8315         [System.MonoTODOAttribute]
8316         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
8317         [System.MonoTODOAttribute]
8318         public override string ConnectionGroupName { get { throw null; } set { } }
8319         public override long ContentLength { get { throw null; } set { } }
8320         public long ContentOffset { get { throw null; } set { } }
8321         public override string ContentType { get { throw null; } set { } }
8322         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
8323         [System.MonoTODOAttribute]
8324         public static new System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
8325         public bool EnableSsl { get { throw null; } set { } }
8326         [System.MonoTODOAttribute]
8327         public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
8328         [System.MonoTODOAttribute("We don't support KeepAlive = true")]
8329         public bool KeepAlive { get { throw null; } set { } }
8330         public override string Method { get { throw null; } set { } }
8331         public override bool PreAuthenticate { get { throw null; } set { } }
8332         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
8333         public int ReadWriteTimeout { get { throw null; } set { } }
8334         public string RenameTo { get { throw null; } set { } }
8335         public override System.Uri RequestUri { get { throw null; } }
8336         public System.Net.ServicePoint ServicePoint { get { throw null; } }
8337         public override int Timeout { get { throw null; } set { } }
8338         public bool UseBinary { get { throw null; } set { } }
8339         [System.MonoTODOAttribute]
8340         public override bool UseDefaultCredentials { get { throw null; } set { } }
8341         public bool UsePassive { get { throw null; } set { } }
Abort()8342         public override void Abort() { }
BeginGetRequestStream(System.AsyncCallback callback, object state)8343         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
BeginGetResponse(System.AsyncCallback callback, object state)8344         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)8345         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)8346         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
GetRequestStream()8347         public override System.IO.Stream GetRequestStream() { throw null; }
GetResponse()8348         public override System.Net.WebResponse GetResponse() { throw null; }
8349     }
8350     public partial class FtpWebResponse : System.Net.WebResponse
8351     {
FtpWebResponse()8352         internal FtpWebResponse() { }
8353         public string BannerMessage { get { throw null; } }
8354         public override long ContentLength { get { throw null; } }
8355         public string ExitMessage { get { throw null; } }
8356         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8357         public System.DateTime LastModified { get { throw null; } }
8358         public override System.Uri ResponseUri { get { throw null; } }
8359         public System.Net.FtpStatusCode StatusCode { get { throw null; } }
8360         public string StatusDescription { get { throw null; } }
8361         public override bool SupportsHeaders { get { throw null; } }
8362         public string WelcomeMessage { get { throw null; } }
Close()8363         public override void Close() { }
GetResponseStream()8364         public override System.IO.Stream GetResponseStream() { throw null; }
8365     }
8366     [System.ObsoleteAttribute("This class has been deprecated. Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use 'null' instead of GetEmptyWebProxy. http://go.microsoft.com/fwlink/?linkid=14202")]
8367     public partial class GlobalProxySelection
8368     {
GlobalProxySelection()8369         public GlobalProxySelection() { }
8370         public static System.Net.IWebProxy Select { get { throw null; } set { } }
GetEmptyWebProxy()8371         public static System.Net.IWebProxy GetEmptyWebProxy() { throw null; }
8372     }
HttpContinueDelegate(int StatusCode, System.Net.WebHeaderCollection httpHeaders)8373     public delegate void HttpContinueDelegate(int StatusCode, System.Net.WebHeaderCollection httpHeaders);
8374     public sealed partial class HttpListener : System.IDisposable
8375     {
HttpListener()8376         public HttpListener() { }
8377         public System.Net.AuthenticationSchemes AuthenticationSchemes { get { throw null; } set { } }
8378         public System.Net.AuthenticationSchemeSelector AuthenticationSchemeSelectorDelegate { get { throw null; } set { } }
8379         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection DefaultServiceNames { get { throw null; } }
8380         [System.MonoTODOAttribute("not used anywhere in the implementation")]
8381         public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionPolicy { get { throw null; } set { } }
8382         public System.Net.HttpListener.ExtendedProtectionSelector ExtendedProtectionSelectorDelegate { get { throw null; } set { } }
8383         public bool IgnoreWriteExceptions { get { throw null; } set { } }
8384         public bool IsListening { get { throw null; } }
8385         public static bool IsSupported { get { throw null; } }
8386         public System.Net.HttpListenerPrefixCollection Prefixes { get { throw null; } }
8387         public string Realm { get { throw null; } set { } }
8388         [System.MonoTODOAttribute]
8389         public System.Net.HttpListenerTimeoutManager TimeoutManager { get { throw null; } }
8390         [System.MonoTODOAttribute("Support for NTLM needs some loving.")]
8391         public bool UnsafeConnectionNtlmAuthentication { get { throw null; } set { } }
Abort()8392         public void Abort() { }
BeginGetContext(System.AsyncCallback callback, object state)8393         public System.IAsyncResult BeginGetContext(System.AsyncCallback callback, object state) { throw null; }
Close()8394         public void Close() { }
EndGetContext(System.IAsyncResult asyncResult)8395         public System.Net.HttpListenerContext EndGetContext(System.IAsyncResult asyncResult) { throw null; }
GetContext()8396         public System.Net.HttpListenerContext GetContext() { throw null; }
GetContextAsync()8397         public System.Threading.Tasks.Task<System.Net.HttpListenerContext> GetContextAsync() { throw null; }
Start()8398         public void Start() { }
Stop()8399         public void Stop() { }
System.IDisposable.Dispose()8400         void System.IDisposable.Dispose() { }
ExtendedProtectionSelector(System.Net.HttpListenerRequest request)8401         public delegate System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionSelector(System.Net.HttpListenerRequest request);
8402     }
8403     public partial class HttpListenerBasicIdentity : System.Security.Principal.GenericIdentity
8404     {
HttpListenerBasicIdentity(string username, string password)8405         public HttpListenerBasicIdentity(string username, string password) : base (default(string)) { }
8406         public virtual string Password { get { throw null; } }
8407     }
8408     public sealed partial class HttpListenerContext
8409     {
HttpListenerContext()8410         internal HttpListenerContext() { }
8411         public System.Net.HttpListenerRequest Request { get { throw null; } }
8412         public System.Net.HttpListenerResponse Response { get { throw null; } }
8413         public System.Security.Principal.IPrincipal User { get { throw null; } }
8414         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol)8415         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol) { throw null; }
8416         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval)8417         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval) { throw null; }
8418         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval, System.ArraySegment<byte> internalBuffer)8419         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval, System.ArraySegment<byte> internalBuffer) { throw null; }
8420         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol, System.TimeSpan keepAliveInterval)8421         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, System.TimeSpan keepAliveInterval) { throw null; }
8422     }
8423     [System.SerializableAttribute]
8424     public partial class HttpListenerException : System.ComponentModel.Win32Exception
8425     {
HttpListenerException()8426         public HttpListenerException() { }
HttpListenerException(int errorCode)8427         public HttpListenerException(int errorCode) { }
HttpListenerException(int errorCode, string message)8428         public HttpListenerException(int errorCode, string message) { }
HttpListenerException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8429         protected HttpListenerException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8430         public override int ErrorCode { get { throw null; } }
8431     }
8432     public partial class HttpListenerPrefixCollection : System.Collections.Generic.ICollection<string>, System.Collections.Generic.IEnumerable<string>, System.Collections.IEnumerable
8433     {
HttpListenerPrefixCollection()8434         internal HttpListenerPrefixCollection() { }
8435         public int Count { get { throw null; } }
8436         public bool IsReadOnly { get { throw null; } }
8437         public bool IsSynchronized { get { throw null; } }
Add(string uriPrefix)8438         public void Add(string uriPrefix) { }
Clear()8439         public void Clear() { }
Contains(string uriPrefix)8440         public bool Contains(string uriPrefix) { throw null; }
CopyTo(System.Array array, int offset)8441         public void CopyTo(System.Array array, int offset) { }
CopyTo(string[] array, int offset)8442         public void CopyTo(string[] array, int offset) { }
GetEnumerator()8443         public System.Collections.Generic.IEnumerator<string> GetEnumerator() { throw null; }
Remove(string uriPrefix)8444         public bool Remove(string uriPrefix) { throw null; }
System.Collections.IEnumerable.GetEnumerator()8445         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
8446     }
8447     public sealed partial class HttpListenerRequest
8448     {
HttpListenerRequest()8449         internal HttpListenerRequest() { }
8450         public string[] AcceptTypes { get { throw null; } }
8451         public int ClientCertificateError { get { throw null; } }
8452         public System.Text.Encoding ContentEncoding { get { throw null; } }
8453         public long ContentLength64 { get { throw null; } }
8454         public string ContentType { get { throw null; } }
8455         public System.Net.CookieCollection Cookies { get { throw null; } }
8456         public bool HasEntityBody { get { throw null; } }
8457         public System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
8458         public string HttpMethod { get { throw null; } }
8459         public System.IO.Stream InputStream { get { throw null; } }
8460         [System.MonoTODOAttribute("Always returns false")]
8461         public bool IsAuthenticated { get { throw null; } }
8462         public bool IsLocal { get { throw null; } }
8463         public bool IsSecureConnection { get { throw null; } }
8464         [System.MonoTODOAttribute]
8465         public bool IsWebSocketRequest { get { throw null; } }
8466         public bool KeepAlive { get { throw null; } }
8467         public System.Net.IPEndPoint LocalEndPoint { get { throw null; } }
8468         public System.Version ProtocolVersion { get { throw null; } }
8469         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } }
8470         public string RawUrl { get { throw null; } }
8471         public System.Net.IPEndPoint RemoteEndPoint { get { throw null; } }
8472         [System.MonoTODOAttribute("Always returns Guid.Empty")]
8473         public System.Guid RequestTraceIdentifier { get { throw null; } }
8474         [System.MonoTODOAttribute]
8475         public string ServiceName { get { throw null; } }
8476         public System.Net.TransportContext TransportContext { get { throw null; } }
8477         public System.Uri Url { get { throw null; } }
8478         public System.Uri UrlReferrer { get { throw null; } }
8479         public string UserAgent { get { throw null; } }
8480         public string UserHostAddress { get { throw null; } }
8481         public string UserHostName { get { throw null; } }
8482         public string[] UserLanguages { get { throw null; } }
BeginGetClientCertificate(System.AsyncCallback requestCallback, object state)8483         public System.IAsyncResult BeginGetClientCertificate(System.AsyncCallback requestCallback, object state) { throw null; }
EndGetClientCertificate(System.IAsyncResult asyncResult)8484         public System.Security.Cryptography.X509Certificates.X509Certificate2 EndGetClientCertificate(System.IAsyncResult asyncResult) { throw null; }
GetClientCertificate()8485         public System.Security.Cryptography.X509Certificates.X509Certificate2 GetClientCertificate() { throw null; }
GetClientCertificateAsync()8486         public System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync() { throw null; }
8487     }
8488     public sealed partial class HttpListenerResponse : System.IDisposable
8489     {
HttpListenerResponse()8490         internal HttpListenerResponse() { }
8491         public System.Text.Encoding ContentEncoding { get { throw null; } set { } }
8492         public long ContentLength64 { get { throw null; } set { } }
8493         public string ContentType { get { throw null; } set { } }
8494         public System.Net.CookieCollection Cookies { get { throw null; } set { } }
8495         public System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
8496         public bool KeepAlive { get { throw null; } set { } }
8497         public System.IO.Stream OutputStream { get { throw null; } }
8498         public System.Version ProtocolVersion { get { throw null; } set { } }
8499         public string RedirectLocation { get { throw null; } set { } }
8500         public bool SendChunked { get { throw null; } set { } }
8501         public int StatusCode { get { throw null; } set { } }
8502         public string StatusDescription { get { throw null; } set { } }
Abort()8503         public void Abort() { }
AddHeader(string name, string value)8504         public void AddHeader(string name, string value) { }
AppendCookie(System.Net.Cookie cookie)8505         public void AppendCookie(System.Net.Cookie cookie) { }
AppendHeader(string name, string value)8506         public void AppendHeader(string name, string value) { }
Close()8507         public void Close() { }
Close(byte[] responseEntity, bool willBlock)8508         public void Close(byte[] responseEntity, bool willBlock) { }
CopyFrom(System.Net.HttpListenerResponse templateResponse)8509         public void CopyFrom(System.Net.HttpListenerResponse templateResponse) { }
Redirect(string url)8510         public void Redirect(string url) { }
SetCookie(System.Net.Cookie cookie)8511         public void SetCookie(System.Net.Cookie cookie) { }
System.IDisposable.Dispose()8512         void System.IDisposable.Dispose() { }
8513     }
8514     public partial class HttpListenerTimeoutManager
8515     {
HttpListenerTimeoutManager()8516         public HttpListenerTimeoutManager() { }
8517         [System.MonoTODOAttribute]
8518         public System.TimeSpan DrainEntityBody { get { throw null; } set { } }
8519         [System.MonoTODOAttribute]
8520         public System.TimeSpan EntityBody { get { throw null; } set { } }
8521         [System.MonoTODOAttribute]
8522         public System.TimeSpan HeaderWait { get { throw null; } set { } }
8523         [System.MonoTODOAttribute]
8524         public System.TimeSpan IdleConnection { get { throw null; } set { } }
8525         [System.MonoTODOAttribute]
8526         public long MinSendBytesPerSecond { get { throw null; } set { } }
8527         [System.MonoTODOAttribute]
8528         public System.TimeSpan RequestQueue { get { throw null; } set { } }
8529     }
8530     public enum HttpRequestHeader
8531     {
8532         Accept = 20,
8533         AcceptCharset = 21,
8534         AcceptEncoding = 22,
8535         AcceptLanguage = 23,
8536         Allow = 10,
8537         Authorization = 24,
8538         CacheControl = 0,
8539         Connection = 1,
8540         ContentEncoding = 13,
8541         ContentLanguage = 14,
8542         ContentLength = 11,
8543         ContentLocation = 15,
8544         ContentMd5 = 16,
8545         ContentRange = 17,
8546         ContentType = 12,
8547         Cookie = 25,
8548         Date = 2,
8549         Expect = 26,
8550         Expires = 18,
8551         From = 27,
8552         Host = 28,
8553         IfMatch = 29,
8554         IfModifiedSince = 30,
8555         IfNoneMatch = 31,
8556         IfRange = 32,
8557         IfUnmodifiedSince = 33,
8558         KeepAlive = 3,
8559         LastModified = 19,
8560         MaxForwards = 34,
8561         Pragma = 4,
8562         ProxyAuthorization = 35,
8563         Range = 37,
8564         Referer = 36,
8565         Te = 38,
8566         Trailer = 5,
8567         TransferEncoding = 6,
8568         Translate = 39,
8569         Upgrade = 7,
8570         UserAgent = 40,
8571         Via = 8,
8572         Warning = 9,
8573     }
8574     public enum HttpResponseHeader
8575     {
8576         AcceptRanges = 20,
8577         Age = 21,
8578         Allow = 10,
8579         CacheControl = 0,
8580         Connection = 1,
8581         ContentEncoding = 13,
8582         ContentLanguage = 14,
8583         ContentLength = 11,
8584         ContentLocation = 15,
8585         ContentMd5 = 16,
8586         ContentRange = 17,
8587         ContentType = 12,
8588         Date = 2,
8589         ETag = 22,
8590         Expires = 18,
8591         KeepAlive = 3,
8592         LastModified = 19,
8593         Location = 23,
8594         Pragma = 4,
8595         ProxyAuthenticate = 24,
8596         RetryAfter = 25,
8597         Server = 26,
8598         SetCookie = 27,
8599         Trailer = 5,
8600         TransferEncoding = 6,
8601         Upgrade = 7,
8602         Vary = 28,
8603         Via = 8,
8604         Warning = 9,
8605         WwwAuthenticate = 29,
8606     }
8607     public enum HttpStatusCode
8608     {
8609         Accepted = 202,
8610         Ambiguous = 300,
8611         BadGateway = 502,
8612         BadRequest = 400,
8613         Conflict = 409,
8614         Continue = 100,
8615         Created = 201,
8616         ExpectationFailed = 417,
8617         Forbidden = 403,
8618         Found = 302,
8619         GatewayTimeout = 504,
8620         Gone = 410,
8621         HttpVersionNotSupported = 505,
8622         InternalServerError = 500,
8623         LengthRequired = 411,
8624         MethodNotAllowed = 405,
8625         Moved = 301,
8626         MovedPermanently = 301,
8627         MultipleChoices = 300,
8628         NoContent = 204,
8629         NonAuthoritativeInformation = 203,
8630         NotAcceptable = 406,
8631         NotFound = 404,
8632         NotImplemented = 501,
8633         NotModified = 304,
8634         OK = 200,
8635         PartialContent = 206,
8636         PaymentRequired = 402,
8637         PreconditionFailed = 412,
8638         ProxyAuthenticationRequired = 407,
8639         Redirect = 302,
8640         RedirectKeepVerb = 307,
8641         RedirectMethod = 303,
8642         RequestedRangeNotSatisfiable = 416,
8643         RequestEntityTooLarge = 413,
8644         RequestTimeout = 408,
8645         RequestUriTooLong = 414,
8646         ResetContent = 205,
8647         SeeOther = 303,
8648         ServiceUnavailable = 503,
8649         SwitchingProtocols = 101,
8650         TemporaryRedirect = 307,
8651         Unauthorized = 401,
8652         UnsupportedMediaType = 415,
8653         Unused = 306,
8654         UpgradeRequired = 426,
8655         UseProxy = 305,
8656     }
8657     public partial class HttpVersion
8658     {
8659         public static readonly System.Version Version10;
8660         public static readonly System.Version Version11;
HttpVersion()8661         public HttpVersion() { }
8662     }
8663     [System.SerializableAttribute]
8664     public partial class HttpWebRequest : System.Net.WebRequest, System.Runtime.Serialization.ISerializable
8665     {
8666         [System.ObsoleteAttribute("Serialization is obsoleted for this type", false)]
HttpWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8667         protected HttpWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8668         public string Accept { get { throw null; } set { } }
8669         public System.Uri Address { get { throw null; } }
8670         public virtual bool AllowAutoRedirect { get { throw null; } set { } }
8671         public virtual bool AllowReadStreamBuffering { get { throw null; } set { } }
8672         public virtual bool AllowWriteStreamBuffering { get { throw null; } set { } }
8673         public System.Net.DecompressionMethods AutomaticDecompression { get { throw null; } set { } }
8674         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
8675         public string Connection { get { throw null; } set { } }
8676         public override string ConnectionGroupName { get { throw null; } set { } }
8677         public override long ContentLength { get { throw null; } set { } }
8678         public override string ContentType { get { throw null; } set { } }
8679         public System.Net.HttpContinueDelegate ContinueDelegate { get { throw null; } set { } }
8680         [System.MonoTODOAttribute]
8681         public int ContinueTimeout { get { throw null; } set { } }
8682         public virtual System.Net.CookieContainer CookieContainer { get { throw null; } set { } }
8683         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
8684         public System.DateTime Date { get { throw null; } set { } }
8685         [System.MonoTODOAttribute]
8686         public static new System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
8687         [System.MonoTODOAttribute]
8688         public static int DefaultMaximumErrorResponseLength { get { throw null; } set { } }
8689         [System.MonoTODOAttribute("Use this")]
8690         public static int DefaultMaximumResponseHeadersLength { get { throw null; } set { } }
8691         public string Expect { get { throw null; } set { } }
8692         public virtual bool HaveResponse { get { throw null; } }
8693         public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
8694         public string Host { get { throw null; } set { } }
8695         public System.DateTime IfModifiedSince { get { throw null; } set { } }
8696         public bool KeepAlive { get { throw null; } set { } }
8697         public int MaximumAutomaticRedirections { get { throw null; } set { } }
8698         [System.MonoTODOAttribute("Use this")]
8699         public int MaximumResponseHeadersLength { get { throw null; } set { } }
8700         public string MediaType { get { throw null; } set { } }
8701         public override string Method { get { throw null; } set { } }
8702         public bool Pipelined { get { throw null; } set { } }
8703         public override bool PreAuthenticate { get { throw null; } set { } }
8704         public System.Version ProtocolVersion { get { throw null; } set { } }
8705         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
8706         public int ReadWriteTimeout { get { throw null; } set { } }
8707         public string Referer { get { throw null; } set { } }
8708         public override System.Uri RequestUri { get { throw null; } }
8709         public bool SendChunked { get { throw null; } set { } }
8710         public System.Net.Security.RemoteCertificateValidationCallback ServerCertificateValidationCallback { get { throw null; } set { } }
8711         public System.Net.ServicePoint ServicePoint { get { throw null; } }
8712         public virtual bool SupportsCookieContainer { get { throw null; } }
8713         public override int Timeout { get { throw null; } set { } }
8714         public string TransferEncoding { get { throw null; } set { } }
8715         public bool UnsafeAuthenticatedConnectionSharing { get { throw null; } set { } }
8716         public override bool UseDefaultCredentials { get { throw null; } set { } }
8717         public string UserAgent { get { throw null; } set { } }
Abort()8718         public override void Abort() { }
AddRange(int range)8719         public void AddRange(int range) { }
AddRange(int from, int to)8720         public void AddRange(int from, int to) { }
AddRange(long range)8721         public void AddRange(long range) { }
AddRange(long from, long to)8722         public void AddRange(long from, long to) { }
AddRange(string rangeSpecifier, int range)8723         public void AddRange(string rangeSpecifier, int range) { }
AddRange(string rangeSpecifier, int from, int to)8724         public void AddRange(string rangeSpecifier, int from, int to) { }
AddRange(string rangeSpecifier, long range)8725         public void AddRange(string rangeSpecifier, long range) { }
AddRange(string rangeSpecifier, long from, long to)8726         public void AddRange(string rangeSpecifier, long from, long to) { }
BeginGetRequestStream(System.AsyncCallback callback, object state)8727         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
BeginGetResponse(System.AsyncCallback callback, object state)8728         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)8729         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult, out System.Net.TransportContext context)8730         public System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult, out System.Net.TransportContext context) { context = default(System.Net.TransportContext); throw null; }
EndGetResponse(System.IAsyncResult asyncResult)8731         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8732         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()8733         public override System.IO.Stream GetRequestStream() { throw null; }
8734         [System.MonoTODOAttribute]
GetRequestStream(out System.Net.TransportContext context)8735         public System.IO.Stream GetRequestStream(out System.Net.TransportContext context) { context = default(System.Net.TransportContext); throw null; }
GetResponse()8736         public override System.Net.WebResponse GetResponse() { throw null; }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8737         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8738     }
8739     [System.SerializableAttribute]
8740     public partial class HttpWebResponse : System.Net.WebResponse, System.IDisposable, System.Runtime.Serialization.ISerializable
8741     {
8742         [System.ObsoleteAttribute("Serialization is obsoleted for this type", false)]
HttpWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8743         protected HttpWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8744         public string CharacterSet { get { throw null; } }
8745         public string ContentEncoding { get { throw null; } }
8746         public override long ContentLength { get { throw null; } }
8747         public override string ContentType { get { throw null; } }
8748         public virtual System.Net.CookieCollection Cookies { get { throw null; } set { } }
8749         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8750         [System.MonoTODOAttribute]
8751         public override bool IsMutuallyAuthenticated { get { throw null; } }
8752         public System.DateTime LastModified { get { throw null; } }
8753         public virtual string Method { get { throw null; } }
8754         public System.Version ProtocolVersion { get { throw null; } }
8755         public override System.Uri ResponseUri { get { throw null; } }
8756         public string Server { get { throw null; } }
8757         public virtual System.Net.HttpStatusCode StatusCode { get { throw null; } }
8758         public virtual string StatusDescription { get { throw null; } }
8759         public override bool SupportsHeaders { get { throw null; } }
Close()8760         public override void Close() { }
Dispose(bool disposing)8761         protected override void Dispose(bool disposing) { }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8762         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseHeader(string headerName)8763         public string GetResponseHeader(string headerName) { throw null; }
GetResponseStream()8764         public override System.IO.Stream GetResponseStream() { throw null; }
System.IDisposable.Dispose()8765         void System.IDisposable.Dispose() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8766         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8767     }
8768     public partial interface IAuthenticationModule
8769     {
8770         string AuthenticationType { get; }
8771         bool CanPreAuthenticate { get; }
Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials)8772         System.Net.Authorization Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials);
PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials)8773         System.Net.Authorization PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials);
8774     }
8775     public partial interface ICertificatePolicy
8776     {
CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem)8777         bool CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem);
8778     }
8779     public partial interface ICredentialPolicy
8780     {
ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authenticationModule)8781         bool ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authenticationModule);
8782     }
8783     public partial interface ICredentials
8784     {
GetCredential(System.Uri uri, string authType)8785         System.Net.NetworkCredential GetCredential(System.Uri uri, string authType);
8786     }
8787     public partial interface ICredentialsByHost
8788     {
GetCredential(string host, int port, string authenticationType)8789         System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType);
8790     }
8791     [System.SerializableAttribute]
8792     public partial class IPAddress
8793     {
8794         public static readonly System.Net.IPAddress Any;
8795         public static readonly System.Net.IPAddress Broadcast;
8796         public static readonly System.Net.IPAddress IPv6Any;
8797         public static readonly System.Net.IPAddress IPv6Loopback;
8798         public static readonly System.Net.IPAddress IPv6None;
8799         public static readonly System.Net.IPAddress Loopback;
8800         public static readonly System.Net.IPAddress None;
IPAddress(byte[] address)8801         public IPAddress(byte[] address) { }
IPAddress(byte[] address, long scopeid)8802         public IPAddress(byte[] address, long scopeid) { }
IPAddress(long newAddress)8803         public IPAddress(long newAddress) { }
8804         [System.ObsoleteAttribute("This property has been deprecated. It is address family dependent. Please use IPAddress.Equals method to perform comparisons. http://go.microsoft.com/fwlink/?linkid=14202")]
8805         public long Address { get { throw null; } set { } }
8806         public System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
8807         public bool IsIPv4MappedToIPv6 { get { throw null; } }
8808         public bool IsIPv6LinkLocal { get { throw null; } }
8809         public bool IsIPv6Multicast { get { throw null; } }
8810         public bool IsIPv6SiteLocal { get { throw null; } }
8811         public bool IsIPv6Teredo { get { throw null; } }
8812         public long ScopeId { get { throw null; } set { } }
Equals(object comparand)8813         public override bool Equals(object comparand) { throw null; }
GetAddressBytes()8814         public byte[] GetAddressBytes() { throw null; }
GetHashCode()8815         public override int GetHashCode() { throw null; }
HostToNetworkOrder(short host)8816         public static short HostToNetworkOrder(short host) { throw null; }
HostToNetworkOrder(int host)8817         public static int HostToNetworkOrder(int host) { throw null; }
HostToNetworkOrder(long host)8818         public static long HostToNetworkOrder(long host) { throw null; }
IsLoopback(System.Net.IPAddress address)8819         public static bool IsLoopback(System.Net.IPAddress address) { throw null; }
MapToIPv4()8820         public System.Net.IPAddress MapToIPv4() { throw null; }
MapToIPv6()8821         public System.Net.IPAddress MapToIPv6() { throw null; }
NetworkToHostOrder(short network)8822         public static short NetworkToHostOrder(short network) { throw null; }
NetworkToHostOrder(int network)8823         public static int NetworkToHostOrder(int network) { throw null; }
NetworkToHostOrder(long network)8824         public static long NetworkToHostOrder(long network) { throw null; }
Parse(string ipString)8825         public static System.Net.IPAddress Parse(string ipString) { throw null; }
ToString()8826         public override string ToString() { throw null; }
TryParse(string ipString, out System.Net.IPAddress address)8827         public static bool TryParse(string ipString, out System.Net.IPAddress address) { address = default(System.Net.IPAddress); throw null; }
8828     }
8829     [System.SerializableAttribute]
8830     public partial class IPEndPoint : System.Net.EndPoint
8831     {
8832         public const int MaxPort = 65535;
8833         public const int MinPort = 0;
IPEndPoint(long address, int port)8834         public IPEndPoint(long address, int port) { }
IPEndPoint(System.Net.IPAddress address, int port)8835         public IPEndPoint(System.Net.IPAddress address, int port) { }
8836         public System.Net.IPAddress Address { get { throw null; } set { } }
8837         public override System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
8838         public int Port { get { throw null; } set { } }
Create(System.Net.SocketAddress socketAddress)8839         public override System.Net.EndPoint Create(System.Net.SocketAddress socketAddress) { throw null; }
Equals(object comparand)8840         public override bool Equals(object comparand) { throw null; }
GetHashCode()8841         public override int GetHashCode() { throw null; }
Serialize()8842         public override System.Net.SocketAddress Serialize() { throw null; }
ToString()8843         public override string ToString() { throw null; }
8844     }
8845     public partial class IPHostEntry
8846     {
IPHostEntry()8847         public IPHostEntry() { }
8848         public System.Net.IPAddress[] AddressList { get { throw null; } set { } }
8849         public string[] Aliases { get { throw null; } set { } }
8850         public string HostName { get { throw null; } set { } }
8851     }
8852     public partial interface IWebProxy
8853     {
8854         System.Net.ICredentials Credentials { get; set; }
GetProxy(System.Uri destination)8855         System.Uri GetProxy(System.Uri destination);
IsBypassed(System.Uri host)8856         bool IsBypassed(System.Uri host);
8857     }
8858     public partial interface IWebProxyScript
8859     {
Close()8860         void Close();
Load(System.Uri scriptLocation, string script, System.Type helperType)8861         bool Load(System.Uri scriptLocation, string script, System.Type helperType);
Run(string url, string host)8862         string Run(string url, string host);
8863     }
8864     public partial interface IWebRequestCreate
8865     {
Create(System.Uri uri)8866         System.Net.WebRequest Create(System.Uri uri);
8867     }
8868     [System.FlagsAttribute]
8869     public enum NetworkAccess
8870     {
8871         Accept = 128,
8872         Connect = 64,
8873     }
8874     public partial class NetworkCredential : System.Net.ICredentials, System.Net.ICredentialsByHost
8875     {
NetworkCredential()8876         public NetworkCredential() { }
NetworkCredential(string userName, System.Security.SecureString password)8877         public NetworkCredential(string userName, System.Security.SecureString password) { }
NetworkCredential(string userName, System.Security.SecureString password, string domain)8878         public NetworkCredential(string userName, System.Security.SecureString password, string domain) { }
NetworkCredential(string userName, string password)8879         public NetworkCredential(string userName, string password) { }
NetworkCredential(string userName, string password, string domain)8880         public NetworkCredential(string userName, string password, string domain) { }
8881         public string Domain { get { throw null; } set { } }
8882         public string Password { get { throw null; } set { } }
8883         public System.Security.SecureString SecurePassword { get { throw null; } set { } }
8884         public string UserName { get { throw null; } set { } }
GetCredential(string host, int port, string authenticationType)8885         public System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType) { throw null; }
GetCredential(System.Uri uri, string authType)8886         public System.Net.NetworkCredential GetCredential(System.Uri uri, string authType) { throw null; }
8887     }
8888     public partial class OpenReadCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
8889     {
OpenReadCompletedEventArgs()8890         internal OpenReadCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
8891         public System.IO.Stream Result { get { throw null; } }
8892     }
OpenReadCompletedEventHandler(object sender, System.Net.OpenReadCompletedEventArgs e)8893     public delegate void OpenReadCompletedEventHandler(object sender, System.Net.OpenReadCompletedEventArgs e);
8894     public partial class OpenWriteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
8895     {
OpenWriteCompletedEventArgs()8896         internal OpenWriteCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
8897         public System.IO.Stream Result { get { throw null; } }
8898     }
OpenWriteCompletedEventHandler(object sender, System.Net.OpenWriteCompletedEventArgs e)8899     public delegate void OpenWriteCompletedEventHandler(object sender, System.Net.OpenWriteCompletedEventArgs e);
8900     [System.SerializableAttribute]
8901     public partial class ProtocolViolationException : System.InvalidOperationException, System.Runtime.Serialization.ISerializable
8902     {
ProtocolViolationException()8903         public ProtocolViolationException() { }
ProtocolViolationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8904         protected ProtocolViolationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
ProtocolViolationException(string message)8905         public ProtocolViolationException(string message) { }
8906         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8907         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8908         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8909         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8910     }
8911     [System.FlagsAttribute]
8912     public enum SecurityProtocolType
8913     {
8914         Ssl3 = 48,
8915         SystemDefault = 0,
8916         Tls = 192,
8917         Tls11 = 768,
8918         Tls12 = 3072,
8919     }
8920     public partial class ServicePoint
8921     {
ServicePoint()8922         internal ServicePoint() { }
8923         public System.Uri Address { get { throw null; } }
8924         public System.Net.BindIPEndPoint BindIPEndPointDelegate { get { throw null; } set { } }
8925         public System.Security.Cryptography.X509Certificates.X509Certificate Certificate { get { throw null; } }
8926         public System.Security.Cryptography.X509Certificates.X509Certificate ClientCertificate { get { throw null; } }
8927         [System.MonoTODOAttribute]
8928         public int ConnectionLeaseTimeout { get { throw null; } set { } }
8929         public int ConnectionLimit { get { throw null; } set { } }
8930         public string ConnectionName { get { throw null; } }
8931         public int CurrentConnections { get { throw null; } }
8932         public bool Expect100Continue { get { throw null; } set { } }
8933         public System.DateTime IdleSince { get { throw null; } }
8934         public int MaxIdleTime { get { throw null; } set { } }
8935         public virtual System.Version ProtocolVersion { get { throw null; } }
8936         [System.MonoTODOAttribute]
8937         public int ReceiveBufferSize { get { throw null; } set { } }
8938         public bool SupportsPipelining { get { throw null; } }
8939         public bool UseNagleAlgorithm { get { throw null; } set { } }
CloseConnectionGroup(string connectionGroupName)8940         public bool CloseConnectionGroup(string connectionGroupName) { throw null; }
SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval)8941         public void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval) { }
8942     }
8943     public partial class ServicePointManager
8944     {
ServicePointManager()8945         internal ServicePointManager() { }
8946         public const int DefaultNonPersistentConnectionLimit = 4;
8947         public const int DefaultPersistentConnectionLimit = 2;
8948         [System.ObsoleteAttribute("Use ServerCertificateValidationCallback instead", false)]
8949         public static System.Net.ICertificatePolicy CertificatePolicy { get { throw null; } set { } }
8950         [System.MonoTODOAttribute("CRL checks not implemented")]
8951         public static bool CheckCertificateRevocationList { get { throw null; } set { } }
8952         public static int DefaultConnectionLimit { get { throw null; } set { } }
8953         public static int DnsRefreshTimeout { get { throw null; } set { } }
8954         [System.MonoTODOAttribute]
8955         public static bool EnableDnsRoundRobin { get { throw null; } set { } }
8956         [System.MonoTODOAttribute("Always returns EncryptionPolicy.RequireEncryption.")]
8957         public static System.Net.Security.EncryptionPolicy EncryptionPolicy { get { throw null; } }
8958         public static bool Expect100Continue { get { throw null; } set { } }
8959         public static int MaxServicePointIdleTime { get { throw null; } set { } }
8960         public static int MaxServicePoints { get { throw null; } set { } }
8961         [System.MonoTODOAttribute]
8962         public static bool ReusePort { get { throw null; } set { } }
8963         public static System.Net.SecurityProtocolType SecurityProtocol { get { throw null; } set { } }
8964         public static System.Net.Security.RemoteCertificateValidationCallback ServerCertificateValidationCallback { get { throw null; } set { } }
8965         public static bool UseNagleAlgorithm { get { throw null; } set { } }
FindServicePoint(string uriString, System.Net.IWebProxy proxy)8966         public static System.Net.ServicePoint FindServicePoint(string uriString, System.Net.IWebProxy proxy) { throw null; }
FindServicePoint(System.Uri address)8967         public static System.Net.ServicePoint FindServicePoint(System.Uri address) { throw null; }
FindServicePoint(System.Uri address, System.Net.IWebProxy proxy)8968         public static System.Net.ServicePoint FindServicePoint(System.Uri address, System.Net.IWebProxy proxy) { throw null; }
SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval)8969         public static void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval) { }
8970     }
8971     public partial class SocketAddress
8972     {
SocketAddress(System.Net.Sockets.AddressFamily family)8973         public SocketAddress(System.Net.Sockets.AddressFamily family) { }
SocketAddress(System.Net.Sockets.AddressFamily family, int size)8974         public SocketAddress(System.Net.Sockets.AddressFamily family, int size) { }
8975         public System.Net.Sockets.AddressFamily Family { get { throw null; } }
8976         public byte this[int offset] { get { throw null; } set { } }
8977         public int Size { get { throw null; } }
Equals(object comparand)8978         public override bool Equals(object comparand) { throw null; }
GetHashCode()8979         public override int GetHashCode() { throw null; }
ToString()8980         public override string ToString() { throw null; }
8981     }
8982     [System.SerializableAttribute]
8983     public sealed partial class SocketPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
8984     {
8985         public const int AllPorts = -1;
SocketPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber)8986         public SocketPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber) { }
SocketPermission(System.Security.Permissions.PermissionState state)8987         public SocketPermission(System.Security.Permissions.PermissionState state) { }
8988         public System.Collections.IEnumerator AcceptList { get { throw null; } }
8989         public System.Collections.IEnumerator ConnectList { get { throw null; } }
AddPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber)8990         public void AddPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber) { }
Copy()8991         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)8992         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)8993         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)8994         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()8995         public bool IsUnrestricted() { throw null; }
ToXml()8996         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)8997         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
8998     }
8999     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
9000     [System.SerializableAttribute]
9001     public sealed partial class SocketPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
9002     {
SocketPermissionAttribute(System.Security.Permissions.SecurityAction action)9003         public SocketPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
9004         public string Access { get { throw null; } set { } }
9005         public string Host { get { throw null; } set { } }
9006         public string Port { get { throw null; } set { } }
9007         public string Transport { get { throw null; } set { } }
CreatePermission()9008         public override System.Security.IPermission CreatePermission() { throw null; }
9009     }
9010     public abstract partial class TransportContext
9011     {
TransportContext()9012         protected TransportContext() { }
GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind kind)9013         public abstract System.Security.Authentication.ExtendedProtection.ChannelBinding GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind kind);
GetTlsTokenBindings()9014         public virtual System.Collections.Generic.IEnumerable<System.Security.Authentication.ExtendedProtection.TokenBinding> GetTlsTokenBindings() { throw null; }
9015     }
9016     public enum TransportType
9017     {
9018         All = 3,
9019         Connectionless = 1,
9020         ConnectionOriented = 2,
9021         Tcp = 2,
9022         Udp = 1,
9023     }
9024     public partial class UploadDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9025     {
UploadDataCompletedEventArgs()9026         internal UploadDataCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9027         public byte[] Result { get { throw null; } }
9028     }
UploadDataCompletedEventHandler(object sender, System.Net.UploadDataCompletedEventArgs e)9029     public delegate void UploadDataCompletedEventHandler(object sender, System.Net.UploadDataCompletedEventArgs e);
9030     public partial class UploadFileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9031     {
UploadFileCompletedEventArgs()9032         internal UploadFileCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9033         public byte[] Result { get { throw null; } }
9034     }
UploadFileCompletedEventHandler(object sender, System.Net.UploadFileCompletedEventArgs e)9035     public delegate void UploadFileCompletedEventHandler(object sender, System.Net.UploadFileCompletedEventArgs e);
9036     public partial class UploadProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs
9037     {
UploadProgressChangedEventArgs()9038         internal UploadProgressChangedEventArgs() : base (default(int), default(object)) { }
9039         public long BytesReceived { get { throw null; } }
9040         public long BytesSent { get { throw null; } }
9041         public long TotalBytesToReceive { get { throw null; } }
9042         public long TotalBytesToSend { get { throw null; } }
9043     }
UploadProgressChangedEventHandler(object sender, System.Net.UploadProgressChangedEventArgs e)9044     public delegate void UploadProgressChangedEventHandler(object sender, System.Net.UploadProgressChangedEventArgs e);
9045     public partial class UploadStringCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9046     {
UploadStringCompletedEventArgs()9047         internal UploadStringCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9048         public string Result { get { throw null; } }
9049     }
UploadStringCompletedEventHandler(object sender, System.Net.UploadStringCompletedEventArgs e)9050     public delegate void UploadStringCompletedEventHandler(object sender, System.Net.UploadStringCompletedEventArgs e);
9051     public partial class UploadValuesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9052     {
UploadValuesCompletedEventArgs()9053         internal UploadValuesCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9054         public byte[] Result { get { throw null; } }
9055     }
UploadValuesCompletedEventHandler(object sender, System.Net.UploadValuesCompletedEventArgs e)9056     public delegate void UploadValuesCompletedEventHandler(object sender, System.Net.UploadValuesCompletedEventArgs e);
9057     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
9058     public partial class WebClient : System.ComponentModel.Component
9059     {
WebClient()9060         public WebClient() { }
9061         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9062         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9063         public bool AllowReadStreamBuffering { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
9064         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9065         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9066         public bool AllowWriteStreamBuffering { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
9067         public string BaseAddress { get { throw null; } set { } }
9068         public System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } }
9069         public System.Net.ICredentials Credentials { get { throw null; } set { } }
9070         public System.Text.Encoding Encoding { get { throw null; } set { } }
9071         public System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
9072         public bool IsBusy { get { throw null; } }
9073         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
9074         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } set { } }
9075         public System.Net.WebHeaderCollection ResponseHeaders { get { throw null; } }
9076         public bool UseDefaultCredentials { get { throw null; } set { } }
9077         public event System.Net.DownloadDataCompletedEventHandler DownloadDataCompleted { add { } remove { } }
9078         public event System.ComponentModel.AsyncCompletedEventHandler DownloadFileCompleted { add { } remove { } }
9079         public event System.Net.DownloadProgressChangedEventHandler DownloadProgressChanged { add { } remove { } }
9080         public event System.Net.DownloadStringCompletedEventHandler DownloadStringCompleted { add { } remove { } }
9081         public event System.Net.OpenReadCompletedEventHandler OpenReadCompleted { add { } remove { } }
9082         public event System.Net.OpenWriteCompletedEventHandler OpenWriteCompleted { add { } remove { } }
9083         public event System.Net.UploadDataCompletedEventHandler UploadDataCompleted { add { } remove { } }
9084         public event System.Net.UploadFileCompletedEventHandler UploadFileCompleted { add { } remove { } }
9085         public event System.Net.UploadProgressChangedEventHandler UploadProgressChanged { add { } remove { } }
9086         public event System.Net.UploadStringCompletedEventHandler UploadStringCompleted { add { } remove { } }
9087         public event System.Net.UploadValuesCompletedEventHandler UploadValuesCompleted { add { } remove { } }
9088         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9089         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9090         public event System.Net.WriteStreamClosedEventHandler WriteStreamClosed { add { } remove { } }
CancelAsync()9091         public void CancelAsync() { }
DownloadData(string address)9092         public byte[] DownloadData(string address) { throw null; }
DownloadData(System.Uri address)9093         public byte[] DownloadData(System.Uri address) { throw null; }
9094         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataAsync(System.Uri address)9095         public void DownloadDataAsync(System.Uri address) { }
9096         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataAsync(System.Uri address, object userToken)9097         public void DownloadDataAsync(System.Uri address, object userToken) { }
9098         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9099         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataTaskAsync(string address)9100         public System.Threading.Tasks.Task<byte[]> DownloadDataTaskAsync(string address) { throw null; }
9101         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9102         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataTaskAsync(System.Uri address)9103         public System.Threading.Tasks.Task<byte[]> DownloadDataTaskAsync(System.Uri address) { throw null; }
DownloadFile(string address, string fileName)9104         public void DownloadFile(string address, string fileName) { }
DownloadFile(System.Uri address, string fileName)9105         public void DownloadFile(System.Uri address, string fileName) { }
9106         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileAsync(System.Uri address, string fileName)9107         public void DownloadFileAsync(System.Uri address, string fileName) { }
9108         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileAsync(System.Uri address, string fileName, object userToken)9109         public void DownloadFileAsync(System.Uri address, string fileName, object userToken) { }
9110         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9111         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileTaskAsync(string address, string fileName)9112         public System.Threading.Tasks.Task DownloadFileTaskAsync(string address, string fileName) { throw null; }
9113         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9114         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileTaskAsync(System.Uri address, string fileName)9115         public System.Threading.Tasks.Task DownloadFileTaskAsync(System.Uri address, string fileName) { throw null; }
DownloadString(string address)9116         public string DownloadString(string address) { throw null; }
DownloadString(System.Uri address)9117         public string DownloadString(System.Uri address) { throw null; }
9118         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringAsync(System.Uri address)9119         public void DownloadStringAsync(System.Uri address) { }
9120         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringAsync(System.Uri address, object userToken)9121         public void DownloadStringAsync(System.Uri address, object userToken) { }
9122         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9123         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringTaskAsync(string address)9124         public System.Threading.Tasks.Task<string> DownloadStringTaskAsync(string address) { throw null; }
9125         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9126         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringTaskAsync(System.Uri address)9127         public System.Threading.Tasks.Task<string> DownloadStringTaskAsync(System.Uri address) { throw null; }
GetWebRequest(System.Uri address)9128         protected virtual System.Net.WebRequest GetWebRequest(System.Uri address) { throw null; }
GetWebResponse(System.Net.WebRequest request)9129         protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request) { throw null; }
GetWebResponse(System.Net.WebRequest request, System.IAsyncResult result)9130         protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request, System.IAsyncResult result) { throw null; }
OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs e)9131         protected virtual void OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs e) { }
OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs e)9132         protected virtual void OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs e)9133         protected virtual void OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs e) { }
OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs e)9134         protected virtual void OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs e) { }
OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs e)9135         protected virtual void OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs e) { }
OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs e)9136         protected virtual void OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs e) { }
OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs e)9137         protected virtual void OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs e) { }
OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs e)9138         protected virtual void OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs e) { }
OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs e)9139         protected virtual void OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs e) { }
OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs e)9140         protected virtual void OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs e) { }
OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs e)9141         protected virtual void OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs e) { }
9142         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9143         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
OnWriteStreamClosed(System.Net.WriteStreamClosedEventArgs e)9144         protected virtual void OnWriteStreamClosed(System.Net.WriteStreamClosedEventArgs e) { }
OpenRead(string address)9145         public System.IO.Stream OpenRead(string address) { throw null; }
OpenRead(System.Uri address)9146         public System.IO.Stream OpenRead(System.Uri address) { throw null; }
9147         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadAsync(System.Uri address)9148         public void OpenReadAsync(System.Uri address) { }
9149         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadAsync(System.Uri address, object userToken)9150         public void OpenReadAsync(System.Uri address, object userToken) { }
9151         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9152         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadTaskAsync(string address)9153         public System.Threading.Tasks.Task<System.IO.Stream> OpenReadTaskAsync(string address) { throw null; }
9154         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9155         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadTaskAsync(System.Uri address)9156         public System.Threading.Tasks.Task<System.IO.Stream> OpenReadTaskAsync(System.Uri address) { throw null; }
OpenWrite(string address)9157         public System.IO.Stream OpenWrite(string address) { throw null; }
OpenWrite(string address, string method)9158         public System.IO.Stream OpenWrite(string address, string method) { throw null; }
OpenWrite(System.Uri address)9159         public System.IO.Stream OpenWrite(System.Uri address) { throw null; }
OpenWrite(System.Uri address, string method)9160         public System.IO.Stream OpenWrite(System.Uri address, string method) { throw null; }
9161         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address)9162         public void OpenWriteAsync(System.Uri address) { }
9163         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address, string method)9164         public void OpenWriteAsync(System.Uri address, string method) { }
9165         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address, string method, object userToken)9166         public void OpenWriteAsync(System.Uri address, string method, object userToken) { }
9167         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9168         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(string address)9169         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(string address) { throw null; }
9170         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9171         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(string address, string method)9172         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(string address, string method) { throw null; }
9173         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9174         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(System.Uri address)9175         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(System.Uri address) { throw null; }
9176         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9177         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(System.Uri address, string method)9178         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(System.Uri address, string method) { throw null; }
UploadData(string address, byte[] data)9179         public byte[] UploadData(string address, byte[] data) { throw null; }
UploadData(string address, string method, byte[] data)9180         public byte[] UploadData(string address, string method, byte[] data) { throw null; }
UploadData(System.Uri address, byte[] data)9181         public byte[] UploadData(System.Uri address, byte[] data) { throw null; }
UploadData(System.Uri address, string method, byte[] data)9182         public byte[] UploadData(System.Uri address, string method, byte[] data) { throw null; }
9183         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, byte[] data)9184         public void UploadDataAsync(System.Uri address, byte[] data) { }
9185         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, string method, byte[] data)9186         public void UploadDataAsync(System.Uri address, string method, byte[] data) { }
9187         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, string method, byte[] data, object userToken)9188         public void UploadDataAsync(System.Uri address, string method, byte[] data, object userToken) { }
9189         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9190         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(string address, byte[] data)9191         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(string address, byte[] data) { throw null; }
9192         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9193         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(string address, string method, byte[] data)9194         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(string address, string method, byte[] data) { throw null; }
9195         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9196         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(System.Uri address, byte[] data)9197         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(System.Uri address, byte[] data) { throw null; }
9198         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9199         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(System.Uri address, string method, byte[] data)9200         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(System.Uri address, string method, byte[] data) { throw null; }
UploadFile(string address, string fileName)9201         public byte[] UploadFile(string address, string fileName) { throw null; }
UploadFile(string address, string method, string fileName)9202         public byte[] UploadFile(string address, string method, string fileName) { throw null; }
UploadFile(System.Uri address, string fileName)9203         public byte[] UploadFile(System.Uri address, string fileName) { throw null; }
UploadFile(System.Uri address, string method, string fileName)9204         public byte[] UploadFile(System.Uri address, string method, string fileName) { throw null; }
9205         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string fileName)9206         public void UploadFileAsync(System.Uri address, string fileName) { }
9207         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string method, string fileName)9208         public void UploadFileAsync(System.Uri address, string method, string fileName) { }
9209         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string method, string fileName, object userToken)9210         public void UploadFileAsync(System.Uri address, string method, string fileName, object userToken) { }
9211         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9212         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(string address, string fileName)9213         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(string address, string fileName) { throw null; }
9214         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9215         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(string address, string method, string fileName)9216         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(string address, string method, string fileName) { throw null; }
9217         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9218         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(System.Uri address, string fileName)9219         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(System.Uri address, string fileName) { throw null; }
9220         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9221         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(System.Uri address, string method, string fileName)9222         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(System.Uri address, string method, string fileName) { throw null; }
UploadString(string address, string data)9223         public string UploadString(string address, string data) { throw null; }
UploadString(string address, string method, string data)9224         public string UploadString(string address, string method, string data) { throw null; }
UploadString(System.Uri address, string data)9225         public string UploadString(System.Uri address, string data) { throw null; }
UploadString(System.Uri address, string method, string data)9226         public string UploadString(System.Uri address, string method, string data) { throw null; }
9227         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string data)9228         public void UploadStringAsync(System.Uri address, string data) { }
9229         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string method, string data)9230         public void UploadStringAsync(System.Uri address, string method, string data) { }
9231         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string method, string data, object userToken)9232         public void UploadStringAsync(System.Uri address, string method, string data, object userToken) { }
9233         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9234         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(string address, string data)9235         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(string address, string data) { throw null; }
9236         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9237         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(string address, string method, string data)9238         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(string address, string method, string data) { throw null; }
9239         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9240         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(System.Uri address, string data)9241         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(System.Uri address, string data) { throw null; }
9242         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9243         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(System.Uri address, string method, string data)9244         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(System.Uri address, string method, string data) { throw null; }
UploadValues(string address, System.Collections.Specialized.NameValueCollection data)9245         public byte[] UploadValues(string address, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(string address, string method, System.Collections.Specialized.NameValueCollection data)9246         public byte[] UploadValues(string address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(System.Uri address, System.Collections.Specialized.NameValueCollection data)9247         public byte[] UploadValues(System.Uri address, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)9248         public byte[] UploadValues(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
9249         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data)9250         public void UploadValuesAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data) { }
9251         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)9252         public void UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { }
9253         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data, object userToken)9254         public void UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data, object userToken) { }
9255         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9256         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(string address, System.Collections.Specialized.NameValueCollection data)9257         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(string address, System.Collections.Specialized.NameValueCollection data) { throw null; }
9258         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9259         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(string address, string method, System.Collections.Specialized.NameValueCollection data)9260         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(string address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
9261         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9262         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data)9263         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data) { throw null; }
9264         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9265         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)9266         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
9267     }
9268     [System.SerializableAttribute]
9269     public partial class WebException : System.InvalidOperationException, System.Runtime.Serialization.ISerializable
9270     {
WebException()9271         public WebException() { }
WebException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9272         protected WebException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
WebException(string message)9273         public WebException(string message) { }
WebException(string message, System.Exception innerException)9274         public WebException(string message, System.Exception innerException) { }
WebException(string message, System.Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response)9275         public WebException(string message, System.Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response) { }
WebException(string message, System.Net.WebExceptionStatus status)9276         public WebException(string message, System.Net.WebExceptionStatus status) { }
9277         public System.Net.WebResponse Response { get { throw null; } }
9278         public System.Net.WebExceptionStatus Status { get { throw null; } }
9279         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9280         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9281         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9282         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9283     }
9284     public enum WebExceptionStatus
9285     {
9286         CacheEntryNotFound = 18,
9287         ConnectFailure = 2,
9288         ConnectionClosed = 8,
9289         KeepAliveFailure = 12,
9290         MessageLengthLimitExceeded = 17,
9291         NameResolutionFailure = 1,
9292         Pending = 13,
9293         PipelineFailure = 5,
9294         ProtocolError = 7,
9295         ProxyNameResolutionFailure = 15,
9296         ReceiveFailure = 3,
9297         RequestCanceled = 6,
9298         RequestProhibitedByCachePolicy = 19,
9299         RequestProhibitedByProxy = 20,
9300         SecureChannelFailure = 10,
9301         SendFailure = 4,
9302         ServerProtocolViolation = 11,
9303         Success = 0,
9304         Timeout = 14,
9305         TrustFailure = 9,
9306         UnknownError = 16,
9307     }
9308     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
9309     [System.SerializableAttribute]
9310     public partial class WebHeaderCollection : System.Collections.Specialized.NameValueCollection, System.Runtime.Serialization.ISerializable
9311     {
WebHeaderCollection()9312         public WebHeaderCollection() { }
WebHeaderCollection(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9313         protected WebHeaderCollection(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9314         public override string[] AllKeys { get { throw null; } }
9315         public override int Count { get { throw null; } }
9316         public string this[System.Net.HttpRequestHeader header] { get { throw null; } set { } }
9317         public string this[System.Net.HttpResponseHeader header] { get { throw null; } set { } }
9318         public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw null; } }
Add(System.Net.HttpRequestHeader header, string value)9319         public void Add(System.Net.HttpRequestHeader header, string value) { }
Add(System.Net.HttpResponseHeader header, string value)9320         public void Add(System.Net.HttpResponseHeader header, string value) { }
Add(string header)9321         public void Add(string header) { }
Add(string name, string value)9322         public override void Add(string name, string value) { }
AddWithoutValidate(string headerName, string headerValue)9323         protected void AddWithoutValidate(string headerName, string headerValue) { }
Clear()9324         public override void Clear() { }
Get(int index)9325         public override string Get(int index) { throw null; }
Get(string name)9326         public override string Get(string name) { throw null; }
GetEnumerator()9327         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetKey(int index)9328         public override string GetKey(int index) { throw null; }
9329         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9330         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetValues(int index)9331         public override string[] GetValues(int index) { throw null; }
GetValues(string header)9332         public override string[] GetValues(string header) { throw null; }
IsRestricted(string headerName)9333         public static bool IsRestricted(string headerName) { throw null; }
IsRestricted(string headerName, bool response)9334         public static bool IsRestricted(string headerName, bool response) { throw null; }
OnDeserialization(object sender)9335         public override void OnDeserialization(object sender) { }
Remove(System.Net.HttpRequestHeader header)9336         public void Remove(System.Net.HttpRequestHeader header) { }
Remove(System.Net.HttpResponseHeader header)9337         public void Remove(System.Net.HttpResponseHeader header) { }
Remove(string name)9338         public override void Remove(string name) { }
Set(System.Net.HttpRequestHeader header, string value)9339         public void Set(System.Net.HttpRequestHeader header, string value) { }
Set(System.Net.HttpResponseHeader header, string value)9340         public void Set(System.Net.HttpResponseHeader header, string value) { }
Set(string name, string value)9341         public override void Set(string name, string value) { }
9342         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9343         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
ToByteArray()9344         public byte[] ToByteArray() { throw null; }
ToString()9345         public override string ToString() { throw null; }
9346     }
9347     [System.SerializableAttribute]
9348     public sealed partial class WebPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
9349     {
WebPermission()9350         public WebPermission() { }
WebPermission(System.Net.NetworkAccess access, string uriString)9351         public WebPermission(System.Net.NetworkAccess access, string uriString) { }
WebPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex)9352         public WebPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex) { }
WebPermission(System.Security.Permissions.PermissionState state)9353         public WebPermission(System.Security.Permissions.PermissionState state) { }
9354         public System.Collections.IEnumerator AcceptList { get { throw null; } }
9355         public System.Collections.IEnumerator ConnectList { get { throw null; } }
AddPermission(System.Net.NetworkAccess access, string uriString)9356         public void AddPermission(System.Net.NetworkAccess access, string uriString) { }
AddPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex)9357         public void AddPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex) { }
Copy()9358         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)9359         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)9360         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)9361         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()9362         public bool IsUnrestricted() { throw null; }
ToXml()9363         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)9364         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
9365     }
9366     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
9367     [System.SerializableAttribute]
9368     public sealed partial class WebPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
9369     {
WebPermissionAttribute(System.Security.Permissions.SecurityAction action)9370         public WebPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
9371         public string Accept { get { throw null; } set { } }
9372         public string AcceptPattern { get { throw null; } set { } }
9373         public string Connect { get { throw null; } set { } }
9374         public string ConnectPattern { get { throw null; } set { } }
CreatePermission()9375         public override System.Security.IPermission CreatePermission() { throw null; }
9376     }
9377     [System.SerializableAttribute]
9378     public partial class WebProxy : System.Net.IWebProxy, System.Runtime.Serialization.ISerializable
9379     {
WebProxy()9380         public WebProxy() { }
WebProxy(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9381         protected WebProxy(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
WebProxy(string Address)9382         public WebProxy(string Address) { }
WebProxy(string Address, bool BypassOnLocal)9383         public WebProxy(string Address, bool BypassOnLocal) { }
WebProxy(string Address, bool BypassOnLocal, string[] BypassList)9384         public WebProxy(string Address, bool BypassOnLocal, string[] BypassList) { }
WebProxy(string Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials)9385         public WebProxy(string Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials) { }
WebProxy(string Host, int Port)9386         public WebProxy(string Host, int Port) { }
WebProxy(System.Uri Address)9387         public WebProxy(System.Uri Address) { }
WebProxy(System.Uri Address, bool BypassOnLocal)9388         public WebProxy(System.Uri Address, bool BypassOnLocal) { }
WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList)9389         public WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList) { }
WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials)9390         public WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials) { }
9391         public System.Uri Address { get { throw null; } set { } }
9392         public System.Collections.ArrayList BypassArrayList { get { throw null; } }
9393         public string[] BypassList { get { throw null; } set { } }
9394         public bool BypassProxyOnLocal { get { throw null; } set { } }
9395         public System.Net.ICredentials Credentials { get { throw null; } set { } }
9396         public bool UseDefaultCredentials { get { throw null; } set { } }
CreateDefaultProxy()9397         public static System.Net.IWebProxy CreateDefaultProxy() { throw null; }
9398         [System.ObsoleteAttribute("This method has been deprecated. Please use the proxy selected for you by default. http://go.microsoft.com/fwlink/?linkid=14202")]
GetDefaultProxy()9399         public static System.Net.WebProxy GetDefaultProxy() { throw null; }
9400         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9401         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetProxy(System.Uri destination)9402         public System.Uri GetProxy(System.Uri destination) { throw null; }
IsBypassed(System.Uri host)9403         public bool IsBypassed(System.Uri host) { throw null; }
9404         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9405         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9406     }
9407     [System.SerializableAttribute]
9408     public abstract partial class WebRequest : System.MarshalByRefObject, System.Runtime.Serialization.ISerializable
9409     {
WebRequest()9410         protected WebRequest() { }
WebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9411         protected WebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9412         public System.Net.Security.AuthenticationLevel AuthenticationLevel { get { throw null; } set { } }
9413         public virtual System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } }
9414         public virtual string ConnectionGroupName { get { throw null; } set { } }
9415         public virtual long ContentLength { get { throw null; } set { } }
9416         public virtual string ContentType { get { throw null; } set { } }
9417         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9418         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9419         public virtual System.Net.IWebRequestCreate CreatorInstance { get { throw null; } }
9420         public virtual System.Net.ICredentials Credentials { get { throw null; } set { } }
9421         public static System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
9422         public static System.Net.IWebProxy DefaultWebProxy { get { throw null; } set { } }
9423         public virtual System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
9424         public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } set { } }
9425         public virtual string Method { get { throw null; } set { } }
9426         public virtual bool PreAuthenticate { get { throw null; } set { } }
9427         public virtual System.Net.IWebProxy Proxy { get { throw null; } set { } }
9428         public virtual System.Uri RequestUri { get { throw null; } }
9429         public virtual int Timeout { get { throw null; } set { } }
9430         public virtual bool UseDefaultCredentials { get { throw null; } set { } }
Abort()9431         public virtual void Abort() { }
9432         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)9433         public virtual System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
9434         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)9435         public virtual System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
Create(string requestUriString)9436         public static System.Net.WebRequest Create(string requestUriString) { throw null; }
Create(System.Uri requestUri)9437         public static System.Net.WebRequest Create(System.Uri requestUri) { throw null; }
CreateDefault(System.Uri requestUri)9438         public static System.Net.WebRequest CreateDefault(System.Uri requestUri) { throw null; }
CreateHttp(string requestUriString)9439         public static System.Net.HttpWebRequest CreateHttp(string requestUriString) { throw null; }
CreateHttp(System.Uri requestUri)9440         public static System.Net.HttpWebRequest CreateHttp(System.Uri requestUri) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)9441         public virtual System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)9442         public virtual System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
9443         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9444         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()9445         public virtual System.IO.Stream GetRequestStream() { throw null; }
9446         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetRequestStreamAsync()9447         public virtual System.Threading.Tasks.Task<System.IO.Stream> GetRequestStreamAsync() { throw null; }
GetResponse()9448         public virtual System.Net.WebResponse GetResponse() { throw null; }
9449         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetResponseAsync()9450         public virtual System.Threading.Tasks.Task<System.Net.WebResponse> GetResponseAsync() { throw null; }
GetSystemWebProxy()9451         public static System.Net.IWebProxy GetSystemWebProxy() { throw null; }
9452         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9453         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
RegisterPortableWebRequestCreator(System.Net.IWebRequestCreate creator)9454         public static void RegisterPortableWebRequestCreator(System.Net.IWebRequestCreate creator) { }
RegisterPrefix(string prefix, System.Net.IWebRequestCreate creator)9455         public static bool RegisterPrefix(string prefix, System.Net.IWebRequestCreate creator) { throw null; }
9456         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9457         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9458     }
9459     public static partial class WebRequestMethods
9460     {
9461         public static partial class File
9462         {
9463             public const string DownloadFile = "GET";
9464             public const string UploadFile = "PUT";
9465         }
9466         public static partial class Ftp
9467         {
9468             public const string AppendFile = "APPE";
9469             public const string DeleteFile = "DELE";
9470             public const string DownloadFile = "RETR";
9471             public const string GetDateTimestamp = "MDTM";
9472             public const string GetFileSize = "SIZE";
9473             public const string ListDirectory = "NLST";
9474             public const string ListDirectoryDetails = "LIST";
9475             public const string MakeDirectory = "MKD";
9476             public const string PrintWorkingDirectory = "PWD";
9477             public const string RemoveDirectory = "RMD";
9478             public const string Rename = "RENAME";
9479             public const string UploadFile = "STOR";
9480             public const string UploadFileWithUniqueName = "STOU";
9481         }
9482         public static partial class Http
9483         {
9484             public const string Connect = "CONNECT";
9485             public const string Get = "GET";
9486             public const string Head = "HEAD";
9487             public const string MkCol = "MKCOL";
9488             public const string Post = "POST";
9489             public const string Put = "PUT";
9490         }
9491     }
9492     [System.SerializableAttribute]
9493     public abstract partial class WebResponse : System.MarshalByRefObject, System.IDisposable, System.Runtime.Serialization.ISerializable
9494     {
WebResponse()9495         protected WebResponse() { }
WebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9496         protected WebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9497         public virtual long ContentLength { get { throw null; } set { } }
9498         public virtual string ContentType { get { throw null; } set { } }
9499         public virtual System.Net.WebHeaderCollection Headers { get { throw null; } }
9500         public virtual bool IsFromCache { get { throw null; } }
9501         public virtual bool IsMutuallyAuthenticated { get { throw null; } }
9502         public virtual System.Uri ResponseUri { get { throw null; } }
9503         public virtual bool SupportsHeaders { get { throw null; } }
Close()9504         public virtual void Close() { }
Dispose()9505         public void Dispose() { }
Dispose(bool disposing)9506         protected virtual void Dispose(bool disposing) { }
9507         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9508         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseStream()9509         public virtual System.IO.Stream GetResponseStream() { throw null; }
9510         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128), SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9511         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9512     }
9513     public static partial class WebUtility
9514     {
HtmlDecode(string value)9515         public static string HtmlDecode(string value) { throw null; }
HtmlDecode(string value, System.IO.TextWriter output)9516         public static void HtmlDecode(string value, System.IO.TextWriter output) { }
HtmlEncode(string value)9517         public static string HtmlEncode(string value) { throw null; }
HtmlEncode(string value, System.IO.TextWriter output)9518         public static void HtmlEncode(string value, System.IO.TextWriter output) { }
UrlDecode(string encodedValue)9519         public static string UrlDecode(string encodedValue) { throw null; }
UrlDecodeToBytes(byte[] encodedValue, int offset, int count)9520         public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count) { throw null; }
UrlEncode(string value)9521         public static string UrlEncode(string value) { throw null; }
UrlEncodeToBytes(byte[] value, int offset, int count)9522         public static byte[] UrlEncodeToBytes(byte[] value, int offset, int count) { throw null; }
9523     }
9524     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9525     public partial class WriteStreamClosedEventArgs : System.EventArgs
9526     {
9527         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9528         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
WriteStreamClosedEventArgs()9529         public WriteStreamClosedEventArgs() { }
9530         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9531         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9532         public System.Exception Error { get { throw null; } }
9533     }
9534     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
WriteStreamClosedEventHandler(object sender, System.Net.WriteStreamClosedEventArgs e)9535     public delegate void WriteStreamClosedEventHandler(object sender, System.Net.WriteStreamClosedEventArgs e);
9536 }
9537 namespace System.Net.Cache
9538 {
9539     public enum HttpCacheAgeControl
9540     {
9541         MaxAge = 2,
9542         MaxAgeAndMaxStale = 6,
9543         MaxAgeAndMinFresh = 3,
9544         MaxStale = 4,
9545         MinFresh = 1,
9546         None = 0,
9547     }
9548     public enum HttpRequestCacheLevel
9549     {
9550         BypassCache = 1,
9551         CacheIfAvailable = 3,
9552         CacheOnly = 2,
9553         CacheOrNextCacheOnly = 7,
9554         Default = 0,
9555         NoCacheNoStore = 6,
9556         Refresh = 8,
9557         Reload = 5,
9558         Revalidate = 4,
9559     }
9560     public partial class HttpRequestCachePolicy : System.Net.Cache.RequestCachePolicy
9561     {
HttpRequestCachePolicy()9562         public HttpRequestCachePolicy() { }
HttpRequestCachePolicy(System.DateTime cacheSyncDate)9563         public HttpRequestCachePolicy(System.DateTime cacheSyncDate) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan ageOrFreshOrStale)9564         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan ageOrFreshOrStale) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale)9565         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale, System.DateTime cacheSyncDate)9566         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale, System.DateTime cacheSyncDate) { }
HttpRequestCachePolicy(System.Net.Cache.HttpRequestCacheLevel level)9567         public HttpRequestCachePolicy(System.Net.Cache.HttpRequestCacheLevel level) { }
9568         public System.DateTime CacheSyncDate { get { throw null; } }
9569         public new System.Net.Cache.HttpRequestCacheLevel Level { get { throw null; } }
9570         public System.TimeSpan MaxAge { get { throw null; } }
9571         public System.TimeSpan MaxStale { get { throw null; } }
9572         public System.TimeSpan MinFresh { get { throw null; } }
ToString()9573         public override string ToString() { throw null; }
9574     }
9575     public enum RequestCacheLevel
9576     {
9577         BypassCache = 1,
9578         CacheIfAvailable = 3,
9579         CacheOnly = 2,
9580         Default = 0,
9581         NoCacheNoStore = 6,
9582         Reload = 5,
9583         Revalidate = 4,
9584     }
9585     public partial class RequestCachePolicy
9586     {
RequestCachePolicy()9587         public RequestCachePolicy() { }
RequestCachePolicy(System.Net.Cache.RequestCacheLevel level)9588         public RequestCachePolicy(System.Net.Cache.RequestCacheLevel level) { }
9589         public System.Net.Cache.RequestCacheLevel Level { get { throw null; } }
ToString()9590         public override string ToString() { throw null; }
9591     }
9592 }
9593 namespace System.Net.Configuration
9594 {
9595     public sealed partial class AuthenticationModuleElement : System.Configuration.ConfigurationElement
9596     {
AuthenticationModuleElement()9597         public AuthenticationModuleElement() { }
AuthenticationModuleElement(string typeName)9598         public AuthenticationModuleElement(string typeName) { }
9599         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9600         [System.Configuration.ConfigurationPropertyAttribute("type", Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
9601         public string Type { get { throw null; } set { } }
9602     }
9603     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.AuthenticationModuleElement), CollectionType=(System.Configuration.ConfigurationElementCollectionType)(1))]
9604     public sealed partial class AuthenticationModuleElementCollection : System.Configuration.ConfigurationElementCollection
9605     {
9606         [System.MonoTODOAttribute]
AuthenticationModuleElementCollection()9607         public AuthenticationModuleElementCollection() { }
9608         [System.MonoTODOAttribute]
9609         public System.Net.Configuration.AuthenticationModuleElement this[int index] { get { throw null; } set { } }
9610         [System.MonoTODOAttribute]
9611         public new System.Net.Configuration.AuthenticationModuleElement this[string name] { get { throw null; } set { } }
Add(System.Net.Configuration.AuthenticationModuleElement element)9612         public void Add(System.Net.Configuration.AuthenticationModuleElement element) { }
Clear()9613         public void Clear() { }
CreateNewElement()9614         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
9615         [System.MonoTODOAttribute("argument exception?")]
GetElementKey(System.Configuration.ConfigurationElement element)9616         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.AuthenticationModuleElement element)9617         public int IndexOf(System.Net.Configuration.AuthenticationModuleElement element) { throw null; }
Remove(System.Net.Configuration.AuthenticationModuleElement element)9618         public void Remove(System.Net.Configuration.AuthenticationModuleElement element) { }
Remove(string name)9619         public void Remove(string name) { }
RemoveAt(int index)9620         public void RemoveAt(int index) { }
9621     }
9622     public sealed partial class AuthenticationModulesSection : System.Configuration.ConfigurationSection
9623     {
AuthenticationModulesSection()9624         public AuthenticationModulesSection() { }
9625         [System.Configuration.ConfigurationPropertyAttribute("", Options=(System.Configuration.ConfigurationPropertyOptions)(1))]
9626         public System.Net.Configuration.AuthenticationModuleElementCollection AuthenticationModules { get { throw null; } }
9627         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9628         [System.MonoTODOAttribute]
InitializeDefault()9629         protected override void InitializeDefault() { }
9630         [System.MonoTODOAttribute]
PostDeserialize()9631         protected override void PostDeserialize() { }
9632     }
9633     public sealed partial class BypassElement : System.Configuration.ConfigurationElement
9634     {
BypassElement()9635         public BypassElement() { }
BypassElement(string address)9636         public BypassElement(string address) { }
9637         [System.Configuration.ConfigurationPropertyAttribute("address", Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
9638         public string Address { get { throw null; } set { } }
9639         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9640     }
9641     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.BypassElement), CollectionType=(System.Configuration.ConfigurationElementCollectionType)(1))]
9642     public sealed partial class BypassElementCollection : System.Configuration.ConfigurationElementCollection
9643     {
BypassElementCollection()9644         public BypassElementCollection() { }
9645         [System.MonoTODOAttribute]
9646         public System.Net.Configuration.BypassElement this[int index] { get { throw null; } set { } }
9647         public new System.Net.Configuration.BypassElement this[string name] { get { throw null; } set { } }
9648         protected override bool ThrowOnDuplicate { get { throw null; } }
Add(System.Net.Configuration.BypassElement element)9649         public void Add(System.Net.Configuration.BypassElement element) { }
Clear()9650         public void Clear() { }
CreateNewElement()9651         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
9652         [System.MonoTODOAttribute("argument exception?")]
GetElementKey(System.Configuration.ConfigurationElement element)9653         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.BypassElement element)9654         public int IndexOf(System.Net.Configuration.BypassElement element) { throw null; }
Remove(System.Net.Configuration.BypassElement element)9655         public void Remove(System.Net.Configuration.BypassElement element) { }
Remove(string name)9656         public void Remove(string name) { }
RemoveAt(int index)9657         public void RemoveAt(int index) { }
9658     }
9659     public sealed partial class ConnectionManagementElement : System.Configuration.ConfigurationElement
9660     {
ConnectionManagementElement()9661         public ConnectionManagementElement() { }
ConnectionManagementElement(string address, int maxConnection)9662         public ConnectionManagementElement(string address, int maxConnection) { }
9663         [System.Configuration.ConfigurationPropertyAttribute("address", Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
9664         public string Address { get { throw null; } set { } }
9665         [System.Configuration.ConfigurationPropertyAttribute("maxconnection", DefaultValue="6", Options=(System.Configuration.ConfigurationPropertyOptions)(2))]
9666         public int MaxConnection { get { throw null; } set { } }
9667         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9668     }
9669     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.ConnectionManagementElement), CollectionType=(System.Configuration.ConfigurationElementCollectionType)(1))]
9670     public sealed partial class ConnectionManagementElementCollection : System.Configuration.ConfigurationElementCollection
9671     {
ConnectionManagementElementCollection()9672         public ConnectionManagementElementCollection() { }
9673         [System.MonoTODOAttribute]
9674         public System.Net.Configuration.ConnectionManagementElement this[int index] { get { throw null; } set { } }
9675         public new System.Net.Configuration.ConnectionManagementElement this[string name] { get { throw null; } set { } }
Add(System.Net.Configuration.ConnectionManagementElement element)9676         public void Add(System.Net.Configuration.ConnectionManagementElement element) { }
Clear()9677         public void Clear() { }
CreateNewElement()9678         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)9679         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.ConnectionManagementElement element)9680         public int IndexOf(System.Net.Configuration.ConnectionManagementElement element) { throw null; }
Remove(System.Net.Configuration.ConnectionManagementElement element)9681         public void Remove(System.Net.Configuration.ConnectionManagementElement element) { }
Remove(string name)9682         public void Remove(string name) { }
RemoveAt(int index)9683         public void RemoveAt(int index) { }
9684     }
9685     public sealed partial class ConnectionManagementSection : System.Configuration.ConfigurationSection
9686     {
ConnectionManagementSection()9687         public ConnectionManagementSection() { }
9688         [System.Configuration.ConfigurationPropertyAttribute("", Options=(System.Configuration.ConfigurationPropertyOptions)(1))]
9689         public System.Net.Configuration.ConnectionManagementElementCollection ConnectionManagement { get { throw null; } }
9690         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9691     }
9692     public sealed partial class DefaultProxySection : System.Configuration.ConfigurationSection
9693     {
DefaultProxySection()9694         public DefaultProxySection() { }
9695         [System.Configuration.ConfigurationPropertyAttribute("bypasslist")]
9696         public System.Net.Configuration.BypassElementCollection BypassList { get { throw null; } }
9697         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue="True")]
9698         public bool Enabled { get { throw null; } set { } }
9699         [System.Configuration.ConfigurationPropertyAttribute("module")]
9700         public System.Net.Configuration.ModuleElement Module { get { throw null; } }
9701         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9702         [System.Configuration.ConfigurationPropertyAttribute("proxy")]
9703         public System.Net.Configuration.ProxyElement Proxy { get { throw null; } }
9704         [System.Configuration.ConfigurationPropertyAttribute("useDefaultCredentials", DefaultValue="False")]
9705         public bool UseDefaultCredentials { get { throw null; } set { } }
9706         [System.MonoTODOAttribute]
PostDeserialize()9707         protected override void PostDeserialize() { }
9708         [System.MonoTODOAttribute]
Reset(System.Configuration.ConfigurationElement parentElement)9709         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
9710     }
9711     public sealed partial class FtpCachePolicyElement : System.Configuration.ConfigurationElement
9712     {
FtpCachePolicyElement()9713         public FtpCachePolicyElement() { }
9714         [System.Configuration.ConfigurationPropertyAttribute("policyLevel", DefaultValue="Default")]
9715         public System.Net.Cache.RequestCacheLevel PolicyLevel { get { throw null; } set { } }
9716         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9717         [System.MonoTODOAttribute]
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)9718         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
9719         [System.MonoTODOAttribute]
Reset(System.Configuration.ConfigurationElement parentElement)9720         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
9721     }
9722     public sealed partial class HttpCachePolicyElement : System.Configuration.ConfigurationElement
9723     {
HttpCachePolicyElement()9724         public HttpCachePolicyElement() { }
9725         [System.Configuration.ConfigurationPropertyAttribute("maximumAge", DefaultValue="10675199.02:48:05.4775807")]
9726         public System.TimeSpan MaximumAge { get { throw null; } set { } }
9727         [System.Configuration.ConfigurationPropertyAttribute("maximumStale", DefaultValue="-10675199.02:48:05.4775808")]
9728         public System.TimeSpan MaximumStale { get { throw null; } set { } }
9729         [System.Configuration.ConfigurationPropertyAttribute("minimumFresh", DefaultValue="-10675199.02:48:05.4775808")]
9730         public System.TimeSpan MinimumFresh { get { throw null; } set { } }
9731         [System.Configuration.ConfigurationPropertyAttribute("policyLevel", DefaultValue="Default", Options=(System.Configuration.ConfigurationPropertyOptions)(2))]
9732         public System.Net.Cache.HttpRequestCacheLevel PolicyLevel { get { throw null; } set { } }
9733         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9734         [System.MonoTODOAttribute]
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)9735         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
9736         [System.MonoTODOAttribute]
Reset(System.Configuration.ConfigurationElement parentElement)9737         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
9738     }
9739     public sealed partial class HttpWebRequestElement : System.Configuration.ConfigurationElement
9740     {
HttpWebRequestElement()9741         public HttpWebRequestElement() { }
9742         [System.Configuration.ConfigurationPropertyAttribute("maximumErrorResponseLength", DefaultValue="64")]
9743         public int MaximumErrorResponseLength { get { throw null; } set { } }
9744         [System.Configuration.ConfigurationPropertyAttribute("maximumResponseHeadersLength", DefaultValue="64")]
9745         public int MaximumResponseHeadersLength { get { throw null; } set { } }
9746         [System.Configuration.ConfigurationPropertyAttribute("maximumUnauthorizedUploadLength", DefaultValue="-1")]
9747         public int MaximumUnauthorizedUploadLength { get { throw null; } set { } }
9748         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9749         [System.Configuration.ConfigurationPropertyAttribute("useUnsafeHeaderParsing", DefaultValue="False")]
9750         public bool UseUnsafeHeaderParsing { get { throw null; } set { } }
9751         [System.MonoTODOAttribute]
PostDeserialize()9752         protected override void PostDeserialize() { }
9753     }
9754     public sealed partial class Ipv6Element : System.Configuration.ConfigurationElement
9755     {
Ipv6Element()9756         public Ipv6Element() { }
9757         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue="False")]
9758         public bool Enabled { get { throw null; } set { } }
9759         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9760     }
9761     public sealed partial class MailSettingsSectionGroup : System.Configuration.ConfigurationSectionGroup
9762     {
MailSettingsSectionGroup()9763         public MailSettingsSectionGroup() { }
9764         public System.Net.Configuration.SmtpSection Smtp { get { throw null; } }
9765     }
9766     public sealed partial class ModuleElement : System.Configuration.ConfigurationElement
9767     {
ModuleElement()9768         public ModuleElement() { }
9769         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9770         [System.Configuration.ConfigurationPropertyAttribute("type")]
9771         public string Type { get { throw null; } set { } }
9772     }
9773     public sealed partial class NetSectionGroup : System.Configuration.ConfigurationSectionGroup
9774     {
9775         [System.MonoTODOAttribute]
NetSectionGroup()9776         public NetSectionGroup() { }
9777         [System.Configuration.ConfigurationPropertyAttribute("authenticationModules")]
9778         public System.Net.Configuration.AuthenticationModulesSection AuthenticationModules { get { throw null; } }
9779         [System.Configuration.ConfigurationPropertyAttribute("connectionManagement")]
9780         public System.Net.Configuration.ConnectionManagementSection ConnectionManagement { get { throw null; } }
9781         [System.Configuration.ConfigurationPropertyAttribute("defaultProxy")]
9782         public System.Net.Configuration.DefaultProxySection DefaultProxy { get { throw null; } }
9783         public System.Net.Configuration.MailSettingsSectionGroup MailSettings { get { throw null; } }
9784         [System.Configuration.ConfigurationPropertyAttribute("requestCaching")]
9785         public System.Net.Configuration.RequestCachingSection RequestCaching { get { throw null; } }
9786         [System.Configuration.ConfigurationPropertyAttribute("settings")]
9787         public System.Net.Configuration.SettingsSection Settings { get { throw null; } }
9788         [System.Configuration.ConfigurationPropertyAttribute("webRequestModules")]
9789         public System.Net.Configuration.WebRequestModulesSection WebRequestModules { get { throw null; } }
9790         [System.MonoTODOAttribute]
GetSectionGroup(System.Configuration.Configuration config)9791         public static System.Net.Configuration.NetSectionGroup GetSectionGroup(System.Configuration.Configuration config) { throw null; }
9792     }
9793     public sealed partial class PerformanceCountersElement : System.Configuration.ConfigurationElement
9794     {
PerformanceCountersElement()9795         public PerformanceCountersElement() { }
9796         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue="False")]
9797         public bool Enabled { get { throw null; } set { } }
9798         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9799     }
9800     public sealed partial class ProxyElement : System.Configuration.ConfigurationElement
9801     {
ProxyElement()9802         public ProxyElement() { }
9803         [System.Configuration.ConfigurationPropertyAttribute("autoDetect", DefaultValue="Unspecified")]
9804         public System.Net.Configuration.ProxyElement.AutoDetectValues AutoDetect { get { throw null; } set { } }
9805         [System.Configuration.ConfigurationPropertyAttribute("bypassonlocal", DefaultValue="Unspecified")]
9806         public System.Net.Configuration.ProxyElement.BypassOnLocalValues BypassOnLocal { get { throw null; } set { } }
9807         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9808         [System.Configuration.ConfigurationPropertyAttribute("proxyaddress")]
9809         public System.Uri ProxyAddress { get { throw null; } set { } }
9810         [System.Configuration.ConfigurationPropertyAttribute("scriptLocation")]
9811         public System.Uri ScriptLocation { get { throw null; } set { } }
9812         [System.Configuration.ConfigurationPropertyAttribute("usesystemdefault", DefaultValue="Unspecified")]
9813         public System.Net.Configuration.ProxyElement.UseSystemDefaultValues UseSystemDefault { get { throw null; } set { } }
9814         public enum AutoDetectValues
9815         {
9816             False = 0,
9817             True = 1,
9818             Unspecified = -1,
9819         }
9820         public enum BypassOnLocalValues
9821         {
9822             False = 0,
9823             True = 1,
9824             Unspecified = -1,
9825         }
9826         public enum UseSystemDefaultValues
9827         {
9828             False = 0,
9829             True = 1,
9830             Unspecified = -1,
9831         }
9832     }
9833     public sealed partial class RequestCachingSection : System.Configuration.ConfigurationSection
9834     {
RequestCachingSection()9835         public RequestCachingSection() { }
9836         [System.Configuration.ConfigurationPropertyAttribute("defaultFtpCachePolicy")]
9837         public System.Net.Configuration.FtpCachePolicyElement DefaultFtpCachePolicy { get { throw null; } }
9838         [System.Configuration.ConfigurationPropertyAttribute("defaultHttpCachePolicy")]
9839         public System.Net.Configuration.HttpCachePolicyElement DefaultHttpCachePolicy { get { throw null; } }
9840         [System.Configuration.ConfigurationPropertyAttribute("defaultPolicyLevel", DefaultValue="BypassCache")]
9841         public System.Net.Cache.RequestCacheLevel DefaultPolicyLevel { get { throw null; } set { } }
9842         [System.Configuration.ConfigurationPropertyAttribute("disableAllCaching", DefaultValue="False")]
9843         public bool DisableAllCaching { get { throw null; } set { } }
9844         [System.Configuration.ConfigurationPropertyAttribute("isPrivateCache", DefaultValue="True")]
9845         public bool IsPrivateCache { get { throw null; } set { } }
9846         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9847         [System.Configuration.ConfigurationPropertyAttribute("unspecifiedMaximumAge", DefaultValue="1.00:00:00")]
9848         public System.TimeSpan UnspecifiedMaximumAge { get { throw null; } set { } }
9849         [System.MonoTODOAttribute]
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)9850         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
9851         [System.MonoTODOAttribute]
PostDeserialize()9852         protected override void PostDeserialize() { }
9853     }
9854     public sealed partial class ServicePointManagerElement : System.Configuration.ConfigurationElement
9855     {
ServicePointManagerElement()9856         public ServicePointManagerElement() { }
9857         [System.Configuration.ConfigurationPropertyAttribute("checkCertificateName", DefaultValue="True")]
9858         public bool CheckCertificateName { get { throw null; } set { } }
9859         [System.Configuration.ConfigurationPropertyAttribute("checkCertificateRevocationList", DefaultValue="False")]
9860         public bool CheckCertificateRevocationList { get { throw null; } set { } }
9861         [System.Configuration.ConfigurationPropertyAttribute("dnsRefreshTimeout", DefaultValue="120000")]
9862         public int DnsRefreshTimeout { get { throw null; } set { } }
9863         [System.Configuration.ConfigurationPropertyAttribute("enableDnsRoundRobin", DefaultValue="False")]
9864         public bool EnableDnsRoundRobin { get { throw null; } set { } }
9865         [System.Configuration.ConfigurationPropertyAttribute("expect100Continue", DefaultValue="True")]
9866         public bool Expect100Continue { get { throw null; } set { } }
9867         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9868         [System.Configuration.ConfigurationPropertyAttribute("useNagleAlgorithm", DefaultValue="True")]
9869         public bool UseNagleAlgorithm { get { throw null; } set { } }
9870         [System.MonoTODOAttribute]
PostDeserialize()9871         protected override void PostDeserialize() { }
9872     }
9873     public sealed partial class SettingsSection : System.Configuration.ConfigurationSection
9874     {
SettingsSection()9875         public SettingsSection() { }
9876         [System.Configuration.ConfigurationPropertyAttribute("httpWebRequest")]
9877         public System.Net.Configuration.HttpWebRequestElement HttpWebRequest { get { throw null; } }
9878         [System.Configuration.ConfigurationPropertyAttribute("ipv6")]
9879         public System.Net.Configuration.Ipv6Element Ipv6 { get { throw null; } }
9880         [System.Configuration.ConfigurationPropertyAttribute("performanceCounters")]
9881         public System.Net.Configuration.PerformanceCountersElement PerformanceCounters { get { throw null; } }
9882         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9883         [System.Configuration.ConfigurationPropertyAttribute("servicePointManager")]
9884         public System.Net.Configuration.ServicePointManagerElement ServicePointManager { get { throw null; } }
9885         [System.Configuration.ConfigurationPropertyAttribute("socket")]
9886         public System.Net.Configuration.SocketElement Socket { get { throw null; } }
9887         [System.Configuration.ConfigurationPropertyAttribute("webProxyScript")]
9888         public System.Net.Configuration.WebProxyScriptElement WebProxyScript { get { throw null; } }
9889     }
9890     public sealed partial class SmtpNetworkElement : System.Configuration.ConfigurationElement
9891     {
SmtpNetworkElement()9892         public SmtpNetworkElement() { }
9893         [System.Configuration.ConfigurationPropertyAttribute("defaultCredentials", DefaultValue="False")]
9894         public bool DefaultCredentials { get { throw null; } set { } }
9895         [System.Configuration.ConfigurationPropertyAttribute("enableSsl", DefaultValue=false)]
9896         public bool EnableSsl { get { throw null; } set { } }
9897         [System.Configuration.ConfigurationPropertyAttribute("host")]
9898         public string Host { get { throw null; } set { } }
9899         [System.Configuration.ConfigurationPropertyAttribute("password")]
9900         public string Password { get { throw null; } set { } }
9901         [System.Configuration.ConfigurationPropertyAttribute("port", DefaultValue="25")]
9902         public int Port { get { throw null; } set { } }
9903         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9904         [System.Configuration.ConfigurationPropertyAttribute("targetName", DefaultValue=null)]
9905         public string TargetName { get { throw null; } set { } }
9906         [System.Configuration.ConfigurationPropertyAttribute("userName", DefaultValue=null)]
9907         public string UserName { get { throw null; } set { } }
PostDeserialize()9908         protected override void PostDeserialize() { }
9909     }
9910     public sealed partial class SmtpSection : System.Configuration.ConfigurationSection
9911     {
SmtpSection()9912         public SmtpSection() { }
9913         [System.Configuration.ConfigurationPropertyAttribute("deliveryFormat", DefaultValue=(System.Net.Mail.SmtpDeliveryFormat)(0))]
9914         public System.Net.Mail.SmtpDeliveryFormat DeliveryFormat { get { throw null; } set { } }
9915         [System.Configuration.ConfigurationPropertyAttribute("deliveryMethod", DefaultValue="Network")]
9916         public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get { throw null; } set { } }
9917         [System.Configuration.ConfigurationPropertyAttribute("from")]
9918         public string From { get { throw null; } set { } }
9919         [System.Configuration.ConfigurationPropertyAttribute("network")]
9920         public System.Net.Configuration.SmtpNetworkElement Network { get { throw null; } }
9921         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9922         [System.Configuration.ConfigurationPropertyAttribute("specifiedPickupDirectory")]
9923         public System.Net.Configuration.SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory { get { throw null; } }
9924     }
9925     public sealed partial class SmtpSpecifiedPickupDirectoryElement : System.Configuration.ConfigurationElement
9926     {
SmtpSpecifiedPickupDirectoryElement()9927         public SmtpSpecifiedPickupDirectoryElement() { }
9928         [System.Configuration.ConfigurationPropertyAttribute("pickupDirectoryLocation")]
9929         public string PickupDirectoryLocation { get { throw null; } set { } }
9930         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9931     }
9932     public sealed partial class SocketElement : System.Configuration.ConfigurationElement
9933     {
SocketElement()9934         public SocketElement() { }
9935         [System.Configuration.ConfigurationPropertyAttribute("alwaysUseCompletionPortsForAccept", DefaultValue="False")]
9936         public bool AlwaysUseCompletionPortsForAccept { get { throw null; } set { } }
9937         [System.Configuration.ConfigurationPropertyAttribute("alwaysUseCompletionPortsForConnect", DefaultValue="False")]
9938         public bool AlwaysUseCompletionPortsForConnect { get { throw null; } set { } }
9939         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9940         [System.MonoTODOAttribute]
PostDeserialize()9941         protected override void PostDeserialize() { }
9942     }
9943     public enum UnicodeDecodingConformance
9944     {
9945         Auto = 0,
9946         Compat = 2,
9947         Loose = 3,
9948         Strict = 1,
9949     }
9950     public enum UnicodeEncodingConformance
9951     {
9952         Auto = 0,
9953         Compat = 2,
9954         Strict = 1,
9955     }
9956     public sealed partial class WebProxyScriptElement : System.Configuration.ConfigurationElement
9957     {
WebProxyScriptElement()9958         public WebProxyScriptElement() { }
9959         [System.Configuration.ConfigurationPropertyAttribute("downloadTimeout", DefaultValue="00:02:00")]
9960         public System.TimeSpan DownloadTimeout { get { throw null; } set { } }
9961         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
PostDeserialize()9962         protected override void PostDeserialize() { }
9963     }
9964     public sealed partial class WebRequestModuleElement : System.Configuration.ConfigurationElement
9965     {
WebRequestModuleElement()9966         public WebRequestModuleElement() { }
WebRequestModuleElement(string prefix, string type)9967         public WebRequestModuleElement(string prefix, string type) { }
WebRequestModuleElement(string prefix, System.Type type)9968         public WebRequestModuleElement(string prefix, System.Type type) { }
9969         [System.Configuration.ConfigurationPropertyAttribute("prefix", Options=(System.Configuration.ConfigurationPropertyOptions)(6))]
9970         public string Prefix { get { throw null; } set { } }
9971         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9972         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.TypeConverter))]
9973         [System.Configuration.ConfigurationPropertyAttribute("type")]
9974         public System.Type Type { get { throw null; } set { } }
9975     }
9976     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.WebRequestModuleElement), CollectionType=(System.Configuration.ConfigurationElementCollectionType)(1))]
9977     public sealed partial class WebRequestModuleElementCollection : System.Configuration.ConfigurationElementCollection
9978     {
WebRequestModuleElementCollection()9979         public WebRequestModuleElementCollection() { }
9980         [System.MonoTODOAttribute]
9981         public System.Net.Configuration.WebRequestModuleElement this[int index] { get { throw null; } set { } }
9982         [System.MonoTODOAttribute]
9983         public new System.Net.Configuration.WebRequestModuleElement this[string name] { get { throw null; } set { } }
Add(System.Net.Configuration.WebRequestModuleElement element)9984         public void Add(System.Net.Configuration.WebRequestModuleElement element) { }
Clear()9985         public void Clear() { }
CreateNewElement()9986         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)9987         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.WebRequestModuleElement element)9988         public int IndexOf(System.Net.Configuration.WebRequestModuleElement element) { throw null; }
Remove(System.Net.Configuration.WebRequestModuleElement element)9989         public void Remove(System.Net.Configuration.WebRequestModuleElement element) { }
Remove(string name)9990         public void Remove(string name) { }
RemoveAt(int index)9991         public void RemoveAt(int index) { }
9992     }
9993     public sealed partial class WebRequestModulesSection : System.Configuration.ConfigurationSection
9994     {
WebRequestModulesSection()9995         public WebRequestModulesSection() { }
9996         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9997         [System.Configuration.ConfigurationPropertyAttribute("", Options=(System.Configuration.ConfigurationPropertyOptions)(1))]
9998         public System.Net.Configuration.WebRequestModuleElementCollection WebRequestModules { get { throw null; } }
9999         [System.MonoTODOAttribute]
InitializeDefault()10000         protected override void InitializeDefault() { }
10001         [System.MonoTODOAttribute]
PostDeserialize()10002         protected override void PostDeserialize() { }
10003     }
10004 }
10005 namespace System.Net.Mail
10006 {
10007     public partial class AlternateView : System.Net.Mail.AttachmentBase
10008     {
AlternateView(System.IO.Stream contentStream)10009         public AlternateView(System.IO.Stream contentStream) : base (default(System.IO.Stream)) { }
AlternateView(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10010         public AlternateView(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
AlternateView(System.IO.Stream contentStream, string mediaType)10011         public AlternateView(System.IO.Stream contentStream, string mediaType) : base (default(System.IO.Stream)) { }
AlternateView(string fileName)10012         public AlternateView(string fileName) : base (default(System.IO.Stream)) { }
AlternateView(string fileName, System.Net.Mime.ContentType contentType)10013         public AlternateView(string fileName, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
AlternateView(string fileName, string mediaType)10014         public AlternateView(string fileName, string mediaType) : base (default(System.IO.Stream)) { }
10015         public System.Uri BaseUri { get { throw null; } set { } }
10016         public System.Net.Mail.LinkedResourceCollection LinkedResources { get { throw null; } }
CreateAlternateViewFromString(string content)10017         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content) { throw null; }
CreateAlternateViewFromString(string content, System.Net.Mime.ContentType contentType)10018         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content, System.Net.Mime.ContentType contentType) { throw null; }
CreateAlternateViewFromString(string content, System.Text.Encoding contentEncoding, string mediaType)10019         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
Dispose(bool disposing)10020         protected override void Dispose(bool disposing) { }
10021     }
10022     public sealed partial class AlternateViewCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.AlternateView>, System.IDisposable
10023     {
AlternateViewCollection()10024         internal AlternateViewCollection() { }
ClearItems()10025         protected override void ClearItems() { }
Dispose()10026         public void Dispose() { }
InsertItem(int index, System.Net.Mail.AlternateView item)10027         protected override void InsertItem(int index, System.Net.Mail.AlternateView item) { }
RemoveItem(int index)10028         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.AlternateView item)10029         protected override void SetItem(int index, System.Net.Mail.AlternateView item) { }
10030     }
10031     public partial class Attachment : System.Net.Mail.AttachmentBase
10032     {
Attachment(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10033         public Attachment(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
Attachment(System.IO.Stream contentStream, string name)10034         public Attachment(System.IO.Stream contentStream, string name) : base (default(System.IO.Stream)) { }
Attachment(System.IO.Stream contentStream, string name, string mediaType)10035         public Attachment(System.IO.Stream contentStream, string name, string mediaType) : base (default(System.IO.Stream)) { }
Attachment(string fileName)10036         public Attachment(string fileName) : base (default(System.IO.Stream)) { }
Attachment(string fileName, System.Net.Mime.ContentType contentType)10037         public Attachment(string fileName, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
Attachment(string fileName, string mediaType)10038         public Attachment(string fileName, string mediaType) : base (default(System.IO.Stream)) { }
10039         public System.Net.Mime.ContentDisposition ContentDisposition { get { throw null; } }
10040         public string Name { get { throw null; } set { } }
10041         public System.Text.Encoding NameEncoding { get { throw null; } set { } }
CreateAttachmentFromString(string content, System.Net.Mime.ContentType contentType)10042         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, System.Net.Mime.ContentType contentType) { throw null; }
CreateAttachmentFromString(string content, string name)10043         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, string name) { throw null; }
CreateAttachmentFromString(string content, string name, System.Text.Encoding contentEncoding, string mediaType)10044         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, string name, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
10045     }
10046     public abstract partial class AttachmentBase : System.IDisposable
10047     {
AttachmentBase(System.IO.Stream contentStream)10048         protected AttachmentBase(System.IO.Stream contentStream) { }
AttachmentBase(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10049         protected AttachmentBase(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) { }
AttachmentBase(System.IO.Stream contentStream, string mediaType)10050         protected AttachmentBase(System.IO.Stream contentStream, string mediaType) { }
AttachmentBase(string fileName)10051         protected AttachmentBase(string fileName) { }
AttachmentBase(string fileName, System.Net.Mime.ContentType contentType)10052         protected AttachmentBase(string fileName, System.Net.Mime.ContentType contentType) { }
AttachmentBase(string fileName, string mediaType)10053         protected AttachmentBase(string fileName, string mediaType) { }
10054         public string ContentId { get { throw null; } set { } }
10055         public System.IO.Stream ContentStream { get { throw null; } }
10056         public System.Net.Mime.ContentType ContentType { get { throw null; } set { } }
10057         public System.Net.Mime.TransferEncoding TransferEncoding { get { throw null; } set { } }
Dispose()10058         public void Dispose() { }
Dispose(bool disposing)10059         protected virtual void Dispose(bool disposing) { }
10060     }
10061     public sealed partial class AttachmentCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.Attachment>, System.IDisposable
10062     {
AttachmentCollection()10063         internal AttachmentCollection() { }
ClearItems()10064         protected override void ClearItems() { }
Dispose()10065         public void Dispose() { }
InsertItem(int index, System.Net.Mail.Attachment item)10066         protected override void InsertItem(int index, System.Net.Mail.Attachment item) { }
RemoveItem(int index)10067         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.Attachment item)10068         protected override void SetItem(int index, System.Net.Mail.Attachment item) { }
10069     }
10070     [System.FlagsAttribute]
10071     public enum DeliveryNotificationOptions
10072     {
10073         Delay = 4,
10074         Never = 134217728,
10075         None = 0,
10076         OnFailure = 2,
10077         OnSuccess = 1,
10078     }
10079     public partial class LinkedResource : System.Net.Mail.AttachmentBase
10080     {
LinkedResource(System.IO.Stream contentStream)10081         public LinkedResource(System.IO.Stream contentStream) : base (default(System.IO.Stream)) { }
LinkedResource(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10082         public LinkedResource(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
LinkedResource(System.IO.Stream contentStream, string mediaType)10083         public LinkedResource(System.IO.Stream contentStream, string mediaType) : base (default(System.IO.Stream)) { }
LinkedResource(string fileName)10084         public LinkedResource(string fileName) : base (default(System.IO.Stream)) { }
LinkedResource(string fileName, System.Net.Mime.ContentType contentType)10085         public LinkedResource(string fileName, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
LinkedResource(string fileName, string mediaType)10086         public LinkedResource(string fileName, string mediaType) : base (default(System.IO.Stream)) { }
10087         public System.Uri ContentLink { get { throw null; } set { } }
CreateLinkedResourceFromString(string content)10088         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content) { throw null; }
CreateLinkedResourceFromString(string content, System.Net.Mime.ContentType contentType)10089         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content, System.Net.Mime.ContentType contentType) { throw null; }
CreateLinkedResourceFromString(string content, System.Text.Encoding contentEncoding, string mediaType)10090         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
10091     }
10092     public sealed partial class LinkedResourceCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.LinkedResource>, System.IDisposable
10093     {
LinkedResourceCollection()10094         internal LinkedResourceCollection() { }
ClearItems()10095         protected override void ClearItems() { }
Dispose()10096         public void Dispose() { }
InsertItem(int index, System.Net.Mail.LinkedResource item)10097         protected override void InsertItem(int index, System.Net.Mail.LinkedResource item) { }
RemoveItem(int index)10098         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.LinkedResource item)10099         protected override void SetItem(int index, System.Net.Mail.LinkedResource item) { }
10100     }
10101     public partial class MailAddress
10102     {
MailAddress(string address)10103         public MailAddress(string address) { }
MailAddress(string address, string displayName)10104         public MailAddress(string address, string displayName) { }
10105         [System.MonoTODOAttribute("We don't do anything with displayNameEncoding")]
MailAddress(string address, string displayName, System.Text.Encoding displayNameEncoding)10106         public MailAddress(string address, string displayName, System.Text.Encoding displayNameEncoding) { }
10107         public string Address { get { throw null; } }
10108         public string DisplayName { get { throw null; } }
10109         public string Host { get { throw null; } }
10110         public string User { get { throw null; } }
Equals(object value)10111         public override bool Equals(object value) { throw null; }
GetHashCode()10112         public override int GetHashCode() { throw null; }
ToString()10113         public override string ToString() { throw null; }
10114     }
10115     public partial class MailAddressCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.MailAddress>
10116     {
MailAddressCollection()10117         public MailAddressCollection() { }
Add(string addresses)10118         public void Add(string addresses) { }
InsertItem(int index, System.Net.Mail.MailAddress item)10119         protected override void InsertItem(int index, System.Net.Mail.MailAddress item) { }
SetItem(int index, System.Net.Mail.MailAddress item)10120         protected override void SetItem(int index, System.Net.Mail.MailAddress item) { }
ToString()10121         public override string ToString() { throw null; }
10122     }
10123     public partial class MailMessage : System.IDisposable
10124     {
MailMessage()10125         public MailMessage() { }
MailMessage(System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to)10126         public MailMessage(System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to) { }
MailMessage(string from, string to)10127         public MailMessage(string from, string to) { }
MailMessage(string from, string to, string subject, string body)10128         public MailMessage(string from, string to, string subject, string body) { }
10129         public System.Net.Mail.AlternateViewCollection AlternateViews { get { throw null; } }
10130         public System.Net.Mail.AttachmentCollection Attachments { get { throw null; } }
10131         public System.Net.Mail.MailAddressCollection Bcc { get { throw null; } }
10132         public string Body { get { throw null; } set { } }
10133         public System.Text.Encoding BodyEncoding { get { throw null; } set { } }
10134         public System.Net.Mime.TransferEncoding BodyTransferEncoding { get { throw null; } set { } }
10135         public System.Net.Mail.MailAddressCollection CC { get { throw null; } }
10136         public System.Net.Mail.DeliveryNotificationOptions DeliveryNotificationOptions { get { throw null; } set { } }
10137         public System.Net.Mail.MailAddress From { get { throw null; } set { } }
10138         public System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
10139         public System.Text.Encoding HeadersEncoding { get { throw null; } set { } }
10140         public bool IsBodyHtml { get { throw null; } set { } }
10141         public System.Net.Mail.MailPriority Priority { get { throw null; } set { } }
10142         [System.ObsoleteAttribute("Use ReplyToList instead")]
10143         public System.Net.Mail.MailAddress ReplyTo { get { throw null; } set { } }
10144         public System.Net.Mail.MailAddressCollection ReplyToList { get { throw null; } }
10145         public System.Net.Mail.MailAddress Sender { get { throw null; } set { } }
10146         public string Subject { get { throw null; } set { } }
10147         public System.Text.Encoding SubjectEncoding { get { throw null; } set { } }
10148         public System.Net.Mail.MailAddressCollection To { get { throw null; } }
Dispose()10149         public void Dispose() { }
Dispose(bool disposing)10150         protected virtual void Dispose(bool disposing) { }
10151     }
10152     public enum MailPriority
10153     {
10154         High = 2,
10155         Low = 1,
10156         Normal = 0,
10157     }
SendCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e)10158     public delegate void SendCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
10159     public enum SmtpAccess
10160     {
10161         Connect = 1,
10162         ConnectToUnrestrictedPort = 2,
10163         None = 0,
10164     }
10165     [System.ObsoleteAttribute("SmtpClient and its network of types are poorly designed, we strongly recommend you use https://github.com/jstedfast/MailKit and https://github.com/jstedfast/MimeKit instead")]
10166     public partial class SmtpClient : System.IDisposable
10167     {
SmtpClient()10168         public SmtpClient() { }
SmtpClient(string host)10169         public SmtpClient(string host) { }
SmtpClient(string host, int port)10170         public SmtpClient(string host, int port) { }
10171         [System.MonoTODOAttribute("Client certificates not used")]
10172         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } }
10173         public System.Net.ICredentialsByHost Credentials { get { throw null; } set { } }
10174         public System.Net.Mail.SmtpDeliveryFormat DeliveryFormat { get { throw null; } set { } }
10175         public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get { throw null; } set { } }
10176         public bool EnableSsl { get { throw null; } set { } }
10177         public string Host { get { throw null; } set { } }
10178         public string PickupDirectoryLocation { get { throw null; } set { } }
10179         public int Port { get { throw null; } set { } }
10180         [System.MonoTODOAttribute]
10181         public System.Net.ServicePoint ServicePoint { get { throw null; } }
10182         public string TargetName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
10183         public int Timeout { get { throw null; } set { } }
10184         public bool UseDefaultCredentials { get { throw null; } [System.MonoNotSupportedAttribute("no DefaultCredential support in Mono")]set { } }
10185         public event System.Net.Mail.SendCompletedEventHandler SendCompleted { add { } remove { } }
Dispose()10186         public void Dispose() { }
10187         [System.MonoTODOAttribute("Does nothing at the moment.")]
Dispose(bool disposing)10188         protected virtual void Dispose(bool disposing) { }
OnSendCompleted(System.ComponentModel.AsyncCompletedEventArgs e)10189         protected void OnSendCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
Send(System.Net.Mail.MailMessage message)10190         public void Send(System.Net.Mail.MailMessage message) { }
Send(string from, string recipients, string subject, string body)10191         public void Send(string from, string recipients, string subject, string body) { }
SendAsync(System.Net.Mail.MailMessage message, object userToken)10192         public void SendAsync(System.Net.Mail.MailMessage message, object userToken) { }
SendAsync(string from, string recipients, string subject, string body, object userToken)10193         public void SendAsync(string from, string recipients, string subject, string body, object userToken) { }
SendAsyncCancel()10194         public void SendAsyncCancel() { }
SendMailAsync(System.Net.Mail.MailMessage message)10195         public System.Threading.Tasks.Task SendMailAsync(System.Net.Mail.MailMessage message) { throw null; }
SendMailAsync(string from, string recipients, string subject, string body)10196         public System.Threading.Tasks.Task SendMailAsync(string from, string recipients, string subject, string body) { throw null; }
10197     }
10198     public enum SmtpDeliveryFormat
10199     {
10200         International = 1,
10201         SevenBit = 0,
10202     }
10203     public enum SmtpDeliveryMethod
10204     {
10205         Network = 0,
10206         PickupDirectoryFromIis = 2,
10207         SpecifiedPickupDirectory = 1,
10208     }
10209     [System.SerializableAttribute]
10210     public partial class SmtpException : System.Exception, System.Runtime.Serialization.ISerializable
10211     {
SmtpException()10212         public SmtpException() { }
SmtpException(System.Net.Mail.SmtpStatusCode statusCode)10213         public SmtpException(System.Net.Mail.SmtpStatusCode statusCode) { }
SmtpException(System.Net.Mail.SmtpStatusCode statusCode, string message)10214         public SmtpException(System.Net.Mail.SmtpStatusCode statusCode, string message) { }
SmtpException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10215         protected SmtpException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
SmtpException(string message)10216         public SmtpException(string message) { }
SmtpException(string message, System.Exception innerException)10217         public SmtpException(string message, System.Exception innerException) { }
10218         public System.Net.Mail.SmtpStatusCode StatusCode { get { throw null; } set { } }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10219         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10220         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
10221     }
10222     [System.SerializableAttribute]
10223     public partial class SmtpFailedRecipientException : System.Net.Mail.SmtpException, System.Runtime.Serialization.ISerializable
10224     {
SmtpFailedRecipientException()10225         public SmtpFailedRecipientException() { }
SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient)10226         public SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient) { }
SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient, string serverResponse)10227         public SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient, string serverResponse) { }
SmtpFailedRecipientException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10228         protected SmtpFailedRecipientException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SmtpFailedRecipientException(string message)10229         public SmtpFailedRecipientException(string message) { }
SmtpFailedRecipientException(string message, System.Exception innerException)10230         public SmtpFailedRecipientException(string message, System.Exception innerException) { }
SmtpFailedRecipientException(string message, string failedRecipient, System.Exception innerException)10231         public SmtpFailedRecipientException(string message, string failedRecipient, System.Exception innerException) { }
10232         public string FailedRecipient { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10233         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10234         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10235     }
10236     [System.SerializableAttribute]
10237     public partial class SmtpFailedRecipientsException : System.Net.Mail.SmtpFailedRecipientException, System.Runtime.Serialization.ISerializable
10238     {
SmtpFailedRecipientsException()10239         public SmtpFailedRecipientsException() { }
SmtpFailedRecipientsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10240         protected SmtpFailedRecipientsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SmtpFailedRecipientsException(string message)10241         public SmtpFailedRecipientsException(string message) { }
SmtpFailedRecipientsException(string message, System.Exception innerException)10242         public SmtpFailedRecipientsException(string message, System.Exception innerException) { }
SmtpFailedRecipientsException(string message, System.Net.Mail.SmtpFailedRecipientException[] innerExceptions)10243         public SmtpFailedRecipientsException(string message, System.Net.Mail.SmtpFailedRecipientException[] innerExceptions) { }
10244         public System.Net.Mail.SmtpFailedRecipientException[] InnerExceptions { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10245         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10246         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
10247     }
10248     [System.SerializableAttribute]
10249     public sealed partial class SmtpPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
10250     {
SmtpPermission(bool unrestricted)10251         public SmtpPermission(bool unrestricted) { }
SmtpPermission(System.Net.Mail.SmtpAccess access)10252         public SmtpPermission(System.Net.Mail.SmtpAccess access) { }
SmtpPermission(System.Security.Permissions.PermissionState state)10253         public SmtpPermission(System.Security.Permissions.PermissionState state) { }
10254         public System.Net.Mail.SmtpAccess Access { get { throw null; } }
AddPermission(System.Net.Mail.SmtpAccess access)10255         public void AddPermission(System.Net.Mail.SmtpAccess access) { }
Copy()10256         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)10257         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)10258         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)10259         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()10260         public bool IsUnrestricted() { throw null; }
ToXml()10261         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)10262         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
10263     }
10264     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
10265     [System.SerializableAttribute]
10266     public sealed partial class SmtpPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
10267     {
SmtpPermissionAttribute(System.Security.Permissions.SecurityAction action)10268         public SmtpPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
10269         public string Access { get { throw null; } set { } }
CreatePermission()10270         public override System.Security.IPermission CreatePermission() { throw null; }
10271     }
10272     public enum SmtpStatusCode
10273     {
10274         BadCommandSequence = 503,
10275         CannotVerifyUserWillAttemptDelivery = 252,
10276         ClientNotPermitted = 454,
10277         CommandNotImplemented = 502,
10278         CommandParameterNotImplemented = 504,
10279         CommandUnrecognized = 500,
10280         ExceededStorageAllocation = 552,
10281         GeneralFailure = -1,
10282         HelpMessage = 214,
10283         InsufficientStorage = 452,
10284         LocalErrorInProcessing = 451,
10285         MailboxBusy = 450,
10286         MailboxNameNotAllowed = 553,
10287         MailboxUnavailable = 550,
10288         MustIssueStartTlsFirst = 530,
10289         Ok = 250,
10290         ServiceClosingTransmissionChannel = 221,
10291         ServiceNotAvailable = 421,
10292         ServiceReady = 220,
10293         StartMailInput = 354,
10294         SyntaxError = 501,
10295         SystemStatus = 211,
10296         TransactionFailed = 554,
10297         UserNotLocalTryAlternatePath = 551,
10298         UserNotLocalWillForward = 251,
10299     }
10300 }
10301 namespace System.Net.Mime
10302 {
10303     public partial class ContentDisposition
10304     {
ContentDisposition()10305         public ContentDisposition() { }
ContentDisposition(string disposition)10306         public ContentDisposition(string disposition) { }
10307         public System.DateTime CreationDate { get { throw null; } set { } }
10308         public string DispositionType { get { throw null; } set { } }
10309         public string FileName { get { throw null; } set { } }
10310         public bool Inline { get { throw null; } set { } }
10311         public System.DateTime ModificationDate { get { throw null; } set { } }
10312         public System.Collections.Specialized.StringDictionary Parameters { get { throw null; } }
10313         public System.DateTime ReadDate { get { throw null; } set { } }
10314         public long Size { get { throw null; } set { } }
Equals(object rparam)10315         public override bool Equals(object rparam) { throw null; }
GetHashCode()10316         public override int GetHashCode() { throw null; }
ToString()10317         public override string ToString() { throw null; }
10318     }
10319     public partial class ContentType
10320     {
ContentType()10321         public ContentType() { }
ContentType(string contentType)10322         public ContentType(string contentType) { }
10323         public string Boundary { get { throw null; } set { } }
10324         public string CharSet { get { throw null; } set { } }
10325         public string MediaType { get { throw null; } set { } }
10326         public string Name { get { throw null; } set { } }
10327         public System.Collections.Specialized.StringDictionary Parameters { get { throw null; } }
Equals(object rparam)10328         public override bool Equals(object rparam) { throw null; }
GetHashCode()10329         public override int GetHashCode() { throw null; }
ToString()10330         public override string ToString() { throw null; }
10331     }
10332     public static partial class DispositionTypeNames
10333     {
10334         public const string Attachment = "attachment";
10335         public const string Inline = "inline";
10336     }
10337     public static partial class MediaTypeNames
10338     {
10339         public static partial class Application
10340         {
10341             public const string Octet = "application/octet-stream";
10342             public const string Pdf = "application/pdf";
10343             public const string Rtf = "application/rtf";
10344             public const string Soap = "application/soap+xml";
10345             public const string Zip = "application/zip";
10346         }
10347         public static partial class Image
10348         {
10349             public const string Gif = "image/gif";
10350             public const string Jpeg = "image/jpeg";
10351             public const string Tiff = "image/tiff";
10352         }
10353         public static partial class Text
10354         {
10355             public const string Html = "text/html";
10356             public const string Plain = "text/plain";
10357             public const string RichText = "text/richtext";
10358             public const string Xml = "text/xml";
10359         }
10360     }
10361     public enum TransferEncoding
10362     {
10363         Base64 = 1,
10364         EightBit = 3,
10365         QuotedPrintable = 0,
10366         SevenBit = 2,
10367         Unknown = -1,
10368     }
10369 }
10370 namespace System.Net.NetworkInformation
10371 {
10372     public enum DuplicateAddressDetectionState
10373     {
10374         Deprecated = 3,
10375         Duplicate = 2,
10376         Invalid = 0,
10377         Preferred = 4,
10378         Tentative = 1,
10379     }
10380     public abstract partial class GatewayIPAddressInformation
10381     {
GatewayIPAddressInformation()10382         protected GatewayIPAddressInformation() { }
10383         public abstract System.Net.IPAddress Address { get; }
10384     }
10385     public partial class GatewayIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.GatewayIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.GatewayIPAddressInformation>, System.Collections.IEnumerable
10386     {
GatewayIPAddressInformationCollection()10387         protected internal GatewayIPAddressInformationCollection() { }
10388         public virtual int Count { get { throw null; } }
10389         public virtual bool IsReadOnly { get { throw null; } }
10390         public virtual System.Net.NetworkInformation.GatewayIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.GatewayIPAddressInformation address)10391         public virtual void Add(System.Net.NetworkInformation.GatewayIPAddressInformation address) { }
Clear()10392         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.GatewayIPAddressInformation address)10393         public virtual bool Contains(System.Net.NetworkInformation.GatewayIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.GatewayIPAddressInformation[] array, int offset)10394         public virtual void CopyTo(System.Net.NetworkInformation.GatewayIPAddressInformation[] array, int offset) { }
GetEnumerator()10395         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.GatewayIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.GatewayIPAddressInformation address)10396         public virtual bool Remove(System.Net.NetworkInformation.GatewayIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10397         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10398     }
10399     public abstract partial class IcmpV4Statistics
10400     {
IcmpV4Statistics()10401         protected IcmpV4Statistics() { }
10402         public abstract long AddressMaskRepliesReceived { get; }
10403         public abstract long AddressMaskRepliesSent { get; }
10404         public abstract long AddressMaskRequestsReceived { get; }
10405         public abstract long AddressMaskRequestsSent { get; }
10406         public abstract long DestinationUnreachableMessagesReceived { get; }
10407         public abstract long DestinationUnreachableMessagesSent { get; }
10408         public abstract long EchoRepliesReceived { get; }
10409         public abstract long EchoRepliesSent { get; }
10410         public abstract long EchoRequestsReceived { get; }
10411         public abstract long EchoRequestsSent { get; }
10412         public abstract long ErrorsReceived { get; }
10413         public abstract long ErrorsSent { get; }
10414         public abstract long MessagesReceived { get; }
10415         public abstract long MessagesSent { get; }
10416         public abstract long ParameterProblemsReceived { get; }
10417         public abstract long ParameterProblemsSent { get; }
10418         public abstract long RedirectsReceived { get; }
10419         public abstract long RedirectsSent { get; }
10420         public abstract long SourceQuenchesReceived { get; }
10421         public abstract long SourceQuenchesSent { get; }
10422         public abstract long TimeExceededMessagesReceived { get; }
10423         public abstract long TimeExceededMessagesSent { get; }
10424         public abstract long TimestampRepliesReceived { get; }
10425         public abstract long TimestampRepliesSent { get; }
10426         public abstract long TimestampRequestsReceived { get; }
10427         public abstract long TimestampRequestsSent { get; }
10428     }
10429     public abstract partial class IcmpV6Statistics
10430     {
IcmpV6Statistics()10431         protected IcmpV6Statistics() { }
10432         public abstract long DestinationUnreachableMessagesReceived { get; }
10433         public abstract long DestinationUnreachableMessagesSent { get; }
10434         public abstract long EchoRepliesReceived { get; }
10435         public abstract long EchoRepliesSent { get; }
10436         public abstract long EchoRequestsReceived { get; }
10437         public abstract long EchoRequestsSent { get; }
10438         public abstract long ErrorsReceived { get; }
10439         public abstract long ErrorsSent { get; }
10440         public abstract long MembershipQueriesReceived { get; }
10441         public abstract long MembershipQueriesSent { get; }
10442         public abstract long MembershipReductionsReceived { get; }
10443         public abstract long MembershipReductionsSent { get; }
10444         public abstract long MembershipReportsReceived { get; }
10445         public abstract long MembershipReportsSent { get; }
10446         public abstract long MessagesReceived { get; }
10447         public abstract long MessagesSent { get; }
10448         public abstract long NeighborAdvertisementsReceived { get; }
10449         public abstract long NeighborAdvertisementsSent { get; }
10450         public abstract long NeighborSolicitsReceived { get; }
10451         public abstract long NeighborSolicitsSent { get; }
10452         public abstract long PacketTooBigMessagesReceived { get; }
10453         public abstract long PacketTooBigMessagesSent { get; }
10454         public abstract long ParameterProblemsReceived { get; }
10455         public abstract long ParameterProblemsSent { get; }
10456         public abstract long RedirectsReceived { get; }
10457         public abstract long RedirectsSent { get; }
10458         public abstract long RouterAdvertisementsReceived { get; }
10459         public abstract long RouterAdvertisementsSent { get; }
10460         public abstract long RouterSolicitsReceived { get; }
10461         public abstract long RouterSolicitsSent { get; }
10462         public abstract long TimeExceededMessagesReceived { get; }
10463         public abstract long TimeExceededMessagesSent { get; }
10464     }
10465     public partial class IPAddressCollection : System.Collections.Generic.ICollection<System.Net.IPAddress>, System.Collections.Generic.IEnumerable<System.Net.IPAddress>, System.Collections.IEnumerable
10466     {
IPAddressCollection()10467         protected internal IPAddressCollection() { }
10468         public virtual int Count { get { throw null; } }
10469         public virtual bool IsReadOnly { get { throw null; } }
10470         public virtual System.Net.IPAddress this[int index] { get { throw null; } }
Add(System.Net.IPAddress address)10471         public virtual void Add(System.Net.IPAddress address) { }
Clear()10472         public virtual void Clear() { }
Contains(System.Net.IPAddress address)10473         public virtual bool Contains(System.Net.IPAddress address) { throw null; }
CopyTo(System.Net.IPAddress[] array, int offset)10474         public virtual void CopyTo(System.Net.IPAddress[] array, int offset) { }
GetEnumerator()10475         public virtual System.Collections.Generic.IEnumerator<System.Net.IPAddress> GetEnumerator() { throw null; }
Remove(System.Net.IPAddress address)10476         public virtual bool Remove(System.Net.IPAddress address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10477         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10478     }
10479     public abstract partial class IPAddressInformation
10480     {
IPAddressInformation()10481         protected IPAddressInformation() { }
10482         public abstract System.Net.IPAddress Address { get; }
10483         public abstract bool IsDnsEligible { get; }
10484         public abstract bool IsTransient { get; }
10485     }
10486     public partial class IPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.IPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.IPAddressInformation>, System.Collections.IEnumerable
10487     {
IPAddressInformationCollection()10488         internal IPAddressInformationCollection() { }
10489         public virtual int Count { get { throw null; } }
10490         public virtual bool IsReadOnly { get { throw null; } }
10491         public virtual System.Net.NetworkInformation.IPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.IPAddressInformation address)10492         public virtual void Add(System.Net.NetworkInformation.IPAddressInformation address) { }
Clear()10493         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.IPAddressInformation address)10494         public virtual bool Contains(System.Net.NetworkInformation.IPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.IPAddressInformation[] array, int offset)10495         public virtual void CopyTo(System.Net.NetworkInformation.IPAddressInformation[] array, int offset) { }
GetEnumerator()10496         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.IPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.IPAddressInformation address)10497         public virtual bool Remove(System.Net.NetworkInformation.IPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10498         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10499     }
10500     public abstract partial class IPGlobalProperties
10501     {
IPGlobalProperties()10502         protected IPGlobalProperties() { }
10503         public abstract string DhcpScopeName { get; }
10504         public abstract string DomainName { get; }
10505         public abstract string HostName { get; }
10506         public abstract bool IsWinsProxy { get; }
10507         public abstract System.Net.NetworkInformation.NetBiosNodeType NodeType { get; }
BeginGetUnicastAddresses(System.AsyncCallback callback, object state)10508         public virtual System.IAsyncResult BeginGetUnicastAddresses(System.AsyncCallback callback, object state) { throw null; }
EndGetUnicastAddresses(System.IAsyncResult asyncResult)10509         public virtual System.Net.NetworkInformation.UnicastIPAddressInformationCollection EndGetUnicastAddresses(System.IAsyncResult asyncResult) { throw null; }
GetActiveTcpConnections()10510         public abstract System.Net.NetworkInformation.TcpConnectionInformation[] GetActiveTcpConnections();
GetActiveTcpListeners()10511         public abstract System.Net.IPEndPoint[] GetActiveTcpListeners();
GetActiveUdpListeners()10512         public abstract System.Net.IPEndPoint[] GetActiveUdpListeners();
GetIcmpV4Statistics()10513         public abstract System.Net.NetworkInformation.IcmpV4Statistics GetIcmpV4Statistics();
GetIcmpV6Statistics()10514         public abstract System.Net.NetworkInformation.IcmpV6Statistics GetIcmpV6Statistics();
GetIPGlobalProperties()10515         public static System.Net.NetworkInformation.IPGlobalProperties GetIPGlobalProperties() { throw null; }
GetIPv4GlobalStatistics()10516         public abstract System.Net.NetworkInformation.IPGlobalStatistics GetIPv4GlobalStatistics();
GetIPv6GlobalStatistics()10517         public abstract System.Net.NetworkInformation.IPGlobalStatistics GetIPv6GlobalStatistics();
GetTcpIPv4Statistics()10518         public abstract System.Net.NetworkInformation.TcpStatistics GetTcpIPv4Statistics();
GetTcpIPv6Statistics()10519         public abstract System.Net.NetworkInformation.TcpStatistics GetTcpIPv6Statistics();
GetUdpIPv4Statistics()10520         public abstract System.Net.NetworkInformation.UdpStatistics GetUdpIPv4Statistics();
GetUdpIPv6Statistics()10521         public abstract System.Net.NetworkInformation.UdpStatistics GetUdpIPv6Statistics();
GetUnicastAddresses()10522         public virtual System.Net.NetworkInformation.UnicastIPAddressInformationCollection GetUnicastAddresses() { throw null; }
10523         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetUnicastAddressesAsync()10524         public virtual System.Threading.Tasks.Task<System.Net.NetworkInformation.UnicastIPAddressInformationCollection> GetUnicastAddressesAsync() { throw null; }
10525     }
10526     public abstract partial class IPGlobalStatistics
10527     {
IPGlobalStatistics()10528         protected IPGlobalStatistics() { }
10529         public abstract int DefaultTtl { get; }
10530         public abstract bool ForwardingEnabled { get; }
10531         public abstract int NumberOfInterfaces { get; }
10532         public abstract int NumberOfIPAddresses { get; }
10533         public abstract int NumberOfRoutes { get; }
10534         public abstract long OutputPacketRequests { get; }
10535         public abstract long OutputPacketRoutingDiscards { get; }
10536         public abstract long OutputPacketsDiscarded { get; }
10537         public abstract long OutputPacketsWithNoRoute { get; }
10538         public abstract long PacketFragmentFailures { get; }
10539         public abstract long PacketReassembliesRequired { get; }
10540         public abstract long PacketReassemblyFailures { get; }
10541         public abstract long PacketReassemblyTimeout { get; }
10542         public abstract long PacketsFragmented { get; }
10543         public abstract long PacketsReassembled { get; }
10544         public abstract long ReceivedPackets { get; }
10545         public abstract long ReceivedPacketsDelivered { get; }
10546         public abstract long ReceivedPacketsDiscarded { get; }
10547         public abstract long ReceivedPacketsForwarded { get; }
10548         public abstract long ReceivedPacketsWithAddressErrors { get; }
10549         public abstract long ReceivedPacketsWithHeadersErrors { get; }
10550         public abstract long ReceivedPacketsWithUnknownProtocol { get; }
10551     }
10552     public abstract partial class IPInterfaceProperties
10553     {
IPInterfaceProperties()10554         protected IPInterfaceProperties() { }
10555         public abstract System.Net.NetworkInformation.IPAddressInformationCollection AnycastAddresses { get; }
10556         public abstract System.Net.NetworkInformation.IPAddressCollection DhcpServerAddresses { get; }
10557         public abstract System.Net.NetworkInformation.IPAddressCollection DnsAddresses { get; }
10558         public abstract string DnsSuffix { get; }
10559         public abstract System.Net.NetworkInformation.GatewayIPAddressInformationCollection GatewayAddresses { get; }
10560         public abstract bool IsDnsEnabled { get; }
10561         public abstract bool IsDynamicDnsEnabled { get; }
10562         public abstract System.Net.NetworkInformation.MulticastIPAddressInformationCollection MulticastAddresses { get; }
10563         public abstract System.Net.NetworkInformation.UnicastIPAddressInformationCollection UnicastAddresses { get; }
10564         public abstract System.Net.NetworkInformation.IPAddressCollection WinsServersAddresses { get; }
GetIPv4Properties()10565         public abstract System.Net.NetworkInformation.IPv4InterfaceProperties GetIPv4Properties();
GetIPv6Properties()10566         public abstract System.Net.NetworkInformation.IPv6InterfaceProperties GetIPv6Properties();
10567     }
10568     public abstract partial class IPInterfaceStatistics
10569     {
IPInterfaceStatistics()10570         protected IPInterfaceStatistics() { }
10571         public abstract long BytesReceived { get; }
10572         public abstract long BytesSent { get; }
10573         public abstract long IncomingPacketsDiscarded { get; }
10574         public abstract long IncomingPacketsWithErrors { get; }
10575         public abstract long IncomingUnknownProtocolPackets { get; }
10576         public abstract long NonUnicastPacketsReceived { get; }
10577         public abstract long NonUnicastPacketsSent { get; }
10578         public abstract long OutgoingPacketsDiscarded { get; }
10579         public abstract long OutgoingPacketsWithErrors { get; }
10580         public abstract long OutputQueueLength { get; }
10581         public abstract long UnicastPacketsReceived { get; }
10582         public abstract long UnicastPacketsSent { get; }
10583     }
10584     public enum IPStatus
10585     {
10586         BadDestination = 11018,
10587         BadHeader = 11042,
10588         BadOption = 11007,
10589         BadRoute = 11012,
10590         DestinationHostUnreachable = 11003,
10591         DestinationNetworkUnreachable = 11002,
10592         DestinationPortUnreachable = 11005,
10593         DestinationProhibited = 11004,
10594         DestinationProtocolUnreachable = 11004,
10595         DestinationScopeMismatch = 11045,
10596         DestinationUnreachable = 11040,
10597         HardwareError = 11008,
10598         IcmpError = 11044,
10599         NoResources = 11006,
10600         PacketTooBig = 11009,
10601         ParameterProblem = 11015,
10602         SourceQuench = 11016,
10603         Success = 0,
10604         TimedOut = 11010,
10605         TimeExceeded = 11041,
10606         TtlExpired = 11013,
10607         TtlReassemblyTimeExceeded = 11014,
10608         Unknown = -1,
10609         UnrecognizedNextHeader = 11043,
10610     }
10611     public abstract partial class IPv4InterfaceProperties
10612     {
IPv4InterfaceProperties()10613         protected IPv4InterfaceProperties() { }
10614         public abstract int Index { get; }
10615         public abstract bool IsAutomaticPrivateAddressingActive { get; }
10616         public abstract bool IsAutomaticPrivateAddressingEnabled { get; }
10617         public abstract bool IsDhcpEnabled { get; }
10618         public abstract bool IsForwardingEnabled { get; }
10619         public abstract int Mtu { get; }
10620         public abstract bool UsesWins { get; }
10621     }
10622     public abstract partial class IPv4InterfaceStatistics
10623     {
IPv4InterfaceStatistics()10624         protected IPv4InterfaceStatistics() { }
10625         public abstract long BytesReceived { get; }
10626         public abstract long BytesSent { get; }
10627         public abstract long IncomingPacketsDiscarded { get; }
10628         public abstract long IncomingPacketsWithErrors { get; }
10629         public abstract long IncomingUnknownProtocolPackets { get; }
10630         public abstract long NonUnicastPacketsReceived { get; }
10631         public abstract long NonUnicastPacketsSent { get; }
10632         public abstract long OutgoingPacketsDiscarded { get; }
10633         public abstract long OutgoingPacketsWithErrors { get; }
10634         public abstract long OutputQueueLength { get; }
10635         public abstract long UnicastPacketsReceived { get; }
10636         public abstract long UnicastPacketsSent { get; }
10637     }
10638     public abstract partial class IPv6InterfaceProperties
10639     {
IPv6InterfaceProperties()10640         protected IPv6InterfaceProperties() { }
10641         public abstract int Index { get; }
10642         public abstract int Mtu { get; }
GetScopeId(System.Net.NetworkInformation.ScopeLevel scopeLevel)10643         public virtual long GetScopeId(System.Net.NetworkInformation.ScopeLevel scopeLevel) { throw null; }
10644     }
10645     public abstract partial class MulticastIPAddressInformation : System.Net.NetworkInformation.IPAddressInformation
10646     {
MulticastIPAddressInformation()10647         protected MulticastIPAddressInformation() { }
10648         public abstract long AddressPreferredLifetime { get; }
10649         public abstract long AddressValidLifetime { get; }
10650         public abstract long DhcpLeaseLifetime { get; }
10651         public abstract System.Net.NetworkInformation.DuplicateAddressDetectionState DuplicateAddressDetectionState { get; }
10652         public abstract System.Net.NetworkInformation.PrefixOrigin PrefixOrigin { get; }
10653         public abstract System.Net.NetworkInformation.SuffixOrigin SuffixOrigin { get; }
10654     }
10655     public partial class MulticastIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.MulticastIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.MulticastIPAddressInformation>, System.Collections.IEnumerable
10656     {
MulticastIPAddressInformationCollection()10657         protected internal MulticastIPAddressInformationCollection() { }
10658         public virtual int Count { get { throw null; } }
10659         public virtual bool IsReadOnly { get { throw null; } }
10660         public virtual System.Net.NetworkInformation.MulticastIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.MulticastIPAddressInformation address)10661         public virtual void Add(System.Net.NetworkInformation.MulticastIPAddressInformation address) { }
Clear()10662         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.MulticastIPAddressInformation address)10663         public virtual bool Contains(System.Net.NetworkInformation.MulticastIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.MulticastIPAddressInformation[] array, int offset)10664         public virtual void CopyTo(System.Net.NetworkInformation.MulticastIPAddressInformation[] array, int offset) { }
GetEnumerator()10665         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.MulticastIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.MulticastIPAddressInformation address)10666         public virtual bool Remove(System.Net.NetworkInformation.MulticastIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10667         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10668     }
10669     public enum NetBiosNodeType
10670     {
10671         Broadcast = 1,
10672         Hybrid = 8,
10673         Mixed = 4,
10674         Peer2Peer = 2,
10675         Unknown = 0,
10676     }
NetworkAddressChangedEventHandler(object sender, System.EventArgs e)10677     public delegate void NetworkAddressChangedEventHandler(object sender, System.EventArgs e);
NetworkAvailabilityChangedEventHandler(object sender, System.Net.NetworkInformation.NetworkAvailabilityEventArgs e)10678     public delegate void NetworkAvailabilityChangedEventHandler(object sender, System.Net.NetworkInformation.NetworkAvailabilityEventArgs e);
10679     public partial class NetworkAvailabilityEventArgs : System.EventArgs
10680     {
NetworkAvailabilityEventArgs()10681         internal NetworkAvailabilityEventArgs() { }
10682         public bool IsAvailable { get { throw null; } }
10683     }
10684     public sealed partial class NetworkChange
10685     {
NetworkChange()10686         public NetworkChange() { }
10687         public static event System.Net.NetworkInformation.NetworkAddressChangedEventHandler NetworkAddressChanged { add { } remove { } }
10688         public static event System.Net.NetworkInformation.NetworkAvailabilityChangedEventHandler NetworkAvailabilityChanged { add { } remove { } }
10689     }
10690     [System.FlagsAttribute]
10691     public enum NetworkInformationAccess
10692     {
10693         None = 0,
10694         Ping = 4,
10695         Read = 1,
10696     }
10697     [System.SerializableAttribute]
10698     public partial class NetworkInformationException : System.ComponentModel.Win32Exception
10699     {
NetworkInformationException()10700         public NetworkInformationException() { }
NetworkInformationException(int errorCode)10701         public NetworkInformationException(int errorCode) { }
NetworkInformationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10702         protected NetworkInformationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10703         public override int ErrorCode { get { throw null; } }
10704     }
10705     [System.SerializableAttribute]
10706     public sealed partial class NetworkInformationPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
10707     {
NetworkInformationPermission(System.Net.NetworkInformation.NetworkInformationAccess access)10708         public NetworkInformationPermission(System.Net.NetworkInformation.NetworkInformationAccess access) { }
NetworkInformationPermission(System.Security.Permissions.PermissionState state)10709         public NetworkInformationPermission(System.Security.Permissions.PermissionState state) { }
10710         public System.Net.NetworkInformation.NetworkInformationAccess Access { get { throw null; } }
AddPermission(System.Net.NetworkInformation.NetworkInformationAccess access)10711         public void AddPermission(System.Net.NetworkInformation.NetworkInformationAccess access) { }
Copy()10712         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)10713         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)10714         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)10715         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()10716         public bool IsUnrestricted() { throw null; }
ToXml()10717         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)10718         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
10719     }
10720     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
10721     [System.SerializableAttribute]
10722     public sealed partial class NetworkInformationPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
10723     {
NetworkInformationPermissionAttribute(System.Security.Permissions.SecurityAction action)10724         public NetworkInformationPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
10725         public string Access { get { throw null; } set { } }
CreatePermission()10726         public override System.Security.IPermission CreatePermission() { throw null; }
10727     }
10728     public abstract partial class NetworkInterface
10729     {
NetworkInterface()10730         protected NetworkInterface() { }
10731         public virtual string Description { get { throw null; } }
10732         public virtual string Id { get { throw null; } }
10733         public static int IPv6LoopbackInterfaceIndex { get { throw null; } }
10734         public virtual bool IsReceiveOnly { get { throw null; } }
10735         public static int LoopbackInterfaceIndex { get { throw null; } }
10736         public virtual string Name { get { throw null; } }
10737         public virtual System.Net.NetworkInformation.NetworkInterfaceType NetworkInterfaceType { get { throw null; } }
10738         public virtual System.Net.NetworkInformation.OperationalStatus OperationalStatus { get { throw null; } }
10739         public virtual long Speed { get { throw null; } }
10740         public virtual bool SupportsMulticast { get { throw null; } }
GetAllNetworkInterfaces()10741         public static System.Net.NetworkInformation.NetworkInterface[] GetAllNetworkInterfaces() { throw null; }
GetIPProperties()10742         public virtual System.Net.NetworkInformation.IPInterfaceProperties GetIPProperties() { throw null; }
GetIPStatistics()10743         public virtual System.Net.NetworkInformation.IPInterfaceStatistics GetIPStatistics() { throw null; }
GetIPv4Statistics()10744         public virtual System.Net.NetworkInformation.IPv4InterfaceStatistics GetIPv4Statistics() { throw null; }
GetIsNetworkAvailable()10745         public static bool GetIsNetworkAvailable() { throw null; }
GetPhysicalAddress()10746         public virtual System.Net.NetworkInformation.PhysicalAddress GetPhysicalAddress() { throw null; }
Supports(System.Net.NetworkInformation.NetworkInterfaceComponent networkInterfaceComponent)10747         public virtual bool Supports(System.Net.NetworkInformation.NetworkInterfaceComponent networkInterfaceComponent) { throw null; }
10748     }
10749     public enum NetworkInterfaceComponent
10750     {
10751         IPv4 = 0,
10752         IPv6 = 1,
10753     }
10754     public enum NetworkInterfaceType
10755     {
10756         AsymmetricDsl = 94,
10757         Atm = 37,
10758         BasicIsdn = 20,
10759         Ethernet = 6,
10760         Ethernet3Megabit = 26,
10761         FastEthernetFx = 69,
10762         FastEthernetT = 62,
10763         Fddi = 15,
10764         GenericModem = 48,
10765         GigabitEthernet = 117,
10766         HighPerformanceSerialBus = 144,
10767         IPOverAtm = 114,
10768         Isdn = 63,
10769         Loopback = 24,
10770         MultiRateSymmetricDsl = 143,
10771         Ppp = 23,
10772         PrimaryIsdn = 21,
10773         RateAdaptDsl = 95,
10774         Slip = 28,
10775         SymmetricDsl = 96,
10776         TokenRing = 9,
10777         Tunnel = 131,
10778         Unknown = 1,
10779         VeryHighSpeedDsl = 97,
10780         Wireless80211 = 71,
10781         Wman = 237,
10782         Wwanpp = 243,
10783         Wwanpp2 = 244,
10784     }
10785     public enum OperationalStatus
10786     {
10787         Dormant = 5,
10788         Down = 2,
10789         LowerLayerDown = 7,
10790         NotPresent = 6,
10791         Testing = 3,
10792         Unknown = 4,
10793         Up = 1,
10794     }
10795     public partial class PhysicalAddress
10796     {
10797         public static readonly System.Net.NetworkInformation.PhysicalAddress None;
PhysicalAddress(byte[] address)10798         public PhysicalAddress(byte[] address) { }
Equals(object comparand)10799         public override bool Equals(object comparand) { throw null; }
GetAddressBytes()10800         public byte[] GetAddressBytes() { throw null; }
GetHashCode()10801         public override int GetHashCode() { throw null; }
Parse(string address)10802         public static System.Net.NetworkInformation.PhysicalAddress Parse(string address) { throw null; }
ToString()10803         public override string ToString() { throw null; }
10804     }
10805     [System.MonoTODOAttribute("IPv6 support is missing")]
10806     public partial class Ping : System.ComponentModel.Component, System.IDisposable
10807     {
Ping()10808         public Ping() { }
10809         public event System.Net.NetworkInformation.PingCompletedEventHandler PingCompleted { add { } remove { } }
OnPingCompleted(System.Net.NetworkInformation.PingCompletedEventArgs e)10810         protected void OnPingCompleted(System.Net.NetworkInformation.PingCompletedEventArgs e) { }
Send(System.Net.IPAddress address)10811         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address) { throw null; }
Send(System.Net.IPAddress address, int timeout)10812         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout) { throw null; }
Send(System.Net.IPAddress address, int timeout, byte[] buffer)10813         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout, byte[] buffer) { throw null; }
Send(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)10814         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
Send(string hostNameOrAddress)10815         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; }
Send(string hostNameOrAddress, int timeout)10816         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw null; }
Send(string hostNameOrAddress, int timeout, byte[] buffer)10817         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] buffer) { throw null; }
Send(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)10818         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken)10819         public void SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken) { }
SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, object userToken)10820         public void SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, object userToken) { }
SendAsync(System.Net.IPAddress address, int timeout, object userToken)10821         public void SendAsync(System.Net.IPAddress address, int timeout, object userToken) { }
SendAsync(System.Net.IPAddress address, object userToken)10822         public void SendAsync(System.Net.IPAddress address, object userToken) { }
SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken)10823         public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken) { }
SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken)10824         public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { }
SendAsync(string hostNameOrAddress, int timeout, object userToken)10825         public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { }
SendAsync(string hostNameOrAddress, object userToken)10826         public void SendAsync(string hostNameOrAddress, object userToken) { }
SendAsyncCancel()10827         public void SendAsyncCancel() { }
SendPingAsync(System.Net.IPAddress address)10828         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address) { throw null; }
SendPingAsync(System.Net.IPAddress address, int timeout)10829         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout) { throw null; }
SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer)10830         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer) { throw null; }
SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)10831         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
SendPingAsync(string hostNameOrAddress)10832         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress) { throw null; }
SendPingAsync(string hostNameOrAddress, int timeout)10833         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout) { throw null; }
SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer)10834         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer) { throw null; }
SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)10835         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
System.IDisposable.Dispose()10836         void System.IDisposable.Dispose() { }
10837     }
10838     public partial class PingCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
10839     {
PingCompletedEventArgs()10840         internal PingCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
10841         public System.Net.NetworkInformation.PingReply Reply { get { throw null; } }
10842     }
PingCompletedEventHandler(object sender, System.Net.NetworkInformation.PingCompletedEventArgs e)10843     public delegate void PingCompletedEventHandler(object sender, System.Net.NetworkInformation.PingCompletedEventArgs e);
10844     [System.SerializableAttribute]
10845     public partial class PingException : System.InvalidOperationException
10846     {
PingException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10847         protected PingException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
PingException(string message)10848         public PingException(string message) { }
PingException(string message, System.Exception innerException)10849         public PingException(string message, System.Exception innerException) { }
10850     }
10851     public partial class PingOptions
10852     {
PingOptions()10853         public PingOptions() { }
PingOptions(int ttl, bool dontFragment)10854         public PingOptions(int ttl, bool dontFragment) { }
10855         public bool DontFragment { get { throw null; } set { } }
10856         public int Ttl { get { throw null; } set { } }
10857     }
10858     public partial class PingReply
10859     {
PingReply()10860         internal PingReply() { }
10861         public System.Net.IPAddress Address { get { throw null; } }
10862         public byte[] Buffer { get { throw null; } }
10863         public System.Net.NetworkInformation.PingOptions Options { get { throw null; } }
10864         public long RoundtripTime { get { throw null; } }
10865         public System.Net.NetworkInformation.IPStatus Status { get { throw null; } }
10866     }
10867     public enum PrefixOrigin
10868     {
10869         Dhcp = 3,
10870         Manual = 1,
10871         Other = 0,
10872         RouterAdvertisement = 4,
10873         WellKnown = 2,
10874     }
10875     public enum ScopeLevel
10876     {
10877         Admin = 4,
10878         Global = 14,
10879         Interface = 1,
10880         Link = 2,
10881         None = 0,
10882         Organization = 8,
10883         Site = 5,
10884         Subnet = 3,
10885     }
10886     public enum SuffixOrigin
10887     {
10888         LinkLayerAddress = 4,
10889         Manual = 1,
10890         OriginDhcp = 3,
10891         Other = 0,
10892         Random = 5,
10893         WellKnown = 2,
10894     }
10895     public abstract partial class TcpConnectionInformation
10896     {
TcpConnectionInformation()10897         protected TcpConnectionInformation() { }
10898         public abstract System.Net.IPEndPoint LocalEndPoint { get; }
10899         public abstract System.Net.IPEndPoint RemoteEndPoint { get; }
10900         public abstract System.Net.NetworkInformation.TcpState State { get; }
10901     }
10902     public enum TcpState
10903     {
10904         Closed = 1,
10905         CloseWait = 8,
10906         Closing = 9,
10907         DeleteTcb = 12,
10908         Established = 5,
10909         FinWait1 = 6,
10910         FinWait2 = 7,
10911         LastAck = 10,
10912         Listen = 2,
10913         SynReceived = 4,
10914         SynSent = 3,
10915         TimeWait = 11,
10916         Unknown = 0,
10917     }
10918     public abstract partial class TcpStatistics
10919     {
TcpStatistics()10920         protected TcpStatistics() { }
10921         public abstract long ConnectionsAccepted { get; }
10922         public abstract long ConnectionsInitiated { get; }
10923         public abstract long CumulativeConnections { get; }
10924         public abstract long CurrentConnections { get; }
10925         public abstract long ErrorsReceived { get; }
10926         public abstract long FailedConnectionAttempts { get; }
10927         public abstract long MaximumConnections { get; }
10928         public abstract long MaximumTransmissionTimeout { get; }
10929         public abstract long MinimumTransmissionTimeout { get; }
10930         public abstract long ResetConnections { get; }
10931         public abstract long ResetsSent { get; }
10932         public abstract long SegmentsReceived { get; }
10933         public abstract long SegmentsResent { get; }
10934         public abstract long SegmentsSent { get; }
10935     }
10936     public abstract partial class UdpStatistics
10937     {
UdpStatistics()10938         protected UdpStatistics() { }
10939         public abstract long DatagramsReceived { get; }
10940         public abstract long DatagramsSent { get; }
10941         public abstract long IncomingDatagramsDiscarded { get; }
10942         public abstract long IncomingDatagramsWithErrors { get; }
10943         public abstract int UdpListeners { get; }
10944     }
10945     public abstract partial class UnicastIPAddressInformation : System.Net.NetworkInformation.IPAddressInformation
10946     {
UnicastIPAddressInformation()10947         protected UnicastIPAddressInformation() { }
10948         public abstract long AddressPreferredLifetime { get; }
10949         public abstract long AddressValidLifetime { get; }
10950         public abstract long DhcpLeaseLifetime { get; }
10951         public abstract System.Net.NetworkInformation.DuplicateAddressDetectionState DuplicateAddressDetectionState { get; }
10952         public abstract System.Net.IPAddress IPv4Mask { get; }
10953         public virtual int PrefixLength { get { throw null; } }
10954         public abstract System.Net.NetworkInformation.PrefixOrigin PrefixOrigin { get; }
10955         public abstract System.Net.NetworkInformation.SuffixOrigin SuffixOrigin { get; }
10956     }
10957     public partial class UnicastIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.UnicastIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.UnicastIPAddressInformation>, System.Collections.IEnumerable
10958     {
UnicastIPAddressInformationCollection()10959         protected internal UnicastIPAddressInformationCollection() { }
10960         public virtual int Count { get { throw null; } }
10961         public virtual bool IsReadOnly { get { throw null; } }
10962         public virtual System.Net.NetworkInformation.UnicastIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.UnicastIPAddressInformation address)10963         public virtual void Add(System.Net.NetworkInformation.UnicastIPAddressInformation address) { }
Clear()10964         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.UnicastIPAddressInformation address)10965         public virtual bool Contains(System.Net.NetworkInformation.UnicastIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.UnicastIPAddressInformation[] array, int offset)10966         public virtual void CopyTo(System.Net.NetworkInformation.UnicastIPAddressInformation[] array, int offset) { }
GetEnumerator()10967         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.UnicastIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.UnicastIPAddressInformation address)10968         public virtual bool Remove(System.Net.NetworkInformation.UnicastIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10969         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10970     }
10971 }
10972 namespace System.Net.Security
10973 {
10974     public abstract partial class AuthenticatedStream : System.IO.Stream
10975     {
AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)10976         protected AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) { }
10977         protected System.IO.Stream InnerStream { get { throw null; } }
10978         public abstract bool IsAuthenticated { get; }
10979         public abstract bool IsEncrypted { get; }
10980         public abstract bool IsMutuallyAuthenticated { get; }
10981         public abstract bool IsServer { get; }
10982         public abstract bool IsSigned { get; }
10983         public bool LeaveInnerStreamOpen { get { throw null; } }
Dispose(bool disposing)10984         protected override void Dispose(bool disposing) { }
10985     }
10986     public enum AuthenticationLevel
10987     {
10988         MutualAuthRequested = 1,
10989         MutualAuthRequired = 2,
10990         None = 0,
10991     }
10992     public enum EncryptionPolicy
10993     {
10994         AllowNoEncryption = 1,
10995         NoEncryption = 2,
10996         RequireEncryption = 0,
10997     }
LocalCertificateSelectionCallback(object sender, string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection localCertificates, System.Security.Cryptography.X509Certificates.X509Certificate remoteCertificate, string[] acceptableIssuers)10998     public delegate System.Security.Cryptography.X509Certificates.X509Certificate LocalCertificateSelectionCallback(object sender, string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection localCertificates, System.Security.Cryptography.X509Certificates.X509Certificate remoteCertificate, string[] acceptableIssuers);
10999     public partial class NegotiateStream : System.Net.Security.AuthenticatedStream
11000     {
11001         [System.MonoTODOAttribute]
NegotiateStream(System.IO.Stream innerStream)11002         public NegotiateStream(System.IO.Stream innerStream) : base (default(System.IO.Stream), default(bool)) { }
11003         [System.MonoTODOAttribute]
NegotiateStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)11004         public NegotiateStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) : base (default(System.IO.Stream), default(bool)) { }
11005         public override bool CanRead { get { throw null; } }
11006         public override bool CanSeek { get { throw null; } }
11007         [System.MonoTODOAttribute]
11008         public override bool CanTimeout { get { throw null; } }
11009         public override bool CanWrite { get { throw null; } }
11010         [System.MonoTODOAttribute]
11011         public virtual System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } }
11012         [System.MonoTODOAttribute]
11013         public override bool IsAuthenticated { get { throw null; } }
11014         [System.MonoTODOAttribute]
11015         public override bool IsEncrypted { get { throw null; } }
11016         [System.MonoTODOAttribute]
11017         public override bool IsMutuallyAuthenticated { get { throw null; } }
11018         [System.MonoTODOAttribute]
11019         public override bool IsServer { get { throw null; } }
11020         [System.MonoTODOAttribute]
11021         public override bool IsSigned { get { throw null; } }
11022         public override long Length { get { throw null; } }
11023         public override long Position { get { throw null; } set { } }
11024         public override int ReadTimeout { get { throw null; } set { } }
11025         [System.MonoTODOAttribute]
11026         public virtual System.Security.Principal.IIdentity RemoteIdentity { get { throw null; } }
11027         public override int WriteTimeout { get { throw null; } set { } }
11028         [System.MonoTODOAttribute]
AuthenticateAsClient()11029         public virtual void AuthenticateAsClient() { }
11030         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName)11031         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName) { }
11032         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11033         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { }
11034         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName)11035         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName) { }
11036         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11037         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { }
AuthenticateAsClientAsync()11038         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync() { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName)11039         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName) { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11040         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName)11041         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName) { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11042         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { throw null; }
11043         [System.MonoTODOAttribute]
AuthenticateAsServer()11044         public virtual void AuthenticateAsServer() { }
11045         [System.MonoTODOAttribute]
AuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11046         public virtual void AuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { }
11047         [System.MonoTODOAttribute]
AuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11048         public virtual void AuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { }
11049         [System.MonoTODOAttribute]
AuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy)11050         public virtual void AuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy) { }
AuthenticateAsServerAsync()11051         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync() { throw null; }
AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11052         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { throw null; }
AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11053         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { throw null; }
AuthenticateAsServerAsync(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy)11054         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy) { throw null; }
11055         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.AsyncCallback asyncCallback, object asyncState)11056         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11057         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.AsyncCallback asyncCallback, object asyncState)11058         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11059         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)11060         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11061         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.AsyncCallback asyncCallback, object asyncState)11062         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11063         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)11064         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11065         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.AsyncCallback asyncCallback, object asyncState)11066         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11067         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)11068         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11069         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)11070         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11071         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.AsyncCallback asyncCallback, object asyncState)11072         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11073         [System.MonoTODOAttribute]
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11074         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11075         [System.MonoTODOAttribute]
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11076         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11077         [System.MonoTODOAttribute]
Dispose(bool disposing)11078         protected override void Dispose(bool disposing) { }
11079         [System.MonoTODOAttribute]
EndAuthenticateAsClient(System.IAsyncResult asyncResult)11080         public virtual void EndAuthenticateAsClient(System.IAsyncResult asyncResult) { }
11081         [System.MonoTODOAttribute]
EndAuthenticateAsServer(System.IAsyncResult asyncResult)11082         public virtual void EndAuthenticateAsServer(System.IAsyncResult asyncResult) { }
11083         [System.MonoTODOAttribute]
EndRead(System.IAsyncResult asyncResult)11084         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
11085         [System.MonoTODOAttribute]
EndWrite(System.IAsyncResult asyncResult)11086         public override void EndWrite(System.IAsyncResult asyncResult) { }
11087         [System.MonoTODOAttribute]
Flush()11088         public override void Flush() { }
11089         [System.MonoTODOAttribute]
Read(byte[] buffer, int offset, int count)11090         public override int Read(byte[] buffer, int offset, int count) { throw null; }
11091         [System.MonoTODOAttribute]
Seek(long offset, System.IO.SeekOrigin origin)11092         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
11093         [System.MonoTODOAttribute]
SetLength(long value)11094         public override void SetLength(long value) { }
11095         [System.MonoTODOAttribute]
Write(byte[] buffer, int offset, int count)11096         public override void Write(byte[] buffer, int offset, int count) { }
11097     }
11098     public enum ProtectionLevel
11099     {
11100         EncryptAndSign = 2,
11101         None = 0,
11102         Sign = 1,
11103     }
RemoteCertificateValidationCallback(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)11104     public delegate bool RemoteCertificateValidationCallback(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors);
11105     [System.FlagsAttribute]
11106     public enum SslPolicyErrors
11107     {
11108         None = 0,
11109         RemoteCertificateChainErrors = 4,
11110         RemoteCertificateNameMismatch = 2,
11111         RemoteCertificateNotAvailable = 1,
11112     }
11113     public partial class SslStream : System.Net.Security.AuthenticatedStream
11114     {
SslStream(System.IO.Stream innerStream)11115         public SslStream(System.IO.Stream innerStream) : base (default(System.IO.Stream), default(bool)) { }
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)11116         public SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) : base (default(System.IO.Stream), default(bool)) { }
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback)11117         public SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback) : base (default(System.IO.Stream), default(bool)) { }
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback, System.Net.Security.LocalCertificateSelectionCallback userCertificateSelectionCallback)11118         public SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback, System.Net.Security.LocalCertificateSelectionCallback userCertificateSelectionCallback) : base (default(System.IO.Stream), default(bool)) { }
11119         [System.MonoLimitationAttribute("encryptionPolicy is ignored")]
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback, System.Net.Security.LocalCertificateSelectionCallback userCertificateSelectionCallback, System.Net.Security.EncryptionPolicy encryptionPolicy)11120         public SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback, System.Net.Security.LocalCertificateSelectionCallback userCertificateSelectionCallback, System.Net.Security.EncryptionPolicy encryptionPolicy) : base (default(System.IO.Stream), default(bool)) { }
11121         public override bool CanRead { get { throw null; } }
11122         public override bool CanSeek { get { throw null; } }
11123         public override bool CanTimeout { get { throw null; } }
11124         public override bool CanWrite { get { throw null; } }
11125         public virtual bool CheckCertRevocationStatus { get { throw null; } }
11126         public virtual System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get { throw null; } }
11127         public virtual int CipherStrength { get { throw null; } }
11128         public virtual System.Security.Authentication.HashAlgorithmType HashAlgorithm { get { throw null; } }
11129         public virtual int HashStrength { get { throw null; } }
11130         public override bool IsAuthenticated { get { throw null; } }
11131         public override bool IsEncrypted { get { throw null; } }
11132         public override bool IsMutuallyAuthenticated { get { throw null; } }
11133         public override bool IsServer { get { throw null; } }
11134         public override bool IsSigned { get { throw null; } }
11135         public virtual System.Security.Authentication.ExchangeAlgorithmType KeyExchangeAlgorithm { get { throw null; } }
11136         public virtual int KeyExchangeStrength { get { throw null; } }
11137         public override long Length { get { throw null; } }
11138         public virtual System.Security.Cryptography.X509Certificates.X509Certificate LocalCertificate { get { throw null; } }
11139         public override long Position { get { throw null; } set { } }
11140         public override int ReadTimeout { get { throw null; } set { } }
11141         public virtual System.Security.Cryptography.X509Certificates.X509Certificate RemoteCertificate { get { throw null; } }
11142         public virtual System.Security.Authentication.SslProtocols SslProtocol { get { throw null; } }
11143         public System.Net.TransportContext TransportContext { get { throw null; } }
11144         public override int WriteTimeout { get { throw null; } set { } }
AuthenticateAsClient(string targetHost)11145         public virtual void AuthenticateAsClient(string targetHost) { }
AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11146         public virtual void AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
AuthenticateAsClientAsync(string targetHost)11147         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost) { throw null; }
AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11148         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { throw null; }
AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate)11149         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { }
AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11150         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate)11151         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { throw null; }
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11152         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { throw null; }
BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState)11153         public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)11154         public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState)11155         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)11156         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11157         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11158         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)11159         protected override void Dispose(bool disposing) { }
EndAuthenticateAsClient(System.IAsyncResult asyncResult)11160         public virtual void EndAuthenticateAsClient(System.IAsyncResult asyncResult) { }
EndAuthenticateAsServer(System.IAsyncResult asyncResult)11161         public virtual void EndAuthenticateAsServer(System.IAsyncResult asyncResult) { }
EndRead(System.IAsyncResult asyncResult)11162         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)11163         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()11164         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)11165         public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read(byte[] buffer, int offset, int count)11166         public override int Read(byte[] buffer, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)11167         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)11168         public override void SetLength(long value) { }
ShutdownAsync()11169         public virtual System.Threading.Tasks.Task ShutdownAsync() { throw null; }
Write(byte[] buffer)11170         public void Write(byte[] buffer) { }
Write(byte[] buffer, int offset, int count)11171         public override void Write(byte[] buffer, int offset, int count) { }
11172     }
11173 }
11174 namespace System.Net.Sockets
11175 {
11176     public enum AddressFamily
11177     {
11178         AppleTalk = 16,
11179         Atm = 22,
11180         Banyan = 21,
11181         Ccitt = 10,
11182         Chaos = 5,
11183         Cluster = 24,
11184         DataKit = 9,
11185         DataLink = 13,
11186         DecNet = 12,
11187         Ecma = 8,
11188         FireFox = 19,
11189         HyperChannel = 15,
11190         Ieee12844 = 25,
11191         ImpLink = 3,
11192         InterNetwork = 2,
11193         InterNetworkV6 = 23,
11194         Ipx = 6,
11195         Irda = 26,
11196         Iso = 7,
11197         Lat = 14,
11198         Max = 29,
11199         NetBios = 17,
11200         NetworkDesigners = 28,
11201         NS = 6,
11202         Osi = 7,
11203         Pup = 4,
11204         Sna = 11,
11205         Unix = 1,
11206         Unknown = -1,
11207         Unspecified = 0,
11208         VoiceView = 18,
11209     }
11210     public enum IOControlCode : long
11211     {
11212         AbsorbRouterAlert = (long)2550136837,
11213         AddMulticastGroupOnInterface = (long)2550136842,
11214         AddressListChange = (long)671088663,
11215         AddressListQuery = (long)1207959574,
11216         AddressListSort = (long)3355443225,
11217         AssociateHandle = (long)2281701377,
11218         AsyncIO = (long)2147772029,
11219         BindToInterface = (long)2550136840,
11220         DataToRead = (long)1074030207,
11221         DeleteMulticastGroupFromInterface = (long)2550136843,
11222         EnableCircularQueuing = (long)671088642,
11223         Flush = (long)671088644,
11224         GetBroadcastAddress = (long)1207959557,
11225         GetExtensionFunctionPointer = (long)3355443206,
11226         GetGroupQos = (long)3355443208,
11227         GetQos = (long)3355443207,
11228         KeepAliveValues = (long)2550136836,
11229         LimitBroadcasts = (long)2550136839,
11230         MulticastInterface = (long)2550136841,
11231         MulticastScope = (long)2281701386,
11232         MultipointLoopback = (long)2281701385,
11233         NamespaceChange = (long)2281701401,
11234         NonBlockingIO = (long)2147772030,
11235         OobDataRead = (long)1074033415,
11236         QueryTargetPnpHandle = (long)1207959576,
11237         ReceiveAll = (long)2550136833,
11238         ReceiveAllIgmpMulticast = (long)2550136835,
11239         ReceiveAllMulticast = (long)2550136834,
11240         RoutingInterfaceChange = (long)2281701397,
11241         RoutingInterfaceQuery = (long)3355443220,
11242         SetGroupQos = (long)2281701388,
11243         SetQos = (long)2281701387,
11244         TranslateHandle = (long)3355443213,
11245         UnicastInterface = (long)2550136838,
11246     }
11247     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11248     public partial struct IPPacketInformation
11249     {
11250         public System.Net.IPAddress Address { get { throw null; } }
11251         public int Interface { get { throw null; } }
EqualsSystem.Net.Sockets.IPPacketInformation11252         public override bool Equals(object comparand) { throw null; }
GetHashCodeSystem.Net.Sockets.IPPacketInformation11253         public override int GetHashCode() { throw null; }
operator ==System.Net.Sockets.IPPacketInformation11254         public static bool operator ==(System.Net.Sockets.IPPacketInformation packetInformation1, System.Net.Sockets.IPPacketInformation packetInformation2) { throw null; }
operator !=System.Net.Sockets.IPPacketInformation11255         public static bool operator !=(System.Net.Sockets.IPPacketInformation packetInformation1, System.Net.Sockets.IPPacketInformation packetInformation2) { throw null; }
11256     }
11257     public enum IPProtectionLevel
11258     {
11259         EdgeRestricted = 20,
11260         Restricted = 30,
11261         Unrestricted = 10,
11262         Unspecified = -1,
11263     }
11264     public partial class IPv6MulticastOption
11265     {
IPv6MulticastOption(System.Net.IPAddress group)11266         public IPv6MulticastOption(System.Net.IPAddress group) { }
IPv6MulticastOption(System.Net.IPAddress group, long ifindex)11267         public IPv6MulticastOption(System.Net.IPAddress group, long ifindex) { }
11268         public System.Net.IPAddress Group { get { throw null; } set { } }
11269         public long InterfaceIndex { get { throw null; } set { } }
11270     }
11271     public partial class LingerOption
11272     {
LingerOption(bool enable, int seconds)11273         public LingerOption(bool enable, int seconds) { }
11274         public bool Enabled { get { throw null; } set { } }
11275         public int LingerTime { get { throw null; } set { } }
11276     }
11277     public partial class MulticastOption
11278     {
MulticastOption(System.Net.IPAddress group)11279         public MulticastOption(System.Net.IPAddress group) { }
MulticastOption(System.Net.IPAddress group, int interfaceIndex)11280         public MulticastOption(System.Net.IPAddress group, int interfaceIndex) { }
MulticastOption(System.Net.IPAddress group, System.Net.IPAddress mcint)11281         public MulticastOption(System.Net.IPAddress group, System.Net.IPAddress mcint) { }
11282         public System.Net.IPAddress Group { get { throw null; } set { } }
11283         public int InterfaceIndex { get { throw null; } set { } }
11284         public System.Net.IPAddress LocalAddress { get { throw null; } set { } }
11285     }
11286     public partial class NetworkStream : System.IO.Stream
11287     {
NetworkStream(System.Net.Sockets.Socket socket)11288         public NetworkStream(System.Net.Sockets.Socket socket) { }
NetworkStream(System.Net.Sockets.Socket socket, bool ownsSocket)11289         public NetworkStream(System.Net.Sockets.Socket socket, bool ownsSocket) { }
NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access)11290         public NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access) { }
NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access, bool ownsSocket)11291         public NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access, bool ownsSocket) { }
11292         public override bool CanRead { get { throw null; } }
11293         public override bool CanSeek { get { throw null; } }
11294         public override bool CanTimeout { get { throw null; } }
11295         public override bool CanWrite { get { throw null; } }
11296         public virtual bool DataAvailable { get { throw null; } }
11297         public override long Length { get { throw null; } }
11298         public override long Position { get { throw null; } set { } }
11299         protected bool Readable { get { throw null; } set { } }
11300         public override int ReadTimeout { get { throw null; } set { } }
11301         protected System.Net.Sockets.Socket Socket { get { throw null; } }
11302         protected bool Writeable { get { throw null; } set { } }
11303         public override int WriteTimeout { get { throw null; } set { } }
11304         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state)11305         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state) { throw null; }
11306         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state)11307         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state) { throw null; }
Close(int timeout)11308         public void Close(int timeout) { }
Dispose(bool disposing)11309         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)11310         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)11311         public override void EndWrite(System.IAsyncResult asyncResult) { }
~NetworkStream()11312         ~NetworkStream() { }
Flush()11313         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)11314         public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] buffer, int offset, int size)11315         public override int Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] buffer, int offset, int size) { buffer = default(byte[]); throw null; }
Seek(long offset, System.IO.SeekOrigin origin)11316         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)11317         public override void SetLength(long value) { }
Write(byte[] buffer, int offset, int size)11318         public override void Write(byte[] buffer, int offset, int size) { }
11319     }
11320     public enum ProtocolFamily
11321     {
11322         AppleTalk = 16,
11323         Atm = 22,
11324         Banyan = 21,
11325         Ccitt = 10,
11326         Chaos = 5,
11327         Cluster = 24,
11328         DataKit = 9,
11329         DataLink = 13,
11330         DecNet = 12,
11331         Ecma = 8,
11332         FireFox = 19,
11333         HyperChannel = 15,
11334         Ieee12844 = 25,
11335         ImpLink = 3,
11336         InterNetwork = 2,
11337         InterNetworkV6 = 23,
11338         Ipx = 6,
11339         Irda = 26,
11340         Iso = 7,
11341         Lat = 14,
11342         Max = 29,
11343         NetBios = 17,
11344         NetworkDesigners = 28,
11345         NS = 6,
11346         Osi = 7,
11347         Pup = 4,
11348         Sna = 11,
11349         Unix = 1,
11350         Unknown = -1,
11351         Unspecified = 0,
11352         VoiceView = 18,
11353     }
11354     public enum ProtocolType
11355     {
11356         Ggp = 3,
11357         Icmp = 1,
11358         IcmpV6 = 58,
11359         Idp = 22,
11360         Igmp = 2,
11361         IP = 0,
11362         IPSecAuthenticationHeader = 51,
11363         IPSecEncapsulatingSecurityPayload = 50,
11364         IPv4 = 4,
11365         IPv6 = 41,
11366         IPv6DestinationOptions = 60,
11367         IPv6FragmentHeader = 44,
11368         IPv6HopByHopOptions = 0,
11369         IPv6NoNextHeader = 59,
11370         IPv6RoutingHeader = 43,
11371         Ipx = 1000,
11372         ND = 77,
11373         Pup = 12,
11374         Raw = 255,
11375         Spx = 1256,
11376         SpxII = 1257,
11377         Tcp = 6,
11378         Udp = 17,
11379         Unknown = -1,
11380         Unspecified = 0,
11381     }
11382     public enum SelectMode
11383     {
11384         SelectError = 2,
11385         SelectRead = 0,
11386         SelectWrite = 1,
11387     }
11388     public partial class SendPacketsElement
11389     {
SendPacketsElement(byte[] buffer)11390         public SendPacketsElement(byte[] buffer) { }
SendPacketsElement(byte[] buffer, int offset, int count)11391         public SendPacketsElement(byte[] buffer, int offset, int count) { }
SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket)11392         public SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket) { }
SendPacketsElement(string filepath)11393         public SendPacketsElement(string filepath) { }
SendPacketsElement(string filepath, int offset, int count)11394         public SendPacketsElement(string filepath, int offset, int count) { }
SendPacketsElement(string filepath, int offset, int count, bool endOfPacket)11395         public SendPacketsElement(string filepath, int offset, int count, bool endOfPacket) { }
11396         public byte[] Buffer { get { throw null; } }
11397         public int Count { get { throw null; } }
11398         public bool EndOfPacket { get { throw null; } }
11399         public string FilePath { get { throw null; } }
11400         public int Offset { get { throw null; } }
11401     }
11402     public partial class Socket : System.IDisposable
11403     {
Socket(System.Net.Sockets.AddressFamily addressFamily, System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType)11404         public Socket(System.Net.Sockets.AddressFamily addressFamily, System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType) { }
Socket(System.Net.Sockets.SocketInformation socketInformation)11405         public Socket(System.Net.Sockets.SocketInformation socketInformation) { }
Socket(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType)11406         public Socket(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType) { }
11407         public System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
11408         public int Available { get { throw null; } }
11409         public bool Blocking { get { throw null; } set { } }
11410         public bool Connected { get { throw null; } }
11411         public bool DontFragment { get { throw null; } set { } }
11412         public bool DualMode { get { throw null; } set { } }
11413         public bool EnableBroadcast { get { throw null; } set { } }
11414         public bool ExclusiveAddressUse { get { throw null; } set { } }
11415         public System.IntPtr Handle { get { throw null; } }
11416         public bool IsBound { get { throw null; } }
11417         public System.Net.Sockets.LingerOption LingerState { get { throw null; } set { } }
11418         public System.Net.EndPoint LocalEndPoint { get { throw null; } }
11419         public bool MulticastLoopback { get { throw null; } set { } }
11420         public bool NoDelay { get { throw null; } set { } }
11421         public static bool OSSupportsIPv4 { get { throw null; } }
11422         public static bool OSSupportsIPv6 { get { throw null; } }
11423         public System.Net.Sockets.ProtocolType ProtocolType { get { throw null; } }
11424         public int ReceiveBufferSize { get { throw null; } set { } }
11425         public int ReceiveTimeout { get { throw null; } set { } }
11426         public System.Net.EndPoint RemoteEndPoint { get { throw null; } }
11427         public int SendBufferSize { get { throw null; } set { } }
11428         public int SendTimeout { get { throw null; } set { } }
11429         public System.Net.Sockets.SocketType SocketType { get { throw null; } }
11430         [System.ObsoleteAttribute("SupportsIPv4 is obsoleted for this type, please use OSSupportsIPv4 instead. http://go.microsoft.com/fwlink/?linkid=14202")]
11431         public static bool SupportsIPv4 { get { throw null; } }
11432         [System.ObsoleteAttribute("SupportsIPv6 is obsoleted for this type, please use OSSupportsIPv6 instead. http://go.microsoft.com/fwlink/?linkid=14202")]
11433         public static bool SupportsIPv6 { get { throw null; } }
11434         public short Ttl { get { throw null; } set { } }
11435         public bool UseOnlyOverlappedIO { get { throw null; } set { } }
Accept()11436         public System.Net.Sockets.Socket Accept() { throw null; }
AcceptAsync(System.Net.Sockets.SocketAsyncEventArgs e)11437         public bool AcceptAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
BeginAccept(System.AsyncCallback callback, object state)11438         public System.IAsyncResult BeginAccept(System.AsyncCallback callback, object state) { throw null; }
11439         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAccept(int receiveSize, System.AsyncCallback callback, object state)11440         public System.IAsyncResult BeginAccept(int receiveSize, System.AsyncCallback callback, object state) { throw null; }
BeginAccept(System.Net.Sockets.Socket acceptSocket, int receiveSize, System.AsyncCallback callback, object state)11441         public System.IAsyncResult BeginAccept(System.Net.Sockets.Socket acceptSocket, int receiveSize, System.AsyncCallback callback, object state) { throw null; }
BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11442         public System.IAsyncResult BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) { throw null; }
11443         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state)11444         public System.IAsyncResult BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state) { throw null; }
BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state)11445         public System.IAsyncResult BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state) { throw null; }
BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state)11446         public System.IAsyncResult BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state) { throw null; }
BeginDisconnect(bool reuseSocket, System.AsyncCallback callback, object state)11447         public System.IAsyncResult BeginDisconnect(bool reuseSocket, System.AsyncCallback callback, object state) { throw null; }
11448         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state)11449         public System.IAsyncResult BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11450         public System.IAsyncResult BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
11451         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state)11452         public System.IAsyncResult BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
11453         [System.CLSCompliantAttribute(false)]
BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11454         public System.IAsyncResult BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
BeginReceiveFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11455         public System.IAsyncResult BeginReceiveFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) { throw null; }
11456         [System.MonoTODOAttribute]
BeginReceiveMessageFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11457         public System.IAsyncResult BeginReceiveMessageFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) { throw null; }
11458         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state)11459         public System.IAsyncResult BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11460         public System.IAsyncResult BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
11461         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state)11462         public System.IAsyncResult BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
11463         [System.CLSCompliantAttribute(false)]
BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11464         public System.IAsyncResult BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
11465         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSendFile(string fileName, System.AsyncCallback callback, object state)11466         public System.IAsyncResult BeginSendFile(string fileName, System.AsyncCallback callback, object state) { throw null; }
BeginSendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags, System.AsyncCallback callback, object state)11467         public System.IAsyncResult BeginSendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags, System.AsyncCallback callback, object state) { throw null; }
BeginSendTo(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11468         public System.IAsyncResult BeginSendTo(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) { throw null; }
Bind(System.Net.EndPoint localEP)11469         public void Bind(System.Net.EndPoint localEP) { }
CancelConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)11470         public static void CancelConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { }
Close()11471         public void Close() { }
Close(int timeout)11472         public void Close(int timeout) { }
Connect(System.Net.EndPoint remoteEP)11473         public void Connect(System.Net.EndPoint remoteEP) { }
Connect(System.Net.IPAddress address, int port)11474         public void Connect(System.Net.IPAddress address, int port) { }
Connect(System.Net.IPAddress[] addresses, int port)11475         public void Connect(System.Net.IPAddress[] addresses, int port) { }
Connect(string host, int port)11476         public void Connect(string host, int port) { }
ConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)11477         public bool ConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
ConnectAsync(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType, System.Net.Sockets.SocketAsyncEventArgs e)11478         public static bool ConnectAsync(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType, System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Disconnect(bool reuseSocket)11479         public void Disconnect(bool reuseSocket) { }
DisconnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)11480         public bool DisconnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Dispose()11481         public void Dispose() { }
Dispose(bool disposing)11482         protected virtual void Dispose(bool disposing) { }
11483         [System.MonoLimitationAttribute("We do not support passing sockets across processes, we merely allow this API to pass the socket across AppDomains")]
DuplicateAndClose(int targetProcessId)11484         public System.Net.Sockets.SocketInformation DuplicateAndClose(int targetProcessId) { throw null; }
EndAccept(out byte[] buffer, System.IAsyncResult asyncResult)11485         public System.Net.Sockets.Socket EndAccept(out byte[] buffer, System.IAsyncResult asyncResult) { buffer = default(byte[]); throw null; }
EndAccept(out byte[] buffer, out int bytesTransferred, System.IAsyncResult asyncResult)11486         public System.Net.Sockets.Socket EndAccept(out byte[] buffer, out int bytesTransferred, System.IAsyncResult asyncResult) { buffer = default(byte[]); bytesTransferred = default(int); throw null; }
EndAccept(System.IAsyncResult asyncResult)11487         public System.Net.Sockets.Socket EndAccept(System.IAsyncResult asyncResult) { throw null; }
EndConnect(System.IAsyncResult asyncResult)11488         public void EndConnect(System.IAsyncResult asyncResult) { }
EndDisconnect(System.IAsyncResult asyncResult)11489         public void EndDisconnect(System.IAsyncResult asyncResult) { }
EndReceive(System.IAsyncResult asyncResult)11490         public int EndReceive(System.IAsyncResult asyncResult) { throw null; }
EndReceive(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode)11491         public int EndReceive(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
EndReceiveFrom(System.IAsyncResult asyncResult, ref System.Net.EndPoint endPoint)11492         public int EndReceiveFrom(System.IAsyncResult asyncResult, ref System.Net.EndPoint endPoint) { throw null; }
11493         [System.MonoTODOAttribute]
EndReceiveMessageFrom(System.IAsyncResult asyncResult, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint endPoint, out System.Net.Sockets.IPPacketInformation ipPacketInformation)11494         public int EndReceiveMessageFrom(System.IAsyncResult asyncResult, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint endPoint, out System.Net.Sockets.IPPacketInformation ipPacketInformation) { ipPacketInformation = default(System.Net.Sockets.IPPacketInformation); throw null; }
EndSend(System.IAsyncResult asyncResult)11495         public int EndSend(System.IAsyncResult asyncResult) { throw null; }
EndSend(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode)11496         public int EndSend(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
EndSendFile(System.IAsyncResult asyncResult)11497         public void EndSendFile(System.IAsyncResult asyncResult) { }
EndSendTo(System.IAsyncResult asyncResult)11498         public int EndSendTo(System.IAsyncResult asyncResult) { throw null; }
~Socket()11499         ~Socket() { }
GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName)11500         public object GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName) { throw null; }
GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, byte[] optionValue)11501         public void GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, byte[] optionValue) { }
GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, int optionLength)11502         public byte[] GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, int optionLength) { throw null; }
IOControl(int ioControlCode, byte[] optionInValue, byte[] optionOutValue)11503         public int IOControl(int ioControlCode, byte[] optionInValue, byte[] optionOutValue) { throw null; }
IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue)11504         public int IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) { throw null; }
Listen(int backlog)11505         public void Listen(int backlog) { }
Poll(int microSeconds, System.Net.Sockets.SelectMode mode)11506         public bool Poll(int microSeconds, System.Net.Sockets.SelectMode mode) { throw null; }
Receive(byte[] buffer)11507         public int Receive(byte[] buffer) { throw null; }
Receive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags)11508         public int Receive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)11509         public int Receive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
Receive(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags)11510         public int Receive(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags)11511         public int Receive(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers)11512         public int Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers) { throw null; }
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags)11513         public int Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
11514         [System.CLSCompliantAttribute(false)]
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)11515         public int Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
ReceiveAsync(System.Net.Sockets.SocketAsyncEventArgs e)11516         public bool ReceiveAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
ReceiveFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP)11517         public int ReceiveFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP) { throw null; }
ReceiveFrom(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP)11518         public int ReceiveFrom(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP) { throw null; }
ReceiveFrom(byte[] buffer, ref System.Net.EndPoint remoteEP)11519         public int ReceiveFrom(byte[] buffer, ref System.Net.EndPoint remoteEP) { throw null; }
ReceiveFrom(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP)11520         public int ReceiveFrom(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP) { throw null; }
ReceiveFromAsync(System.Net.Sockets.SocketAsyncEventArgs e)11521         public bool ReceiveFromAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
11522         [System.MonoTODOAttribute("Not implemented")]
ReceiveMessageFrom(byte[] buffer, int offset, int size, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, out System.Net.Sockets.IPPacketInformation ipPacketInformation)11523         public int ReceiveMessageFrom(byte[] buffer, int offset, int size, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, out System.Net.Sockets.IPPacketInformation ipPacketInformation) { ipPacketInformation = default(System.Net.Sockets.IPPacketInformation); throw null; }
11524         [System.MonoTODOAttribute("Not implemented")]
ReceiveMessageFromAsync(System.Net.Sockets.SocketAsyncEventArgs e)11525         public bool ReceiveMessageFromAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Select(System.Collections.IList checkRead, System.Collections.IList checkWrite, System.Collections.IList checkError, int microSeconds)11526         public static void Select(System.Collections.IList checkRead, System.Collections.IList checkWrite, System.Collections.IList checkError, int microSeconds) { }
Send(byte[] buffer)11527         public int Send(byte[] buffer) { throw null; }
Send(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags)11528         public int Send(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)11529         public int Send(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
Send(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags)11530         public int Send(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags)11531         public int Send(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers)11532         public int Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers) { throw null; }
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags)11533         public int Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
11534         [System.CLSCompliantAttribute(false)]
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)11535         public int Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
SendAsync(System.Net.Sockets.SocketAsyncEventArgs e)11536         public bool SendAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SendFile(string fileName)11537         public void SendFile(string fileName) { }
SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags)11538         public void SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags) { }
11539         [System.MonoTODOAttribute("Not implemented")]
SendPacketsAsync(System.Net.Sockets.SocketAsyncEventArgs e)11540         public bool SendPacketsAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SendTo(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)11541         public int SendTo(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
SendTo(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)11542         public int SendTo(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
SendTo(byte[] buffer, System.Net.EndPoint remoteEP)11543         public int SendTo(byte[] buffer, System.Net.EndPoint remoteEP) { throw null; }
SendTo(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)11544         public int SendTo(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e)11545         public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level)11546         public void SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level) { }
SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, bool optionValue)11547         public void SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, bool optionValue) { }
SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, byte[] optionValue)11548         public void SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, byte[] optionValue) { }
SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, int optionValue)11549         public void SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, int optionValue) { }
SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, object optionValue)11550         public void SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, object optionValue) { }
Shutdown(System.Net.Sockets.SocketShutdown how)11551         public void Shutdown(System.Net.Sockets.SocketShutdown how) { }
11552     }
11553     public partial class SocketAsyncEventArgs : System.EventArgs, System.IDisposable
11554     {
SocketAsyncEventArgs()11555         public SocketAsyncEventArgs() { }
11556         public System.Net.Sockets.Socket AcceptSocket { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11557         public byte[] Buffer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11558         public System.Collections.Generic.IList<System.ArraySegment<byte>> BufferList { get { throw null; } set { } }
11559         public int BytesTransferred { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11560         public System.Exception ConnectByNameError { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11561         public System.Net.Sockets.Socket ConnectSocket { get { throw null; } }
11562         public int Count { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11563         public bool DisconnectReuseSocket { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11564         public System.Net.Sockets.SocketAsyncOperation LastOperation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11565         public int Offset { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11566         public System.Net.Sockets.IPPacketInformation ReceiveMessageFromPacketInfo { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
11567         public System.Net.EndPoint RemoteEndPoint { get { throw null; } set { } }
11568         public System.Net.Sockets.SendPacketsElement[] SendPacketsElements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11569         public System.Net.Sockets.TransmitFileOptions SendPacketsFlags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11570         [System.MonoTODOAttribute("unused property")]
11571         public int SendPacketsSendSize { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11572         public System.Net.Sockets.SocketError SocketError { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11573         public System.Net.Sockets.SocketFlags SocketFlags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11574         public object UserToken { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11575         public event System.EventHandler<System.Net.Sockets.SocketAsyncEventArgs> Completed { add { } remove { } }
Dispose()11576         public void Dispose() { }
~SocketAsyncEventArgs()11577         ~SocketAsyncEventArgs() { }
OnCompleted(System.Net.Sockets.SocketAsyncEventArgs e)11578         protected virtual void OnCompleted(System.Net.Sockets.SocketAsyncEventArgs e) { }
SetBuffer(byte[] buffer, int offset, int count)11579         public void SetBuffer(byte[] buffer, int offset, int count) { }
SetBuffer(int offset, int count)11580         public void SetBuffer(int offset, int count) { }
11581     }
11582     public enum SocketAsyncOperation
11583     {
11584         Accept = 1,
11585         Connect = 2,
11586         Disconnect = 3,
11587         None = 0,
11588         Receive = 4,
11589         ReceiveFrom = 5,
11590         ReceiveMessageFrom = 6,
11591         Send = 7,
11592         SendPackets = 8,
11593         SendTo = 9,
11594     }
11595     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
11596     [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
11597     public enum SocketClientAccessPolicyProtocol
11598     {
11599         Http = 1,
11600         Tcp = 0,
11601     }
11602     public enum SocketError
11603     {
11604         AccessDenied = 10013,
11605         AddressAlreadyInUse = 10048,
11606         AddressFamilyNotSupported = 10047,
11607         AddressNotAvailable = 10049,
11608         AlreadyInProgress = 10037,
11609         ConnectionAborted = 10053,
11610         ConnectionRefused = 10061,
11611         ConnectionReset = 10054,
11612         DestinationAddressRequired = 10039,
11613         Disconnecting = 10101,
11614         Fault = 10014,
11615         HostDown = 10064,
11616         HostNotFound = 11001,
11617         HostUnreachable = 10065,
11618         InProgress = 10036,
11619         Interrupted = 10004,
11620         InvalidArgument = 10022,
11621         IOPending = 997,
11622         IsConnected = 10056,
11623         MessageSize = 10040,
11624         NetworkDown = 10050,
11625         NetworkReset = 10052,
11626         NetworkUnreachable = 10051,
11627         NoBufferSpaceAvailable = 10055,
11628         NoData = 11004,
11629         NoRecovery = 11003,
11630         NotConnected = 10057,
11631         NotInitialized = 10093,
11632         NotSocket = 10038,
11633         OperationAborted = 995,
11634         OperationNotSupported = 10045,
11635         ProcessLimit = 10067,
11636         ProtocolFamilyNotSupported = 10046,
11637         ProtocolNotSupported = 10043,
11638         ProtocolOption = 10042,
11639         ProtocolType = 10041,
11640         Shutdown = 10058,
11641         SocketError = -1,
11642         SocketNotSupported = 10044,
11643         Success = 0,
11644         SystemNotReady = 10091,
11645         TimedOut = 10060,
11646         TooManyOpenSockets = 10024,
11647         TryAgain = 11002,
11648         TypeNotFound = 10109,
11649         VersionNotSupported = 10092,
11650         WouldBlock = 10035,
11651     }
11652     [System.SerializableAttribute]
11653     public partial class SocketException : System.ComponentModel.Win32Exception
11654     {
SocketException()11655         public SocketException() { }
SocketException(int errorCode)11656         public SocketException(int errorCode) { }
SocketException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)11657         protected SocketException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
11658         public override int ErrorCode { get { throw null; } }
11659         public override string Message { get { throw null; } }
11660         public System.Net.Sockets.SocketError SocketErrorCode { get { throw null; } }
11661     }
11662     [System.FlagsAttribute]
11663     public enum SocketFlags
11664     {
11665         Broadcast = 1024,
11666         ControlDataTruncated = 512,
11667         DontRoute = 4,
11668         MaxIOVectorLength = 16,
11669         Multicast = 2048,
11670         None = 0,
11671         OutOfBand = 1,
11672         Partial = 32768,
11673         Peek = 2,
11674         Truncated = 256,
11675     }
11676     [System.SerializableAttribute]
11677     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11678     public partial struct SocketInformation
11679     {
11680         public System.Net.Sockets.SocketInformationOptions Options { get { throw null; } set { } }
11681         public byte[] ProtocolInformation { get { throw null; } set { } }
11682     }
11683     [System.FlagsAttribute]
11684     public enum SocketInformationOptions
11685     {
11686         Connected = 2,
11687         Listening = 4,
11688         NonBlocking = 1,
11689         UseOnlyOverlappedIO = 8,
11690     }
11691     public enum SocketOptionLevel
11692     {
11693         IP = 0,
11694         IPv6 = 41,
11695         Socket = 65535,
11696         Tcp = 6,
11697         Udp = 17,
11698     }
11699     public enum SocketOptionName
11700     {
11701         AcceptConnection = 2,
11702         AddMembership = 12,
11703         AddSourceMembership = 15,
11704         BlockSource = 17,
11705         Broadcast = 32,
11706         BsdUrgent = 2,
11707         ChecksumCoverage = 20,
11708         Debug = 1,
11709         DontFragment = 14,
11710         DontLinger = -129,
11711         DontRoute = 16,
11712         DropMembership = 13,
11713         DropSourceMembership = 16,
11714         Error = 4103,
11715         ExclusiveAddressUse = -5,
11716         Expedited = 2,
11717         HeaderIncluded = 2,
11718         HopLimit = 21,
11719         IPOptions = 1,
11720         IPProtectionLevel = 23,
11721         IpTimeToLive = 4,
11722         IPv6Only = 27,
11723         KeepAlive = 8,
11724         Linger = 128,
11725         MaxConnections = 2147483647,
11726         MulticastInterface = 9,
11727         MulticastLoopback = 11,
11728         MulticastTimeToLive = 10,
11729         NoChecksum = 1,
11730         NoDelay = 1,
11731         OutOfBandInline = 256,
11732         PacketInformation = 19,
11733         ReceiveBuffer = 4098,
11734         ReceiveLowWater = 4100,
11735         ReceiveTimeout = 4102,
11736         ReuseAddress = 4,
11737         ReuseUnicastPort = 12295,
11738         SendBuffer = 4097,
11739         SendLowWater = 4099,
11740         SendTimeout = 4101,
11741         Type = 4104,
11742         TypeOfService = 3,
11743         UnblockSource = 18,
11744         UpdateAcceptContext = 28683,
11745         UpdateConnectContext = 28688,
11746         UseLoopback = 64,
11747     }
11748     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11749     public partial struct SocketReceiveFromResult
11750     {
11751         public int ReceivedBytes;
11752         public System.Net.EndPoint RemoteEndPoint;
11753     }
11754     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11755     public partial struct SocketReceiveMessageFromResult
11756     {
11757         public System.Net.Sockets.IPPacketInformation PacketInformation;
11758         public int ReceivedBytes;
11759         public System.Net.EndPoint RemoteEndPoint;
11760         public System.Net.Sockets.SocketFlags SocketFlags;
11761     }
11762     public enum SocketShutdown
11763     {
11764         Both = 2,
11765         Receive = 0,
11766         Send = 1,
11767     }
11768     public static partial class SocketTaskExtensions
11769     {
AcceptAsync(this System.Net.Sockets.Socket socket)11770         public static System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptAsync(this System.Net.Sockets.Socket socket) { throw null; }
AcceptAsync(this System.Net.Sockets.Socket socket, System.Net.Sockets.Socket acceptSocket)11771         public static System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptAsync(this System.Net.Sockets.Socket socket, System.Net.Sockets.Socket acceptSocket) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.EndPoint remoteEP)11772         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.EndPoint remoteEP) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress address, int port)11773         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress address, int port) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress[] addresses, int port)11774         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress[] addresses, int port) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, string host, int port)11775         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, string host, int port) { throw null; }
ReceiveAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags)11776         public static System.Threading.Tasks.Task<int> ReceiveAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
ReceiveAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags)11777         public static System.Threading.Tasks.Task<int> ReceiveAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
ReceiveFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint)11778         public static System.Threading.Tasks.Task<System.Net.Sockets.SocketReceiveFromResult> ReceiveFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint) { throw null; }
ReceiveMessageFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint)11779         public static System.Threading.Tasks.Task<System.Net.Sockets.SocketReceiveMessageFromResult> ReceiveMessageFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint) { throw null; }
SendAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags)11780         public static System.Threading.Tasks.Task<int> SendAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
SendAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags)11781         public static System.Threading.Tasks.Task<int> SendAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
SendToAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)11782         public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
11783     }
11784     public enum SocketType
11785     {
11786         Dgram = 2,
11787         Raw = 3,
11788         Rdm = 4,
11789         Seqpacket = 5,
11790         Stream = 1,
11791         Unknown = -1,
11792     }
11793     public partial class TcpClient : System.IDisposable
11794     {
TcpClient()11795         public TcpClient() { }
TcpClient(System.Net.IPEndPoint localEP)11796         public TcpClient(System.Net.IPEndPoint localEP) { }
TcpClient(System.Net.Sockets.AddressFamily family)11797         public TcpClient(System.Net.Sockets.AddressFamily family) { }
TcpClient(string hostname, int port)11798         public TcpClient(string hostname, int port) { }
11799         protected bool Active { get { throw null; } set { } }
11800         public int Available { get { throw null; } }
11801         public System.Net.Sockets.Socket Client { get { throw null; } set { } }
11802         public bool Connected { get { throw null; } }
11803         public bool ExclusiveAddressUse { get { throw null; } set { } }
11804         public System.Net.Sockets.LingerOption LingerState { get { throw null; } set { } }
11805         public bool NoDelay { get { throw null; } set { } }
11806         public int ReceiveBufferSize { get { throw null; } set { } }
11807         public int ReceiveTimeout { get { throw null; } set { } }
11808         public int SendBufferSize { get { throw null; } set { } }
11809         public int SendTimeout { get { throw null; } set { } }
11810         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state)11811         public System.IAsyncResult BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state) { throw null; }
11812         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state)11813         public System.IAsyncResult BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state) { throw null; }
11814         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state)11815         public System.IAsyncResult BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state) { throw null; }
Close()11816         public void Close() { }
Connect(System.Net.IPAddress address, int port)11817         public void Connect(System.Net.IPAddress address, int port) { }
Connect(System.Net.IPAddress[] ipAddresses, int port)11818         public void Connect(System.Net.IPAddress[] ipAddresses, int port) { }
Connect(System.Net.IPEndPoint remoteEP)11819         public void Connect(System.Net.IPEndPoint remoteEP) { }
Connect(string hostname, int port)11820         public void Connect(string hostname, int port) { }
11821         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(System.Net.IPAddress address, int port)11822         public System.Threading.Tasks.Task ConnectAsync(System.Net.IPAddress address, int port) { throw null; }
11823         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(System.Net.IPAddress[] addresses, int port)11824         public System.Threading.Tasks.Task ConnectAsync(System.Net.IPAddress[] addresses, int port) { throw null; }
11825         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(string host, int port)11826         public System.Threading.Tasks.Task ConnectAsync(string host, int port) { throw null; }
Dispose()11827         public void Dispose() { }
Dispose(bool disposing)11828         protected virtual void Dispose(bool disposing) { }
EndConnect(System.IAsyncResult asyncResult)11829         public void EndConnect(System.IAsyncResult asyncResult) { }
~TcpClient()11830         ~TcpClient() { }
GetStream()11831         public System.Net.Sockets.NetworkStream GetStream() { throw null; }
11832     }
11833     public partial class TcpListener
11834     {
11835         [System.ObsoleteAttribute("This method has been deprecated. Please use TcpListener(IPAddress localaddr, int port) instead. http://go.microsoft.com/fwlink/?linkid=14202")]
TcpListener(int port)11836         public TcpListener(int port) { }
TcpListener(System.Net.IPAddress localaddr, int port)11837         public TcpListener(System.Net.IPAddress localaddr, int port) { }
TcpListener(System.Net.IPEndPoint localEP)11838         public TcpListener(System.Net.IPEndPoint localEP) { }
11839         protected bool Active { get { throw null; } }
11840         public bool ExclusiveAddressUse { get { throw null; } set { } }
11841         public System.Net.EndPoint LocalEndpoint { get { throw null; } }
11842         public System.Net.Sockets.Socket Server { get { throw null; } }
AcceptSocket()11843         public System.Net.Sockets.Socket AcceptSocket() { throw null; }
11844         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AcceptSocketAsync()11845         public System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptSocketAsync() { throw null; }
AcceptTcpClient()11846         public System.Net.Sockets.TcpClient AcceptTcpClient() { throw null; }
11847         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AcceptTcpClientAsync()11848         public System.Threading.Tasks.Task<System.Net.Sockets.TcpClient> AcceptTcpClientAsync() { throw null; }
AllowNatTraversal(bool allowed)11849         public void AllowNatTraversal(bool allowed) { }
11850         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAcceptSocket(System.AsyncCallback callback, object state)11851         public System.IAsyncResult BeginAcceptSocket(System.AsyncCallback callback, object state) { throw null; }
11852         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAcceptTcpClient(System.AsyncCallback callback, object state)11853         public System.IAsyncResult BeginAcceptTcpClient(System.AsyncCallback callback, object state) { throw null; }
Create(int port)11854         public static System.Net.Sockets.TcpListener Create(int port) { throw null; }
EndAcceptSocket(System.IAsyncResult asyncResult)11855         public System.Net.Sockets.Socket EndAcceptSocket(System.IAsyncResult asyncResult) { throw null; }
EndAcceptTcpClient(System.IAsyncResult asyncResult)11856         public System.Net.Sockets.TcpClient EndAcceptTcpClient(System.IAsyncResult asyncResult) { throw null; }
Pending()11857         public bool Pending() { throw null; }
Start()11858         public void Start() { }
Start(int backlog)11859         public void Start(int backlog) { }
Stop()11860         public void Stop() { }
11861     }
11862     [System.FlagsAttribute]
11863     public enum TransmitFileOptions
11864     {
11865         Disconnect = 1,
11866         ReuseSocket = 2,
11867         UseDefaultWorkerThread = 0,
11868         UseKernelApc = 32,
11869         UseSystemThread = 16,
11870         WriteBehind = 4,
11871     }
11872     public partial class UdpClient : System.IDisposable
11873     {
UdpClient()11874         public UdpClient() { }
UdpClient(int port)11875         public UdpClient(int port) { }
UdpClient(int port, System.Net.Sockets.AddressFamily family)11876         public UdpClient(int port, System.Net.Sockets.AddressFamily family) { }
UdpClient(System.Net.IPEndPoint localEP)11877         public UdpClient(System.Net.IPEndPoint localEP) { }
UdpClient(System.Net.Sockets.AddressFamily family)11878         public UdpClient(System.Net.Sockets.AddressFamily family) { }
UdpClient(string hostname, int port)11879         public UdpClient(string hostname, int port) { }
11880         protected bool Active { get { throw null; } set { } }
11881         public int Available { get { throw null; } }
11882         public System.Net.Sockets.Socket Client { get { throw null; } set { } }
11883         public bool DontFragment { get { throw null; } set { } }
11884         public bool EnableBroadcast { get { throw null; } set { } }
11885         public bool ExclusiveAddressUse { get { throw null; } set { } }
11886         public bool MulticastLoopback { get { throw null; } set { } }
11887         public short Ttl { get { throw null; } set { } }
AllowNatTraversal(bool allowed)11888         public void AllowNatTraversal(bool allowed) { }
11889         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceive(System.AsyncCallback requestCallback, object state)11890         public System.IAsyncResult BeginReceive(System.AsyncCallback requestCallback, object state) { throw null; }
11891         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] datagram, int bytes, System.AsyncCallback requestCallback, object state)11892         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, System.AsyncCallback requestCallback, object state) { throw null; }
11893         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint, System.AsyncCallback requestCallback, object state)11894         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint, System.AsyncCallback requestCallback, object state) { throw null; }
11895         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] datagram, int bytes, string hostname, int port, System.AsyncCallback requestCallback, object state)11896         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, string hostname, int port, System.AsyncCallback requestCallback, object state) { throw null; }
Close()11897         public void Close() { }
Connect(System.Net.IPAddress addr, int port)11898         public void Connect(System.Net.IPAddress addr, int port) { }
Connect(System.Net.IPEndPoint endPoint)11899         public void Connect(System.Net.IPEndPoint endPoint) { }
Connect(string hostname, int port)11900         public void Connect(string hostname, int port) { }
Dispose()11901         public void Dispose() { }
Dispose(bool disposing)11902         protected virtual void Dispose(bool disposing) { }
DropMulticastGroup(System.Net.IPAddress multicastAddr)11903         public void DropMulticastGroup(System.Net.IPAddress multicastAddr) { }
DropMulticastGroup(System.Net.IPAddress multicastAddr, int ifindex)11904         public void DropMulticastGroup(System.Net.IPAddress multicastAddr, int ifindex) { }
EndReceive(System.IAsyncResult asyncResult, ref System.Net.IPEndPoint remoteEP)11905         public byte[] EndReceive(System.IAsyncResult asyncResult, ref System.Net.IPEndPoint remoteEP) { throw null; }
EndSend(System.IAsyncResult asyncResult)11906         public int EndSend(System.IAsyncResult asyncResult) { throw null; }
JoinMulticastGroup(int ifindex, System.Net.IPAddress multicastAddr)11907         public void JoinMulticastGroup(int ifindex, System.Net.IPAddress multicastAddr) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr)11908         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr, int timeToLive)11909         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr, int timeToLive) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr, System.Net.IPAddress localAddress)11910         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr, System.Net.IPAddress localAddress) { }
Receive(ref System.Net.IPEndPoint remoteEP)11911         public byte[] Receive(ref System.Net.IPEndPoint remoteEP) { throw null; }
11912         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ReceiveAsync()11913         public System.Threading.Tasks.Task<System.Net.Sockets.UdpReceiveResult> ReceiveAsync() { throw null; }
Send(byte[] dgram, int bytes)11914         public int Send(byte[] dgram, int bytes) { throw null; }
Send(byte[] dgram, int bytes, System.Net.IPEndPoint endPoint)11915         public int Send(byte[] dgram, int bytes, System.Net.IPEndPoint endPoint) { throw null; }
Send(byte[] dgram, int bytes, string hostname, int port)11916         public int Send(byte[] dgram, int bytes, string hostname, int port) { throw null; }
11917         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes)11918         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes) { throw null; }
11919         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint)11920         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint) { throw null; }
11921         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes, string hostname, int port)11922         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes, string hostname, int port) { throw null; }
11923     }
11924     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11925     public partial struct UdpReceiveResult : System.IEquatable<System.Net.Sockets.UdpReceiveResult>
11926     {
UdpReceiveResultSystem.Net.Sockets.UdpReceiveResult11927         public UdpReceiveResult(byte[] buffer, System.Net.IPEndPoint remoteEndPoint) { throw null;}
11928         public byte[] Buffer { get { throw null; } }
11929         public System.Net.IPEndPoint RemoteEndPoint { get { throw null; } }
EqualsSystem.Net.Sockets.UdpReceiveResult11930         public bool Equals(System.Net.Sockets.UdpReceiveResult other) { throw null; }
EqualsSystem.Net.Sockets.UdpReceiveResult11931         public override bool Equals(object obj) { throw null; }
GetHashCodeSystem.Net.Sockets.UdpReceiveResult11932         public override int GetHashCode() { throw null; }
operator ==System.Net.Sockets.UdpReceiveResult11933         public static bool operator ==(System.Net.Sockets.UdpReceiveResult left, System.Net.Sockets.UdpReceiveResult right) { throw null; }
operator !=System.Net.Sockets.UdpReceiveResult11934         public static bool operator !=(System.Net.Sockets.UdpReceiveResult left, System.Net.Sockets.UdpReceiveResult right) { throw null; }
11935     }
11936 }
11937 namespace System.Net.WebSockets
11938 {
11939     public sealed partial class ClientWebSocket : System.Net.WebSockets.WebSocket
11940     {
ClientWebSocket()11941         public ClientWebSocket() { }
11942         public override System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { get { throw null; } }
11943         public override string CloseStatusDescription { get { throw null; } }
11944         public System.Net.WebSockets.ClientWebSocketOptions Options { get { throw null; } }
11945         public override System.Net.WebSockets.WebSocketState State { get { throw null; } }
11946         public override string SubProtocol { get { throw null; } }
Abort()11947         public override void Abort() { }
CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)11948         public override System.Threading.Tasks.Task CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken) { throw null; }
CloseOutputAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)11949         public override System.Threading.Tasks.Task CloseOutputAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken) { throw null; }
ConnectAsync(System.Uri uri, System.Threading.CancellationToken cancellationToken)11950         public System.Threading.Tasks.Task ConnectAsync(System.Uri uri, System.Threading.CancellationToken cancellationToken) { throw null; }
Dispose()11951         public override void Dispose() { }
ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken)11952         public override System.Threading.Tasks.Task<System.Net.WebSockets.WebSocketReceiveResult> ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken)11953         public override System.Threading.Tasks.ValueTask<System.Net.WebSockets.ValueWebSocketReceiveResult> ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)11954         public override System.Threading.Tasks.Task SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)11955         public override System.Threading.Tasks.Task SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
11956     }
11957     public sealed partial class ClientWebSocketOptions
11958     {
ClientWebSocketOptions()11959         internal ClientWebSocketOptions() { }
11960         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
11961         public System.Net.CookieContainer Cookies { get { throw null; } set { } }
11962         public System.Net.ICredentials Credentials { get { throw null; } set { } }
11963         public System.TimeSpan KeepAliveInterval { get { throw null; } set { } }
11964         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
11965         public bool UseDefaultCredentials { get { throw null; } set { } }
AddSubProtocol(string subProtocol)11966         public void AddSubProtocol(string subProtocol) { }
SetBuffer(int receiveBufferSize, int sendBufferSize)11967         public void SetBuffer(int receiveBufferSize, int sendBufferSize) { }
SetBuffer(int receiveBufferSize, int sendBufferSize, System.ArraySegment<byte> buffer)11968         public void SetBuffer(int receiveBufferSize, int sendBufferSize, System.ArraySegment<byte> buffer) { }
SetRequestHeader(string headerName, string headerValue)11969         public void SetRequestHeader(string headerName, string headerValue) { }
11970     }
11971     public partial class HttpListenerWebSocketContext : System.Net.WebSockets.WebSocketContext
11972     {
HttpListenerWebSocketContext()11973         internal HttpListenerWebSocketContext() { }
11974         public override System.Net.CookieCollection CookieCollection { get { throw null; } }
11975         public override System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
11976         public override bool IsAuthenticated { get { throw null; } }
11977         public override bool IsLocal { get { throw null; } }
11978         public override bool IsSecureConnection { get { throw null; } }
11979         public override string Origin { get { throw null; } }
11980         public override System.Uri RequestUri { get { throw null; } }
11981         public override string SecWebSocketKey { get { throw null; } }
11982         public override System.Collections.Generic.IEnumerable<string> SecWebSocketProtocols { get { throw null; } }
11983         public override string SecWebSocketVersion { get { throw null; } }
11984         public override System.Security.Principal.IPrincipal User { get { throw null; } }
11985         public override System.Net.WebSockets.WebSocket WebSocket { get { throw null; } }
11986     }
11987     [System.Runtime.CompilerServices.IsReadOnlyAttribute]
11988     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11989     public partial struct ValueWebSocketReceiveResult
11990     {
ValueWebSocketReceiveResultSystem.Net.WebSockets.ValueWebSocketReceiveResult11991         public ValueWebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage) { throw null;}
11992         public int Count { get { throw null; } }
11993         public bool EndOfMessage { get { throw null; } }
11994         public System.Net.WebSockets.WebSocketMessageType MessageType { get { throw null; } }
11995     }
11996     public abstract partial class WebSocket : System.IDisposable
11997     {
WebSocket()11998         protected WebSocket() { }
11999         public abstract System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { get; }
12000         public abstract string CloseStatusDescription { get; }
12001         public static System.TimeSpan DefaultKeepAliveInterval { get { throw null; } }
12002         public abstract System.Net.WebSockets.WebSocketState State { get; }
12003         public abstract string SubProtocol { get; }
Abort()12004         public abstract void Abort();
CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)12005         public abstract System.Threading.Tasks.Task CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken);
CloseOutputAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)12006         public abstract System.Threading.Tasks.Task CloseOutputAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken);
CreateClientBuffer(int receiveBufferSize, int sendBufferSize)12007         public static System.ArraySegment<byte> CreateClientBuffer(int receiveBufferSize, int sendBufferSize) { throw null; }
12008         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
CreateClientWebSocket(System.IO.Stream innerStream, string subProtocol, int receiveBufferSize, int sendBufferSize, System.TimeSpan keepAliveInterval, bool useZeroMaskingKey, System.ArraySegment<byte> internalBuffer)12009         public static System.Net.WebSockets.WebSocket CreateClientWebSocket(System.IO.Stream innerStream, string subProtocol, int receiveBufferSize, int sendBufferSize, System.TimeSpan keepAliveInterval, bool useZeroMaskingKey, System.ArraySegment<byte> internalBuffer) { throw null; }
CreateFromStream(System.IO.Stream stream, bool isServer, string subProtocol, System.TimeSpan keepAliveInterval, System.Memory<byte> buffer=default(System.Memory<byte>))12010         public static System.Net.WebSockets.WebSocket CreateFromStream(System.IO.Stream stream, bool isServer, string subProtocol, System.TimeSpan keepAliveInterval, System.Memory<byte> buffer=default(System.Memory<byte>)) { throw null; }
CreateServerBuffer(int receiveBufferSize)12011         public static System.ArraySegment<byte> CreateServerBuffer(int receiveBufferSize) { throw null; }
Dispose()12012         public abstract void Dispose();
12013         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
12014         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.")]
IsApplicationTargeting45()12015         public static bool IsApplicationTargeting45() { throw null; }
IsStateTerminal(System.Net.WebSockets.WebSocketState state)12016         protected static bool IsStateTerminal(System.Net.WebSockets.WebSocketState state) { throw null; }
ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken)12017         public abstract System.Threading.Tasks.Task<System.Net.WebSockets.WebSocketReceiveResult> ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken);
ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken)12018         public virtual System.Threading.Tasks.ValueTask<System.Net.WebSockets.ValueWebSocketReceiveResult> ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
12019         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
RegisterPrefixes()12020         public static void RegisterPrefixes() { }
SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)12021         public abstract System.Threading.Tasks.Task SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken);
SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)12022         public virtual System.Threading.Tasks.Task SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
ThrowOnInvalidState(System.Net.WebSockets.WebSocketState state, params System.Net.WebSockets.WebSocketState[] validStates)12023         protected static void ThrowOnInvalidState(System.Net.WebSockets.WebSocketState state, params System.Net.WebSockets.WebSocketState[] validStates) { }
12024     }
12025     public enum WebSocketCloseStatus
12026     {
12027         Empty = 1005,
12028         EndpointUnavailable = 1001,
12029         InternalServerError = 1011,
12030         InvalidMessageType = 1003,
12031         InvalidPayloadData = 1007,
12032         MandatoryExtension = 1010,
12033         MessageTooBig = 1009,
12034         NormalClosure = 1000,
12035         PolicyViolation = 1008,
12036         ProtocolError = 1002,
12037     }
12038     public abstract partial class WebSocketContext
12039     {
WebSocketContext()12040         protected WebSocketContext() { }
12041         public abstract System.Net.CookieCollection CookieCollection { get; }
12042         public abstract System.Collections.Specialized.NameValueCollection Headers { get; }
12043         public abstract bool IsAuthenticated { get; }
12044         public abstract bool IsLocal { get; }
12045         public abstract bool IsSecureConnection { get; }
12046         public abstract string Origin { get; }
12047         public abstract System.Uri RequestUri { get; }
12048         public abstract string SecWebSocketKey { get; }
12049         public abstract System.Collections.Generic.IEnumerable<string> SecWebSocketProtocols { get; }
12050         public abstract string SecWebSocketVersion { get; }
12051         public abstract System.Security.Principal.IPrincipal User { get; }
12052         public abstract System.Net.WebSockets.WebSocket WebSocket { get; }
12053     }
12054     public enum WebSocketError
12055     {
12056         ConnectionClosedPrematurely = 8,
12057         Faulted = 2,
12058         HeaderError = 7,
12059         InvalidMessageType = 1,
12060         InvalidState = 9,
12061         NativeError = 3,
12062         NotAWebSocket = 4,
12063         Success = 0,
12064         UnsupportedProtocol = 6,
12065         UnsupportedVersion = 5,
12066     }
12067     [System.SerializableAttribute]
12068     public sealed partial class WebSocketException : System.ComponentModel.Win32Exception
12069     {
WebSocketException()12070         public WebSocketException() { }
WebSocketException(int nativeError)12071         public WebSocketException(int nativeError) { }
WebSocketException(int nativeError, System.Exception innerException)12072         public WebSocketException(int nativeError, System.Exception innerException) { }
WebSocketException(int nativeError, string message)12073         public WebSocketException(int nativeError, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error)12074         public WebSocketException(System.Net.WebSockets.WebSocketError error) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, System.Exception innerException)12075         public WebSocketException(System.Net.WebSockets.WebSocketError error, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError)12076         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, System.Exception innerException)12077         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message)12078         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, System.Exception innerException)12079         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, string message)12080         public WebSocketException(System.Net.WebSockets.WebSocketError error, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, string message, System.Exception innerException)12081         public WebSocketException(System.Net.WebSockets.WebSocketError error, string message, System.Exception innerException) { }
WebSocketException(string message)12082         public WebSocketException(string message) { }
WebSocketException(string message, System.Exception innerException)12083         public WebSocketException(string message, System.Exception innerException) { }
12084         public override int ErrorCode { get { throw null; } }
12085         public System.Net.WebSockets.WebSocketError WebSocketErrorCode { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12086         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
12087     }
12088     public enum WebSocketMessageType
12089     {
12090         Binary = 1,
12091         Close = 2,
12092         Text = 0,
12093     }
12094     public partial class WebSocketReceiveResult
12095     {
WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage)12096         public WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage) { }
WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> closeStatus, string closeStatusDescription)12097         public WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> closeStatus, string closeStatusDescription) { }
12098         public System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12099         public string CloseStatusDescription { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12100         public int Count { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12101         public bool EndOfMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12102         public System.Net.WebSockets.WebSocketMessageType MessageType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12103     }
12104     public enum WebSocketState
12105     {
12106         Aborted = 6,
12107         Closed = 5,
12108         CloseReceived = 4,
12109         CloseSent = 3,
12110         Connecting = 1,
12111         None = 0,
12112         Open = 2,
12113     }
12114 }
12115 namespace System.Runtime.InteropServices
12116 {
12117     [System.AttributeUsageAttribute((System.AttributeTargets)(2048))]
12118     public sealed partial class DefaultParameterValueAttribute : System.Attribute
12119     {
DefaultParameterValueAttribute(object value)12120         public DefaultParameterValueAttribute(object value) { }
12121         public object Value { get { throw null; } }
12122     }
12123     public sealed partial class HandleCollector
12124     {
HandleCollector(string name, int initialThreshold)12125         public HandleCollector(string name, int initialThreshold) { }
HandleCollector(string name, int initialThreshold, int maximumThreshold)12126         public HandleCollector(string name, int initialThreshold, int maximumThreshold) { }
12127         public int Count { get { throw null; } }
12128         public int InitialThreshold { get { throw null; } }
12129         public int MaximumThreshold { get { throw null; } }
12130         public string Name { get { throw null; } }
Add()12131         public void Add() { }
Remove()12132         public void Remove() { }
12133     }
12134     [System.MonoLimitationAttribute("The runtime does nothing special apart from what it already does with marshal-by-ref objects")]
12135     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
12136     public partial class StandardOleMarshalObject : System.MarshalByRefObject
12137     {
StandardOleMarshalObject()12138         protected StandardOleMarshalObject() { }
12139     }
12140 }
12141 namespace System.Runtime.InteropServices.ComTypes
12142 {
12143     [System.FlagsAttribute]
12144     public enum ADVF
12145     {
12146         ADVFCACHE_FORCEBUILTIN = 16,
12147         ADVFCACHE_NOHANDLER = 8,
12148         ADVFCACHE_ONSAVE = 32,
12149         ADVF_DATAONSTOP = 64,
12150         ADVF_NODATA = 1,
12151         ADVF_ONLYONCE = 4,
12152         ADVF_PRIMEFIRST = 2,
12153     }
12154     public enum DATADIR
12155     {
12156         DATADIR_GET = 1,
12157         DATADIR_SET = 2,
12158     }
12159     [System.FlagsAttribute]
12160     public enum DVASPECT
12161     {
12162         DVASPECT_CONTENT = 1,
12163         DVASPECT_DOCPRINT = 8,
12164         DVASPECT_ICON = 4,
12165         DVASPECT_THUMBNAIL = 2,
12166     }
12167     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12168     public partial struct FORMATETC
12169     {
12170         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U2)]
12171         public short cfFormat;
12172         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U4)]
12173         public System.Runtime.InteropServices.ComTypes.DVASPECT dwAspect;
12174         public int lindex;
12175         public System.IntPtr ptd;
12176         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U4)]
12177         public System.Runtime.InteropServices.ComTypes.TYMED tymed;
12178     }
12179     [System.Runtime.InteropServices.GuidAttribute("0000010F-0000-0000-C000-000000000046")]
12180     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12181     public partial interface IAdviseSink
12182     {
OnClose()12183         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnClose();
OnDataChange([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format, [System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.STGMEDIUM stgmedium)12184         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnDataChange([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format, [System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.STGMEDIUM stgmedium);
OnRename(System.Runtime.InteropServices.ComTypes.IMoniker moniker)12185         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnRename(System.Runtime.InteropServices.ComTypes.IMoniker moniker);
OnSave()12186         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnSave();
OnViewChange(int aspect, int index)12187         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnViewChange(int aspect, int index);
12188     }
12189     [System.Runtime.InteropServices.GuidAttribute("0000010e-0000-0000-C000-000000000046")]
12190     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12191     public partial interface IDataObject
12192     {
DAdvise([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC pFormatetc, System.Runtime.InteropServices.ComTypes.ADVF advf, System.Runtime.InteropServices.ComTypes.IAdviseSink adviseSink, out int connection)12193         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int DAdvise([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC pFormatetc, System.Runtime.InteropServices.ComTypes.ADVF advf, System.Runtime.InteropServices.ComTypes.IAdviseSink adviseSink, out int connection);
DUnadvise(int connection)12194         void DUnadvise(int connection);
EnumDAdvise(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA enumAdvise)12195         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int EnumDAdvise(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA enumAdvise);
EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR direction)12196         System.Runtime.InteropServices.ComTypes.IEnumFORMATETC EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR direction);
GetCanonicalFormatEtc([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC formatIn, out System.Runtime.InteropServices.ComTypes.FORMATETC formatOut)12197         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int GetCanonicalFormatEtc([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC formatIn, out System.Runtime.InteropServices.ComTypes.FORMATETC formatOut);
GetData([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format, out System.Runtime.InteropServices.ComTypes.STGMEDIUM medium)12198         void GetData([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format, out System.Runtime.InteropServices.ComTypes.STGMEDIUM medium);
GetDataHere([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format, ref System.Runtime.InteropServices.ComTypes.STGMEDIUM medium)12199         void GetDataHere([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format, ref System.Runtime.InteropServices.ComTypes.STGMEDIUM medium);
QueryGetData([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format)12200         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int QueryGetData([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC format);
SetData([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC formatIn, [System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.STGMEDIUM medium, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool release)12201         void SetData([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.FORMATETC formatIn, [System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.STGMEDIUM medium, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool release);
12202     }
12203     [System.Runtime.InteropServices.GuidAttribute("00000103-0000-0000-C000-000000000046")]
12204     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12205     public partial interface IEnumFORMATETC
12206     {
Clone(out System.Runtime.InteropServices.ComTypes.IEnumFORMATETC newEnum)12207         void Clone(out System.Runtime.InteropServices.ComTypes.IEnumFORMATETC newEnum);
Next(int celt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.ComTypes.FORMATETC[] rgelt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pceltFetched)12208         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Next(int celt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.ComTypes.FORMATETC[] rgelt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pceltFetched);
Reset()12209         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset();
Skip(int celt)12210         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt);
12211     }
12212     [System.Runtime.InteropServices.GuidAttribute("00000103-0000-0000-C000-000000000046")]
12213     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12214     public partial interface IEnumSTATDATA
12215     {
Clone(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA newEnum)12216         void Clone(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA newEnum);
Next(int celt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.ComTypes.STATDATA[] rgelt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pceltFetched)12217         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Next(int celt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.ComTypes.STATDATA[] rgelt, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pceltFetched);
Reset()12218         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset();
Skip(int celt)12219         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt);
12220     }
12221     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12222     public partial struct STATDATA
12223     {
12224         public System.Runtime.InteropServices.ComTypes.ADVF advf;
12225         public System.Runtime.InteropServices.ComTypes.IAdviseSink advSink;
12226         public int connection;
12227         public System.Runtime.InteropServices.ComTypes.FORMATETC formatetc;
12228     }
12229     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12230     public partial struct STGMEDIUM
12231     {
12232         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]
12233         public object pUnkForRelease;
12234         public System.Runtime.InteropServices.ComTypes.TYMED tymed;
12235         public System.IntPtr unionmember;
12236     }
12237     [System.FlagsAttribute]
12238     public enum TYMED
12239     {
12240         TYMED_ENHMF = 64,
12241         TYMED_FILE = 2,
12242         TYMED_GDI = 16,
12243         TYMED_HGLOBAL = 1,
12244         TYMED_ISTORAGE = 8,
12245         TYMED_ISTREAM = 4,
12246         TYMED_MFPICT = 32,
12247         TYMED_NULL = 0,
12248     }
12249 }
12250 namespace System.Runtime.Versioning
12251 {
12252     [System.SerializableAttribute]
12253     public sealed partial class FrameworkName : System.IEquatable<System.Runtime.Versioning.FrameworkName>
12254     {
FrameworkName(string frameworkName)12255         public FrameworkName(string frameworkName) { }
FrameworkName(string identifier, System.Version version)12256         public FrameworkName(string identifier, System.Version version) { }
FrameworkName(string identifier, System.Version version, string profile)12257         public FrameworkName(string identifier, System.Version version, string profile) { }
12258         public string FullName { get { throw null; } }
12259         public string Identifier { get { throw null; } }
12260         public string Profile { get { throw null; } }
12261         public System.Version Version { get { throw null; } }
Equals(object obj)12262         public override bool Equals(object obj) { throw null; }
Equals(System.Runtime.Versioning.FrameworkName other)12263         public bool Equals(System.Runtime.Versioning.FrameworkName other) { throw null; }
GetHashCode()12264         public override int GetHashCode() { throw null; }
operator ==(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right)12265         public static bool operator ==(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right) { throw null; }
operator !=(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right)12266         public static bool operator !=(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right) { throw null; }
ToString()12267         public override string ToString() { throw null; }
12268     }
12269 }
12270 namespace System.Security.AccessControl
12271 {
12272     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12273     public sealed partial class SemaphoreAccessRule : System.Security.AccessControl.AccessRule
12274     {
SemaphoreAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AccessControlType type)12275         public SemaphoreAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AccessControlType type) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AccessControlType)) { }
SemaphoreAccessRule(string identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AccessControlType type)12276         public SemaphoreAccessRule(string identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AccessControlType type) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AccessControlType)) { }
12277         public System.Security.AccessControl.SemaphoreRights SemaphoreRights { get { throw null; } }
12278     }
12279     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12280     public sealed partial class SemaphoreAuditRule : System.Security.AccessControl.AuditRule
12281     {
SemaphoreAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AuditFlags flags)12282         public SemaphoreAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AuditFlags flags) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AuditFlags)) { }
12283         public System.Security.AccessControl.SemaphoreRights SemaphoreRights { get { throw null; } }
12284     }
12285     [System.FlagsAttribute]
12286     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12287     public enum SemaphoreRights
12288     {
12289         ChangePermissions = 262144,
12290         Delete = 65536,
12291         FullControl = 2031619,
12292         Modify = 2,
12293         ReadPermissions = 131072,
12294         Synchronize = 1048576,
12295         TakeOwnership = 524288,
12296     }
12297     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12298     public sealed partial class SemaphoreSecurity : System.Security.AccessControl.NativeObjectSecurity
12299     {
SemaphoreSecurity()12300         public SemaphoreSecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { }
SemaphoreSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections)12301         public SemaphoreSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { }
12302         public override System.Type AccessRightType { get { throw null; } }
12303         public override System.Type AccessRuleType { get { throw null; } }
12304         public override System.Type AuditRuleType { get { throw null; } }
AccessRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type)12305         public override System.Security.AccessControl.AccessRule AccessRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type) { throw null; }
AddAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)12306         public void AddAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
AddAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)12307         public void AddAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { }
AuditRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AuditFlags flags)12308         public override System.Security.AccessControl.AuditRule AuditRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AuditFlags flags) { throw null; }
RemoveAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)12309         public bool RemoveAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { throw null; }
RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule rule)12310         public void RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule rule) { }
RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule rule)12311         public void RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule rule) { }
RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)12312         public bool RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { throw null; }
RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule rule)12313         public void RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule rule) { }
RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule rule)12314         public void RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule rule) { }
ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)12315         public void ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)12316         public void SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)12317         public void SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { }
12318     }
12319 }
12320 namespace System.Security.Authentication
12321 {
12322     [System.SerializableAttribute]
12323     public partial class AuthenticationException : System.SystemException
12324     {
AuthenticationException()12325         public AuthenticationException() { }
AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)12326         protected AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
AuthenticationException(string message)12327         public AuthenticationException(string message) { }
AuthenticationException(string message, System.Exception innerException)12328         public AuthenticationException(string message, System.Exception innerException) { }
12329     }
12330     public enum CipherAlgorithmType
12331     {
12332         Aes = 26129,
12333         Aes128 = 26126,
12334         Aes192 = 26127,
12335         Aes256 = 26128,
12336         Des = 26113,
12337         None = 0,
12338         Null = 24576,
12339         Rc2 = 26114,
12340         Rc4 = 26625,
12341         TripleDes = 26115,
12342     }
12343     public enum ExchangeAlgorithmType
12344     {
12345         DiffieHellman = 43522,
12346         None = 0,
12347         RsaKeyX = 41984,
12348         RsaSign = 9216,
12349     }
12350     public enum HashAlgorithmType
12351     {
12352         Md5 = 32771,
12353         None = 0,
12354         Sha1 = 32772,
12355     }
12356     [System.SerializableAttribute]
12357     public partial class InvalidCredentialException : System.Security.Authentication.AuthenticationException
12358     {
InvalidCredentialException()12359         public InvalidCredentialException() { }
InvalidCredentialException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)12360         protected InvalidCredentialException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
InvalidCredentialException(string message)12361         public InvalidCredentialException(string message) { }
InvalidCredentialException(string message, System.Exception innerException)12362         public InvalidCredentialException(string message, System.Exception innerException) { }
12363     }
12364     [System.FlagsAttribute]
12365     public enum SslProtocols
12366     {
12367         Default = 240,
12368         None = 0,
12369         Ssl2 = 12,
12370         Ssl3 = 48,
12371         Tls = 192,
12372         [System.MonoTODOAttribute("unsupported")]
12373         Tls11 = 768,
12374         [System.MonoTODOAttribute("unsupported")]
12375         Tls12 = 3072,
12376     }
12377 }
12378 namespace System.Security.Authentication.ExtendedProtection
12379 {
12380     public abstract partial class ChannelBinding : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
12381     {
ChannelBinding()12382         protected ChannelBinding() : base (default(bool)) { }
ChannelBinding(bool ownsHandle)12383         protected ChannelBinding(bool ownsHandle) : base (default(bool)) { }
12384         public abstract int Size { get; }
12385     }
12386     public enum ChannelBindingKind
12387     {
12388         Endpoint = 26,
12389         Unique = 25,
12390         Unknown = 0,
12391     }
12392     [System.ComponentModel.TypeConverterAttribute(typeof(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicyTypeConverter))]
12393     [System.MonoTODOAttribute]
12394     [System.SerializableAttribute]
12395     public partial class ExtendedProtectionPolicy : System.Runtime.Serialization.ISerializable
12396     {
ExtendedProtectionPolicy(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12397         protected ExtendedProtectionPolicy(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
12398         [System.MonoTODOAttribute("Not implemented.")]
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement)12399         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement) { }
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ChannelBinding customChannelBinding)12400         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ChannelBinding customChannelBinding) { }
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ProtectionScenario protectionScenario, System.Collections.ICollection customServiceNames)12401         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ProtectionScenario protectionScenario, System.Collections.ICollection customServiceNames) { }
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ProtectionScenario protectionScenario, System.Security.Authentication.ExtendedProtection.ServiceNameCollection customServiceNames)12402         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ProtectionScenario protectionScenario, System.Security.Authentication.ExtendedProtection.ServiceNameCollection customServiceNames) { }
12403         public System.Security.Authentication.ExtendedProtection.ChannelBinding CustomChannelBinding { get { throw null; } }
12404         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { throw null; } }
12405         public static bool OSSupportsExtendedProtection { get { throw null; } }
12406         public System.Security.Authentication.ExtendedProtection.PolicyEnforcement PolicyEnforcement { get { throw null; } }
12407         public System.Security.Authentication.ExtendedProtection.ProtectionScenario ProtectionScenario { get { throw null; } }
12408         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12409         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
12410         [System.MonoTODOAttribute]
ToString()12411         public override string ToString() { throw null; }
12412     }
12413     [System.MonoTODOAttribute]
12414     public partial class ExtendedProtectionPolicyTypeConverter : System.ComponentModel.TypeConverter
12415     {
ExtendedProtectionPolicyTypeConverter()12416         public ExtendedProtectionPolicyTypeConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)12417         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)12418         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
12419     }
12420     public enum PolicyEnforcement
12421     {
12422         Always = 2,
12423         Never = 0,
12424         WhenSupported = 1,
12425     }
12426     public enum ProtectionScenario
12427     {
12428         TransportSelected = 0,
12429         TrustedProxy = 1,
12430     }
12431     [System.SerializableAttribute]
12432     public partial class ServiceNameCollection : System.Collections.ReadOnlyCollectionBase
12433     {
ServiceNameCollection(System.Collections.ICollection items)12434         public ServiceNameCollection(System.Collections.ICollection items) { }
Contains(string searchServiceName)12435         public bool Contains(string searchServiceName) { throw null; }
Merge(System.Collections.IEnumerable serviceNames)12436         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection Merge(System.Collections.IEnumerable serviceNames) { throw null; }
Merge(string serviceName)12437         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection Merge(string serviceName) { throw null; }
12438     }
12439     public partial class TokenBinding
12440     {
TokenBinding()12441         internal TokenBinding() { }
12442         public System.Security.Authentication.ExtendedProtection.TokenBindingType BindingType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetRawTokenBindingId()12443         public byte[] GetRawTokenBindingId() { throw null; }
12444     }
12445     public enum TokenBindingType
12446     {
12447         Provided = 0,
12448         Referred = 1,
12449     }
12450 }
12451 namespace System.Security.Authentication.ExtendedProtection.Configuration
12452 {
12453     [System.MonoTODOAttribute]
12454     public sealed partial class ExtendedProtectionPolicyElement : System.Configuration.ConfigurationElement
12455     {
ExtendedProtectionPolicyElement()12456         public ExtendedProtectionPolicyElement() { }
12457         [System.Configuration.ConfigurationPropertyAttribute("customServiceNames")]
12458         public System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection CustomServiceNames { get { throw null; } }
12459         [System.Configuration.ConfigurationPropertyAttribute("policyEnforcement")]
12460         public System.Security.Authentication.ExtendedProtection.PolicyEnforcement PolicyEnforcement { get { throw null; } set { } }
12461         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
12462         [System.Configuration.ConfigurationPropertyAttribute("protectionScenario", DefaultValue=(System.Security.Authentication.ExtendedProtection.ProtectionScenario)(0))]
12463         public System.Security.Authentication.ExtendedProtection.ProtectionScenario ProtectionScenario { get { throw null; } set { } }
BuildPolicy()12464         public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy BuildPolicy() { throw null; }
12465     }
12466     public sealed partial class ServiceNameElement : System.Configuration.ConfigurationElement
12467     {
ServiceNameElement()12468         public ServiceNameElement() { }
12469         [System.Configuration.ConfigurationPropertyAttribute("name")]
12470         public string Name { get { throw null; } set { } }
12471         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
12472     }
12473     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement))]
12474     public sealed partial class ServiceNameElementCollection : System.Configuration.ConfigurationElementCollection
12475     {
ServiceNameElementCollection()12476         public ServiceNameElementCollection() { }
12477         public System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement this[int index] { get { throw null; } }
12478         public new System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement this[string name] { get { throw null; } }
Add(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element)12479         public void Add(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element) { }
Clear()12480         public void Clear() { }
CreateNewElement()12481         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)12482         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element)12483         public int IndexOf(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element) { throw null; }
Remove(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element)12484         public void Remove(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element) { }
Remove(string name)12485         public void Remove(string name) { }
RemoveAt(int index)12486         public void RemoveAt(int index) { }
12487     }
12488 }
12489 namespace System.Security.Cryptography
12490 {
12491     public partial class AsnEncodedData
12492     {
AsnEncodedData()12493         protected AsnEncodedData() { }
AsnEncodedData(byte[] rawData)12494         public AsnEncodedData(byte[] rawData) { }
AsnEncodedData(System.Security.Cryptography.AsnEncodedData asnEncodedData)12495         public AsnEncodedData(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
AsnEncodedData(System.Security.Cryptography.Oid oid, byte[] rawData)12496         public AsnEncodedData(System.Security.Cryptography.Oid oid, byte[] rawData) { }
AsnEncodedData(string oid, byte[] rawData)12497         public AsnEncodedData(string oid, byte[] rawData) { }
12498         public System.Security.Cryptography.Oid Oid { get { throw null; } set { } }
12499         public byte[] RawData { get { throw null; } set { } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12500         public virtual void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
Format(bool multiLine)12501         public virtual string Format(bool multiLine) { throw null; }
12502     }
12503     public sealed partial class AsnEncodedDataCollection : System.Collections.ICollection, System.Collections.IEnumerable
12504     {
AsnEncodedDataCollection()12505         public AsnEncodedDataCollection() { }
AsnEncodedDataCollection(System.Security.Cryptography.AsnEncodedData asnEncodedData)12506         public AsnEncodedDataCollection(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12507         public int Count { get { throw null; } }
12508         public bool IsSynchronized { get { throw null; } }
12509         public System.Security.Cryptography.AsnEncodedData this[int index] { get { throw null; } }
12510         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.AsnEncodedData asnEncodedData)12511         public int Add(System.Security.Cryptography.AsnEncodedData asnEncodedData) { throw null; }
CopyTo(System.Security.Cryptography.AsnEncodedData[] array, int index)12512         public void CopyTo(System.Security.Cryptography.AsnEncodedData[] array, int index) { }
GetEnumerator()12513         public System.Security.Cryptography.AsnEncodedDataEnumerator GetEnumerator() { throw null; }
Remove(System.Security.Cryptography.AsnEncodedData asnEncodedData)12514         public void Remove(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)12515         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()12516         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
12517     }
12518     public sealed partial class AsnEncodedDataEnumerator : System.Collections.IEnumerator
12519     {
AsnEncodedDataEnumerator()12520         internal AsnEncodedDataEnumerator() { }
12521         public System.Security.Cryptography.AsnEncodedData Current { get { throw null; } }
12522         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12523         public bool MoveNext() { throw null; }
Reset()12524         public void Reset() { }
12525     }
12526     public sealed partial class Oid
12527     {
Oid()12528         public Oid() { }
Oid(System.Security.Cryptography.Oid oid)12529         public Oid(System.Security.Cryptography.Oid oid) { }
Oid(string oid)12530         public Oid(string oid) { }
Oid(string value, string friendlyName)12531         public Oid(string value, string friendlyName) { }
12532         public string FriendlyName { get { throw null; } set { } }
12533         public string Value { get { throw null; } set { } }
FromFriendlyName(string friendlyName, System.Security.Cryptography.OidGroup group)12534         public static System.Security.Cryptography.Oid FromFriendlyName(string friendlyName, System.Security.Cryptography.OidGroup group) { throw null; }
FromOidValue(string oidValue, System.Security.Cryptography.OidGroup group)12535         public static System.Security.Cryptography.Oid FromOidValue(string oidValue, System.Security.Cryptography.OidGroup group) { throw null; }
12536     }
12537     public sealed partial class OidCollection : System.Collections.ICollection, System.Collections.IEnumerable
12538     {
OidCollection()12539         public OidCollection() { }
12540         public int Count { get { throw null; } }
12541         public bool IsSynchronized { get { throw null; } }
12542         public System.Security.Cryptography.Oid this[int index] { get { throw null; } }
12543         public System.Security.Cryptography.Oid this[string oid] { get { throw null; } }
12544         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.Oid oid)12545         public int Add(System.Security.Cryptography.Oid oid) { throw null; }
CopyTo(System.Security.Cryptography.Oid[] array, int index)12546         public void CopyTo(System.Security.Cryptography.Oid[] array, int index) { }
GetEnumerator()12547         public System.Security.Cryptography.OidEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)12548         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()12549         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
12550     }
12551     public sealed partial class OidEnumerator : System.Collections.IEnumerator
12552     {
OidEnumerator()12553         internal OidEnumerator() { }
12554         public System.Security.Cryptography.Oid Current { get { throw null; } }
12555         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12556         public bool MoveNext() { throw null; }
Reset()12557         public void Reset() { }
12558     }
12559     public enum OidGroup
12560     {
12561         All = 0,
12562         Attribute = 5,
12563         EncryptionAlgorithm = 2,
12564         EnhancedKeyUsage = 7,
12565         ExtensionOrAttribute = 6,
12566         HashAlgorithm = 1,
12567         KeyDerivationFunction = 10,
12568         Policy = 8,
12569         PublicKeyAlgorithm = 3,
12570         SignatureAlgorithm = 4,
12571         Template = 9,
12572     }
12573 }
12574 namespace System.Security.Cryptography.X509Certificates
12575 {
12576     [System.FlagsAttribute]
12577     public enum OpenFlags
12578     {
12579         IncludeArchived = 8,
12580         MaxAllowed = 2,
12581         OpenExistingOnly = 4,
12582         ReadOnly = 0,
12583         ReadWrite = 1,
12584     }
12585     public sealed partial class PublicKey
12586     {
PublicKey(System.Security.Cryptography.Oid oid, System.Security.Cryptography.AsnEncodedData parameters, System.Security.Cryptography.AsnEncodedData keyValue)12587         public PublicKey(System.Security.Cryptography.Oid oid, System.Security.Cryptography.AsnEncodedData parameters, System.Security.Cryptography.AsnEncodedData keyValue) { }
12588         public System.Security.Cryptography.AsnEncodedData EncodedKeyValue { get { throw null; } }
12589         public System.Security.Cryptography.AsnEncodedData EncodedParameters { get { throw null; } }
12590         public System.Security.Cryptography.AsymmetricAlgorithm Key { get { throw null; } }
12591         public System.Security.Cryptography.Oid Oid { get { throw null; } }
12592     }
12593     public enum StoreLocation
12594     {
12595         CurrentUser = 1,
12596         LocalMachine = 2,
12597     }
12598     public enum StoreName
12599     {
12600         AddressBook = 1,
12601         AuthRoot = 2,
12602         CertificateAuthority = 3,
12603         Disallowed = 4,
12604         My = 5,
12605         Root = 6,
12606         TrustedPeople = 7,
12607         TrustedPublisher = 8,
12608     }
12609     [System.MonoTODOAttribute("Some X500DistinguishedNameFlags options aren't supported, like DoNotUsePlusSign, DoNotUseQuotes and ForceUTF8Encoding")]
12610     public sealed partial class X500DistinguishedName : System.Security.Cryptography.AsnEncodedData
12611     {
X500DistinguishedName(byte[] encodedDistinguishedName)12612         public X500DistinguishedName(byte[] encodedDistinguishedName) { }
X500DistinguishedName(System.Security.Cryptography.AsnEncodedData encodedDistinguishedName)12613         public X500DistinguishedName(System.Security.Cryptography.AsnEncodedData encodedDistinguishedName) { }
X500DistinguishedName(System.Security.Cryptography.X509Certificates.X500DistinguishedName distinguishedName)12614         public X500DistinguishedName(System.Security.Cryptography.X509Certificates.X500DistinguishedName distinguishedName) { }
X500DistinguishedName(string distinguishedName)12615         public X500DistinguishedName(string distinguishedName) { }
X500DistinguishedName(string distinguishedName, System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag)12616         public X500DistinguishedName(string distinguishedName, System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag) { }
12617         public string Name { get { throw null; } }
Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag)12618         public string Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag) { throw null; }
Format(bool multiLine)12619         public override string Format(bool multiLine) { throw null; }
12620     }
12621     [System.FlagsAttribute]
12622     public enum X500DistinguishedNameFlags
12623     {
12624         DoNotUsePlusSign = 32,
12625         DoNotUseQuotes = 64,
12626         ForceUTF8Encoding = 16384,
12627         None = 0,
12628         Reversed = 1,
12629         UseCommas = 128,
12630         UseNewLines = 256,
12631         UseSemicolons = 16,
12632         UseT61Encoding = 8192,
12633         UseUTF8Encoding = 4096,
12634     }
12635     public sealed partial class X509BasicConstraintsExtension : System.Security.Cryptography.X509Certificates.X509Extension
12636     {
X509BasicConstraintsExtension()12637         public X509BasicConstraintsExtension() { }
X509BasicConstraintsExtension(bool certificateAuthority, bool hasPathLengthConstraint, int pathLengthConstraint, bool critical)12638         public X509BasicConstraintsExtension(bool certificateAuthority, bool hasPathLengthConstraint, int pathLengthConstraint, bool critical) { }
X509BasicConstraintsExtension(System.Security.Cryptography.AsnEncodedData encodedBasicConstraints, bool critical)12639         public X509BasicConstraintsExtension(System.Security.Cryptography.AsnEncodedData encodedBasicConstraints, bool critical) { }
12640         public bool CertificateAuthority { get { throw null; } }
12641         public bool HasPathLengthConstraint { get { throw null; } }
12642         public int PathLengthConstraint { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12643         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12644     }
12645     [System.SerializableAttribute]
12646     public partial class X509Certificate2 : System.Security.Cryptography.X509Certificates.X509Certificate
12647     {
X509Certificate2()12648         public X509Certificate2() { }
X509Certificate2(byte[] rawData)12649         public X509Certificate2(byte[] rawData) { }
X509Certificate2(byte[] rawData, System.Security.SecureString password)12650         public X509Certificate2(byte[] rawData, System.Security.SecureString password) { }
X509Certificate2(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12651         public X509Certificate2(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(byte[] rawData, string password)12652         public X509Certificate2(byte[] rawData, string password) { }
X509Certificate2(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12653         public X509Certificate2(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(System.IntPtr handle)12654         public X509Certificate2(System.IntPtr handle) { }
X509Certificate2(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12655         protected X509Certificate2(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
X509Certificate2(System.Security.Cryptography.X509Certificates.X509Certificate certificate)12656         public X509Certificate2(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { }
X509Certificate2(string fileName)12657         public X509Certificate2(string fileName) { }
X509Certificate2(string fileName, System.Security.SecureString password)12658         public X509Certificate2(string fileName, System.Security.SecureString password) { }
X509Certificate2(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12659         public X509Certificate2(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(string fileName, string password)12660         public X509Certificate2(string fileName, string password) { }
X509Certificate2(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12661         public X509Certificate2(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12662         public bool Archived { get { throw null; } set { } }
12663         public System.Security.Cryptography.X509Certificates.X509ExtensionCollection Extensions { get { throw null; } }
12664         public string FriendlyName { get { throw null; } set { } }
12665         public bool HasPrivateKey { get { throw null; } }
12666         public System.Security.Cryptography.X509Certificates.X500DistinguishedName IssuerName { get { throw null; } }
12667         public System.DateTime NotAfter { get { throw null; } }
12668         public System.DateTime NotBefore { get { throw null; } }
12669         public System.Security.Cryptography.AsymmetricAlgorithm PrivateKey { get { throw null; } set { } }
12670         public System.Security.Cryptography.X509Certificates.PublicKey PublicKey { get { throw null; } }
12671         public byte[] RawData { get { throw null; } }
12672         public string SerialNumber { get { throw null; } }
12673         public System.Security.Cryptography.Oid SignatureAlgorithm { get { throw null; } }
12674         public System.Security.Cryptography.X509Certificates.X500DistinguishedName SubjectName { get { throw null; } }
12675         public string Thumbprint { get { throw null; } }
12676         public int Version { get { throw null; } }
12677         [System.MonoTODOAttribute("X509ContentType.SerializedCert is not supported")]
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password)12678         public override byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password) { throw null; }
12679         [System.MonoTODOAttribute("Detection limited to Cert, Pfx, Pkcs12, Pkcs7 and Unknown")]
GetCertContentType(byte[] rawData)12680         public static System.Security.Cryptography.X509Certificates.X509ContentType GetCertContentType(byte[] rawData) { throw null; }
12681         [System.MonoTODOAttribute("Detection limited to Cert, Pfx, Pkcs12 and Unknown")]
GetCertContentType(string fileName)12682         public static System.Security.Cryptography.X509Certificates.X509ContentType GetCertContentType(string fileName) { throw null; }
12683         [System.MonoTODOAttribute("always return String.Empty for UpnName, DnsFromAlternativeName and UrlName")]
GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType nameType, bool forIssuer)12684         public string GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType nameType, bool forIssuer) { throw null; }
Import(byte[] rawData)12685         public override void Import(byte[] rawData) { }
12686         [System.MonoTODOAttribute("SecureString is incomplete")]
Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12687         public override void Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12688         [System.MonoTODOAttribute("missing KeyStorageFlags support")]
Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12689         public override void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Import(string fileName)12690         public override void Import(string fileName) { }
12691         [System.MonoTODOAttribute("SecureString is incomplete")]
Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12692         public override void Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12693         [System.MonoTODOAttribute("missing KeyStorageFlags support")]
Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12694         public override void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Reset()12695         public override void Reset() { }
ToString()12696         public override string ToString() { throw null; }
ToString(bool verbose)12697         public override string ToString(bool verbose) { throw null; }
12698         [System.MonoTODOAttribute("by default this depends on the incomplete X509Chain")]
Verify()12699         public bool Verify() { throw null; }
12700     }
12701     public partial class X509Certificate2Collection : System.Security.Cryptography.X509Certificates.X509CertificateCollection
12702     {
X509Certificate2Collection()12703         public X509Certificate2Collection() { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12704         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12705         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)12706         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
12707         public new System.Security.Cryptography.X509Certificates.X509Certificate2 this[int index] { get { throw null; } set { } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12708         public int Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
12709         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12710         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
12711         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)12712         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
Contains(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12713         public bool Contains(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
12714         [System.MonoTODOAttribute("only support X509ContentType.Cert")]
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType)12715         public byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType) { throw null; }
12716         [System.MonoTODOAttribute("only support X509ContentType.Cert")]
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password)12717         public byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password) { throw null; }
12718         [System.MonoTODOAttribute("Does not support X509FindType.FindByTemplateName, FindByApplicationPolicy and FindByCertificatePolicy")]
Find(System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue, bool validOnly)12719         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection Find(System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue, bool validOnly) { throw null; }
GetEnumerator()12720         public new System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator GetEnumerator() { throw null; }
12721         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(byte[] rawData)12722         public void Import(byte[] rawData) { }
12723         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12724         public void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12725         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(string fileName)12726         public void Import(string fileName) { }
12727         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12728         public void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12729         public void Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12730         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
12731         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12732         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
12733         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)12734         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
12735     }
12736     public sealed partial class X509Certificate2Enumerator : System.Collections.IEnumerator
12737     {
X509Certificate2Enumerator()12738         internal X509Certificate2Enumerator() { }
12739         public System.Security.Cryptography.X509Certificates.X509Certificate2 Current { get { throw null; } }
12740         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12741         public bool MoveNext() { throw null; }
Reset()12742         public void Reset() { }
System.Collections.IEnumerator.MoveNext()12743         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()12744         void System.Collections.IEnumerator.Reset() { }
12745     }
12746     [System.SerializableAttribute]
12747     public partial class X509CertificateCollection : System.Collections.CollectionBase
12748     {
X509CertificateCollection()12749         public X509CertificateCollection() { }
X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509CertificateCollection value)12750         public X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509CertificateCollection value) { }
X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509Certificate[] value)12751         public X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509Certificate[] value) { }
12752         public System.Security.Cryptography.X509Certificates.X509Certificate this[int index] { get { throw null; } set { } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate value)12753         public int Add(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection value)12754         public void AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection value) { }
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[] value)12755         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[] value) { }
Contains(System.Security.Cryptography.X509Certificates.X509Certificate value)12756         public bool Contains(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[] array, int index)12757         public void CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[] array, int index) { }
GetEnumerator()12758         public new System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator GetEnumerator() { throw null; }
GetHashCode()12759         public override int GetHashCode() { throw null; }
IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate value)12760         public int IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate value)12761         public void Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate value) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate value)12762         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate value) { }
12763         public partial class X509CertificateEnumerator : System.Collections.IEnumerator
12764         {
X509CertificateEnumerator(System.Security.Cryptography.X509Certificates.X509CertificateCollection mappings)12765             public X509CertificateEnumerator(System.Security.Cryptography.X509Certificates.X509CertificateCollection mappings) { }
12766             public System.Security.Cryptography.X509Certificates.X509Certificate Current { get { throw null; } }
12767             object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12768             public bool MoveNext() { throw null; }
Reset()12769             public void Reset() { }
System.Collections.IEnumerator.MoveNext()12770             bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()12771             void System.Collections.IEnumerator.Reset() { }
12772         }
12773     }
12774     public partial class X509Chain : System.IDisposable
12775     {
X509Chain()12776         public X509Chain() { }
X509Chain(bool useMachineContext)12777         public X509Chain(bool useMachineContext) { }
12778         [System.MonoTODOAttribute("Mono's X509Chain is fully managed. All handles are invalid.")]
X509Chain(System.IntPtr chainContext)12779         public X509Chain(System.IntPtr chainContext) { }
12780         [System.MonoTODOAttribute("Mono's X509Chain is fully managed. Always returns IntPtr.Zero.")]
12781         public System.IntPtr ChainContext { get { throw null; } }
12782         public System.Security.Cryptography.X509Certificates.X509ChainElementCollection ChainElements { get { throw null; } }
12783         public System.Security.Cryptography.X509Certificates.X509ChainPolicy ChainPolicy { get { throw null; } set { } }
12784         public System.Security.Cryptography.X509Certificates.X509ChainStatus[] ChainStatus { get { throw null; } }
12785         public Microsoft.Win32.SafeHandles.SafeX509ChainHandle SafeHandle { get { throw null; } }
12786         [System.MonoTODOAttribute("Not totally RFC3280 compliant, but neither is MS implementation...")]
Build(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12787         public bool Build(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
Create()12788         public static System.Security.Cryptography.X509Certificates.X509Chain Create() { throw null; }
Dispose()12789         public void Dispose() { }
Dispose(bool disposing)12790         protected virtual void Dispose(bool disposing) { }
~X509Chain()12791         ~X509Chain() { }
Reset()12792         public void Reset() { }
12793     }
12794     public partial class X509ChainElement
12795     {
X509ChainElement()12796         internal X509ChainElement() { }
12797         public System.Security.Cryptography.X509Certificates.X509Certificate2 Certificate { get { throw null; } }
12798         public System.Security.Cryptography.X509Certificates.X509ChainStatus[] ChainElementStatus { get { throw null; } }
12799         public string Information { get { throw null; } }
12800     }
12801     public sealed partial class X509ChainElementCollection : System.Collections.ICollection, System.Collections.IEnumerable
12802     {
X509ChainElementCollection()12803         internal X509ChainElementCollection() { }
12804         public int Count { get { throw null; } }
12805         public bool IsSynchronized { get { throw null; } }
12806         public System.Security.Cryptography.X509Certificates.X509ChainElement this[int index] { get { throw null; } }
12807         public object SyncRoot { get { throw null; } }
CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[] array, int index)12808         public void CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[] array, int index) { }
GetEnumerator()12809         public System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)12810         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()12811         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
12812     }
12813     public sealed partial class X509ChainElementEnumerator : System.Collections.IEnumerator
12814     {
X509ChainElementEnumerator()12815         internal X509ChainElementEnumerator() { }
12816         public System.Security.Cryptography.X509Certificates.X509ChainElement Current { get { throw null; } }
12817         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12818         public bool MoveNext() { throw null; }
Reset()12819         public void Reset() { }
12820     }
12821     public sealed partial class X509ChainPolicy
12822     {
X509ChainPolicy()12823         public X509ChainPolicy() { }
12824         public System.Security.Cryptography.OidCollection ApplicationPolicy { get { throw null; } }
12825         public System.Security.Cryptography.OidCollection CertificatePolicy { get { throw null; } }
12826         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection ExtraStore { get { throw null; } }
12827         public System.Security.Cryptography.X509Certificates.X509RevocationFlag RevocationFlag { get { throw null; } set { } }
12828         public System.Security.Cryptography.X509Certificates.X509RevocationMode RevocationMode { get { throw null; } set { } }
12829         public System.TimeSpan UrlRetrievalTimeout { get { throw null; } set { } }
12830         public System.Security.Cryptography.X509Certificates.X509VerificationFlags VerificationFlags { get { throw null; } set { } }
12831         public System.DateTime VerificationTime { get { throw null; } set { } }
Reset()12832         public void Reset() { }
12833     }
12834     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12835     public partial struct X509ChainStatus
12836     {
12837         public System.Security.Cryptography.X509Certificates.X509ChainStatusFlags Status { get { throw null; } set { } }
12838         public string StatusInformation { get { throw null; } set { } }
12839     }
12840     [System.FlagsAttribute]
12841     public enum X509ChainStatusFlags
12842     {
12843         CtlNotSignatureValid = 262144,
12844         CtlNotTimeValid = 131072,
12845         CtlNotValidForUsage = 524288,
12846         Cyclic = 128,
12847         ExplicitDistrust = 67108864,
12848         HasExcludedNameConstraint = 32768,
12849         HasNotDefinedNameConstraint = 8192,
12850         HasNotPermittedNameConstraint = 16384,
12851         HasNotSupportedCriticalExtension = 134217728,
12852         HasNotSupportedNameConstraint = 4096,
12853         HasWeakSignature = 1048576,
12854         InvalidBasicConstraints = 1024,
12855         InvalidExtension = 256,
12856         InvalidNameConstraints = 2048,
12857         InvalidPolicyConstraints = 512,
12858         NoError = 0,
12859         NoIssuanceChainPolicy = 33554432,
12860         NotSignatureValid = 8,
12861         NotTimeNested = 2,
12862         NotTimeValid = 1,
12863         NotValidForUsage = 16,
12864         OfflineRevocation = 16777216,
12865         PartialChain = 65536,
12866         RevocationStatusUnknown = 64,
12867         Revoked = 4,
12868         UntrustedRoot = 32,
12869     }
12870     public sealed partial class X509EnhancedKeyUsageExtension : System.Security.Cryptography.X509Certificates.X509Extension
12871     {
X509EnhancedKeyUsageExtension()12872         public X509EnhancedKeyUsageExtension() { }
X509EnhancedKeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedEnhancedKeyUsages, bool critical)12873         public X509EnhancedKeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedEnhancedKeyUsages, bool critical) { }
X509EnhancedKeyUsageExtension(System.Security.Cryptography.OidCollection enhancedKeyUsages, bool critical)12874         public X509EnhancedKeyUsageExtension(System.Security.Cryptography.OidCollection enhancedKeyUsages, bool critical) { }
12875         public System.Security.Cryptography.OidCollection EnhancedKeyUsages { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12876         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12877     }
12878     public partial class X509Extension : System.Security.Cryptography.AsnEncodedData
12879     {
X509Extension()12880         protected X509Extension() { }
X509Extension(System.Security.Cryptography.AsnEncodedData encodedExtension, bool critical)12881         public X509Extension(System.Security.Cryptography.AsnEncodedData encodedExtension, bool critical) { }
X509Extension(System.Security.Cryptography.Oid oid, byte[] rawData, bool critical)12882         public X509Extension(System.Security.Cryptography.Oid oid, byte[] rawData, bool critical) { }
X509Extension(string oid, byte[] rawData, bool critical)12883         public X509Extension(string oid, byte[] rawData, bool critical) { }
12884         public bool Critical { get { throw null; } set { } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12885         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12886     }
12887     public sealed partial class X509ExtensionCollection : System.Collections.ICollection, System.Collections.IEnumerable
12888     {
X509ExtensionCollection()12889         public X509ExtensionCollection() { }
12890         public int Count { get { throw null; } }
12891         public bool IsSynchronized { get { throw null; } }
12892         public System.Security.Cryptography.X509Certificates.X509Extension this[int index] { get { throw null; } }
12893         public System.Security.Cryptography.X509Certificates.X509Extension this[string oid] { get { throw null; } }
12894         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.X509Certificates.X509Extension extension)12895         public int Add(System.Security.Cryptography.X509Certificates.X509Extension extension) { throw null; }
CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[] array, int index)12896         public void CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[] array, int index) { }
GetEnumerator()12897         public System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)12898         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()12899         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
12900     }
12901     public sealed partial class X509ExtensionEnumerator : System.Collections.IEnumerator
12902     {
X509ExtensionEnumerator()12903         internal X509ExtensionEnumerator() { }
12904         public System.Security.Cryptography.X509Certificates.X509Extension Current { get { throw null; } }
12905         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12906         public bool MoveNext() { throw null; }
Reset()12907         public void Reset() { }
12908     }
12909     public enum X509FindType
12910     {
12911         FindByApplicationPolicy = 10,
12912         FindByCertificatePolicy = 11,
12913         FindByExtension = 12,
12914         FindByIssuerDistinguishedName = 4,
12915         FindByIssuerName = 3,
12916         FindByKeyUsage = 13,
12917         FindBySerialNumber = 5,
12918         FindBySubjectDistinguishedName = 2,
12919         FindBySubjectKeyIdentifier = 14,
12920         FindBySubjectName = 1,
12921         FindByTemplateName = 9,
12922         FindByThumbprint = 0,
12923         FindByTimeExpired = 8,
12924         FindByTimeNotYetValid = 7,
12925         FindByTimeValid = 6,
12926     }
12927     public enum X509IncludeOption
12928     {
12929         EndCertOnly = 2,
12930         ExcludeRoot = 1,
12931         None = 0,
12932         WholeChain = 3,
12933     }
12934     public sealed partial class X509KeyUsageExtension : System.Security.Cryptography.X509Certificates.X509Extension
12935     {
X509KeyUsageExtension()12936         public X509KeyUsageExtension() { }
X509KeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedKeyUsage, bool critical)12937         public X509KeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedKeyUsage, bool critical) { }
X509KeyUsageExtension(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags keyUsages, bool critical)12938         public X509KeyUsageExtension(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags keyUsages, bool critical) { }
12939         public System.Security.Cryptography.X509Certificates.X509KeyUsageFlags KeyUsages { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12940         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12941     }
12942     [System.FlagsAttribute]
12943     public enum X509KeyUsageFlags
12944     {
12945         CrlSign = 2,
12946         DataEncipherment = 16,
12947         DecipherOnly = 32768,
12948         DigitalSignature = 128,
12949         EncipherOnly = 1,
12950         KeyAgreement = 8,
12951         KeyCertSign = 4,
12952         KeyEncipherment = 32,
12953         None = 0,
12954         NonRepudiation = 64,
12955     }
12956     public enum X509NameType
12957     {
12958         DnsFromAlternativeName = 4,
12959         DnsName = 3,
12960         EmailName = 1,
12961         SimpleName = 0,
12962         UpnName = 2,
12963         UrlName = 5,
12964     }
12965     public enum X509RevocationFlag
12966     {
12967         EndCertificateOnly = 0,
12968         EntireChain = 1,
12969         ExcludeRoot = 2,
12970     }
12971     public enum X509RevocationMode
12972     {
12973         NoCheck = 0,
12974         Offline = 2,
12975         Online = 1,
12976     }
12977     public sealed partial class X509Store : System.IDisposable
12978     {
X509Store()12979         public X509Store() { }
12980         [System.MonoTODOAttribute("Mono's stores are fully managed. All handles are invalid.")]
12981         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]
X509Store(System.IntPtr storeHandle)12982         public X509Store(System.IntPtr storeHandle) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)12983         public X509Store(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName)12984         public X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)12985         public X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
X509Store(string storeName)12986         public X509Store(string storeName) { }
X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)12987         public X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
12988         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection Certificates { get { throw null; } }
12989         public System.Security.Cryptography.X509Certificates.StoreLocation Location { get { throw null; } }
12990         public string Name { get { throw null; } }
12991         [System.MonoTODOAttribute("Mono's stores are fully managed. Always returns IntPtr.Zero.")]
12992         public System.IntPtr StoreHandle { get { throw null; } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12993         public void Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
12994         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12995         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
Close()12996         public void Close() { }
Dispose()12997         public void Dispose() { }
Open(System.Security.Cryptography.X509Certificates.OpenFlags flags)12998         public void Open(System.Security.Cryptography.X509Certificates.OpenFlags flags) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12999         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
13000         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)13001         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
13002     }
13003     public sealed partial class X509SubjectKeyIdentifierExtension : System.Security.Cryptography.X509Certificates.X509Extension
13004     {
X509SubjectKeyIdentifierExtension()13005         public X509SubjectKeyIdentifierExtension() { }
X509SubjectKeyIdentifierExtension(byte[] subjectKeyIdentifier, bool critical)13006         public X509SubjectKeyIdentifierExtension(byte[] subjectKeyIdentifier, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.AsnEncodedData encodedSubjectKeyIdentifier, bool critical)13007         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.AsnEncodedData encodedSubjectKeyIdentifier, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, bool critical)13008         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm algorithm, bool critical)13009         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm algorithm, bool critical) { }
X509SubjectKeyIdentifierExtension(string subjectKeyIdentifier, bool critical)13010         public X509SubjectKeyIdentifierExtension(string subjectKeyIdentifier, bool critical) { }
13011         public string SubjectKeyIdentifier { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)13012         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
13013     }
13014     public enum X509SubjectKeyIdentifierHashAlgorithm
13015     {
13016         CapiSha1 = 2,
13017         Sha1 = 0,
13018         ShortSha1 = 1,
13019     }
13020     [System.FlagsAttribute]
13021     public enum X509VerificationFlags
13022     {
13023         AllFlags = 4095,
13024         AllowUnknownCertificateAuthority = 16,
13025         IgnoreCertificateAuthorityRevocationUnknown = 1024,
13026         IgnoreCtlNotTimeValid = 2,
13027         IgnoreCtlSignerRevocationUnknown = 512,
13028         IgnoreEndRevocationUnknown = 256,
13029         IgnoreInvalidBasicConstraints = 8,
13030         IgnoreInvalidName = 64,
13031         IgnoreInvalidPolicy = 128,
13032         IgnoreNotTimeNested = 4,
13033         IgnoreNotTimeValid = 1,
13034         IgnoreRootRevocationUnknown = 2048,
13035         IgnoreWrongUsage = 32,
13036         NoFlag = 0,
13037     }
13038 }
13039 namespace System.Security.Permissions
13040 {
13041     [System.SerializableAttribute]
13042     public abstract partial class ResourcePermissionBase : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13043     {
13044         public const string Any = "*";
13045         public const string Local = ".";
ResourcePermissionBase()13046         protected ResourcePermissionBase() { }
ResourcePermissionBase(System.Security.Permissions.PermissionState state)13047         protected ResourcePermissionBase(System.Security.Permissions.PermissionState state) { }
13048         protected System.Type PermissionAccessType { get { throw null; } set { } }
13049         protected string[] TagNames { get { throw null; } set { } }
AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry)13050         protected void AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry) { }
Clear()13051         protected void Clear() { }
Copy()13052         public override System.Security.IPermission Copy() { throw null; }
13053         [System.MonoTODOAttribute("incomplete - need more test")]
FromXml(System.Security.SecurityElement securityElement)13054         public override void FromXml(System.Security.SecurityElement securityElement) { }
GetPermissionEntries()13055         protected System.Security.Permissions.ResourcePermissionBaseEntry[] GetPermissionEntries() { throw null; }
Intersect(System.Security.IPermission target)13056         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13057         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13058         public bool IsUnrestricted() { throw null; }
RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry)13059         protected void RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry) { }
ToXml()13060         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13061         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13062     }
13063     [System.SerializableAttribute]
13064     public partial class ResourcePermissionBaseEntry
13065     {
ResourcePermissionBaseEntry()13066         public ResourcePermissionBaseEntry() { }
ResourcePermissionBaseEntry(int permissionAccess, string[] permissionAccessPath)13067         public ResourcePermissionBaseEntry(int permissionAccess, string[] permissionAccessPath) { }
13068         public int PermissionAccess { get { throw null; } }
13069         public string[] PermissionAccessPath { get { throw null; } }
13070     }
13071     [System.SerializableAttribute]
13072     public sealed partial class StorePermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13073     {
StorePermission(System.Security.Permissions.PermissionState state)13074         public StorePermission(System.Security.Permissions.PermissionState state) { }
StorePermission(System.Security.Permissions.StorePermissionFlags flag)13075         public StorePermission(System.Security.Permissions.StorePermissionFlags flag) { }
13076         public System.Security.Permissions.StorePermissionFlags Flags { get { throw null; } set { } }
Copy()13077         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13078         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)13079         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13080         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13081         public bool IsUnrestricted() { throw null; }
ToXml()13082         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13083         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13084     }
13085     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
13086     [System.SerializableAttribute]
13087     public sealed partial class StorePermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
13088     {
StorePermissionAttribute(System.Security.Permissions.SecurityAction action)13089         public StorePermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
13090         public bool AddToStore { get { throw null; } set { } }
13091         public bool CreateStore { get { throw null; } set { } }
13092         public bool DeleteStore { get { throw null; } set { } }
13093         public bool EnumerateCertificates { get { throw null; } set { } }
13094         public bool EnumerateStores { get { throw null; } set { } }
13095         public System.Security.Permissions.StorePermissionFlags Flags { get { throw null; } set { } }
13096         public bool OpenStore { get { throw null; } set { } }
13097         public bool RemoveFromStore { get { throw null; } set { } }
CreatePermission()13098         public override System.Security.IPermission CreatePermission() { throw null; }
13099     }
13100     [System.FlagsAttribute]
13101     [System.SerializableAttribute]
13102     public enum StorePermissionFlags
13103     {
13104         AddToStore = 32,
13105         AllFlags = 247,
13106         CreateStore = 1,
13107         DeleteStore = 2,
13108         EnumerateCertificates = 128,
13109         EnumerateStores = 4,
13110         NoFlags = 0,
13111         OpenStore = 16,
13112         RemoveFromStore = 64,
13113     }
13114     [System.SerializableAttribute]
13115     public sealed partial class TypeDescriptorPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13116     {
TypeDescriptorPermission(System.Security.Permissions.PermissionState state)13117         public TypeDescriptorPermission(System.Security.Permissions.PermissionState state) { }
TypeDescriptorPermission(System.Security.Permissions.TypeDescriptorPermissionFlags flag)13118         public TypeDescriptorPermission(System.Security.Permissions.TypeDescriptorPermissionFlags flag) { }
13119         public System.Security.Permissions.TypeDescriptorPermissionFlags Flags { get { throw null; } set { } }
Copy()13120         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13121         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)13122         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13123         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13124         public bool IsUnrestricted() { throw null; }
ToXml()13125         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13126         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13127     }
13128     [System.FlagsAttribute]
13129     [System.SerializableAttribute]
13130     public enum TypeDescriptorPermissionFlags
13131     {
13132         NoFlags = 0,
13133         RestrictedRegistrationAccess = 1,
13134     }
13135 }
13136 namespace System.Text.RegularExpressions
13137 {
13138     [System.SerializableAttribute]
13139     public partial class Capture
13140     {
Capture()13141         internal Capture() { }
13142         public int Index { get { throw null; } }
13143         public int Length { get { throw null; } }
13144         public string Value { get { throw null; } }
ToString()13145         public override string ToString() { throw null; }
13146     }
13147     [System.SerializableAttribute]
13148     public partial class CaptureCollection : System.Collections.ICollection, System.Collections.IEnumerable
13149     {
CaptureCollection()13150         internal CaptureCollection() { }
13151         public int Count { get { throw null; } }
13152         public bool IsReadOnly { get { throw null; } }
13153         public bool IsSynchronized { get { throw null; } }
13154         public System.Text.RegularExpressions.Capture this[int i] { get { throw null; } }
13155         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)13156         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()13157         public System.Collections.IEnumerator GetEnumerator() { throw null; }
13158     }
13159     [System.SerializableAttribute]
13160     public partial class Group : System.Text.RegularExpressions.Capture
13161     {
Group()13162         internal Group() { }
13163         public System.Text.RegularExpressions.CaptureCollection Captures { get { throw null; } }
13164         public string Name { get { throw null; } }
13165         public bool Success { get { throw null; } }
Synchronized(System.Text.RegularExpressions.Group inner)13166         public static System.Text.RegularExpressions.Group Synchronized(System.Text.RegularExpressions.Group inner) { throw null; }
13167     }
13168     [System.SerializableAttribute]
13169     public partial class GroupCollection : System.Collections.ICollection, System.Collections.IEnumerable
13170     {
GroupCollection()13171         internal GroupCollection() { }
13172         public int Count { get { throw null; } }
13173         public bool IsReadOnly { get { throw null; } }
13174         public bool IsSynchronized { get { throw null; } }
13175         public System.Text.RegularExpressions.Group this[int groupnum] { get { throw null; } }
13176         public System.Text.RegularExpressions.Group this[string groupname] { get { throw null; } }
13177         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)13178         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()13179         public System.Collections.IEnumerator GetEnumerator() { throw null; }
13180     }
13181     [System.SerializableAttribute]
13182     public partial class Match : System.Text.RegularExpressions.Group
13183     {
Match()13184         internal Match() { }
13185         public static System.Text.RegularExpressions.Match Empty { get { throw null; } }
13186         public virtual System.Text.RegularExpressions.GroupCollection Groups { get { throw null; } }
NextMatch()13187         public System.Text.RegularExpressions.Match NextMatch() { throw null; }
Result(string replacement)13188         public virtual string Result(string replacement) { throw null; }
Synchronized(System.Text.RegularExpressions.Match inner)13189         public static System.Text.RegularExpressions.Match Synchronized(System.Text.RegularExpressions.Match inner) { throw null; }
13190     }
13191     [System.SerializableAttribute]
13192     public partial class MatchCollection : System.Collections.ICollection, System.Collections.IEnumerable
13193     {
MatchCollection()13194         internal MatchCollection() { }
13195         public int Count { get { throw null; } }
13196         public bool IsReadOnly { get { throw null; } }
13197         public bool IsSynchronized { get { throw null; } }
13198         public virtual System.Text.RegularExpressions.Match this[int i] { get { throw null; } }
13199         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)13200         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()13201         public System.Collections.IEnumerator GetEnumerator() { throw null; }
13202     }
13203     [System.SerializableAttribute]
MatchEvaluator(System.Text.RegularExpressions.Match match)13204     public delegate string MatchEvaluator(System.Text.RegularExpressions.Match match);
13205     [System.SerializableAttribute]
13206     public partial class Regex : System.Runtime.Serialization.ISerializable
13207     {
13208         protected internal System.Collections.Hashtable capnames;
13209         protected internal System.Collections.Hashtable caps;
13210         protected internal int capsize;
13211         protected internal string[] capslist;
13212         protected internal System.Text.RegularExpressions.RegexRunnerFactory factory;
13213         [System.NonSerializedAttribute]
13214         public static readonly System.TimeSpan InfiniteMatchTimeout;
13215         [System.Runtime.Serialization.OptionalFieldAttribute(VersionAdded=2)]
13216         protected internal System.TimeSpan internalMatchTimeout;
13217         protected internal string pattern;
13218         protected internal System.Text.RegularExpressions.RegexOptions roptions;
Regex()13219         protected Regex() { }
Regex(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)13220         protected Regex(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Regex(string pattern)13221         public Regex(string pattern) { }
Regex(string pattern, System.Text.RegularExpressions.RegexOptions options)13222         public Regex(string pattern, System.Text.RegularExpressions.RegexOptions options) { }
Regex(string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13223         public Regex(string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { }
13224         public static int CacheSize { get { throw null; } set { } }
13225         [System.CLSCompliantAttribute(false)]
13226         protected System.Collections.IDictionary CapNames { get { throw null; } set { } }
13227         [System.CLSCompliantAttribute(false)]
13228         protected System.Collections.IDictionary Caps { get { throw null; } set { } }
13229         public System.TimeSpan MatchTimeout { get { throw null; } }
13230         public System.Text.RegularExpressions.RegexOptions Options { get { throw null; } }
13231         public bool RightToLeft { get { throw null; } }
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname)13232         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname) { }
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes)13233         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes) { }
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes, string resourceFile)13234         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes, string resourceFile) { }
Escape(string str)13235         public static string Escape(string str) { throw null; }
GetGroupNames()13236         public string[] GetGroupNames() { throw null; }
GetGroupNumbers()13237         public int[] GetGroupNumbers() { throw null; }
GroupNameFromNumber(int i)13238         public string GroupNameFromNumber(int i) { throw null; }
GroupNumberFromName(string name)13239         public int GroupNumberFromName(string name) { throw null; }
InitializeReferences()13240         protected void InitializeReferences() { }
IsMatch(string input)13241         public bool IsMatch(string input) { throw null; }
IsMatch(string input, int startat)13242         public bool IsMatch(string input, int startat) { throw null; }
IsMatch(string input, string pattern)13243         public static bool IsMatch(string input, string pattern) { throw null; }
IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13244         public static bool IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options) { throw null; }
IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13245         public static bool IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Match(string input)13246         public System.Text.RegularExpressions.Match Match(string input) { throw null; }
Match(string input, int startat)13247         public System.Text.RegularExpressions.Match Match(string input, int startat) { throw null; }
Match(string input, int beginning, int length)13248         public System.Text.RegularExpressions.Match Match(string input, int beginning, int length) { throw null; }
Match(string input, string pattern)13249         public static System.Text.RegularExpressions.Match Match(string input, string pattern) { throw null; }
Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13250         public static System.Text.RegularExpressions.Match Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options) { throw null; }
Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13251         public static System.Text.RegularExpressions.Match Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Matches(string input)13252         public System.Text.RegularExpressions.MatchCollection Matches(string input) { throw null; }
Matches(string input, int startat)13253         public System.Text.RegularExpressions.MatchCollection Matches(string input, int startat) { throw null; }
Matches(string input, string pattern)13254         public static System.Text.RegularExpressions.MatchCollection Matches(string input, string pattern) { throw null; }
Matches(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13255         public static System.Text.RegularExpressions.MatchCollection Matches(string input, string pattern, System.Text.RegularExpressions.RegexOptions options) { throw null; }
Matches(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13256         public static System.Text.RegularExpressions.MatchCollection Matches(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Replace(string input, string replacement)13257         public string Replace(string input, string replacement) { throw null; }
Replace(string input, string replacement, int count)13258         public string Replace(string input, string replacement, int count) { throw null; }
Replace(string input, string replacement, int count, int startat)13259         public string Replace(string input, string replacement, int count, int startat) { throw null; }
Replace(string input, string pattern, string replacement)13260         public static string Replace(string input, string pattern, string replacement) { throw null; }
Replace(string input, string pattern, string replacement, System.Text.RegularExpressions.RegexOptions options)13261         public static string Replace(string input, string pattern, string replacement, System.Text.RegularExpressions.RegexOptions options) { throw null; }
Replace(string input, string pattern, string replacement, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13262         public static string Replace(string input, string pattern, string replacement, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Replace(string input, string pattern, System.Text.RegularExpressions.MatchEvaluator evaluator)13263         public static string Replace(string input, string pattern, System.Text.RegularExpressions.MatchEvaluator evaluator) { throw null; }
Replace(string input, string pattern, System.Text.RegularExpressions.MatchEvaluator evaluator, System.Text.RegularExpressions.RegexOptions options)13264         public static string Replace(string input, string pattern, System.Text.RegularExpressions.MatchEvaluator evaluator, System.Text.RegularExpressions.RegexOptions options) { throw null; }
Replace(string input, string pattern, System.Text.RegularExpressions.MatchEvaluator evaluator, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13265         public static string Replace(string input, string pattern, System.Text.RegularExpressions.MatchEvaluator evaluator, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator)13266         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator) { throw null; }
Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count)13267         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count) { throw null; }
Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count, int startat)13268         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count, int startat) { throw null; }
Split(string input)13269         public string[] Split(string input) { throw null; }
Split(string input, int count)13270         public string[] Split(string input, int count) { throw null; }
Split(string input, int count, int startat)13271         public string[] Split(string input, int count, int startat) { throw null; }
Split(string input, string pattern)13272         public static string[] Split(string input, string pattern) { throw null; }
Split(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13273         public static string[] Split(string input, string pattern, System.Text.RegularExpressions.RegexOptions options) { throw null; }
Split(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13274         public static string[] Split(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)13275         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
ToString()13276         public override string ToString() { throw null; }
Unescape(string str)13277         public static string Unescape(string str) { throw null; }
UseOptionC()13278         protected bool UseOptionC() { throw null; }
UseOptionR()13279         protected bool UseOptionR() { throw null; }
ValidateMatchTimeout(System.TimeSpan matchTimeout)13280         protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { }
13281     }
13282     [System.SerializableAttribute]
13283     public partial class RegexCompilationInfo
13284     {
RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic)13285         public RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic) { }
RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout)13286         public RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { }
13287         public bool IsPublic { get { throw null; } set { } }
13288         public System.TimeSpan MatchTimeout { get { throw null; } set { } }
13289         public string Name { get { throw null; } set { } }
13290         public string Namespace { get { throw null; } set { } }
13291         public System.Text.RegularExpressions.RegexOptions Options { get { throw null; } set { } }
13292         public string Pattern { get { throw null; } set { } }
13293     }
13294     [System.SerializableAttribute]
13295     public partial class RegexMatchTimeoutException : System.TimeoutException, System.Runtime.Serialization.ISerializable
13296     {
RegexMatchTimeoutException()13297         public RegexMatchTimeoutException() { }
13298         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
RegexMatchTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)13299         protected RegexMatchTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
RegexMatchTimeoutException(string message)13300         public RegexMatchTimeoutException(string message) { }
RegexMatchTimeoutException(string message, System.Exception inner)13301         public RegexMatchTimeoutException(string message, System.Exception inner) { }
RegexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout)13302         public RegexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { }
13303         public string Input { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
13304         public System.TimeSpan MatchTimeout { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
13305         public string Pattern { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
13306         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)13307         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
13308     }
13309     [System.FlagsAttribute]
13310     public enum RegexOptions
13311     {
13312         Compiled = 8,
13313         CultureInvariant = 512,
13314         ECMAScript = 256,
13315         ExplicitCapture = 4,
13316         IgnoreCase = 1,
13317         IgnorePatternWhitespace = 32,
13318         Multiline = 2,
13319         None = 0,
13320         RightToLeft = 64,
13321         Singleline = 16,
13322     }
13323     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
13324     public abstract partial class RegexRunner
13325     {
13326         protected internal int[] runcrawl;
13327         protected internal int runcrawlpos;
13328         protected internal System.Text.RegularExpressions.Match runmatch;
13329         protected internal System.Text.RegularExpressions.Regex runregex;
13330         protected internal int[] runstack;
13331         protected internal int runstackpos;
13332         protected internal string runtext;
13333         protected internal int runtextbeg;
13334         protected internal int runtextend;
13335         protected internal int runtextpos;
13336         protected internal int runtextstart;
13337         protected internal int[] runtrack;
13338         protected internal int runtrackcount;
13339         protected internal int runtrackpos;
RegexRunner()13340         protected internal RegexRunner() { }
Capture(int capnum, int start, int end)13341         protected void Capture(int capnum, int start, int end) { }
CharInClass(char ch, string charClass)13342         protected static bool CharInClass(char ch, string charClass) { throw null; }
CharInSet(char ch, string @set, string category)13343         protected static bool CharInSet(char ch, string @set, string category) { throw null; }
CheckTimeout()13344         protected void CheckTimeout() { }
Crawl(int i)13345         protected void Crawl(int i) { }
Crawlpos()13346         protected int Crawlpos() { throw null; }
DoubleCrawl()13347         protected void DoubleCrawl() { }
DoubleStack()13348         protected void DoubleStack() { }
DoubleTrack()13349         protected void DoubleTrack() { }
EnsureStorage()13350         protected void EnsureStorage() { }
FindFirstChar()13351         protected abstract bool FindFirstChar();
Go()13352         protected abstract void Go();
InitTrackCount()13353         protected abstract void InitTrackCount();
IsBoundary(int index, int startpos, int endpos)13354         protected bool IsBoundary(int index, int startpos, int endpos) { throw null; }
IsECMABoundary(int index, int startpos, int endpos)13355         protected bool IsECMABoundary(int index, int startpos, int endpos) { throw null; }
IsMatched(int cap)13356         protected bool IsMatched(int cap) { throw null; }
MatchIndex(int cap)13357         protected int MatchIndex(int cap) { throw null; }
MatchLength(int cap)13358         protected int MatchLength(int cap) { throw null; }
Popcrawl()13359         protected int Popcrawl() { throw null; }
Scan(System.Text.RegularExpressions.Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick)13360         protected internal System.Text.RegularExpressions.Match Scan(System.Text.RegularExpressions.Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick) { throw null; }
Scan(System.Text.RegularExpressions.Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick, System.TimeSpan timeout)13361         protected internal System.Text.RegularExpressions.Match Scan(System.Text.RegularExpressions.Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick, System.TimeSpan timeout) { throw null; }
TransferCapture(int capnum, int uncapnum, int start, int end)13362         protected void TransferCapture(int capnum, int uncapnum, int start, int end) { }
Uncapture()13363         protected void Uncapture() { }
13364     }
13365     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
13366     public abstract partial class RegexRunnerFactory
13367     {
RegexRunnerFactory()13368         protected RegexRunnerFactory() { }
CreateInstance()13369         protected internal abstract System.Text.RegularExpressions.RegexRunner CreateInstance();
13370     }
13371 }
13372 namespace System.Threading
13373 {
13374     [System.Diagnostics.DebuggerDisplayAttribute("Participant Count={ParticipantCount},Participants Remaining={ParticipantsRemaining}")]
13375     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
13376     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
13377     public partial class Barrier : System.IDisposable
13378     {
Barrier(int participantCount)13379         public Barrier(int participantCount) { }
Barrier(int participantCount, System.Action<System.Threading.Barrier> postPhaseAction)13380         public Barrier(int participantCount, System.Action<System.Threading.Barrier> postPhaseAction) { }
13381         public long CurrentPhaseNumber { get { throw null; } }
13382         public int ParticipantCount { get { throw null; } }
13383         public int ParticipantsRemaining { get { throw null; } }
AddParticipant()13384         public long AddParticipant() { throw null; }
AddParticipants(int participantCount)13385         public long AddParticipants(int participantCount) { throw null; }
Dispose()13386         public void Dispose() { }
Dispose(bool disposing)13387         protected virtual void Dispose(bool disposing) { }
RemoveParticipant()13388         public void RemoveParticipant() { }
RemoveParticipants(int participantCount)13389         public void RemoveParticipants(int participantCount) { }
SignalAndWait()13390         public void SignalAndWait() { }
SignalAndWait(int millisecondsTimeout)13391         public bool SignalAndWait(int millisecondsTimeout) { throw null; }
SignalAndWait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)13392         public bool SignalAndWait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
SignalAndWait(System.Threading.CancellationToken cancellationToken)13393         public void SignalAndWait(System.Threading.CancellationToken cancellationToken) { }
SignalAndWait(System.TimeSpan timeout)13394         public bool SignalAndWait(System.TimeSpan timeout) { throw null; }
SignalAndWait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken)13395         public bool SignalAndWait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; }
13396     }
13397     [System.SerializableAttribute]
13398     public partial class BarrierPostPhaseException : System.Exception
13399     {
BarrierPostPhaseException()13400         public BarrierPostPhaseException() { }
BarrierPostPhaseException(System.Exception innerException)13401         public BarrierPostPhaseException(System.Exception innerException) { }
13402         [System.Security.SecurityCriticalAttribute]
BarrierPostPhaseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)13403         protected BarrierPostPhaseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
BarrierPostPhaseException(string message)13404         public BarrierPostPhaseException(string message) { }
BarrierPostPhaseException(string message, System.Exception innerException)13405         public BarrierPostPhaseException(string message, System.Exception innerException) { }
13406     }
13407     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
13408     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
13409     public sealed partial class Semaphore : System.Threading.WaitHandle
13410     {
13411         [System.Security.SecuritySafeCriticalAttribute]
Semaphore(int initialCount, int maximumCount)13412         public Semaphore(int initialCount, int maximumCount) { }
13413         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Semaphore(int initialCount, int maximumCount, string name)13414         public Semaphore(int initialCount, int maximumCount, string name) { }
13415         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Semaphore(int initialCount, int maximumCount, string name, out bool createdNew)13416         public Semaphore(int initialCount, int maximumCount, string name, out bool createdNew) { createdNew = default(bool); }
13417         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Semaphore(int initialCount, int maximumCount, string name, out bool createdNew, System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity)13418         public Semaphore(int initialCount, int maximumCount, string name, out bool createdNew, System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity) { createdNew = default(bool); }
GetAccessControl()13419         public System.Security.AccessControl.SemaphoreSecurity GetAccessControl() { throw null; }
13420         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
OpenExisting(string name)13421         public static System.Threading.Semaphore OpenExisting(string name) { throw null; }
13422         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
OpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights)13423         public static System.Threading.Semaphore OpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights) { throw null; }
13424         [System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute]
13425         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Release()13426         public int Release() { throw null; }
13427         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Release(int releaseCount)13428         public int Release(int releaseCount) { throw null; }
SetAccessControl(System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity)13429         public void SetAccessControl(System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity) { }
13430         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
TryOpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights, out System.Threading.Semaphore result)13431         public static bool TryOpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights, out System.Threading.Semaphore result) { result = default(System.Threading.Semaphore); throw null; }
13432         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
TryOpenExisting(string name, out System.Threading.Semaphore result)13433         public static bool TryOpenExisting(string name, out System.Threading.Semaphore result) { result = default(System.Threading.Semaphore); throw null; }
13434     }
13435     public partial class ThreadExceptionEventArgs : System.EventArgs
13436     {
ThreadExceptionEventArgs(System.Exception t)13437         public ThreadExceptionEventArgs(System.Exception t) { }
13438         public System.Exception Exception { get { throw null; } }
13439     }
ThreadExceptionEventHandler(object sender, System.Threading.ThreadExceptionEventArgs e)13440     public delegate void ThreadExceptionEventHandler(object sender, System.Threading.ThreadExceptionEventArgs e);
13441 }
13442 namespace System.Timers
13443 {
13444     public partial class ElapsedEventArgs : System.EventArgs
13445     {
ElapsedEventArgs()13446         internal ElapsedEventArgs() { }
13447         public System.DateTime SignalTime { get { throw null; } }
13448     }
ElapsedEventHandler(object sender, System.Timers.ElapsedEventArgs e)13449     public delegate void ElapsedEventHandler(object sender, System.Timers.ElapsedEventArgs e);
13450     [System.ComponentModel.DefaultEventAttribute("Elapsed")]
13451     [System.ComponentModel.DefaultPropertyAttribute("Interval")]
13452     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
13453     public partial class Timer : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
13454     {
Timer()13455         public Timer() { }
Timer(double interval)13456         public Timer(double interval) { }
13457         [System.ComponentModel.CategoryAttribute("Behavior")]
13458         [System.ComponentModel.DefaultValueAttribute(true)]
13459         [System.Timers.TimersDescriptionAttribute("Indicates whether the timer will be restarted when it is enabled.")]
13460         public bool AutoReset { get { throw null; } set { } }
13461         [System.ComponentModel.CategoryAttribute("Behavior")]
13462         [System.ComponentModel.DefaultValueAttribute(false)]
13463         [System.Timers.TimersDescriptionAttribute("Indicates whether the timer is enabled to fire events at a defined interval.")]
13464         public bool Enabled { get { throw null; } set { } }
13465         [System.ComponentModel.CategoryAttribute("Behavior")]
13466         [System.ComponentModel.DefaultValueAttribute(100)]
13467         [System.ComponentModel.SettingsBindableAttribute(true)]
13468         [System.Timers.TimersDescriptionAttribute("The number of milliseconds between timer events.")]
13469         public double Interval { get { throw null; } set { } }
13470         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
13471         [System.ComponentModel.BrowsableAttribute(false)]
13472         [System.ComponentModel.DefaultValueAttribute(null)]
13473         [System.Timers.TimersDescriptionAttribute("The object used to marshal the event handler calls issued when an interval has elapsed.")]
13474         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
13475         [System.ComponentModel.CategoryAttribute("Behavior")]
13476         [System.Timers.TimersDescriptionAttribute("Occurs when the Interval has elapsed.")]
13477         public event System.Timers.ElapsedEventHandler Elapsed { add { } remove { } }
BeginInit()13478         public void BeginInit() { }
Close()13479         public void Close() { }
Dispose(bool disposing)13480         protected override void Dispose(bool disposing) { }
EndInit()13481         public void EndInit() { }
Start()13482         public void Start() { }
Stop()13483         public void Stop() { }
13484     }
13485     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
13486     public partial class TimersDescriptionAttribute : System.ComponentModel.DescriptionAttribute
13487     {
TimersDescriptionAttribute(string description)13488         public TimersDescriptionAttribute(string description) { }
13489         public override string Description { get { throw null; } }
13490     }
13491 }
13492 namespace System.Web
13493 {
13494     [System.SerializableAttribute]
13495     public sealed partial class AspNetHostingPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13496     {
AspNetHostingPermission(System.Security.Permissions.PermissionState state)13497         public AspNetHostingPermission(System.Security.Permissions.PermissionState state) { }
AspNetHostingPermission(System.Web.AspNetHostingPermissionLevel level)13498         public AspNetHostingPermission(System.Web.AspNetHostingPermissionLevel level) { }
13499         public System.Web.AspNetHostingPermissionLevel Level { get { throw null; } set { } }
Copy()13500         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13501         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)13502         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13503         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13504         public bool IsUnrestricted() { throw null; }
ToXml()13505         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13506         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13507     }
13508     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true, Inherited=false)]
13509     [System.SerializableAttribute]
13510     public sealed partial class AspNetHostingPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
13511     {
AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction action)13512         public AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
13513         public System.Web.AspNetHostingPermissionLevel Level { get { throw null; } set { } }
CreatePermission()13514         public override System.Security.IPermission CreatePermission() { throw null; }
13515     }
13516     [System.SerializableAttribute]
13517     public enum AspNetHostingPermissionLevel
13518     {
13519         High = 500,
13520         Low = 300,
13521         Medium = 400,
13522         Minimal = 200,
13523         None = 100,
13524         Unrestricted = 600,
13525     }
13526 }
13527 namespace System.Windows.Input
13528 {
13529     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
13530     public partial interface ICommand
13531     {
13532         event System.EventHandler CanExecuteChanged;
CanExecute(object parameter)13533         bool CanExecute(object parameter);
Execute(object parameter)13534         void Execute(object parameter);
13535     }
13536 }
13537 namespace System.Windows.Markup
13538 {
13539     [System.AttributeUsageAttribute((System.AttributeTargets)(1244), AllowMultiple=false, Inherited=true)]
13540     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
13541     public sealed partial class ValueSerializerAttribute : System.Attribute
13542     {
ValueSerializerAttribute(string valueSerializerTypeName)13543         public ValueSerializerAttribute(string valueSerializerTypeName) { }
ValueSerializerAttribute(System.Type valueSerializerType)13544         public ValueSerializerAttribute(System.Type valueSerializerType) { }
13545         public System.Type ValueSerializerType { get { throw null; } }
13546         public string ValueSerializerTypeName { get { throw null; } }
13547     }
13548 }
13549