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.7.2046.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.7.2046.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.DefaultDependencyAttribute((System.Runtime.CompilerServices.LoadHint)(1))]
20 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Btls.Interface, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
21 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Security, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
22 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.ComponentModel.DataAnnotations, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
23 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
24 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
25 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
26 [assembly:System.Runtime.CompilerServices.StringFreezingAttribute]
27 [assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)]
28 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
29 [assembly:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)(2050))]
30 [assembly:System.Runtime.InteropServices.TypeLibVersionAttribute(2, 4)]
31 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
32 [assembly:System.Security.SecurityRulesAttribute((System.Security.SecurityRuleSet)(1), SkipVerificationInFullTrust=true)]
33 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
34 [assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Threading.SemaphoreFullException))]
35 namespace Microsoft.CSharp
36 {
37     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
38     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
39     public partial class CSharpCodeProvider : System.CodeDom.Compiler.CodeDomProvider
40     {
CSharpCodeProvider()41         public CSharpCodeProvider() { }
CSharpCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions)42         public CSharpCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { }
43         public override string FileExtension { get { throw null; } }
44         [System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateCompiler()45         public override System.CodeDom.Compiler.ICodeCompiler CreateCompiler() { throw null; }
46         [System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateGenerator()47         public override System.CodeDom.Compiler.ICodeGenerator CreateGenerator() { throw null; }
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)48         public override void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GetConverter(System.Type type)49         public override System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
50     }
51 }
52 namespace Microsoft.VisualBasic
53 {
54     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
55     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
56     public partial class VBCodeProvider : System.CodeDom.Compiler.CodeDomProvider
57     {
VBCodeProvider()58         public VBCodeProvider() { }
VBCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions)59         public VBCodeProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { }
60         public override string FileExtension { get { throw null; } }
61         public override System.CodeDom.Compiler.LanguageOptions LanguageOptions { get { throw null; } }
62         [System.ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateCompiler()63         public override System.CodeDom.Compiler.ICodeCompiler CreateCompiler() { throw null; }
64         [System.ObsoleteAttribute("Callers should not use the ICodeGenerator interface and should instead use the methods directly on the CodeDomProvider class.")]
CreateGenerator()65         public override System.CodeDom.Compiler.ICodeGenerator CreateGenerator() { throw null; }
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)66         public override void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GetConverter(System.Type type)67         public override System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
68     }
69 }
70 namespace Microsoft.Win32
71 {
72     public partial class IntranetZoneCredentialPolicy : System.Net.ICredentialPolicy
73     {
IntranetZoneCredentialPolicy()74         public IntranetZoneCredentialPolicy() { }
ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authModule)75         public virtual bool ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authModule) { throw null; }
76     }
77     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
78     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
79     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
80     public partial class PowerModeChangedEventArgs : System.EventArgs
81     {
PowerModeChangedEventArgs(Microsoft.Win32.PowerModes mode)82         public PowerModeChangedEventArgs(Microsoft.Win32.PowerModes mode) { }
83         public Microsoft.Win32.PowerModes Mode { get { throw null; } }
84     }
85     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
PowerModeChangedEventHandler(object sender, Microsoft.Win32.PowerModeChangedEventArgs e)86     public delegate void PowerModeChangedEventHandler(object sender, Microsoft.Win32.PowerModeChangedEventArgs e);
87     public enum PowerModes
88     {
89         Resume = 1,
90         StatusChange = 2,
91         Suspend = 3,
92     }
93     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
94     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
95     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
96     public partial class SessionEndedEventArgs : System.EventArgs
97     {
SessionEndedEventArgs(Microsoft.Win32.SessionEndReasons reason)98         public SessionEndedEventArgs(Microsoft.Win32.SessionEndReasons reason) { }
99         public Microsoft.Win32.SessionEndReasons Reason { get { throw null; } }
100     }
101     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
SessionEndedEventHandler(object sender, Microsoft.Win32.SessionEndedEventArgs e)102     public delegate void SessionEndedEventHandler(object sender, Microsoft.Win32.SessionEndedEventArgs e);
103     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
104     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
105     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
106     public partial class SessionEndingEventArgs : System.EventArgs
107     {
SessionEndingEventArgs(Microsoft.Win32.SessionEndReasons reason)108         public SessionEndingEventArgs(Microsoft.Win32.SessionEndReasons reason) { }
109         public bool Cancel { get { throw null; } set { } }
110         public Microsoft.Win32.SessionEndReasons Reason { get { throw null; } }
111     }
112     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
SessionEndingEventHandler(object sender, Microsoft.Win32.SessionEndingEventArgs e)113     public delegate void SessionEndingEventHandler(object sender, Microsoft.Win32.SessionEndingEventArgs e);
114     public enum SessionEndReasons
115     {
116         Logoff = 1,
117         SystemShutdown = 2,
118     }
119     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
120     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
121     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
122     public partial class SessionSwitchEventArgs : System.EventArgs
123     {
SessionSwitchEventArgs(Microsoft.Win32.SessionSwitchReason reason)124         public SessionSwitchEventArgs(Microsoft.Win32.SessionSwitchReason reason) { }
125         public Microsoft.Win32.SessionSwitchReason Reason { get { throw null; } }
126     }
127     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
SessionSwitchEventHandler(object sender, Microsoft.Win32.SessionSwitchEventArgs e)128     public delegate void SessionSwitchEventHandler(object sender, Microsoft.Win32.SessionSwitchEventArgs e);
129     public enum SessionSwitchReason
130     {
131         ConsoleConnect = 1,
132         ConsoleDisconnect = 2,
133         RemoteConnect = 3,
134         RemoteDisconnect = 4,
135         SessionLock = 7,
136         SessionLogoff = 6,
137         SessionLogon = 5,
138         SessionRemoteControl = 9,
139         SessionUnlock = 8,
140     }
141     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
142     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
143     public sealed partial class SystemEvents
144     {
SystemEvents()145         internal SystemEvents() { }
146         public static event System.EventHandler DisplaySettingsChanged { add { } remove { } }
147         public static event System.EventHandler DisplaySettingsChanging { add { } remove { } }
148         public static event System.EventHandler EventsThreadShutdown { add { } remove { } }
149         public static event System.EventHandler InstalledFontsChanged { add { } remove { } }
150         [System.ComponentModel.BrowsableAttribute(false)]
151         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
152         [System.ObsoleteAttribute("This event has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")]
153         public static event System.EventHandler LowMemory { add { } remove { } }
154         public static event System.EventHandler PaletteChanged { add { } remove { } }
155         public static event Microsoft.Win32.PowerModeChangedEventHandler PowerModeChanged { add { } remove { } }
156         public static event Microsoft.Win32.SessionEndedEventHandler SessionEnded { add { } remove { } }
157         public static event Microsoft.Win32.SessionEndingEventHandler SessionEnding { add { } remove { } }
158         public static event Microsoft.Win32.SessionSwitchEventHandler SessionSwitch { add { } remove { } }
159         public static event System.EventHandler TimeChanged { add { } remove { } }
160         public static event Microsoft.Win32.TimerElapsedEventHandler TimerElapsed { add { } remove { } }
161         public static event Microsoft.Win32.UserPreferenceChangedEventHandler UserPreferenceChanged { add { } remove { } }
162         public static event Microsoft.Win32.UserPreferenceChangingEventHandler UserPreferenceChanging { add { } remove { } }
CreateTimer(int interval)163         public static System.IntPtr CreateTimer(int interval) { throw null; }
InvokeOnEventsThread(System.Delegate method)164         public static void InvokeOnEventsThread(System.Delegate method) { }
KillTimer(System.IntPtr timerId)165         public static void KillTimer(System.IntPtr timerId) { }
166     }
167     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
168     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
169     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
170     public partial class TimerElapsedEventArgs : System.EventArgs
171     {
TimerElapsedEventArgs(System.IntPtr timerId)172         public TimerElapsedEventArgs(System.IntPtr timerId) { }
173         public System.IntPtr TimerId { get { throw null; } }
174     }
175     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
TimerElapsedEventHandler(object sender, Microsoft.Win32.TimerElapsedEventArgs e)176     public delegate void TimerElapsedEventHandler(object sender, Microsoft.Win32.TimerElapsedEventArgs e);
177     public enum UserPreferenceCategory
178     {
179         Accessibility = 1,
180         Color = 2,
181         Desktop = 3,
182         General = 4,
183         Icon = 5,
184         Keyboard = 6,
185         Locale = 13,
186         Menu = 7,
187         Mouse = 8,
188         Policy = 9,
189         Power = 10,
190         Screensaver = 11,
191         VisualStyle = 14,
192         Window = 12,
193     }
194     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
195     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
196     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
197     public partial class UserPreferenceChangedEventArgs : System.EventArgs
198     {
UserPreferenceChangedEventArgs(Microsoft.Win32.UserPreferenceCategory category)199         public UserPreferenceChangedEventArgs(Microsoft.Win32.UserPreferenceCategory category) { }
200         public Microsoft.Win32.UserPreferenceCategory Category { get { throw null; } }
201     }
202     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
UserPreferenceChangedEventHandler(object sender, Microsoft.Win32.UserPreferenceChangedEventArgs e)203     public delegate void UserPreferenceChangedEventHandler(object sender, Microsoft.Win32.UserPreferenceChangedEventArgs e);
204     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
205     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
206     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
207     public partial class UserPreferenceChangingEventArgs : System.EventArgs
208     {
UserPreferenceChangingEventArgs(Microsoft.Win32.UserPreferenceCategory category)209         public UserPreferenceChangingEventArgs(Microsoft.Win32.UserPreferenceCategory category) { }
210         public Microsoft.Win32.UserPreferenceCategory Category { get { throw null; } }
211     }
212     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
UserPreferenceChangingEventHandler(object sender, Microsoft.Win32.UserPreferenceChangingEventArgs e)213     public delegate void UserPreferenceChangingEventHandler(object sender, Microsoft.Win32.UserPreferenceChangingEventArgs e);
214 }
215 namespace Microsoft.Win32.SafeHandles
216 {
217     [System.Security.SuppressUnmanagedCodeSecurityAttribute]
218     public sealed partial class SafeProcessHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
219     {
220         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]
SafeProcessHandle(System.IntPtr existingHandle, bool ownsHandle)221         public SafeProcessHandle(System.IntPtr existingHandle, bool ownsHandle) : base (default(bool)) { }
ReleaseHandle()222         protected override bool ReleaseHandle() { throw null; }
223     }
224     [System.Security.SecurityCriticalAttribute]
225     public sealed partial class SafeX509ChainHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
226     {
SafeX509ChainHandle()227         internal SafeX509ChainHandle() : base (default(bool)) { }
228         [System.Security.SecurityCriticalAttribute]
ReleaseHandle()229         protected override bool ReleaseHandle() { throw null; }
230     }
231 }
232 namespace System
233 {
234     public partial class FileStyleUriParser : System.UriParser
235     {
FileStyleUriParser()236         public FileStyleUriParser() { }
237     }
238     public partial class FtpStyleUriParser : System.UriParser
239     {
FtpStyleUriParser()240         public FtpStyleUriParser() { }
241     }
242     public partial class GenericUriParser : System.UriParser
243     {
GenericUriParser(System.GenericUriParserOptions options)244         public GenericUriParser(System.GenericUriParserOptions options) { }
245     }
246     [System.FlagsAttribute]
247     public enum GenericUriParserOptions
248     {
249         AllowEmptyAuthority = 2,
250         Default = 0,
251         DontCompressPath = 128,
252         DontConvertPathBackslashes = 64,
253         DontUnescapePathDotsAndSlashes = 256,
254         GenericAuthority = 1,
255         Idn = 512,
256         IriParsing = 1024,
257         NoFragment = 32,
258         NoPort = 8,
259         NoQuery = 16,
260         NoUserInfo = 4,
261     }
262     public partial class GopherStyleUriParser : System.UriParser
263     {
GopherStyleUriParser()264         public GopherStyleUriParser() { }
265     }
266     public partial class HttpStyleUriParser : System.UriParser
267     {
HttpStyleUriParser()268         public HttpStyleUriParser() { }
269     }
270     public partial class LdapStyleUriParser : System.UriParser
271     {
LdapStyleUriParser()272         public LdapStyleUriParser() { }
273     }
274     public partial class NetPipeStyleUriParser : System.UriParser
275     {
NetPipeStyleUriParser()276         public NetPipeStyleUriParser() { }
277     }
278     public partial class NetTcpStyleUriParser : System.UriParser
279     {
NetTcpStyleUriParser()280         public NetTcpStyleUriParser() { }
281     }
282     public partial class NewsStyleUriParser : System.UriParser
283     {
NewsStyleUriParser()284         public NewsStyleUriParser() { }
285     }
286     [System.ComponentModel.TypeConverterAttribute(typeof(System.UriTypeConverter))]
287     [System.SerializableAttribute]
288     public partial class Uri : System.Runtime.Serialization.ISerializable
289     {
290         public static readonly string SchemeDelimiter;
291         public static readonly string UriSchemeFile;
292         public static readonly string UriSchemeFtp;
293         public static readonly string UriSchemeGopher;
294         public static readonly string UriSchemeHttp;
295         public static readonly string UriSchemeHttps;
296         public static readonly string UriSchemeMailto;
297         public static readonly string UriSchemeNetPipe;
298         public static readonly string UriSchemeNetTcp;
299         public static readonly string UriSchemeNews;
300         public static readonly string UriSchemeNntp;
Uri(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)301         protected Uri(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
Uri(string uriString)302         public Uri(string uriString) { }
303         [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)304         public Uri(string uriString, bool dontEscape) { }
Uri(string uriString, System.UriKind uriKind)305         public Uri(string uriString, System.UriKind uriKind) { }
Uri(System.Uri baseUri, string relativeUri)306         public Uri(System.Uri baseUri, string relativeUri) { }
307         [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)308         public Uri(System.Uri baseUri, string relativeUri, bool dontEscape) { }
Uri(System.Uri baseUri, System.Uri relativeUri)309         public Uri(System.Uri baseUri, System.Uri relativeUri) { }
310         public string AbsolutePath { get { throw null; } }
311         public string AbsoluteUri { get { throw null; } }
312         public string Authority { get { throw null; } }
313         public string DnsSafeHost { get { throw null; } }
314         public string Fragment { get { throw null; } }
315         public string Host { get { throw null; } }
316         public System.UriHostNameType HostNameType { get { throw null; } }
317         public string IdnHost { get { throw null; } }
318         public bool IsAbsoluteUri { get { throw null; } }
319         public bool IsDefaultPort { get { throw null; } }
320         public bool IsFile { get { throw null; } }
321         public bool IsLoopback { get { throw null; } }
322         public bool IsUnc { get { throw null; } }
323         public string LocalPath { get { throw null; } }
324         public string OriginalString { get { throw null; } }
325         public string PathAndQuery { get { throw null; } }
326         public int Port { get { throw null; } }
327         public string Query { get { throw null; } }
328         public string Scheme { get { throw null; } }
329         public string[] Segments { get { throw null; } }
330         public bool UserEscaped { get { throw null; } }
331         public string UserInfo { get { throw null; } }
332         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Canonicalize()333         protected virtual void Canonicalize() { }
CheckHostName(string name)334         public static System.UriHostNameType CheckHostName(string name) { throw null; }
CheckSchemeName(string schemeName)335         public static bool CheckSchemeName(string schemeName) { throw null; }
336         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
CheckSecurity()337         protected virtual void CheckSecurity() { }
Compare(System.Uri uri1, System.Uri uri2, System.UriComponents partsToCompare, System.UriFormat compareFormat, System.StringComparison comparisonType)338         public static int Compare(System.Uri uri1, System.Uri uri2, System.UriComponents partsToCompare, System.UriFormat compareFormat, System.StringComparison comparisonType) { throw null; }
339         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
Equals(object comparand)340         public override bool Equals(object comparand) { throw null; }
341         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Escape()342         protected virtual void Escape() { }
EscapeDataString(string stringToEscape)343         public static string EscapeDataString(string stringToEscape) { throw null; }
344         [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)345         protected static string EscapeString(string str) { throw null; }
EscapeUriString(string stringToEscape)346         public static string EscapeUriString(string stringToEscape) { throw null; }
FromHex(char digit)347         public static int FromHex(char digit) { throw null; }
GetComponents(System.UriComponents components, System.UriFormat format)348         public string GetComponents(System.UriComponents components, System.UriFormat format) { throw null; }
349         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
GetHashCode()350         public override int GetHashCode() { throw null; }
GetLeftPart(System.UriPartial part)351         public string GetLeftPart(System.UriPartial part) { throw null; }
352         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)353         protected void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
HexEscape(char character)354         public static string HexEscape(char character) { throw null; }
HexUnescape(string pattern, ref int index)355         public static char HexUnescape(string pattern, ref int index) { throw null; }
356         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsBadFileSystemCharacter(char character)357         protected virtual bool IsBadFileSystemCharacter(char character) { throw null; }
IsBaseOf(System.Uri uri)358         public bool IsBaseOf(System.Uri uri) { throw null; }
359         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsExcludedCharacter(char character)360         protected static bool IsExcludedCharacter(char character) { throw null; }
IsHexDigit(char character)361         public static bool IsHexDigit(char character) { throw null; }
IsHexEncoding(string pattern, int index)362         public static bool IsHexEncoding(string pattern, int index) { throw null; }
363         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsReservedCharacter(char character)364         protected virtual bool IsReservedCharacter(char character) { throw null; }
IsWellFormedOriginalString()365         public bool IsWellFormedOriginalString() { throw null; }
IsWellFormedUriString(string uriString, System.UriKind uriKind)366         public static bool IsWellFormedUriString(string uriString, System.UriKind uriKind) { throw null; }
367         [System.ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). http://go.microsoft.com/fwlink/?linkid=14202")]
MakeRelative(System.Uri toUri)368         public string MakeRelative(System.Uri toUri) { throw null; }
MakeRelativeUri(System.Uri uri)369         public System.Uri MakeRelativeUri(System.Uri uri) { throw null; }
370         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
operator ==(System.Uri uri1, System.Uri uri2)371         public static bool operator ==(System.Uri uri1, System.Uri uri2) { throw null; }
372         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
operator !=(System.Uri uri1, System.Uri uri2)373         public static bool operator !=(System.Uri uri1, System.Uri uri2) { throw null; }
374         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Parse()375         protected virtual void Parse() { }
376         [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)377         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
378         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
ToString()379         public override string ToString() { throw null; }
TryCreate(string uriString, System.UriKind uriKind, out System.Uri result)380         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)381         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)382         public static bool TryCreate(System.Uri baseUri, System.Uri relativeUri, out System.Uri result) { result = default(System.Uri); throw null; }
383         [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)384         protected virtual string Unescape(string path) { throw null; }
UnescapeDataString(string stringToUnescape)385         public static string UnescapeDataString(string stringToUnescape) { throw null; }
386     }
387     public partial class UriBuilder
388     {
UriBuilder()389         public UriBuilder() { }
UriBuilder(string uri)390         public UriBuilder(string uri) { }
UriBuilder(string schemeName, string hostName)391         public UriBuilder(string schemeName, string hostName) { }
UriBuilder(string scheme, string host, int portNumber)392         public UriBuilder(string scheme, string host, int portNumber) { }
UriBuilder(string scheme, string host, int port, string pathValue)393         public UriBuilder(string scheme, string host, int port, string pathValue) { }
UriBuilder(string scheme, string host, int port, string path, string extraValue)394         public UriBuilder(string scheme, string host, int port, string path, string extraValue) { }
UriBuilder(System.Uri uri)395         public UriBuilder(System.Uri uri) { }
396         public string Fragment { get { throw null; } set { } }
397         public string Host { get { throw null; } set { } }
398         public string Password { get { throw null; } set { } }
399         public string Path { get { throw null; } set { } }
400         public int Port { get { throw null; } set { } }
401         public string Query { get { throw null; } set { } }
402         public string Scheme { get { throw null; } set { } }
403         public System.Uri Uri { get { throw null; } }
404         public string UserName { get { throw null; } set { } }
Equals(object rparam)405         public override bool Equals(object rparam) { throw null; }
GetHashCode()406         public override int GetHashCode() { throw null; }
ToString()407         public override string ToString() { throw null; }
408     }
409     [System.FlagsAttribute]
410     public enum UriComponents
411     {
412         AbsoluteUri = 127,
413         Fragment = 64,
414         Host = 4,
415         HostAndPort = 132,
416         HttpRequestUrl = 61,
417         KeepDelimiter = 1073741824,
418         NormalizedHost = 256,
419         Path = 16,
420         PathAndQuery = 48,
421         Port = 8,
422         Query = 32,
423         Scheme = 1,
424         SchemeAndServer = 13,
425         SerializationInfoString = -2147483648,
426         StrongAuthority = 134,
427         StrongPort = 128,
428         UserInfo = 2,
429     }
430     public enum UriFormat
431     {
432         SafeUnescaped = 3,
433         Unescaped = 2,
434         UriEscaped = 1,
435     }
436     [System.SerializableAttribute]
437     public partial class UriFormatException : System.FormatException, System.Runtime.Serialization.ISerializable
438     {
UriFormatException()439         public UriFormatException() { }
UriFormatException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)440         protected UriFormatException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
UriFormatException(string textString)441         public UriFormatException(string textString) { }
UriFormatException(string textString, System.Exception e)442         public UriFormatException(string textString, System.Exception e) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)443         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
444     }
445     public enum UriHostNameType
446     {
447         Basic = 1,
448         Dns = 2,
449         IPv4 = 3,
450         IPv6 = 4,
451         Unknown = 0,
452     }
453     public enum UriIdnScope
454     {
455         All = 2,
456         AllExceptIntranet = 1,
457         None = 0,
458     }
459     public enum UriKind
460     {
461         Absolute = 1,
462         Relative = 2,
463         RelativeOrAbsolute = 0,
464     }
465     public abstract partial class UriParser
466     {
UriParser()467         protected UriParser() { }
GetComponents(System.Uri uri, System.UriComponents components, System.UriFormat format)468         protected virtual string GetComponents(System.Uri uri, System.UriComponents components, System.UriFormat format) { throw null; }
InitializeAndValidate(System.Uri uri, out System.UriFormatException parsingError)469         protected virtual void InitializeAndValidate(System.Uri uri, out System.UriFormatException parsingError) { parsingError = default(System.UriFormatException); }
IsBaseOf(System.Uri baseUri, System.Uri relativeUri)470         protected virtual bool IsBaseOf(System.Uri baseUri, System.Uri relativeUri) { throw null; }
IsKnownScheme(string schemeName)471         public static bool IsKnownScheme(string schemeName) { throw null; }
IsWellFormedOriginalString(System.Uri uri)472         protected virtual bool IsWellFormedOriginalString(System.Uri uri) { throw null; }
OnNewUri()473         protected virtual System.UriParser OnNewUri() { throw null; }
OnRegister(string schemeName, int defaultPort)474         protected virtual void OnRegister(string schemeName, int defaultPort) { }
Register(System.UriParser uriParser, string schemeName, int defaultPort)475         public static void Register(System.UriParser uriParser, string schemeName, int defaultPort) { }
Resolve(System.Uri baseUri, System.Uri relativeUri, out System.UriFormatException parsingError)476         protected virtual string Resolve(System.Uri baseUri, System.Uri relativeUri, out System.UriFormatException parsingError) { parsingError = default(System.UriFormatException); throw null; }
477     }
478     public enum UriPartial
479     {
480         Authority = 1,
481         Path = 2,
482         Query = 3,
483         Scheme = 0,
484     }
485     public partial class UriTypeConverter : System.ComponentModel.TypeConverter
486     {
UriTypeConverter()487         public UriTypeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)488         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)489         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)490         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)491         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)492         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
493     }
494 }
495 namespace System.CodeDom
496 {
497     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
498     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
499     [System.SerializableAttribute]
500     public partial class CodeArgumentReferenceExpression : System.CodeDom.CodeExpression
501     {
CodeArgumentReferenceExpression()502         public CodeArgumentReferenceExpression() { }
CodeArgumentReferenceExpression(string parameterName)503         public CodeArgumentReferenceExpression(string parameterName) { }
504         public string ParameterName { get { throw null; } set { } }
505     }
506     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
507     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
508     [System.SerializableAttribute]
509     public partial class CodeArrayCreateExpression : System.CodeDom.CodeExpression
510     {
CodeArrayCreateExpression()511         public CodeArrayCreateExpression() { }
CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, System.CodeDom.CodeExpression size)512         public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, System.CodeDom.CodeExpression size) { }
CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] initializers)513         public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] initializers) { }
CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, int size)514         public CodeArrayCreateExpression(System.CodeDom.CodeTypeReference createType, int size) { }
CodeArrayCreateExpression(string createType, System.CodeDom.CodeExpression size)515         public CodeArrayCreateExpression(string createType, System.CodeDom.CodeExpression size) { }
CodeArrayCreateExpression(string createType, params System.CodeDom.CodeExpression[] initializers)516         public CodeArrayCreateExpression(string createType, params System.CodeDom.CodeExpression[] initializers) { }
CodeArrayCreateExpression(string createType, int size)517         public CodeArrayCreateExpression(string createType, int size) { }
CodeArrayCreateExpression(System.Type createType, System.CodeDom.CodeExpression size)518         public CodeArrayCreateExpression(System.Type createType, System.CodeDom.CodeExpression size) { }
CodeArrayCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] initializers)519         public CodeArrayCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] initializers) { }
CodeArrayCreateExpression(System.Type createType, int size)520         public CodeArrayCreateExpression(System.Type createType, int size) { }
521         public System.CodeDom.CodeTypeReference CreateType { get { throw null; } set { } }
522         public System.CodeDom.CodeExpressionCollection Initializers { get { throw null; } }
523         public int Size { get { throw null; } set { } }
524         public System.CodeDom.CodeExpression SizeExpression { get { throw null; } set { } }
525     }
526     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
527     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
528     [System.SerializableAttribute]
529     public partial class CodeArrayIndexerExpression : System.CodeDom.CodeExpression
530     {
CodeArrayIndexerExpression()531         public CodeArrayIndexerExpression() { }
CodeArrayIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices)532         public CodeArrayIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices) { }
533         public System.CodeDom.CodeExpressionCollection Indices { get { throw null; } }
534         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
535     }
536     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
537     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
538     [System.SerializableAttribute]
539     public partial class CodeAssignStatement : System.CodeDom.CodeStatement
540     {
CodeAssignStatement()541         public CodeAssignStatement() { }
CodeAssignStatement(System.CodeDom.CodeExpression left, System.CodeDom.CodeExpression right)542         public CodeAssignStatement(System.CodeDom.CodeExpression left, System.CodeDom.CodeExpression right) { }
543         public System.CodeDom.CodeExpression Left { get { throw null; } set { } }
544         public System.CodeDom.CodeExpression Right { get { throw null; } set { } }
545     }
546     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
547     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
548     [System.SerializableAttribute]
549     public partial class CodeAttachEventStatement : System.CodeDom.CodeStatement
550     {
CodeAttachEventStatement()551         public CodeAttachEventStatement() { }
CodeAttachEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener)552         public CodeAttachEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener) { }
CodeAttachEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener)553         public CodeAttachEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener) { }
554         public System.CodeDom.CodeEventReferenceExpression Event { get { throw null; } set { } }
555         public System.CodeDom.CodeExpression Listener { get { throw null; } set { } }
556     }
557     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
558     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
559     [System.SerializableAttribute]
560     public partial class CodeAttributeArgument
561     {
CodeAttributeArgument()562         public CodeAttributeArgument() { }
CodeAttributeArgument(System.CodeDom.CodeExpression value)563         public CodeAttributeArgument(System.CodeDom.CodeExpression value) { }
CodeAttributeArgument(string name, System.CodeDom.CodeExpression value)564         public CodeAttributeArgument(string name, System.CodeDom.CodeExpression value) { }
565         public string Name { get { throw null; } set { } }
566         public System.CodeDom.CodeExpression Value { get { throw null; } set { } }
567     }
568     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
569     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
570     [System.SerializableAttribute]
571     public partial class CodeAttributeArgumentCollection : System.Collections.CollectionBase
572     {
CodeAttributeArgumentCollection()573         public CodeAttributeArgumentCollection() { }
CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgumentCollection value)574         public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgumentCollection value) { }
CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgument[] value)575         public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgument[] value) { }
576         public System.CodeDom.CodeAttributeArgument this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeAttributeArgument value)577         public int Add(System.CodeDom.CodeAttributeArgument value) { throw null; }
AddRange(System.CodeDom.CodeAttributeArgumentCollection value)578         public void AddRange(System.CodeDom.CodeAttributeArgumentCollection value) { }
AddRange(System.CodeDom.CodeAttributeArgument[] value)579         public void AddRange(System.CodeDom.CodeAttributeArgument[] value) { }
Contains(System.CodeDom.CodeAttributeArgument value)580         public bool Contains(System.CodeDom.CodeAttributeArgument value) { throw null; }
CopyTo(System.CodeDom.CodeAttributeArgument[] array, int index)581         public void CopyTo(System.CodeDom.CodeAttributeArgument[] array, int index) { }
IndexOf(System.CodeDom.CodeAttributeArgument value)582         public int IndexOf(System.CodeDom.CodeAttributeArgument value) { throw null; }
Insert(int index, System.CodeDom.CodeAttributeArgument value)583         public void Insert(int index, System.CodeDom.CodeAttributeArgument value) { }
Remove(System.CodeDom.CodeAttributeArgument value)584         public void Remove(System.CodeDom.CodeAttributeArgument value) { }
585     }
586     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
587     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
588     [System.SerializableAttribute]
589     public partial class CodeAttributeDeclaration
590     {
CodeAttributeDeclaration()591         public CodeAttributeDeclaration() { }
CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType)592         public CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType) { }
CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType, params System.CodeDom.CodeAttributeArgument[] arguments)593         public CodeAttributeDeclaration(System.CodeDom.CodeTypeReference attributeType, params System.CodeDom.CodeAttributeArgument[] arguments) { }
CodeAttributeDeclaration(string name)594         public CodeAttributeDeclaration(string name) { }
CodeAttributeDeclaration(string name, params System.CodeDom.CodeAttributeArgument[] arguments)595         public CodeAttributeDeclaration(string name, params System.CodeDom.CodeAttributeArgument[] arguments) { }
596         public System.CodeDom.CodeAttributeArgumentCollection Arguments { get { throw null; } }
597         public System.CodeDom.CodeTypeReference AttributeType { get { throw null; } }
598         public string Name { get { throw null; } set { } }
599     }
600     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
601     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
602     [System.SerializableAttribute]
603     public partial class CodeAttributeDeclarationCollection : System.Collections.CollectionBase
604     {
CodeAttributeDeclarationCollection()605         public CodeAttributeDeclarationCollection() { }
CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclarationCollection value)606         public CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclarationCollection value) { }
CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclaration[] value)607         public CodeAttributeDeclarationCollection(System.CodeDom.CodeAttributeDeclaration[] value) { }
608         public System.CodeDom.CodeAttributeDeclaration this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeAttributeDeclaration value)609         public int Add(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
AddRange(System.CodeDom.CodeAttributeDeclarationCollection value)610         public void AddRange(System.CodeDom.CodeAttributeDeclarationCollection value) { }
AddRange(System.CodeDom.CodeAttributeDeclaration[] value)611         public void AddRange(System.CodeDom.CodeAttributeDeclaration[] value) { }
Contains(System.CodeDom.CodeAttributeDeclaration value)612         public bool Contains(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
CopyTo(System.CodeDom.CodeAttributeDeclaration[] array, int index)613         public void CopyTo(System.CodeDom.CodeAttributeDeclaration[] array, int index) { }
IndexOf(System.CodeDom.CodeAttributeDeclaration value)614         public int IndexOf(System.CodeDom.CodeAttributeDeclaration value) { throw null; }
Insert(int index, System.CodeDom.CodeAttributeDeclaration value)615         public void Insert(int index, System.CodeDom.CodeAttributeDeclaration value) { }
Remove(System.CodeDom.CodeAttributeDeclaration value)616         public void Remove(System.CodeDom.CodeAttributeDeclaration value) { }
617     }
618     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
619     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
620     [System.SerializableAttribute]
621     public partial class CodeBaseReferenceExpression : System.CodeDom.CodeExpression
622     {
CodeBaseReferenceExpression()623         public CodeBaseReferenceExpression() { }
624     }
625     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
626     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
627     [System.SerializableAttribute]
628     public partial class CodeBinaryOperatorExpression : System.CodeDom.CodeExpression
629     {
CodeBinaryOperatorExpression()630         public CodeBinaryOperatorExpression() { }
CodeBinaryOperatorExpression(System.CodeDom.CodeExpression left, System.CodeDom.CodeBinaryOperatorType op, System.CodeDom.CodeExpression right)631         public CodeBinaryOperatorExpression(System.CodeDom.CodeExpression left, System.CodeDom.CodeBinaryOperatorType op, System.CodeDom.CodeExpression right) { }
632         public System.CodeDom.CodeExpression Left { get { throw null; } set { } }
633         public System.CodeDom.CodeBinaryOperatorType Operator { get { throw null; } set { } }
634         public System.CodeDom.CodeExpression Right { get { throw null; } set { } }
635     }
636     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
637     [System.SerializableAttribute]
638     public enum CodeBinaryOperatorType
639     {
640         Add = 0,
641         Assign = 5,
642         BitwiseAnd = 10,
643         BitwiseOr = 9,
644         BooleanAnd = 12,
645         BooleanOr = 11,
646         Divide = 3,
647         GreaterThan = 15,
648         GreaterThanOrEqual = 16,
649         IdentityEquality = 7,
650         IdentityInequality = 6,
651         LessThan = 13,
652         LessThanOrEqual = 14,
653         Modulus = 4,
654         Multiply = 2,
655         Subtract = 1,
656         ValueEquality = 8,
657     }
658     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
659     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
660     [System.SerializableAttribute]
661     public partial class CodeCastExpression : System.CodeDom.CodeExpression
662     {
CodeCastExpression()663         public CodeCastExpression() { }
CodeCastExpression(System.CodeDom.CodeTypeReference targetType, System.CodeDom.CodeExpression expression)664         public CodeCastExpression(System.CodeDom.CodeTypeReference targetType, System.CodeDom.CodeExpression expression) { }
CodeCastExpression(string targetType, System.CodeDom.CodeExpression expression)665         public CodeCastExpression(string targetType, System.CodeDom.CodeExpression expression) { }
CodeCastExpression(System.Type targetType, System.CodeDom.CodeExpression expression)666         public CodeCastExpression(System.Type targetType, System.CodeDom.CodeExpression expression) { }
667         public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
668         public System.CodeDom.CodeTypeReference TargetType { get { throw null; } set { } }
669     }
670     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
671     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
672     [System.SerializableAttribute]
673     public partial class CodeCatchClause
674     {
CodeCatchClause()675         public CodeCatchClause() { }
CodeCatchClause(string localName)676         public CodeCatchClause(string localName) { }
CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType)677         public CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType) { }
CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType, params System.CodeDom.CodeStatement[] statements)678         public CodeCatchClause(string localName, System.CodeDom.CodeTypeReference catchExceptionType, params System.CodeDom.CodeStatement[] statements) { }
679         public System.CodeDom.CodeTypeReference CatchExceptionType { get { throw null; } set { } }
680         public string LocalName { get { throw null; } set { } }
681         public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
682     }
683     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
684     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
685     [System.SerializableAttribute]
686     public partial class CodeCatchClauseCollection : System.Collections.CollectionBase
687     {
CodeCatchClauseCollection()688         public CodeCatchClauseCollection() { }
CodeCatchClauseCollection(System.CodeDom.CodeCatchClauseCollection value)689         public CodeCatchClauseCollection(System.CodeDom.CodeCatchClauseCollection value) { }
CodeCatchClauseCollection(System.CodeDom.CodeCatchClause[] value)690         public CodeCatchClauseCollection(System.CodeDom.CodeCatchClause[] value) { }
691         public System.CodeDom.CodeCatchClause this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeCatchClause value)692         public int Add(System.CodeDom.CodeCatchClause value) { throw null; }
AddRange(System.CodeDom.CodeCatchClauseCollection value)693         public void AddRange(System.CodeDom.CodeCatchClauseCollection value) { }
AddRange(System.CodeDom.CodeCatchClause[] value)694         public void AddRange(System.CodeDom.CodeCatchClause[] value) { }
Contains(System.CodeDom.CodeCatchClause value)695         public bool Contains(System.CodeDom.CodeCatchClause value) { throw null; }
CopyTo(System.CodeDom.CodeCatchClause[] array, int index)696         public void CopyTo(System.CodeDom.CodeCatchClause[] array, int index) { }
IndexOf(System.CodeDom.CodeCatchClause value)697         public int IndexOf(System.CodeDom.CodeCatchClause value) { throw null; }
Insert(int index, System.CodeDom.CodeCatchClause value)698         public void Insert(int index, System.CodeDom.CodeCatchClause value) { }
Remove(System.CodeDom.CodeCatchClause value)699         public void Remove(System.CodeDom.CodeCatchClause value) { }
700     }
701     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
702     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
703     [System.SerializableAttribute]
704     public partial class CodeChecksumPragma : System.CodeDom.CodeDirective
705     {
CodeChecksumPragma()706         public CodeChecksumPragma() { }
CodeChecksumPragma(string fileName, System.Guid checksumAlgorithmId, byte[] checksumData)707         public CodeChecksumPragma(string fileName, System.Guid checksumAlgorithmId, byte[] checksumData) { }
708         public System.Guid ChecksumAlgorithmId { get { throw null; } set { } }
709         public byte[] ChecksumData { get { throw null; } set { } }
710         public string FileName { get { throw null; } set { } }
711     }
712     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
713     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
714     [System.SerializableAttribute]
715     public partial class CodeComment : System.CodeDom.CodeObject
716     {
CodeComment()717         public CodeComment() { }
CodeComment(string text)718         public CodeComment(string text) { }
CodeComment(string text, bool docComment)719         public CodeComment(string text, bool docComment) { }
720         public bool DocComment { get { throw null; } set { } }
721         public string Text { get { throw null; } set { } }
722     }
723     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
724     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
725     [System.SerializableAttribute]
726     public partial class CodeCommentStatement : System.CodeDom.CodeStatement
727     {
CodeCommentStatement()728         public CodeCommentStatement() { }
CodeCommentStatement(System.CodeDom.CodeComment comment)729         public CodeCommentStatement(System.CodeDom.CodeComment comment) { }
CodeCommentStatement(string text)730         public CodeCommentStatement(string text) { }
CodeCommentStatement(string text, bool docComment)731         public CodeCommentStatement(string text, bool docComment) { }
732         public System.CodeDom.CodeComment Comment { get { throw null; } set { } }
733     }
734     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
735     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
736     [System.SerializableAttribute]
737     public partial class CodeCommentStatementCollection : System.Collections.CollectionBase
738     {
CodeCommentStatementCollection()739         public CodeCommentStatementCollection() { }
CodeCommentStatementCollection(System.CodeDom.CodeCommentStatementCollection value)740         public CodeCommentStatementCollection(System.CodeDom.CodeCommentStatementCollection value) { }
CodeCommentStatementCollection(System.CodeDom.CodeCommentStatement[] value)741         public CodeCommentStatementCollection(System.CodeDom.CodeCommentStatement[] value) { }
742         public System.CodeDom.CodeCommentStatement this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeCommentStatement value)743         public int Add(System.CodeDom.CodeCommentStatement value) { throw null; }
AddRange(System.CodeDom.CodeCommentStatementCollection value)744         public void AddRange(System.CodeDom.CodeCommentStatementCollection value) { }
AddRange(System.CodeDom.CodeCommentStatement[] value)745         public void AddRange(System.CodeDom.CodeCommentStatement[] value) { }
Contains(System.CodeDom.CodeCommentStatement value)746         public bool Contains(System.CodeDom.CodeCommentStatement value) { throw null; }
CopyTo(System.CodeDom.CodeCommentStatement[] array, int index)747         public void CopyTo(System.CodeDom.CodeCommentStatement[] array, int index) { }
IndexOf(System.CodeDom.CodeCommentStatement value)748         public int IndexOf(System.CodeDom.CodeCommentStatement value) { throw null; }
Insert(int index, System.CodeDom.CodeCommentStatement value)749         public void Insert(int index, System.CodeDom.CodeCommentStatement value) { }
Remove(System.CodeDom.CodeCommentStatement value)750         public void Remove(System.CodeDom.CodeCommentStatement value) { }
751     }
752     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
753     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
754     [System.SerializableAttribute]
755     public partial class CodeCompileUnit : System.CodeDom.CodeObject
756     {
CodeCompileUnit()757         public CodeCompileUnit() { }
758         public System.CodeDom.CodeAttributeDeclarationCollection AssemblyCustomAttributes { get { throw null; } }
759         public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
760         public System.CodeDom.CodeNamespaceCollection Namespaces { get { throw null; } }
761         public System.Collections.Specialized.StringCollection ReferencedAssemblies { get { throw null; } }
762         public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
763     }
764     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
765     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
766     [System.SerializableAttribute]
767     public partial class CodeConditionStatement : System.CodeDom.CodeStatement
768     {
CodeConditionStatement()769         public CodeConditionStatement() { }
CodeConditionStatement(System.CodeDom.CodeExpression condition, params System.CodeDom.CodeStatement[] trueStatements)770         public CodeConditionStatement(System.CodeDom.CodeExpression condition, params System.CodeDom.CodeStatement[] trueStatements) { }
CodeConditionStatement(System.CodeDom.CodeExpression condition, System.CodeDom.CodeStatement[] trueStatements, System.CodeDom.CodeStatement[] falseStatements)771         public CodeConditionStatement(System.CodeDom.CodeExpression condition, System.CodeDom.CodeStatement[] trueStatements, System.CodeDom.CodeStatement[] falseStatements) { }
772         public System.CodeDom.CodeExpression Condition { get { throw null; } set { } }
773         public System.CodeDom.CodeStatementCollection FalseStatements { get { throw null; } }
774         public System.CodeDom.CodeStatementCollection TrueStatements { get { throw null; } }
775     }
776     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
777     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
778     [System.SerializableAttribute]
779     public partial class CodeConstructor : System.CodeDom.CodeMemberMethod
780     {
CodeConstructor()781         public CodeConstructor() { }
782         public System.CodeDom.CodeExpressionCollection BaseConstructorArgs { get { throw null; } }
783         public System.CodeDom.CodeExpressionCollection ChainedConstructorArgs { get { throw null; } }
784     }
785     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
786     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
787     [System.SerializableAttribute]
788     public partial class CodeDefaultValueExpression : System.CodeDom.CodeExpression
789     {
CodeDefaultValueExpression()790         public CodeDefaultValueExpression() { }
CodeDefaultValueExpression(System.CodeDom.CodeTypeReference type)791         public CodeDefaultValueExpression(System.CodeDom.CodeTypeReference type) { }
792         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
793     }
794     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
795     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
796     [System.SerializableAttribute]
797     public partial class CodeDelegateCreateExpression : System.CodeDom.CodeExpression
798     {
CodeDelegateCreateExpression()799         public CodeDelegateCreateExpression() { }
CodeDelegateCreateExpression(System.CodeDom.CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName)800         public CodeDelegateCreateExpression(System.CodeDom.CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName) { }
801         public System.CodeDom.CodeTypeReference DelegateType { get { throw null; } set { } }
802         public string MethodName { get { throw null; } set { } }
803         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
804     }
805     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
806     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
807     [System.SerializableAttribute]
808     public partial class CodeDelegateInvokeExpression : System.CodeDom.CodeExpression
809     {
CodeDelegateInvokeExpression()810         public CodeDelegateInvokeExpression() { }
CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject)811         public CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject) { }
CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] parameters)812         public CodeDelegateInvokeExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] parameters) { }
813         public System.CodeDom.CodeExpressionCollection Parameters { get { throw null; } }
814         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
815     }
816     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
817     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
818     [System.SerializableAttribute]
819     public partial class CodeDirectionExpression : System.CodeDom.CodeExpression
820     {
CodeDirectionExpression()821         public CodeDirectionExpression() { }
CodeDirectionExpression(System.CodeDom.FieldDirection direction, System.CodeDom.CodeExpression expression)822         public CodeDirectionExpression(System.CodeDom.FieldDirection direction, System.CodeDom.CodeExpression expression) { }
823         public System.CodeDom.FieldDirection Direction { get { throw null; } set { } }
824         public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
825     }
826     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
827     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
828     [System.SerializableAttribute]
829     public partial class CodeDirective : System.CodeDom.CodeObject
830     {
CodeDirective()831         public CodeDirective() { }
832     }
833     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
834     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
835     [System.SerializableAttribute]
836     public partial class CodeDirectiveCollection : System.Collections.CollectionBase
837     {
CodeDirectiveCollection()838         public CodeDirectiveCollection() { }
CodeDirectiveCollection(System.CodeDom.CodeDirectiveCollection value)839         public CodeDirectiveCollection(System.CodeDom.CodeDirectiveCollection value) { }
CodeDirectiveCollection(System.CodeDom.CodeDirective[] value)840         public CodeDirectiveCollection(System.CodeDom.CodeDirective[] value) { }
841         public System.CodeDom.CodeDirective this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeDirective value)842         public int Add(System.CodeDom.CodeDirective value) { throw null; }
AddRange(System.CodeDom.CodeDirectiveCollection value)843         public void AddRange(System.CodeDom.CodeDirectiveCollection value) { }
AddRange(System.CodeDom.CodeDirective[] value)844         public void AddRange(System.CodeDom.CodeDirective[] value) { }
Contains(System.CodeDom.CodeDirective value)845         public bool Contains(System.CodeDom.CodeDirective value) { throw null; }
CopyTo(System.CodeDom.CodeDirective[] array, int index)846         public void CopyTo(System.CodeDom.CodeDirective[] array, int index) { }
IndexOf(System.CodeDom.CodeDirective value)847         public int IndexOf(System.CodeDom.CodeDirective value) { throw null; }
Insert(int index, System.CodeDom.CodeDirective value)848         public void Insert(int index, System.CodeDom.CodeDirective value) { }
Remove(System.CodeDom.CodeDirective value)849         public void Remove(System.CodeDom.CodeDirective value) { }
850     }
851     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
852     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
853     [System.SerializableAttribute]
854     public partial class CodeEntryPointMethod : System.CodeDom.CodeMemberMethod
855     {
CodeEntryPointMethod()856         public CodeEntryPointMethod() { }
857     }
858     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
859     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
860     [System.SerializableAttribute]
861     public partial class CodeEventReferenceExpression : System.CodeDom.CodeExpression
862     {
CodeEventReferenceExpression()863         public CodeEventReferenceExpression() { }
CodeEventReferenceExpression(System.CodeDom.CodeExpression targetObject, string eventName)864         public CodeEventReferenceExpression(System.CodeDom.CodeExpression targetObject, string eventName) { }
865         public string EventName { get { throw null; } set { } }
866         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
867     }
868     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
869     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
870     [System.SerializableAttribute]
871     public partial class CodeExpression : System.CodeDom.CodeObject
872     {
CodeExpression()873         public CodeExpression() { }
874     }
875     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
876     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
877     [System.SerializableAttribute]
878     public partial class CodeExpressionCollection : System.Collections.CollectionBase
879     {
CodeExpressionCollection()880         public CodeExpressionCollection() { }
CodeExpressionCollection(System.CodeDom.CodeExpressionCollection value)881         public CodeExpressionCollection(System.CodeDom.CodeExpressionCollection value) { }
CodeExpressionCollection(System.CodeDom.CodeExpression[] value)882         public CodeExpressionCollection(System.CodeDom.CodeExpression[] value) { }
883         public System.CodeDom.CodeExpression this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeExpression value)884         public int Add(System.CodeDom.CodeExpression value) { throw null; }
AddRange(System.CodeDom.CodeExpressionCollection value)885         public void AddRange(System.CodeDom.CodeExpressionCollection value) { }
AddRange(System.CodeDom.CodeExpression[] value)886         public void AddRange(System.CodeDom.CodeExpression[] value) { }
Contains(System.CodeDom.CodeExpression value)887         public bool Contains(System.CodeDom.CodeExpression value) { throw null; }
CopyTo(System.CodeDom.CodeExpression[] array, int index)888         public void CopyTo(System.CodeDom.CodeExpression[] array, int index) { }
IndexOf(System.CodeDom.CodeExpression value)889         public int IndexOf(System.CodeDom.CodeExpression value) { throw null; }
Insert(int index, System.CodeDom.CodeExpression value)890         public void Insert(int index, System.CodeDom.CodeExpression value) { }
Remove(System.CodeDom.CodeExpression value)891         public void Remove(System.CodeDom.CodeExpression value) { }
892     }
893     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
894     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
895     [System.SerializableAttribute]
896     public partial class CodeExpressionStatement : System.CodeDom.CodeStatement
897     {
CodeExpressionStatement()898         public CodeExpressionStatement() { }
CodeExpressionStatement(System.CodeDom.CodeExpression expression)899         public CodeExpressionStatement(System.CodeDom.CodeExpression expression) { }
900         public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
901     }
902     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
903     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
904     [System.SerializableAttribute]
905     public partial class CodeFieldReferenceExpression : System.CodeDom.CodeExpression
906     {
CodeFieldReferenceExpression()907         public CodeFieldReferenceExpression() { }
CodeFieldReferenceExpression(System.CodeDom.CodeExpression targetObject, string fieldName)908         public CodeFieldReferenceExpression(System.CodeDom.CodeExpression targetObject, string fieldName) { }
909         public string FieldName { get { throw null; } set { } }
910         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
911     }
912     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
913     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
914     [System.SerializableAttribute]
915     public partial class CodeGotoStatement : System.CodeDom.CodeStatement
916     {
CodeGotoStatement()917         public CodeGotoStatement() { }
CodeGotoStatement(string label)918         public CodeGotoStatement(string label) { }
919         public string Label { get { throw null; } set { } }
920     }
921     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
922     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
923     [System.SerializableAttribute]
924     public partial class CodeIndexerExpression : System.CodeDom.CodeExpression
925     {
CodeIndexerExpression()926         public CodeIndexerExpression() { }
CodeIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices)927         public CodeIndexerExpression(System.CodeDom.CodeExpression targetObject, params System.CodeDom.CodeExpression[] indices) { }
928         public System.CodeDom.CodeExpressionCollection Indices { get { throw null; } }
929         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
930     }
931     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
932     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
933     [System.SerializableAttribute]
934     public partial class CodeIterationStatement : System.CodeDom.CodeStatement
935     {
CodeIterationStatement()936         public CodeIterationStatement() { }
CodeIterationStatement(System.CodeDom.CodeStatement initStatement, System.CodeDom.CodeExpression testExpression, System.CodeDom.CodeStatement incrementStatement, params System.CodeDom.CodeStatement[] statements)937         public CodeIterationStatement(System.CodeDom.CodeStatement initStatement, System.CodeDom.CodeExpression testExpression, System.CodeDom.CodeStatement incrementStatement, params System.CodeDom.CodeStatement[] statements) { }
938         public System.CodeDom.CodeStatement IncrementStatement { get { throw null; } set { } }
939         public System.CodeDom.CodeStatement InitStatement { get { throw null; } set { } }
940         public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
941         public System.CodeDom.CodeExpression TestExpression { get { throw null; } set { } }
942     }
943     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
944     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
945     [System.SerializableAttribute]
946     public partial class CodeLabeledStatement : System.CodeDom.CodeStatement
947     {
CodeLabeledStatement()948         public CodeLabeledStatement() { }
CodeLabeledStatement(string label)949         public CodeLabeledStatement(string label) { }
CodeLabeledStatement(string label, System.CodeDom.CodeStatement statement)950         public CodeLabeledStatement(string label, System.CodeDom.CodeStatement statement) { }
951         public string Label { get { throw null; } set { } }
952         public System.CodeDom.CodeStatement Statement { get { throw null; } set { } }
953     }
954     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
955     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
956     [System.SerializableAttribute]
957     public partial class CodeLinePragma
958     {
CodeLinePragma()959         public CodeLinePragma() { }
CodeLinePragma(string fileName, int lineNumber)960         public CodeLinePragma(string fileName, int lineNumber) { }
961         public string FileName { get { throw null; } set { } }
962         public int LineNumber { get { throw null; } set { } }
963     }
964     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
965     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
966     [System.SerializableAttribute]
967     public partial class CodeMemberEvent : System.CodeDom.CodeTypeMember
968     {
CodeMemberEvent()969         public CodeMemberEvent() { }
970         public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
971         public System.CodeDom.CodeTypeReference PrivateImplementationType { get { throw null; } set { } }
972         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
973     }
974     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
975     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
976     [System.SerializableAttribute]
977     public partial class CodeMemberField : System.CodeDom.CodeTypeMember
978     {
CodeMemberField()979         public CodeMemberField() { }
CodeMemberField(System.CodeDom.CodeTypeReference type, string name)980         public CodeMemberField(System.CodeDom.CodeTypeReference type, string name) { }
CodeMemberField(string type, string name)981         public CodeMemberField(string type, string name) { }
CodeMemberField(System.Type type, string name)982         public CodeMemberField(System.Type type, string name) { }
983         public System.CodeDom.CodeExpression InitExpression { get { throw null; } set { } }
984         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
985     }
986     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
987     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
988     [System.SerializableAttribute]
989     public partial class CodeMemberMethod : System.CodeDom.CodeTypeMember
990     {
CodeMemberMethod()991         public CodeMemberMethod() { }
992         public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
993         public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
994         public System.CodeDom.CodeTypeReference PrivateImplementationType { get { throw null; } set { } }
995         public System.CodeDom.CodeTypeReference ReturnType { get { throw null; } set { } }
996         public System.CodeDom.CodeAttributeDeclarationCollection ReturnTypeCustomAttributes { get { throw null; } }
997         public System.CodeDom.CodeStatementCollection Statements { get { throw null; } }
998         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
999         public System.CodeDom.CodeTypeParameterCollection TypeParameters { get { throw null; } }
1000         public event System.EventHandler PopulateImplementationTypes { add { } remove { } }
1001         public event System.EventHandler PopulateParameters { add { } remove { } }
1002         public event System.EventHandler PopulateStatements { add { } remove { } }
1003     }
1004     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1005     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1006     [System.SerializableAttribute]
1007     public partial class CodeMemberProperty : System.CodeDom.CodeTypeMember
1008     {
CodeMemberProperty()1009         public CodeMemberProperty() { }
1010         public System.CodeDom.CodeStatementCollection GetStatements { get { throw null; } }
1011         public bool HasGet { get { throw null; } set { } }
1012         public bool HasSet { get { throw null; } set { } }
1013         public System.CodeDom.CodeTypeReferenceCollection ImplementationTypes { get { throw null; } }
1014         public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
1015         public System.CodeDom.CodeTypeReference PrivateImplementationType { get { throw null; } set { } }
1016         public System.CodeDom.CodeStatementCollection SetStatements { get { throw null; } }
1017         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1018     }
1019     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1020     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1021     [System.SerializableAttribute]
1022     public partial class CodeMethodInvokeExpression : System.CodeDom.CodeExpression
1023     {
CodeMethodInvokeExpression()1024         public CodeMethodInvokeExpression() { }
CodeMethodInvokeExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeExpression[] parameters)1025         public CodeMethodInvokeExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeExpression[] parameters) { }
CodeMethodInvokeExpression(System.CodeDom.CodeMethodReferenceExpression method, params System.CodeDom.CodeExpression[] parameters)1026         public CodeMethodInvokeExpression(System.CodeDom.CodeMethodReferenceExpression method, params System.CodeDom.CodeExpression[] parameters) { }
1027         public System.CodeDom.CodeMethodReferenceExpression Method { get { throw null; } set { } }
1028         public System.CodeDom.CodeExpressionCollection Parameters { get { throw null; } }
1029     }
1030     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1031     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1032     [System.SerializableAttribute]
1033     public partial class CodeMethodReferenceExpression : System.CodeDom.CodeExpression
1034     {
CodeMethodReferenceExpression()1035         public CodeMethodReferenceExpression() { }
CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName)1036         public CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName) { }
CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeTypeReference[] typeParameters)1037         public CodeMethodReferenceExpression(System.CodeDom.CodeExpression targetObject, string methodName, params System.CodeDom.CodeTypeReference[] typeParameters) { }
1038         public string MethodName { get { throw null; } set { } }
1039         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
1040         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1041         public System.CodeDom.CodeTypeReferenceCollection TypeArguments { get { throw null; } }
1042     }
1043     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1044     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1045     [System.SerializableAttribute]
1046     public partial class CodeMethodReturnStatement : System.CodeDom.CodeStatement
1047     {
CodeMethodReturnStatement()1048         public CodeMethodReturnStatement() { }
CodeMethodReturnStatement(System.CodeDom.CodeExpression expression)1049         public CodeMethodReturnStatement(System.CodeDom.CodeExpression expression) { }
1050         public System.CodeDom.CodeExpression Expression { get { throw null; } set { } }
1051     }
1052     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1053     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1054     [System.SerializableAttribute]
1055     public partial class CodeNamespace : System.CodeDom.CodeObject
1056     {
CodeNamespace()1057         public CodeNamespace() { }
CodeNamespace(string name)1058         public CodeNamespace(string name) { }
1059         public System.CodeDom.CodeCommentStatementCollection Comments { get { throw null; } }
1060         public System.CodeDom.CodeNamespaceImportCollection Imports { get { throw null; } }
1061         public string Name { get { throw null; } set { } }
1062         public System.CodeDom.CodeTypeDeclarationCollection Types { get { throw null; } }
1063         public event System.EventHandler PopulateComments { add { } remove { } }
1064         public event System.EventHandler PopulateImports { add { } remove { } }
1065         public event System.EventHandler PopulateTypes { add { } remove { } }
1066     }
1067     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1068     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1069     [System.SerializableAttribute]
1070     public partial class CodeNamespaceCollection : System.Collections.CollectionBase
1071     {
CodeNamespaceCollection()1072         public CodeNamespaceCollection() { }
CodeNamespaceCollection(System.CodeDom.CodeNamespaceCollection value)1073         public CodeNamespaceCollection(System.CodeDom.CodeNamespaceCollection value) { }
CodeNamespaceCollection(System.CodeDom.CodeNamespace[] value)1074         public CodeNamespaceCollection(System.CodeDom.CodeNamespace[] value) { }
1075         public System.CodeDom.CodeNamespace this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeNamespace value)1076         public int Add(System.CodeDom.CodeNamespace value) { throw null; }
AddRange(System.CodeDom.CodeNamespaceCollection value)1077         public void AddRange(System.CodeDom.CodeNamespaceCollection value) { }
AddRange(System.CodeDom.CodeNamespace[] value)1078         public void AddRange(System.CodeDom.CodeNamespace[] value) { }
Contains(System.CodeDom.CodeNamespace value)1079         public bool Contains(System.CodeDom.CodeNamespace value) { throw null; }
CopyTo(System.CodeDom.CodeNamespace[] array, int index)1080         public void CopyTo(System.CodeDom.CodeNamespace[] array, int index) { }
IndexOf(System.CodeDom.CodeNamespace value)1081         public int IndexOf(System.CodeDom.CodeNamespace value) { throw null; }
Insert(int index, System.CodeDom.CodeNamespace value)1082         public void Insert(int index, System.CodeDom.CodeNamespace value) { }
Remove(System.CodeDom.CodeNamespace value)1083         public void Remove(System.CodeDom.CodeNamespace value) { }
1084     }
1085     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1086     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1087     [System.SerializableAttribute]
1088     public partial class CodeNamespaceImport : System.CodeDom.CodeObject
1089     {
CodeNamespaceImport()1090         public CodeNamespaceImport() { }
CodeNamespaceImport(string nameSpace)1091         public CodeNamespaceImport(string nameSpace) { }
1092         public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
1093         public string Namespace { get { throw null; } set { } }
1094     }
1095     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1096     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1097     [System.SerializableAttribute]
1098     public partial class CodeNamespaceImportCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1099     {
CodeNamespaceImportCollection()1100         public CodeNamespaceImportCollection() { }
1101         public int Count { get { throw null; } }
1102         public System.CodeDom.CodeNamespaceImport this[int index] { get { throw null; } set { } }
1103         int System.Collections.ICollection.Count { get { throw null; } }
1104         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1105         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1106         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1107         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1108         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeNamespaceImport value)1109         public void Add(System.CodeDom.CodeNamespaceImport value) { }
AddRange(System.CodeDom.CodeNamespaceImport[] value)1110         public void AddRange(System.CodeDom.CodeNamespaceImport[] value) { }
Clear()1111         public void Clear() { }
GetEnumerator()1112         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1113         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1114         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1115         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1116         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1117         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1118         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1119         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1120         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1121         void System.Collections.IList.RemoveAt(int index) { }
1122     }
1123     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1124     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1125     [System.SerializableAttribute]
1126     public partial class CodeObject
1127     {
CodeObject()1128         public CodeObject() { }
1129         public System.Collections.IDictionary UserData { get { throw null; } }
1130     }
1131     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1132     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1133     [System.SerializableAttribute]
1134     public partial class CodeObjectCreateExpression : System.CodeDom.CodeExpression
1135     {
CodeObjectCreateExpression()1136         public CodeObjectCreateExpression() { }
CodeObjectCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] parameters)1137         public CodeObjectCreateExpression(System.CodeDom.CodeTypeReference createType, params System.CodeDom.CodeExpression[] parameters) { }
CodeObjectCreateExpression(string createType, params System.CodeDom.CodeExpression[] parameters)1138         public CodeObjectCreateExpression(string createType, params System.CodeDom.CodeExpression[] parameters) { }
CodeObjectCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] parameters)1139         public CodeObjectCreateExpression(System.Type createType, params System.CodeDom.CodeExpression[] parameters) { }
1140         public System.CodeDom.CodeTypeReference CreateType { get { throw null; } set { } }
1141         public System.CodeDom.CodeExpressionCollection Parameters { get { throw null; } }
1142     }
1143     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1144     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1145     [System.SerializableAttribute]
1146     public partial class CodeParameterDeclarationExpression : System.CodeDom.CodeExpression
1147     {
CodeParameterDeclarationExpression()1148         public CodeParameterDeclarationExpression() { }
CodeParameterDeclarationExpression(System.CodeDom.CodeTypeReference type, string name)1149         public CodeParameterDeclarationExpression(System.CodeDom.CodeTypeReference type, string name) { }
CodeParameterDeclarationExpression(string type, string name)1150         public CodeParameterDeclarationExpression(string type, string name) { }
CodeParameterDeclarationExpression(System.Type type, string name)1151         public CodeParameterDeclarationExpression(System.Type type, string name) { }
1152         public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } set { } }
1153         public System.CodeDom.FieldDirection Direction { get { throw null; } set { } }
1154         public string Name { get { throw null; } set { } }
1155         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1156     }
1157     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1158     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1159     [System.SerializableAttribute]
1160     public partial class CodeParameterDeclarationExpressionCollection : System.Collections.CollectionBase
1161     {
CodeParameterDeclarationExpressionCollection()1162         public CodeParameterDeclarationExpressionCollection() { }
CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpressionCollection value)1163         public CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpressionCollection value) { }
CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpression[] value)1164         public CodeParameterDeclarationExpressionCollection(System.CodeDom.CodeParameterDeclarationExpression[] value) { }
1165         public System.CodeDom.CodeParameterDeclarationExpression this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeParameterDeclarationExpression value)1166         public int Add(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection value)1167         public void AddRange(System.CodeDom.CodeParameterDeclarationExpressionCollection value) { }
AddRange(System.CodeDom.CodeParameterDeclarationExpression[] value)1168         public void AddRange(System.CodeDom.CodeParameterDeclarationExpression[] value) { }
Contains(System.CodeDom.CodeParameterDeclarationExpression value)1169         public bool Contains(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
CopyTo(System.CodeDom.CodeParameterDeclarationExpression[] array, int index)1170         public void CopyTo(System.CodeDom.CodeParameterDeclarationExpression[] array, int index) { }
IndexOf(System.CodeDom.CodeParameterDeclarationExpression value)1171         public int IndexOf(System.CodeDom.CodeParameterDeclarationExpression value) { throw null; }
Insert(int index, System.CodeDom.CodeParameterDeclarationExpression value)1172         public void Insert(int index, System.CodeDom.CodeParameterDeclarationExpression value) { }
Remove(System.CodeDom.CodeParameterDeclarationExpression value)1173         public void Remove(System.CodeDom.CodeParameterDeclarationExpression value) { }
1174     }
1175     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1176     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1177     [System.SerializableAttribute]
1178     public partial class CodePrimitiveExpression : System.CodeDom.CodeExpression
1179     {
CodePrimitiveExpression()1180         public CodePrimitiveExpression() { }
CodePrimitiveExpression(object value)1181         public CodePrimitiveExpression(object value) { }
1182         public object Value { get { throw null; } set { } }
1183     }
1184     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1185     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1186     [System.SerializableAttribute]
1187     public partial class CodePropertyReferenceExpression : System.CodeDom.CodeExpression
1188     {
CodePropertyReferenceExpression()1189         public CodePropertyReferenceExpression() { }
CodePropertyReferenceExpression(System.CodeDom.CodeExpression targetObject, string propertyName)1190         public CodePropertyReferenceExpression(System.CodeDom.CodeExpression targetObject, string propertyName) { }
1191         public string PropertyName { get { throw null; } set { } }
1192         public System.CodeDom.CodeExpression TargetObject { get { throw null; } set { } }
1193     }
1194     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1195     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1196     [System.SerializableAttribute]
1197     public partial class CodePropertySetValueReferenceExpression : System.CodeDom.CodeExpression
1198     {
CodePropertySetValueReferenceExpression()1199         public CodePropertySetValueReferenceExpression() { }
1200     }
1201     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1202     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1203     [System.SerializableAttribute]
1204     public partial class CodeRegionDirective : System.CodeDom.CodeDirective
1205     {
CodeRegionDirective()1206         public CodeRegionDirective() { }
CodeRegionDirective(System.CodeDom.CodeRegionMode regionMode, string regionText)1207         public CodeRegionDirective(System.CodeDom.CodeRegionMode regionMode, string regionText) { }
1208         public System.CodeDom.CodeRegionMode RegionMode { get { throw null; } set { } }
1209         public string RegionText { get { throw null; } set { } }
1210     }
1211     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1212     [System.SerializableAttribute]
1213     public enum CodeRegionMode
1214     {
1215         End = 2,
1216         None = 0,
1217         Start = 1,
1218     }
1219     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1220     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1221     [System.SerializableAttribute]
1222     public partial class CodeRemoveEventStatement : System.CodeDom.CodeStatement
1223     {
CodeRemoveEventStatement()1224         public CodeRemoveEventStatement() { }
CodeRemoveEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener)1225         public CodeRemoveEventStatement(System.CodeDom.CodeEventReferenceExpression eventRef, System.CodeDom.CodeExpression listener) { }
CodeRemoveEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener)1226         public CodeRemoveEventStatement(System.CodeDom.CodeExpression targetObject, string eventName, System.CodeDom.CodeExpression listener) { }
1227         public System.CodeDom.CodeEventReferenceExpression Event { get { throw null; } set { } }
1228         public System.CodeDom.CodeExpression Listener { get { throw null; } set { } }
1229     }
1230     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1231     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1232     [System.SerializableAttribute]
1233     public partial class CodeSnippetCompileUnit : System.CodeDom.CodeCompileUnit
1234     {
CodeSnippetCompileUnit()1235         public CodeSnippetCompileUnit() { }
CodeSnippetCompileUnit(string value)1236         public CodeSnippetCompileUnit(string value) { }
1237         public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
1238         public string Value { get { throw null; } set { } }
1239     }
1240     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1241     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1242     [System.SerializableAttribute]
1243     public partial class CodeSnippetExpression : System.CodeDom.CodeExpression
1244     {
CodeSnippetExpression()1245         public CodeSnippetExpression() { }
CodeSnippetExpression(string value)1246         public CodeSnippetExpression(string value) { }
1247         public string Value { get { throw null; } set { } }
1248     }
1249     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1250     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1251     [System.SerializableAttribute]
1252     public partial class CodeSnippetStatement : System.CodeDom.CodeStatement
1253     {
CodeSnippetStatement()1254         public CodeSnippetStatement() { }
CodeSnippetStatement(string value)1255         public CodeSnippetStatement(string value) { }
1256         public string Value { get { throw null; } set { } }
1257     }
1258     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1259     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1260     [System.SerializableAttribute]
1261     public partial class CodeSnippetTypeMember : System.CodeDom.CodeTypeMember
1262     {
CodeSnippetTypeMember()1263         public CodeSnippetTypeMember() { }
CodeSnippetTypeMember(string text)1264         public CodeSnippetTypeMember(string text) { }
1265         public string Text { get { throw null; } set { } }
1266     }
1267     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1268     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1269     [System.SerializableAttribute]
1270     public partial class CodeStatement : System.CodeDom.CodeObject
1271     {
CodeStatement()1272         public CodeStatement() { }
1273         public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
1274         public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
1275         public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
1276     }
1277     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1278     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1279     [System.SerializableAttribute]
1280     public partial class CodeStatementCollection : System.Collections.CollectionBase
1281     {
CodeStatementCollection()1282         public CodeStatementCollection() { }
CodeStatementCollection(System.CodeDom.CodeStatementCollection value)1283         public CodeStatementCollection(System.CodeDom.CodeStatementCollection value) { }
CodeStatementCollection(System.CodeDom.CodeStatement[] value)1284         public CodeStatementCollection(System.CodeDom.CodeStatement[] value) { }
1285         public System.CodeDom.CodeStatement this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeExpression value)1286         public int Add(System.CodeDom.CodeExpression value) { throw null; }
Add(System.CodeDom.CodeStatement value)1287         public int Add(System.CodeDom.CodeStatement value) { throw null; }
AddRange(System.CodeDom.CodeStatementCollection value)1288         public void AddRange(System.CodeDom.CodeStatementCollection value) { }
AddRange(System.CodeDom.CodeStatement[] value)1289         public void AddRange(System.CodeDom.CodeStatement[] value) { }
Contains(System.CodeDom.CodeStatement value)1290         public bool Contains(System.CodeDom.CodeStatement value) { throw null; }
CopyTo(System.CodeDom.CodeStatement[] array, int index)1291         public void CopyTo(System.CodeDom.CodeStatement[] array, int index) { }
IndexOf(System.CodeDom.CodeStatement value)1292         public int IndexOf(System.CodeDom.CodeStatement value) { throw null; }
Insert(int index, System.CodeDom.CodeStatement value)1293         public void Insert(int index, System.CodeDom.CodeStatement value) { }
Remove(System.CodeDom.CodeStatement value)1294         public void Remove(System.CodeDom.CodeStatement value) { }
1295     }
1296     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1297     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1298     [System.SerializableAttribute]
1299     public partial class CodeThisReferenceExpression : System.CodeDom.CodeExpression
1300     {
CodeThisReferenceExpression()1301         public CodeThisReferenceExpression() { }
1302     }
1303     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1304     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1305     [System.SerializableAttribute]
1306     public partial class CodeThrowExceptionStatement : System.CodeDom.CodeStatement
1307     {
CodeThrowExceptionStatement()1308         public CodeThrowExceptionStatement() { }
CodeThrowExceptionStatement(System.CodeDom.CodeExpression toThrow)1309         public CodeThrowExceptionStatement(System.CodeDom.CodeExpression toThrow) { }
1310         public System.CodeDom.CodeExpression ToThrow { get { throw null; } set { } }
1311     }
1312     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1313     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1314     [System.SerializableAttribute]
1315     public partial class CodeTryCatchFinallyStatement : System.CodeDom.CodeStatement
1316     {
CodeTryCatchFinallyStatement()1317         public CodeTryCatchFinallyStatement() { }
CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses)1318         public CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses) { }
CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses, System.CodeDom.CodeStatement[] finallyStatements)1319         public CodeTryCatchFinallyStatement(System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses, System.CodeDom.CodeStatement[] finallyStatements) { }
1320         public System.CodeDom.CodeCatchClauseCollection CatchClauses { get { throw null; } }
1321         public System.CodeDom.CodeStatementCollection FinallyStatements { get { throw null; } }
1322         public System.CodeDom.CodeStatementCollection TryStatements { get { throw null; } }
1323     }
1324     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1325     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1326     [System.SerializableAttribute]
1327     public partial class CodeTypeConstructor : System.CodeDom.CodeMemberMethod
1328     {
CodeTypeConstructor()1329         public CodeTypeConstructor() { }
1330     }
1331     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1332     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1333     [System.SerializableAttribute]
1334     public partial class CodeTypeDeclaration : System.CodeDom.CodeTypeMember
1335     {
CodeTypeDeclaration()1336         public CodeTypeDeclaration() { }
CodeTypeDeclaration(string name)1337         public CodeTypeDeclaration(string name) { }
1338         public System.CodeDom.CodeTypeReferenceCollection BaseTypes { get { throw null; } }
1339         public bool IsClass { get { throw null; } set { } }
1340         public bool IsEnum { get { throw null; } set { } }
1341         public bool IsInterface { get { throw null; } set { } }
1342         public bool IsPartial { get { throw null; } set { } }
1343         public bool IsStruct { get { throw null; } set { } }
1344         public System.CodeDom.CodeTypeMemberCollection Members { get { throw null; } }
1345         public System.Reflection.TypeAttributes TypeAttributes { get { throw null; } set { } }
1346         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1347         public System.CodeDom.CodeTypeParameterCollection TypeParameters { get { throw null; } }
1348         public event System.EventHandler PopulateBaseTypes { add { } remove { } }
1349         public event System.EventHandler PopulateMembers { add { } remove { } }
1350     }
1351     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1352     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1353     [System.SerializableAttribute]
1354     public partial class CodeTypeDeclarationCollection : System.Collections.CollectionBase
1355     {
CodeTypeDeclarationCollection()1356         public CodeTypeDeclarationCollection() { }
CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclarationCollection value)1357         public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclarationCollection value) { }
CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclaration[] value)1358         public CodeTypeDeclarationCollection(System.CodeDom.CodeTypeDeclaration[] value) { }
1359         public System.CodeDom.CodeTypeDeclaration this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeDeclaration value)1360         public int Add(System.CodeDom.CodeTypeDeclaration value) { throw null; }
AddRange(System.CodeDom.CodeTypeDeclarationCollection value)1361         public void AddRange(System.CodeDom.CodeTypeDeclarationCollection value) { }
AddRange(System.CodeDom.CodeTypeDeclaration[] value)1362         public void AddRange(System.CodeDom.CodeTypeDeclaration[] value) { }
Contains(System.CodeDom.CodeTypeDeclaration value)1363         public bool Contains(System.CodeDom.CodeTypeDeclaration value) { throw null; }
CopyTo(System.CodeDom.CodeTypeDeclaration[] array, int index)1364         public void CopyTo(System.CodeDom.CodeTypeDeclaration[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeDeclaration value)1365         public int IndexOf(System.CodeDom.CodeTypeDeclaration value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeDeclaration value)1366         public void Insert(int index, System.CodeDom.CodeTypeDeclaration value) { }
Remove(System.CodeDom.CodeTypeDeclaration value)1367         public void Remove(System.CodeDom.CodeTypeDeclaration value) { }
1368     }
1369     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1370     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1371     [System.SerializableAttribute]
1372     public partial class CodeTypeDelegate : System.CodeDom.CodeTypeDeclaration
1373     {
CodeTypeDelegate()1374         public CodeTypeDelegate() { }
CodeTypeDelegate(string name)1375         public CodeTypeDelegate(string name) { }
1376         public System.CodeDom.CodeParameterDeclarationExpressionCollection Parameters { get { throw null; } }
1377         public System.CodeDom.CodeTypeReference ReturnType { get { throw null; } set { } }
1378     }
1379     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1380     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1381     [System.SerializableAttribute]
1382     public partial class CodeTypeMember : System.CodeDom.CodeObject
1383     {
CodeTypeMember()1384         public CodeTypeMember() { }
1385         public System.CodeDom.MemberAttributes Attributes { get { throw null; } set { } }
1386         public System.CodeDom.CodeCommentStatementCollection Comments { get { throw null; } }
1387         public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } set { } }
1388         public System.CodeDom.CodeDirectiveCollection EndDirectives { get { throw null; } }
1389         public System.CodeDom.CodeLinePragma LinePragma { get { throw null; } set { } }
1390         public string Name { get { throw null; } set { } }
1391         public System.CodeDom.CodeDirectiveCollection StartDirectives { get { throw null; } }
1392     }
1393     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1394     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1395     [System.SerializableAttribute]
1396     public partial class CodeTypeMemberCollection : System.Collections.CollectionBase
1397     {
CodeTypeMemberCollection()1398         public CodeTypeMemberCollection() { }
CodeTypeMemberCollection(System.CodeDom.CodeTypeMemberCollection value)1399         public CodeTypeMemberCollection(System.CodeDom.CodeTypeMemberCollection value) { }
CodeTypeMemberCollection(System.CodeDom.CodeTypeMember[] value)1400         public CodeTypeMemberCollection(System.CodeDom.CodeTypeMember[] value) { }
1401         public System.CodeDom.CodeTypeMember this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeMember value)1402         public int Add(System.CodeDom.CodeTypeMember value) { throw null; }
AddRange(System.CodeDom.CodeTypeMemberCollection value)1403         public void AddRange(System.CodeDom.CodeTypeMemberCollection value) { }
AddRange(System.CodeDom.CodeTypeMember[] value)1404         public void AddRange(System.CodeDom.CodeTypeMember[] value) { }
Contains(System.CodeDom.CodeTypeMember value)1405         public bool Contains(System.CodeDom.CodeTypeMember value) { throw null; }
CopyTo(System.CodeDom.CodeTypeMember[] array, int index)1406         public void CopyTo(System.CodeDom.CodeTypeMember[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeMember value)1407         public int IndexOf(System.CodeDom.CodeTypeMember value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeMember value)1408         public void Insert(int index, System.CodeDom.CodeTypeMember value) { }
Remove(System.CodeDom.CodeTypeMember value)1409         public void Remove(System.CodeDom.CodeTypeMember value) { }
1410     }
1411     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1412     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1413     [System.SerializableAttribute]
1414     public partial class CodeTypeOfExpression : System.CodeDom.CodeExpression
1415     {
CodeTypeOfExpression()1416         public CodeTypeOfExpression() { }
CodeTypeOfExpression(System.CodeDom.CodeTypeReference type)1417         public CodeTypeOfExpression(System.CodeDom.CodeTypeReference type) { }
CodeTypeOfExpression(string type)1418         public CodeTypeOfExpression(string type) { }
CodeTypeOfExpression(System.Type type)1419         public CodeTypeOfExpression(System.Type type) { }
1420         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1421     }
1422     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1423     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1424     [System.SerializableAttribute]
1425     public partial class CodeTypeParameter : System.CodeDom.CodeObject
1426     {
CodeTypeParameter()1427         public CodeTypeParameter() { }
CodeTypeParameter(string name)1428         public CodeTypeParameter(string name) { }
1429         public System.CodeDom.CodeTypeReferenceCollection Constraints { get { throw null; } }
1430         public System.CodeDom.CodeAttributeDeclarationCollection CustomAttributes { get { throw null; } }
1431         public bool HasConstructorConstraint { get { throw null; } set { } }
1432         public string Name { get { throw null; } set { } }
1433     }
1434     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1435     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1436     [System.SerializableAttribute]
1437     public partial class CodeTypeParameterCollection : System.Collections.CollectionBase
1438     {
CodeTypeParameterCollection()1439         public CodeTypeParameterCollection() { }
CodeTypeParameterCollection(System.CodeDom.CodeTypeParameterCollection value)1440         public CodeTypeParameterCollection(System.CodeDom.CodeTypeParameterCollection value) { }
CodeTypeParameterCollection(System.CodeDom.CodeTypeParameter[] value)1441         public CodeTypeParameterCollection(System.CodeDom.CodeTypeParameter[] value) { }
1442         public System.CodeDom.CodeTypeParameter this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeParameter value)1443         public int Add(System.CodeDom.CodeTypeParameter value) { throw null; }
Add(string value)1444         public void Add(string value) { }
AddRange(System.CodeDom.CodeTypeParameterCollection value)1445         public void AddRange(System.CodeDom.CodeTypeParameterCollection value) { }
AddRange(System.CodeDom.CodeTypeParameter[] value)1446         public void AddRange(System.CodeDom.CodeTypeParameter[] value) { }
Contains(System.CodeDom.CodeTypeParameter value)1447         public bool Contains(System.CodeDom.CodeTypeParameter value) { throw null; }
CopyTo(System.CodeDom.CodeTypeParameter[] array, int index)1448         public void CopyTo(System.CodeDom.CodeTypeParameter[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeParameter value)1449         public int IndexOf(System.CodeDom.CodeTypeParameter value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeParameter value)1450         public void Insert(int index, System.CodeDom.CodeTypeParameter value) { }
Remove(System.CodeDom.CodeTypeParameter value)1451         public void Remove(System.CodeDom.CodeTypeParameter value) { }
1452     }
1453     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1454     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1455     [System.SerializableAttribute]
1456     public partial class CodeTypeReference : System.CodeDom.CodeObject
1457     {
CodeTypeReference()1458         public CodeTypeReference() { }
CodeTypeReference(System.CodeDom.CodeTypeParameter typeParameter)1459         public CodeTypeReference(System.CodeDom.CodeTypeParameter typeParameter) { }
CodeTypeReference(System.CodeDom.CodeTypeReference arrayType, int rank)1460         public CodeTypeReference(System.CodeDom.CodeTypeReference arrayType, int rank) { }
CodeTypeReference(string typeName)1461         public CodeTypeReference(string typeName) { }
CodeTypeReference(string typeName, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption)1462         public CodeTypeReference(string typeName, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption) { }
CodeTypeReference(string typeName, params System.CodeDom.CodeTypeReference[] typeArguments)1463         public CodeTypeReference(string typeName, params System.CodeDom.CodeTypeReference[] typeArguments) { }
CodeTypeReference(string baseType, int rank)1464         public CodeTypeReference(string baseType, int rank) { }
CodeTypeReference(System.Type type)1465         public CodeTypeReference(System.Type type) { }
CodeTypeReference(System.Type type, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption)1466         public CodeTypeReference(System.Type type, System.CodeDom.CodeTypeReferenceOptions codeTypeReferenceOption) { }
1467         public System.CodeDom.CodeTypeReference ArrayElementType { get { throw null; } set { } }
1468         public int ArrayRank { get { throw null; } set { } }
1469         public string BaseType { get { throw null; } set { } }
1470         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1471         public System.CodeDom.CodeTypeReferenceOptions Options { get { throw null; } set { } }
1472         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1473         public System.CodeDom.CodeTypeReferenceCollection TypeArguments { get { throw null; } }
1474     }
1475     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1476     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1477     [System.SerializableAttribute]
1478     public partial class CodeTypeReferenceCollection : System.Collections.CollectionBase
1479     {
CodeTypeReferenceCollection()1480         public CodeTypeReferenceCollection() { }
CodeTypeReferenceCollection(System.CodeDom.CodeTypeReferenceCollection value)1481         public CodeTypeReferenceCollection(System.CodeDom.CodeTypeReferenceCollection value) { }
CodeTypeReferenceCollection(System.CodeDom.CodeTypeReference[] value)1482         public CodeTypeReferenceCollection(System.CodeDom.CodeTypeReference[] value) { }
1483         public System.CodeDom.CodeTypeReference this[int index] { get { throw null; } set { } }
Add(System.CodeDom.CodeTypeReference value)1484         public int Add(System.CodeDom.CodeTypeReference value) { throw null; }
Add(string value)1485         public void Add(string value) { }
Add(System.Type value)1486         public void Add(System.Type value) { }
AddRange(System.CodeDom.CodeTypeReferenceCollection value)1487         public void AddRange(System.CodeDom.CodeTypeReferenceCollection value) { }
AddRange(System.CodeDom.CodeTypeReference[] value)1488         public void AddRange(System.CodeDom.CodeTypeReference[] value) { }
Contains(System.CodeDom.CodeTypeReference value)1489         public bool Contains(System.CodeDom.CodeTypeReference value) { throw null; }
CopyTo(System.CodeDom.CodeTypeReference[] array, int index)1490         public void CopyTo(System.CodeDom.CodeTypeReference[] array, int index) { }
IndexOf(System.CodeDom.CodeTypeReference value)1491         public int IndexOf(System.CodeDom.CodeTypeReference value) { throw null; }
Insert(int index, System.CodeDom.CodeTypeReference value)1492         public void Insert(int index, System.CodeDom.CodeTypeReference value) { }
Remove(System.CodeDom.CodeTypeReference value)1493         public void Remove(System.CodeDom.CodeTypeReference value) { }
1494     }
1495     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1496     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1497     [System.SerializableAttribute]
1498     public partial class CodeTypeReferenceExpression : System.CodeDom.CodeExpression
1499     {
CodeTypeReferenceExpression()1500         public CodeTypeReferenceExpression() { }
CodeTypeReferenceExpression(System.CodeDom.CodeTypeReference type)1501         public CodeTypeReferenceExpression(System.CodeDom.CodeTypeReference type) { }
CodeTypeReferenceExpression(string type)1502         public CodeTypeReferenceExpression(string type) { }
CodeTypeReferenceExpression(System.Type type)1503         public CodeTypeReferenceExpression(System.Type type) { }
1504         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1505     }
1506     [System.FlagsAttribute]
1507     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1508     [System.SerializableAttribute]
1509     public enum CodeTypeReferenceOptions
1510     {
1511         GenericTypeParameter = 2,
1512         GlobalReference = 1,
1513     }
1514     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1515     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1516     [System.SerializableAttribute]
1517     public partial class CodeVariableDeclarationStatement : System.CodeDom.CodeStatement
1518     {
CodeVariableDeclarationStatement()1519         public CodeVariableDeclarationStatement() { }
CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name)1520         public CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name) { }
CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression)1521         public CodeVariableDeclarationStatement(System.CodeDom.CodeTypeReference type, string name, System.CodeDom.CodeExpression initExpression) { }
CodeVariableDeclarationStatement(string type, string name)1522         public CodeVariableDeclarationStatement(string type, string name) { }
CodeVariableDeclarationStatement(string type, string name, System.CodeDom.CodeExpression initExpression)1523         public CodeVariableDeclarationStatement(string type, string name, System.CodeDom.CodeExpression initExpression) { }
CodeVariableDeclarationStatement(System.Type type, string name)1524         public CodeVariableDeclarationStatement(System.Type type, string name) { }
CodeVariableDeclarationStatement(System.Type type, string name, System.CodeDom.CodeExpression initExpression)1525         public CodeVariableDeclarationStatement(System.Type type, string name, System.CodeDom.CodeExpression initExpression) { }
1526         public System.CodeDom.CodeExpression InitExpression { get { throw null; } set { } }
1527         public string Name { get { throw null; } set { } }
1528         public System.CodeDom.CodeTypeReference Type { get { throw null; } set { } }
1529     }
1530     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1531     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1532     [System.SerializableAttribute]
1533     public partial class CodeVariableReferenceExpression : System.CodeDom.CodeExpression
1534     {
CodeVariableReferenceExpression()1535         public CodeVariableReferenceExpression() { }
CodeVariableReferenceExpression(string variableName)1536         public CodeVariableReferenceExpression(string variableName) { }
1537         public string VariableName { get { throw null; } set { } }
1538     }
1539     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1540     [System.SerializableAttribute]
1541     public enum FieldDirection
1542     {
1543         In = 0,
1544         Out = 1,
1545         Ref = 2,
1546     }
1547     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1548     [System.SerializableAttribute]
1549     public enum MemberAttributes
1550     {
1551         Abstract = 1,
1552         AccessMask = 61440,
1553         Assembly = 4096,
1554         Const = 5,
1555         Family = 12288,
1556         FamilyAndAssembly = 8192,
1557         FamilyOrAssembly = 16384,
1558         Final = 2,
1559         New = 16,
1560         Overloaded = 256,
1561         Override = 4,
1562         Private = 20480,
1563         Public = 24576,
1564         ScopeMask = 15,
1565         Static = 3,
1566         VTableMask = 240,
1567     }
1568 }
1569 namespace System.CodeDom.Compiler
1570 {
1571     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1572     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1573     public abstract partial class CodeCompiler : System.CodeDom.Compiler.CodeGenerator, System.CodeDom.Compiler.ICodeCompiler
1574     {
CodeCompiler()1575         protected CodeCompiler() { }
1576         protected abstract string CompilerName { get; }
1577         protected abstract string FileExtension { get; }
CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters options)1578         protected abstract string CmdArgsFromParameters(System.CodeDom.Compiler.CompilerParameters options);
FromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e)1579         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)1580         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)1581         protected virtual System.CodeDom.Compiler.CompilerResults FromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName) { throw null; }
FromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames)1582         protected virtual System.CodeDom.Compiler.CompilerResults FromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames) { throw null; }
FromSource(System.CodeDom.Compiler.CompilerParameters options, string source)1583         protected virtual System.CodeDom.Compiler.CompilerResults FromSource(System.CodeDom.Compiler.CompilerParameters options, string source) { throw null; }
FromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources)1584         protected virtual System.CodeDom.Compiler.CompilerResults FromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources) { throw null; }
GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters options, string cmdArgs)1585         protected virtual string GetResponseFileCmdArgs(System.CodeDom.Compiler.CompilerParameters options, string cmdArgs) { throw null; }
JoinStringArray(string[] sa, string separator)1586         protected static string JoinStringArray(string[] sa, string separator) { throw null; }
ProcessCompilerOutputLine(System.CodeDom.Compiler.CompilerResults results, string line)1587         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)1588         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)1589         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)1590         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)1591         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)1592         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)1593         System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources) { throw null; }
1594     }
1595     [System.ComponentModel.ToolboxItemAttribute(false)]
1596     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1597     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1598     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1599     public abstract partial class CodeDomProvider : System.ComponentModel.Component
1600     {
CodeDomProvider()1601         protected CodeDomProvider() { }
1602         public virtual string FileExtension { get { throw null; } }
1603         public virtual System.CodeDom.Compiler.LanguageOptions LanguageOptions { get { throw null; } }
CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, params System.CodeDom.CodeCompileUnit[] compilationUnits)1604         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)1605         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)1606         public virtual System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, params string[] sources) { throw null; }
1607         [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()1608         public abstract System.CodeDom.Compiler.ICodeCompiler CreateCompiler();
CreateEscapedIdentifier(string value)1609         public virtual string CreateEscapedIdentifier(string value) { throw null; }
1610         [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()1611         public abstract System.CodeDom.Compiler.ICodeGenerator CreateGenerator();
CreateGenerator(System.IO.TextWriter output)1612         public virtual System.CodeDom.Compiler.ICodeGenerator CreateGenerator(System.IO.TextWriter output) { throw null; }
CreateGenerator(string fileName)1613         public virtual System.CodeDom.Compiler.ICodeGenerator CreateGenerator(string fileName) { throw null; }
1614         [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()1615         public virtual System.CodeDom.Compiler.ICodeParser CreateParser() { throw null; }
1616         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CreateProvider(string language)1617         public static System.CodeDom.Compiler.CodeDomProvider CreateProvider(string language) { throw null; }
1618         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CreateProvider(string language, System.Collections.Generic.IDictionary<string, string> providerOptions)1619         public static System.CodeDom.Compiler.CodeDomProvider CreateProvider(string language, System.Collections.Generic.IDictionary<string, string> providerOptions) { throw null; }
CreateValidIdentifier(string value)1620         public virtual string CreateValidIdentifier(string value) { throw null; }
GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit compileUnit, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1621         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)1622         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)1623         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)1624         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)1625         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)1626         public virtual void GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration codeType, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
1627         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
GetAllCompilerInfo()1628         public static System.CodeDom.Compiler.CompilerInfo[] GetAllCompilerInfo() { throw null; }
1629         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
GetCompilerInfo(string language)1630         public static System.CodeDom.Compiler.CompilerInfo GetCompilerInfo(string language) { throw null; }
GetConverter(System.Type type)1631         public virtual System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
1632         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
GetLanguageFromExtension(string extension)1633         public static string GetLanguageFromExtension(string extension) { throw null; }
GetTypeOutput(System.CodeDom.CodeTypeReference type)1634         public virtual string GetTypeOutput(System.CodeDom.CodeTypeReference type) { throw null; }
1635         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
IsDefinedExtension(string extension)1636         public static bool IsDefinedExtension(string extension) { throw null; }
1637         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
IsDefinedLanguage(string language)1638         public static bool IsDefinedLanguage(string language) { throw null; }
IsValidIdentifier(string value)1639         public virtual bool IsValidIdentifier(string value) { throw null; }
Parse(System.IO.TextReader codeStream)1640         public virtual System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream) { throw null; }
Supports(System.CodeDom.Compiler.GeneratorSupport generatorSupport)1641         public virtual bool Supports(System.CodeDom.Compiler.GeneratorSupport generatorSupport) { throw null; }
1642     }
1643     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1644     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1645     public abstract partial class CodeGenerator : System.CodeDom.Compiler.ICodeGenerator
1646     {
CodeGenerator()1647         protected CodeGenerator() { }
1648         protected System.CodeDom.CodeTypeDeclaration CurrentClass { get { throw null; } }
1649         protected System.CodeDom.CodeTypeMember CurrentMember { get { throw null; } }
1650         protected string CurrentMemberName { get { throw null; } }
1651         protected string CurrentTypeName { get { throw null; } }
1652         protected int Indent { get { throw null; } set { } }
1653         protected bool IsCurrentClass { get { throw null; } }
1654         protected bool IsCurrentDelegate { get { throw null; } }
1655         protected bool IsCurrentEnum { get { throw null; } }
1656         protected bool IsCurrentInterface { get { throw null; } }
1657         protected bool IsCurrentStruct { get { throw null; } }
1658         protected abstract string NullToken { get; }
1659         protected System.CodeDom.Compiler.CodeGeneratorOptions Options { get { throw null; } }
1660         protected System.IO.TextWriter Output { get { throw null; } }
ContinueOnNewLine(string st)1661         protected virtual void ContinueOnNewLine(string st) { }
CreateEscapedIdentifier(string value)1662         protected abstract string CreateEscapedIdentifier(string value);
CreateValidIdentifier(string value)1663         protected abstract string CreateValidIdentifier(string value);
GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression e)1664         protected abstract void GenerateArgumentReferenceExpression(System.CodeDom.CodeArgumentReferenceExpression e);
GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression e)1665         protected abstract void GenerateArrayCreateExpression(System.CodeDom.CodeArrayCreateExpression e);
GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression e)1666         protected abstract void GenerateArrayIndexerExpression(System.CodeDom.CodeArrayIndexerExpression e);
GenerateAssignStatement(System.CodeDom.CodeAssignStatement e)1667         protected abstract void GenerateAssignStatement(System.CodeDom.CodeAssignStatement e);
GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement e)1668         protected abstract void GenerateAttachEventStatement(System.CodeDom.CodeAttachEventStatement e);
GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection attributes)1669         protected abstract void GenerateAttributeDeclarationsEnd(System.CodeDom.CodeAttributeDeclarationCollection attributes);
GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection attributes)1670         protected abstract void GenerateAttributeDeclarationsStart(System.CodeDom.CodeAttributeDeclarationCollection attributes);
GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression e)1671         protected abstract void GenerateBaseReferenceExpression(System.CodeDom.CodeBaseReferenceExpression e);
GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression e)1672         protected virtual void GenerateBinaryOperatorExpression(System.CodeDom.CodeBinaryOperatorExpression e) { }
GenerateCastExpression(System.CodeDom.CodeCastExpression e)1673         protected abstract void GenerateCastExpression(System.CodeDom.CodeCastExpression e);
GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options)1674         public virtual void GenerateCodeFromMember(System.CodeDom.CodeTypeMember member, System.IO.TextWriter writer, System.CodeDom.Compiler.CodeGeneratorOptions options) { }
GenerateComment(System.CodeDom.CodeComment e)1675         protected abstract void GenerateComment(System.CodeDom.CodeComment e);
GenerateCommentStatement(System.CodeDom.CodeCommentStatement e)1676         protected virtual void GenerateCommentStatement(System.CodeDom.CodeCommentStatement e) { }
GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection e)1677         protected virtual void GenerateCommentStatements(System.CodeDom.CodeCommentStatementCollection e) { }
GenerateCompileUnit(System.CodeDom.CodeCompileUnit e)1678         protected virtual void GenerateCompileUnit(System.CodeDom.CodeCompileUnit e) { }
GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit e)1679         protected virtual void GenerateCompileUnitEnd(System.CodeDom.CodeCompileUnit e) { }
GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit e)1680         protected virtual void GenerateCompileUnitStart(System.CodeDom.CodeCompileUnit e) { }
GenerateConditionStatement(System.CodeDom.CodeConditionStatement e)1681         protected abstract void GenerateConditionStatement(System.CodeDom.CodeConditionStatement e);
GenerateConstructor(System.CodeDom.CodeConstructor e, System.CodeDom.CodeTypeDeclaration c)1682         protected abstract void GenerateConstructor(System.CodeDom.CodeConstructor e, System.CodeDom.CodeTypeDeclaration c);
GenerateDecimalValue(decimal d)1683         protected virtual void GenerateDecimalValue(decimal d) { }
GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression e)1684         protected virtual void GenerateDefaultValueExpression(System.CodeDom.CodeDefaultValueExpression e) { }
GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression e)1685         protected abstract void GenerateDelegateCreateExpression(System.CodeDom.CodeDelegateCreateExpression e);
GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression e)1686         protected abstract void GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression e);
GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression e)1687         protected virtual void GenerateDirectionExpression(System.CodeDom.CodeDirectionExpression e) { }
GenerateDirectives(System.CodeDom.CodeDirectiveCollection directives)1688         protected virtual void GenerateDirectives(System.CodeDom.CodeDirectiveCollection directives) { }
GenerateDoubleValue(double d)1689         protected virtual void GenerateDoubleValue(double d) { }
GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod e, System.CodeDom.CodeTypeDeclaration c)1690         protected abstract void GenerateEntryPointMethod(System.CodeDom.CodeEntryPointMethod e, System.CodeDom.CodeTypeDeclaration c);
GenerateEvent(System.CodeDom.CodeMemberEvent e, System.CodeDom.CodeTypeDeclaration c)1691         protected abstract void GenerateEvent(System.CodeDom.CodeMemberEvent e, System.CodeDom.CodeTypeDeclaration c);
GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression e)1692         protected abstract void GenerateEventReferenceExpression(System.CodeDom.CodeEventReferenceExpression e);
GenerateExpression(System.CodeDom.CodeExpression e)1693         protected void GenerateExpression(System.CodeDom.CodeExpression e) { }
GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement e)1694         protected abstract void GenerateExpressionStatement(System.CodeDom.CodeExpressionStatement e);
GenerateField(System.CodeDom.CodeMemberField e)1695         protected abstract void GenerateField(System.CodeDom.CodeMemberField e);
GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression e)1696         protected abstract void GenerateFieldReferenceExpression(System.CodeDom.CodeFieldReferenceExpression e);
GenerateGotoStatement(System.CodeDom.CodeGotoStatement e)1697         protected abstract void GenerateGotoStatement(System.CodeDom.CodeGotoStatement e);
GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression e)1698         protected abstract void GenerateIndexerExpression(System.CodeDom.CodeIndexerExpression e);
GenerateIterationStatement(System.CodeDom.CodeIterationStatement e)1699         protected abstract void GenerateIterationStatement(System.CodeDom.CodeIterationStatement e);
GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement e)1700         protected abstract void GenerateLabeledStatement(System.CodeDom.CodeLabeledStatement e);
GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma e)1701         protected abstract void GenerateLinePragmaEnd(System.CodeDom.CodeLinePragma e);
GenerateLinePragmaStart(System.CodeDom.CodeLinePragma e)1702         protected abstract void GenerateLinePragmaStart(System.CodeDom.CodeLinePragma e);
GenerateMethod(System.CodeDom.CodeMemberMethod e, System.CodeDom.CodeTypeDeclaration c)1703         protected abstract void GenerateMethod(System.CodeDom.CodeMemberMethod e, System.CodeDom.CodeTypeDeclaration c);
GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression e)1704         protected abstract void GenerateMethodInvokeExpression(System.CodeDom.CodeMethodInvokeExpression e);
GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression e)1705         protected abstract void GenerateMethodReferenceExpression(System.CodeDom.CodeMethodReferenceExpression e);
GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement e)1706         protected abstract void GenerateMethodReturnStatement(System.CodeDom.CodeMethodReturnStatement e);
GenerateNamespace(System.CodeDom.CodeNamespace e)1707         protected virtual void GenerateNamespace(System.CodeDom.CodeNamespace e) { }
GenerateNamespaceEnd(System.CodeDom.CodeNamespace e)1708         protected abstract void GenerateNamespaceEnd(System.CodeDom.CodeNamespace e);
GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport e)1709         protected abstract void GenerateNamespaceImport(System.CodeDom.CodeNamespaceImport e);
GenerateNamespaceImports(System.CodeDom.CodeNamespace e)1710         protected void GenerateNamespaceImports(System.CodeDom.CodeNamespace e) { }
GenerateNamespaces(System.CodeDom.CodeCompileUnit e)1711         protected void GenerateNamespaces(System.CodeDom.CodeCompileUnit e) { }
GenerateNamespaceStart(System.CodeDom.CodeNamespace e)1712         protected abstract void GenerateNamespaceStart(System.CodeDom.CodeNamespace e);
GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression e)1713         protected abstract void GenerateObjectCreateExpression(System.CodeDom.CodeObjectCreateExpression e);
GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression e)1714         protected virtual void GenerateParameterDeclarationExpression(System.CodeDom.CodeParameterDeclarationExpression e) { }
GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression e)1715         protected virtual void GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression e) { }
GenerateProperty(System.CodeDom.CodeMemberProperty e, System.CodeDom.CodeTypeDeclaration c)1716         protected abstract void GenerateProperty(System.CodeDom.CodeMemberProperty e, System.CodeDom.CodeTypeDeclaration c);
GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression e)1717         protected abstract void GeneratePropertyReferenceExpression(System.CodeDom.CodePropertyReferenceExpression e);
GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression e)1718         protected abstract void GeneratePropertySetValueReferenceExpression(System.CodeDom.CodePropertySetValueReferenceExpression e);
GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement e)1719         protected abstract void GenerateRemoveEventStatement(System.CodeDom.CodeRemoveEventStatement e);
GenerateSingleFloatValue(float s)1720         protected virtual void GenerateSingleFloatValue(float s) { }
GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit e)1721         protected virtual void GenerateSnippetCompileUnit(System.CodeDom.CodeSnippetCompileUnit e) { }
GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression e)1722         protected abstract void GenerateSnippetExpression(System.CodeDom.CodeSnippetExpression e);
GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember e)1723         protected abstract void GenerateSnippetMember(System.CodeDom.CodeSnippetTypeMember e);
GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement e)1724         protected virtual void GenerateSnippetStatement(System.CodeDom.CodeSnippetStatement e) { }
GenerateStatement(System.CodeDom.CodeStatement e)1725         protected void GenerateStatement(System.CodeDom.CodeStatement e) { }
GenerateStatements(System.CodeDom.CodeStatementCollection stms)1726         protected void GenerateStatements(System.CodeDom.CodeStatementCollection stms) { }
GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression e)1727         protected abstract void GenerateThisReferenceExpression(System.CodeDom.CodeThisReferenceExpression e);
GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement e)1728         protected abstract void GenerateThrowExceptionStatement(System.CodeDom.CodeThrowExceptionStatement e);
GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement e)1729         protected abstract void GenerateTryCatchFinallyStatement(System.CodeDom.CodeTryCatchFinallyStatement e);
GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor e)1730         protected abstract void GenerateTypeConstructor(System.CodeDom.CodeTypeConstructor e);
GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration e)1731         protected abstract void GenerateTypeEnd(System.CodeDom.CodeTypeDeclaration e);
GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression e)1732         protected virtual void GenerateTypeOfExpression(System.CodeDom.CodeTypeOfExpression e) { }
GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression e)1733         protected virtual void GenerateTypeReferenceExpression(System.CodeDom.CodeTypeReferenceExpression e) { }
GenerateTypes(System.CodeDom.CodeNamespace e)1734         protected void GenerateTypes(System.CodeDom.CodeNamespace e) { }
GenerateTypeStart(System.CodeDom.CodeTypeDeclaration e)1735         protected abstract void GenerateTypeStart(System.CodeDom.CodeTypeDeclaration e);
GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement e)1736         protected abstract void GenerateVariableDeclarationStatement(System.CodeDom.CodeVariableDeclarationStatement e);
GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression e)1737         protected abstract void GenerateVariableReferenceExpression(System.CodeDom.CodeVariableReferenceExpression e);
GetTypeOutput(System.CodeDom.CodeTypeReference value)1738         protected abstract string GetTypeOutput(System.CodeDom.CodeTypeReference value);
IsValidIdentifier(string value)1739         protected abstract bool IsValidIdentifier(string value);
IsValidLanguageIndependentIdentifier(string value)1740         public static bool IsValidLanguageIndependentIdentifier(string value) { throw null; }
OutputAttributeArgument(System.CodeDom.CodeAttributeArgument arg)1741         protected virtual void OutputAttributeArgument(System.CodeDom.CodeAttributeArgument arg) { }
OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection attributes)1742         protected virtual void OutputAttributeDeclarations(System.CodeDom.CodeAttributeDeclarationCollection attributes) { }
OutputDirection(System.CodeDom.FieldDirection dir)1743         protected virtual void OutputDirection(System.CodeDom.FieldDirection dir) { }
OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions)1744         protected virtual void OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions) { }
OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions, bool newlineBetweenItems)1745         protected virtual void OutputExpressionList(System.CodeDom.CodeExpressionCollection expressions, bool newlineBetweenItems) { }
OutputFieldScopeModifier(System.CodeDom.MemberAttributes attributes)1746         protected virtual void OutputFieldScopeModifier(System.CodeDom.MemberAttributes attributes) { }
OutputIdentifier(string ident)1747         protected virtual void OutputIdentifier(string ident) { }
OutputMemberAccessModifier(System.CodeDom.MemberAttributes attributes)1748         protected virtual void OutputMemberAccessModifier(System.CodeDom.MemberAttributes attributes) { }
OutputMemberScopeModifier(System.CodeDom.MemberAttributes attributes)1749         protected virtual void OutputMemberScopeModifier(System.CodeDom.MemberAttributes attributes) { }
OutputOperator(System.CodeDom.CodeBinaryOperatorType op)1750         protected virtual void OutputOperator(System.CodeDom.CodeBinaryOperatorType op) { }
OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection parameters)1751         protected virtual void OutputParameters(System.CodeDom.CodeParameterDeclarationExpressionCollection parameters) { }
OutputType(System.CodeDom.CodeTypeReference typeRef)1752         protected abstract void OutputType(System.CodeDom.CodeTypeReference typeRef);
OutputTypeAttributes(System.Reflection.TypeAttributes attributes, bool isStruct, bool isEnum)1753         protected virtual void OutputTypeAttributes(System.Reflection.TypeAttributes attributes, bool isStruct, bool isEnum) { }
OutputTypeNamePair(System.CodeDom.CodeTypeReference typeRef, string name)1754         protected virtual void OutputTypeNamePair(System.CodeDom.CodeTypeReference typeRef, string name) { }
QuoteSnippetString(string value)1755         protected abstract string QuoteSnippetString(string value);
Supports(System.CodeDom.Compiler.GeneratorSupport support)1756         protected abstract bool Supports(System.CodeDom.Compiler.GeneratorSupport support);
System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(string value)1757         string System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier(string value) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier(string value)1758         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)1759         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)1760         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)1761         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)1762         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)1763         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)1764         string System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput(System.CodeDom.CodeTypeReference type) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(string value)1765         bool System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier(string value) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport support)1766         bool System.CodeDom.Compiler.ICodeGenerator.Supports(System.CodeDom.Compiler.GeneratorSupport support) { throw null; }
System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(string value)1767         void System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier(string value) { }
ValidateIdentifier(string value)1768         protected virtual void ValidateIdentifier(string value) { }
ValidateIdentifiers(System.CodeDom.CodeObject e)1769         public static void ValidateIdentifiers(System.CodeDom.CodeObject e) { }
1770     }
1771     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1772     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1773     public partial class CodeGeneratorOptions
1774     {
CodeGeneratorOptions()1775         public CodeGeneratorOptions() { }
1776         public bool BlankLinesBetweenMembers { get { throw null; } set { } }
1777         public string BracingStyle { get { throw null; } set { } }
1778         public bool ElseOnClosing { get { throw null; } set { } }
1779         public string IndentString { get { throw null; } set { } }
1780         public object this[string index] { get { throw null; } set { } }
1781         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1782         public bool VerbatimOrder { get { throw null; } set { } }
1783     }
1784     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1785     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1786     public abstract partial class CodeParser : System.CodeDom.Compiler.ICodeParser
1787     {
CodeParser()1788         protected CodeParser() { }
Parse(System.IO.TextReader codeStream)1789         public abstract System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream);
1790     }
1791     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1792     [System.SerializableAttribute]
1793     public partial class CompilerError
1794     {
CompilerError()1795         public CompilerError() { }
CompilerError(string fileName, int line, int column, string errorNumber, string errorText)1796         public CompilerError(string fileName, int line, int column, string errorNumber, string errorText) { }
1797         public int Column { get { throw null; } set { } }
1798         public string ErrorNumber { get { throw null; } set { } }
1799         public string ErrorText { get { throw null; } set { } }
1800         public string FileName { get { throw null; } set { } }
1801         public bool IsWarning { get { throw null; } set { } }
1802         public int Line { get { throw null; } set { } }
ToString()1803         public override string ToString() { throw null; }
1804     }
1805     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1806     [System.SerializableAttribute]
1807     public partial class CompilerErrorCollection : System.Collections.CollectionBase
1808     {
CompilerErrorCollection()1809         public CompilerErrorCollection() { }
CompilerErrorCollection(System.CodeDom.Compiler.CompilerErrorCollection value)1810         public CompilerErrorCollection(System.CodeDom.Compiler.CompilerErrorCollection value) { }
CompilerErrorCollection(System.CodeDom.Compiler.CompilerError[] value)1811         public CompilerErrorCollection(System.CodeDom.Compiler.CompilerError[] value) { }
1812         public bool HasErrors { get { throw null; } }
1813         public bool HasWarnings { get { throw null; } }
1814         public System.CodeDom.Compiler.CompilerError this[int index] { get { throw null; } set { } }
Add(System.CodeDom.Compiler.CompilerError value)1815         public int Add(System.CodeDom.Compiler.CompilerError value) { throw null; }
AddRange(System.CodeDom.Compiler.CompilerErrorCollection value)1816         public void AddRange(System.CodeDom.Compiler.CompilerErrorCollection value) { }
AddRange(System.CodeDom.Compiler.CompilerError[] value)1817         public void AddRange(System.CodeDom.Compiler.CompilerError[] value) { }
Contains(System.CodeDom.Compiler.CompilerError value)1818         public bool Contains(System.CodeDom.Compiler.CompilerError value) { throw null; }
CopyTo(System.CodeDom.Compiler.CompilerError[] array, int index)1819         public void CopyTo(System.CodeDom.Compiler.CompilerError[] array, int index) { }
IndexOf(System.CodeDom.Compiler.CompilerError value)1820         public int IndexOf(System.CodeDom.Compiler.CompilerError value) { throw null; }
Insert(int index, System.CodeDom.Compiler.CompilerError value)1821         public void Insert(int index, System.CodeDom.Compiler.CompilerError value) { }
Remove(System.CodeDom.Compiler.CompilerError value)1822         public void Remove(System.CodeDom.Compiler.CompilerError value) { }
1823     }
1824     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1825     public sealed partial class CompilerInfo
1826     {
CompilerInfo()1827         internal CompilerInfo() { }
1828         public System.Type CodeDomProviderType { get { throw null; } }
1829         public bool IsCodeDomProviderTypeValid { get { throw null; } }
CreateDefaultCompilerParameters()1830         public System.CodeDom.Compiler.CompilerParameters CreateDefaultCompilerParameters() { throw null; }
CreateProvider()1831         public System.CodeDom.Compiler.CodeDomProvider CreateProvider() { throw null; }
CreateProvider(System.Collections.Generic.IDictionary<string, string> providerOptions)1832         public System.CodeDom.Compiler.CodeDomProvider CreateProvider(System.Collections.Generic.IDictionary<string, string> providerOptions) { throw null; }
Equals(object o)1833         public override bool Equals(object o) { throw null; }
GetExtensions()1834         public string[] GetExtensions() { throw null; }
GetHashCode()1835         public override int GetHashCode() { throw null; }
GetLanguages()1836         public string[] GetLanguages() { throw null; }
1837     }
1838     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1839     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
1840     [System.SerializableAttribute]
1841     public partial class CompilerParameters
1842     {
CompilerParameters()1843         public CompilerParameters() { }
CompilerParameters(string[] assemblyNames)1844         public CompilerParameters(string[] assemblyNames) { }
CompilerParameters(string[] assemblyNames, string outputName)1845         public CompilerParameters(string[] assemblyNames, string outputName) { }
CompilerParameters(string[] assemblyNames, string outputName, bool includeDebugInformation)1846         public CompilerParameters(string[] assemblyNames, string outputName, bool includeDebugInformation) { }
1847         public string CompilerOptions { get { throw null; } set { } }
1848         public string CoreAssemblyFileName { get { throw null; } set { } }
1849         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1850         public System.Collections.Specialized.StringCollection EmbeddedResources { get { throw null; } }
1851         [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.")]
1852         public System.Security.Policy.Evidence Evidence { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true)]set { } }
1853         public bool GenerateExecutable { get { throw null; } set { } }
1854         public bool GenerateInMemory { get { throw null; } set { } }
1855         public bool IncludeDebugInformation { get { throw null; } set { } }
1856         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1857         public System.Collections.Specialized.StringCollection LinkedResources { get { throw null; } }
1858         public string MainClass { get { throw null; } set { } }
1859         public string OutputAssembly { get { throw null; } set { } }
1860         public System.Collections.Specialized.StringCollection ReferencedAssemblies { get { throw null; } }
1861         public System.CodeDom.Compiler.TempFileCollection TempFiles { get { throw null; } set { } }
1862         public bool TreatWarningsAsErrors { get { throw null; } set { } }
1863         public System.IntPtr UserToken { get { throw null; } set { } }
1864         public int WarningLevel { get { throw null; } set { } }
1865         public string Win32Resource { get { throw null; } set { } }
1866     }
1867     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1868     [System.SerializableAttribute]
1869     public partial class CompilerResults
1870     {
1871         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompilerResults(System.CodeDom.Compiler.TempFileCollection tempFiles)1872         public CompilerResults(System.CodeDom.Compiler.TempFileCollection tempFiles) { }
1873         public System.Reflection.Assembly CompiledAssembly { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Flags=(System.Security.Permissions.SecurityPermissionFlag)(32))]get { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
1874         public System.CodeDom.Compiler.CompilerErrorCollection Errors { get { throw null; } }
1875         [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.")]
1876         public System.Security.Policy.Evidence Evidence { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true), System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
1877         public int NativeCompilerReturnValue { get { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
1878         public System.Collections.Specialized.StringCollection Output { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]get { throw null; } }
1879         public string PathToAssembly { [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 { } }
1880         public System.CodeDom.Compiler.TempFileCollection TempFiles { [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 { } }
1881     }
1882     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
1883     public static partial class Executor
1884     {
ExecWait(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles)1885         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)1886         public static int ExecWaitWithCapture(System.IntPtr userToken, string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
ExecWaitWithCapture(System.IntPtr userToken, string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1887         public static int ExecWaitWithCapture(System.IntPtr userToken, string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
ExecWaitWithCapture(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1888         public static int ExecWaitWithCapture(string cmd, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
ExecWaitWithCapture(string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName)1889         public static int ExecWaitWithCapture(string cmd, string currentDir, System.CodeDom.Compiler.TempFileCollection tempFiles, ref string outputName, ref string errorName) { throw null; }
1890     }
1891     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), Inherited=false, AllowMultiple=false)]
1892     public sealed partial class GeneratedCodeAttribute : System.Attribute
1893     {
GeneratedCodeAttribute(string tool, string version)1894         public GeneratedCodeAttribute(string tool, string version) { }
1895         public string Tool { get { throw null; } }
1896         public string Version { get { throw null; } }
1897     }
1898     [System.FlagsAttribute]
1899     [System.SerializableAttribute]
1900     public enum GeneratorSupport
1901     {
1902         ArraysOfArrays = 1,
1903         AssemblyAttributes = 4096,
1904         ChainedConstructorArguments = 32768,
1905         ComplexExpressions = 524288,
1906         DeclareDelegates = 512,
1907         DeclareEnums = 256,
1908         DeclareEvents = 2048,
1909         DeclareIndexerProperties = 33554432,
1910         DeclareInterfaces = 1024,
1911         DeclareValueTypes = 128,
1912         EntryPointMethod = 2,
1913         GenericTypeDeclaration = 16777216,
1914         GenericTypeReference = 8388608,
1915         GotoStatements = 4,
1916         MultidimensionalArrays = 8,
1917         MultipleInterfaceMembers = 131072,
1918         NestedTypes = 65536,
1919         ParameterAttributes = 8192,
1920         PartialTypes = 4194304,
1921         PublicStaticMembers = 262144,
1922         ReferenceParameters = 16384,
1923         Resources = 2097152,
1924         ReturnTypeAttributes = 64,
1925         StaticConstructors = 16,
1926         TryCatchStatements = 32,
1927         Win32Resources = 1048576,
1928     }
1929     public partial interface ICodeCompiler
1930     {
1931         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1932         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit compilationUnit)1933         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDom(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit compilationUnit);
1934         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1935         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] compilationUnits)1936         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDomBatch(System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] compilationUnits);
1937         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1938         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName)1939         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFile(System.CodeDom.Compiler.CompilerParameters options, string fileName);
1940         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1941         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames)1942         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFileBatch(System.CodeDom.Compiler.CompilerParameters options, string[] fileNames);
1943         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1944         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source)1945         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSource(System.CodeDom.Compiler.CompilerParameters options, string source);
1946         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1947         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources)1948         System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSourceBatch(System.CodeDom.Compiler.CompilerParameters options, string[] sources);
1949     }
1950     public partial interface ICodeGenerator
1951     {
1952         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1953         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CreateEscapedIdentifier(string value)1954         string CreateEscapedIdentifier(string value);
1955         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1956         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CreateValidIdentifier(string value)1957         string CreateValidIdentifier(string value);
1958         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1959         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1960         void GenerateCodeFromCompileUnit(System.CodeDom.CodeCompileUnit e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
1961         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1962         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GenerateCodeFromExpression(System.CodeDom.CodeExpression e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1963         void GenerateCodeFromExpression(System.CodeDom.CodeExpression e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
1964         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1965         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GenerateCodeFromNamespace(System.CodeDom.CodeNamespace e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1966         void GenerateCodeFromNamespace(System.CodeDom.CodeNamespace e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
1967         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1968         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GenerateCodeFromStatement(System.CodeDom.CodeStatement e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1969         void GenerateCodeFromStatement(System.CodeDom.CodeStatement e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
1970         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1971         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o)1972         void GenerateCodeFromType(System.CodeDom.CodeTypeDeclaration e, System.IO.TextWriter w, System.CodeDom.Compiler.CodeGeneratorOptions o);
1973         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1974         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GetTypeOutput(System.CodeDom.CodeTypeReference type)1975         string GetTypeOutput(System.CodeDom.CodeTypeReference type);
1976         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1977         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
IsValidIdentifier(string value)1978         bool IsValidIdentifier(string value);
1979         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1980         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
Supports(System.CodeDom.Compiler.GeneratorSupport supports)1981         bool Supports(System.CodeDom.Compiler.GeneratorSupport supports);
1982         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1983         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
ValidateIdentifier(string value)1984         void ValidateIdentifier(string value);
1985     }
1986     public partial interface ICodeParser
1987     {
Parse(System.IO.TextReader codeStream)1988         System.CodeDom.CodeCompileUnit Parse(System.IO.TextReader codeStream);
1989     }
1990     public partial class IndentedTextWriter : System.IO.TextWriter
1991     {
1992         public const string DefaultTabString = "    ";
IndentedTextWriter(System.IO.TextWriter writer)1993         public IndentedTextWriter(System.IO.TextWriter writer) { }
IndentedTextWriter(System.IO.TextWriter writer, string tabString)1994         public IndentedTextWriter(System.IO.TextWriter writer, string tabString) { }
1995         public override System.Text.Encoding Encoding { get { throw null; } }
1996         public int Indent { get { throw null; } set { } }
1997         public System.IO.TextWriter InnerWriter { get { throw null; } }
1998         public override string NewLine { get { throw null; } set { } }
Close()1999         public override void Close() { }
Flush()2000         public override void Flush() { }
OutputTabs()2001         protected virtual void OutputTabs() { }
Write(bool value)2002         public override void Write(bool value) { }
Write(char value)2003         public override void Write(char value) { }
Write(char[] buffer)2004         public override void Write(char[] buffer) { }
Write(char[] buffer, int index, int count)2005         public override void Write(char[] buffer, int index, int count) { }
Write(double value)2006         public override void Write(double value) { }
Write(int value)2007         public override void Write(int value) { }
Write(long value)2008         public override void Write(long value) { }
Write(object value)2009         public override void Write(object value) { }
Write(float value)2010         public override void Write(float value) { }
Write(string s)2011         public override void Write(string s) { }
Write(string format, object arg0)2012         public override void Write(string format, object arg0) { }
Write(string format, object arg0, object arg1)2013         public override void Write(string format, object arg0, object arg1) { }
Write(string format, params object[] arg)2014         public override void Write(string format, params object[] arg) { }
WriteLine()2015         public override void WriteLine() { }
WriteLine(bool value)2016         public override void WriteLine(bool value) { }
WriteLine(char value)2017         public override void WriteLine(char value) { }
WriteLine(char[] buffer)2018         public override void WriteLine(char[] buffer) { }
WriteLine(char[] buffer, int index, int count)2019         public override void WriteLine(char[] buffer, int index, int count) { }
WriteLine(double value)2020         public override void WriteLine(double value) { }
WriteLine(int value)2021         public override void WriteLine(int value) { }
WriteLine(long value)2022         public override void WriteLine(long value) { }
WriteLine(object value)2023         public override void WriteLine(object value) { }
WriteLine(float value)2024         public override void WriteLine(float value) { }
WriteLine(string s)2025         public override void WriteLine(string s) { }
WriteLine(string format, object arg0)2026         public override void WriteLine(string format, object arg0) { }
WriteLine(string format, object arg0, object arg1)2027         public override void WriteLine(string format, object arg0, object arg1) { }
WriteLine(string format, params object[] arg)2028         public override void WriteLine(string format, params object[] arg) { }
2029         [System.CLSCompliantAttribute(false)]
WriteLine(uint value)2030         public override void WriteLine(uint value) { }
WriteLineNoTabs(string s)2031         public void WriteLineNoTabs(string s) { }
2032     }
2033     [System.FlagsAttribute]
2034     [System.SerializableAttribute]
2035     public enum LanguageOptions
2036     {
2037         CaseInsensitive = 1,
2038         None = 0,
2039     }
2040     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
2041     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
2042     [System.SerializableAttribute]
2043     public partial class TempFileCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.IDisposable
2044     {
TempFileCollection()2045         public TempFileCollection() { }
TempFileCollection(string tempDir)2046         public TempFileCollection(string tempDir) { }
TempFileCollection(string tempDir, bool keepFiles)2047         public TempFileCollection(string tempDir, bool keepFiles) { }
2048         public string BasePath { get { throw null; } }
2049         public int Count { get { throw null; } }
2050         public bool KeepFiles { get { throw null; } set { } }
2051         int System.Collections.ICollection.Count { get { throw null; } }
2052         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2053         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2054         public string TempDir { get { throw null; } }
AddExtension(string fileExtension)2055         public string AddExtension(string fileExtension) { throw null; }
AddExtension(string fileExtension, bool keepFile)2056         public string AddExtension(string fileExtension, bool keepFile) { throw null; }
AddFile(string fileName, bool keepFile)2057         public void AddFile(string fileName, bool keepFile) { }
CopyTo(string[] fileNames, int start)2058         public void CopyTo(string[] fileNames, int start) { }
Delete()2059         public void Delete() { }
Dispose(bool disposing)2060         protected virtual void Dispose(bool disposing) { }
~TempFileCollection()2061         ~TempFileCollection() { }
GetEnumerator()2062         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int start)2063         void System.Collections.ICollection.CopyTo(System.Array array, int start) { }
System.Collections.IEnumerable.GetEnumerator()2064         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.IDisposable.Dispose()2065         void System.IDisposable.Dispose() { }
2066     }
2067 }
2068 namespace System.Collections.Concurrent
2069 {
2070     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}, Type = {m_collection}")]
2071     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.SystemThreadingCollections_BlockingCollectionDebugView<T>")]
2072     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2073     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
2074     public partial class BlockingCollection<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.IDisposable
2075     {
BlockingCollection()2076         public BlockingCollection() { }
BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection)2077         public BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection) { }
BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection, int boundedCapacity)2078         public BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection, int boundedCapacity) { }
BlockingCollection(int boundedCapacity)2079         public BlockingCollection(int boundedCapacity) { }
2080         public int BoundedCapacity { get { throw null; } }
2081         public int Count { get { throw null; } }
2082         public bool IsAddingCompleted { get { throw null; } }
2083         public bool IsCompleted { get { throw null; } }
2084         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2085         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)2086         public void Add(T item) { }
Add(T item, System.Threading.CancellationToken cancellationToken)2087         public void Add(T item, System.Threading.CancellationToken cancellationToken) { }
AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item)2088         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)2089         public static int AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.Threading.CancellationToken cancellationToken) { throw null; }
CompleteAdding()2090         public void CompleteAdding() { }
CopyTo(T[] array, int index)2091         public void CopyTo(T[] array, int index) { }
Dispose()2092         public void Dispose() { }
Dispose(bool disposing)2093         protected virtual void Dispose(bool disposing) { }
GetConsumingEnumerable()2094         public System.Collections.Generic.IEnumerable<T> GetConsumingEnumerable() { throw null; }
GetConsumingEnumerable(System.Threading.CancellationToken cancellationToken)2095         public System.Collections.Generic.IEnumerable<T> GetConsumingEnumerable(System.Threading.CancellationToken cancellationToken) { throw null; }
GetEnumerator()2096         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2097         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2098         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
Take()2099         public T Take() { throw null; }
Take(System.Threading.CancellationToken cancellationToken)2100         public T Take(System.Threading.CancellationToken cancellationToken) { throw null; }
TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item)2101         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)2102         public static int TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
ToArray()2103         public T[] ToArray() { throw null; }
TryAdd(T item)2104         public bool TryAdd(T item) { throw null; }
TryAdd(T item, int millisecondsTimeout)2105         public bool TryAdd(T item, int millisecondsTimeout) { throw null; }
TryAdd(T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)2106         public bool TryAdd(T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
TryAdd(T item, System.TimeSpan timeout)2107         public bool TryAdd(T item, System.TimeSpan timeout) { throw null; }
TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item)2108         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)2109         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)2110         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)2111         public static int TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.TimeSpan timeout) { throw null; }
TryTake(out T item)2112         public bool TryTake(out T item) { item = default(T); throw null; }
TryTake(out T item, int millisecondsTimeout)2113         public bool TryTake(out T item, int millisecondsTimeout) { item = default(T); throw null; }
TryTake(out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)2114         public bool TryTake(out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
TryTake(out T item, System.TimeSpan timeout)2115         public bool TryTake(out T item, System.TimeSpan timeout) { item = default(T); throw null; }
TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item)2116         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)2117         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)2118         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)2119         public static int TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.TimeSpan timeout) { item = default(T); throw null; }
2120     }
2121     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2122     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.SystemThreadingCollection_IProducerConsumerCollectionDebugView<T>")]
2123     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2124     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
2125     [System.SerializableAttribute]
2126     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
2127     {
ConcurrentBag()2128         public ConcurrentBag() { }
ConcurrentBag(System.Collections.Generic.IEnumerable<T> collection)2129         public ConcurrentBag(System.Collections.Generic.IEnumerable<T> collection) { }
2130         public int Count { get { throw null; } }
2131         public bool IsEmpty { get { throw null; } }
2132         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2133         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)2134         public void Add(T item) { }
CopyTo(T[] array, int index)2135         public void CopyTo(T[] array, int index) { }
GetEnumerator()2136         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
TryAdd(T item)2137         bool System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd(T item) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2138         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2139         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()2140         public T[] ToArray() { throw null; }
TryPeek(out T result)2141         public bool TryPeek(out T result) { result = default(T); throw null; }
TryTake(out T result)2142         public bool TryTake(out T result) { result = default(T); throw null; }
2143     }
2144 }
2145 namespace System.Collections.Generic
2146 {
2147     public partial interface ISet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
2148     {
Add(T item)2149         new bool Add(T item);
ExceptWith(System.Collections.Generic.IEnumerable<T> other)2150         void ExceptWith(System.Collections.Generic.IEnumerable<T> other);
IntersectWith(System.Collections.Generic.IEnumerable<T> other)2151         void IntersectWith(System.Collections.Generic.IEnumerable<T> other);
IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)2152         bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other);
IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)2153         bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other);
IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)2154         bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other);
IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)2155         bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other);
Overlaps(System.Collections.Generic.IEnumerable<T> other)2156         bool Overlaps(System.Collections.Generic.IEnumerable<T> other);
SetEquals(System.Collections.Generic.IEnumerable<T> other)2157         bool SetEquals(System.Collections.Generic.IEnumerable<T> other);
SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other)2158         void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other);
UnionWith(System.Collections.Generic.IEnumerable<T> other)2159         void UnionWith(System.Collections.Generic.IEnumerable<T> other);
2160     }
2161     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2162     public sealed partial class LinkedListNode<T>
2163     {
LinkedListNode(T value)2164         public LinkedListNode(T value) { }
2165         public System.Collections.Generic.LinkedList<T> List { get { throw null; } }
2166         public System.Collections.Generic.LinkedListNode<T> Next { get { throw null; } }
2167         public System.Collections.Generic.LinkedListNode<T> Previous { get { throw null; } }
2168         public T Value { get { throw null; } set { } }
2169     }
2170     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2171     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_CollectionDebugView<T>")]
2172     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2173     [System.SerializableAttribute]
2174     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
2175     {
LinkedList()2176         public LinkedList() { }
LinkedList(System.Collections.Generic.IEnumerable<T> collection)2177         public LinkedList(System.Collections.Generic.IEnumerable<T> collection) { }
LinkedList(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2178         protected LinkedList(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2179         public int Count { get { throw null; } }
2180         public System.Collections.Generic.LinkedListNode<T> First { get { throw null; } }
2181         public System.Collections.Generic.LinkedListNode<T> Last { get { throw null; } }
2182         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
2183         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2184         object System.Collections.ICollection.SyncRoot { get { throw null; } }
AddAfter(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode)2185         public void AddAfter(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode) { }
AddAfter(System.Collections.Generic.LinkedListNode<T> node, T value)2186         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)2187         public void AddBefore(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode) { }
AddBefore(System.Collections.Generic.LinkedListNode<T> node, T value)2188         public System.Collections.Generic.LinkedListNode<T> AddBefore(System.Collections.Generic.LinkedListNode<T> node, T value) { throw null; }
AddFirst(System.Collections.Generic.LinkedListNode<T> node)2189         public void AddFirst(System.Collections.Generic.LinkedListNode<T> node) { }
AddFirst(T value)2190         public System.Collections.Generic.LinkedListNode<T> AddFirst(T value) { throw null; }
AddLast(System.Collections.Generic.LinkedListNode<T> node)2191         public void AddLast(System.Collections.Generic.LinkedListNode<T> node) { }
AddLast(T value)2192         public System.Collections.Generic.LinkedListNode<T> AddLast(T value) { throw null; }
Clear()2193         public void Clear() { }
Contains(T value)2194         public bool Contains(T value) { throw null; }
CopyTo(T[] array, int index)2195         public void CopyTo(T[] array, int index) { }
Find(T value)2196         public System.Collections.Generic.LinkedListNode<T> Find(T value) { throw null; }
FindLast(T value)2197         public System.Collections.Generic.LinkedListNode<T> FindLast(T value) { throw null; }
GetEnumerator()2198         public System.Collections.Generic.LinkedList<T>.Enumerator GetEnumerator() { throw null; }
2199         [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)2200         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
OnDeserialization(object sender)2201         public virtual void OnDeserialization(object sender) { }
Remove(System.Collections.Generic.LinkedListNode<T> node)2202         public void Remove(System.Collections.Generic.LinkedListNode<T> node) { }
Remove(T value)2203         public bool Remove(T value) { throw null; }
RemoveFirst()2204         public void RemoveFirst() { }
RemoveLast()2205         public void RemoveLast() { }
Add(T value)2206         void System.Collections.Generic.ICollection<T>.Add(T value) { }
GetEnumerator()2207         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2208         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2209         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2210         [System.SerializableAttribute]
2211         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2212         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2213         {
2214             public T Current { get { throw null; } }
2215             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.LinkedList.Enumerator2216             public void Dispose() { }
MoveNextSystem.Collections.Generic.LinkedList.Enumerator2217             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.LinkedList.Enumerator2218             void System.Collections.IEnumerator.Reset() { }
System.Runtime.Serialization.IDeserializationCallback.OnDeserializationSystem.Collections.Generic.LinkedList.Enumerator2219             void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectDataSystem.Collections.Generic.LinkedList.Enumerator2220             void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2221         }
2222     }
2223     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2224     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_QueueDebugView<T>")]
2225     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2226     [System.SerializableAttribute]
2227     public partial class Queue<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
2228     {
Queue()2229         public Queue() { }
Queue(System.Collections.Generic.IEnumerable<T> collection)2230         public Queue(System.Collections.Generic.IEnumerable<T> collection) { }
Queue(int capacity)2231         public Queue(int capacity) { }
2232         public int Count { get { throw null; } }
2233         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2234         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Clear()2235         public void Clear() { }
Contains(T item)2236         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)2237         public void CopyTo(T[] array, int arrayIndex) { }
Dequeue()2238         public T Dequeue() { throw null; }
Enqueue(T item)2239         public void Enqueue(T item) { }
GetEnumerator()2240         public System.Collections.Generic.Queue<T>.Enumerator GetEnumerator() { throw null; }
Peek()2241         public T Peek() { throw null; }
GetEnumerator()2242         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2243         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2244         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()2245         public T[] ToArray() { throw null; }
TrimExcess()2246         public void TrimExcess() { }
2247         [System.SerializableAttribute]
2248         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2249         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
2250         {
2251             public T Current { get { throw null; } }
2252             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.Queue.Enumerator2253             public void Dispose() { }
MoveNextSystem.Collections.Generic.Queue.Enumerator2254             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.Queue.Enumerator2255             void System.Collections.IEnumerator.Reset() { }
2256         }
2257     }
2258     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2259     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_DictionaryDebugView<K, V>")]
2260     [System.SerializableAttribute]
2261     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
2262     {
SortedDictionary()2263         public SortedDictionary() { }
SortedDictionary(System.Collections.Generic.IComparer<TKey> comparer)2264         public SortedDictionary(System.Collections.Generic.IComparer<TKey> comparer) { }
SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary)2265         public SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary) { }
SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer)2266         public SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer) { }
2267         public System.Collections.Generic.IComparer<TKey> Comparer { get { throw null; } }
2268         public int Count { get { throw null; } }
2269         public TValue this[TKey key] { get { throw null; } set { } }
2270         public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection Keys { get { throw null; } }
2271         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly { get { throw null; } }
2272         System.Collections.Generic.ICollection<TKey> System.Collections.Generic.IDictionary<TKey,TValue>.Keys { get { throw null; } }
2273         System.Collections.Generic.ICollection<TValue> System.Collections.Generic.IDictionary<TKey,TValue>.Values { get { throw null; } }
2274         System.Collections.Generic.IEnumerable<TKey> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Keys { get { throw null; } }
2275         System.Collections.Generic.IEnumerable<TValue> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Values { get { throw null; } }
2276         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2277         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2278         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2279         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
2280         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
2281         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
2282         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
2283         public System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection Values { get { throw null; } }
Add(TKey key, TValue value)2284         public void Add(TKey key, TValue value) { }
Clear()2285         public void Clear() { }
ContainsKey(TKey key)2286         public bool ContainsKey(TKey key) { throw null; }
ContainsValue(TValue value)2287         public bool ContainsValue(TValue value) { throw null; }
CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int index)2288         public void CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int index) { }
GetEnumerator()2289         public System.Collections.Generic.SortedDictionary<TKey, TValue>.Enumerator GetEnumerator() { throw null; }
Remove(TKey key)2290         public bool Remove(TKey key) { throw null; }
Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2291         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)2292         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)2293         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
GetEnumerator()2294         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)2295         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object key, object value)2296         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Contains(object key)2297         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()2298         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)2299         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2300         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TryGetValue(TKey key, out TValue value)2301         public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
2302         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2303         public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.IDictionaryEnumerator, System.Collections.IEnumerator, System.IDisposable
2304         {
2305             public System.Collections.Generic.KeyValuePair<TKey, TValue> Current { get { throw null; } }
2306             System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator.Entry { get { throw null; } }
2307             object System.Collections.IDictionaryEnumerator.Key { get { throw null; } }
2308             object System.Collections.IDictionaryEnumerator.Value { get { throw null; } }
2309             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.Enumerator2310             public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.Enumerator2311             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.Enumerator2312             void System.Collections.IEnumerator.Reset() { }
2313         }
2314         [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2315         [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_DictionaryKeyCollectionDebugView<TKey, TValue>")]
2316         [System.SerializableAttribute]
2317         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
2318         {
KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary)2319             public KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { }
2320             public int Count { get { throw null; } }
2321             bool System.Collections.Generic.ICollection<TKey>.IsReadOnly { get { throw null; } }
2322             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2323             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(TKey[] array, int index)2324             public void CopyTo(TKey[] array, int index) { }
GetEnumerator()2325             public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection.Enumerator GetEnumerator() { throw null; }
Add(TKey item)2326             void System.Collections.Generic.ICollection<TKey>.Add(TKey item) { }
Clear()2327             void System.Collections.Generic.ICollection<TKey>.Clear() { }
Contains(TKey item)2328             bool System.Collections.Generic.ICollection<TKey>.Contains(TKey item) { throw null; }
Remove(TKey item)2329             bool System.Collections.Generic.ICollection<TKey>.Remove(TKey item) { throw null; }
GetEnumerator()2330             System.Collections.Generic.IEnumerator<TKey> System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2331             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2332             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2333             [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2334             public partial struct Enumerator : System.Collections.Generic.IEnumerator<TKey>, System.Collections.IEnumerator, System.IDisposable
2335             {
2336                 public TKey Current { get { throw null; } }
2337                 object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator2338                 public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator2339                 public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator2340                 void System.Collections.IEnumerator.Reset() { }
2341             }
2342         }
2343         [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2344         [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_DictionaryValueCollectionDebugView<TKey, TValue>")]
2345         [System.SerializableAttribute]
2346         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
2347         {
ValueCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary)2348             public ValueCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { }
2349             public int Count { get { throw null; } }
2350             bool System.Collections.Generic.ICollection<TValue>.IsReadOnly { get { throw null; } }
2351             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2352             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(TValue[] array, int index)2353             public void CopyTo(TValue[] array, int index) { }
GetEnumerator()2354             public System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection.Enumerator GetEnumerator() { throw null; }
Add(TValue item)2355             void System.Collections.Generic.ICollection<TValue>.Add(TValue item) { }
Clear()2356             void System.Collections.Generic.ICollection<TValue>.Clear() { }
Contains(TValue item)2357             bool System.Collections.Generic.ICollection<TValue>.Contains(TValue item) { throw null; }
Remove(TValue item)2358             bool System.Collections.Generic.ICollection<TValue>.Remove(TValue item) { throw null; }
GetEnumerator()2359             System.Collections.Generic.IEnumerator<TValue> System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2360             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2361             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2362             [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2363             public partial struct Enumerator : System.Collections.Generic.IEnumerator<TValue>, System.Collections.IEnumerator, System.IDisposable
2364             {
2365                 public TValue Current { get { throw null; } }
2366                 object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator2367                 public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator2368                 public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator2369                 void System.Collections.IEnumerator.Reset() { }
2370             }
2371         }
2372     }
2373     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2374     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_DictionaryDebugView<K, V>")]
2375     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2376     [System.SerializableAttribute]
2377     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
2378     {
SortedList()2379         public SortedList() { }
SortedList(System.Collections.Generic.IComparer<TKey> comparer)2380         public SortedList(System.Collections.Generic.IComparer<TKey> comparer) { }
SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary)2381         public SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary) { }
SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer)2382         public SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer) { }
SortedList(int capacity)2383         public SortedList(int capacity) { }
SortedList(int capacity, System.Collections.Generic.IComparer<TKey> comparer)2384         public SortedList(int capacity, System.Collections.Generic.IComparer<TKey> comparer) { }
2385         public int Capacity { get { throw null; } set { } }
2386         public System.Collections.Generic.IComparer<TKey> Comparer { get { throw null; } }
2387         public int Count { get { throw null; } }
2388         public TValue this[TKey key] { get { throw null; } set { } }
2389         public System.Collections.Generic.IList<TKey> Keys { get { throw null; } }
2390         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly { get { throw null; } }
2391         System.Collections.Generic.ICollection<TKey> System.Collections.Generic.IDictionary<TKey,TValue>.Keys { get { throw null; } }
2392         System.Collections.Generic.ICollection<TValue> System.Collections.Generic.IDictionary<TKey,TValue>.Values { get { throw null; } }
2393         System.Collections.Generic.IEnumerable<TKey> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Keys { get { throw null; } }
2394         System.Collections.Generic.IEnumerable<TValue> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Values { get { throw null; } }
2395         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2396         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2397         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2398         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
2399         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
2400         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
2401         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
2402         public System.Collections.Generic.IList<TValue> Values { get { throw null; } }
Add(TKey key, TValue value)2403         public void Add(TKey key, TValue value) { }
Clear()2404         public void Clear() { }
ContainsKey(TKey key)2405         public bool ContainsKey(TKey key) { throw null; }
ContainsValue(TValue value)2406         public bool ContainsValue(TValue value) { throw null; }
GetEnumerator()2407         public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> GetEnumerator() { throw null; }
IndexOfKey(TKey key)2408         public int IndexOfKey(TKey key) { throw null; }
IndexOfValue(TValue value)2409         public int IndexOfValue(TValue value) { throw null; }
Remove(TKey key)2410         public bool Remove(TKey key) { throw null; }
RemoveAt(int index)2411         public void RemoveAt(int index) { }
Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)2412         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)2413         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)2414         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)2415         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
GetEnumerator()2416         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 arrayIndex)2417         void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { }
System.Collections.IDictionary.Add(object key, object value)2418         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Contains(object key)2419         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()2420         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)2421         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2422         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TrimExcess()2423         public void TrimExcess() { }
TryGetValue(TKey key, out TValue value)2424         public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
2425     }
2426     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2427     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.SortedSetDebugView<T>")]
2428     [System.SerializableAttribute]
2429     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
2430     {
SortedSet()2431         public SortedSet() { }
SortedSet(System.Collections.Generic.IComparer<T> comparer)2432         public SortedSet(System.Collections.Generic.IComparer<T> comparer) { }
SortedSet(System.Collections.Generic.IEnumerable<T> collection)2433         public SortedSet(System.Collections.Generic.IEnumerable<T> collection) { }
SortedSet(System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IComparer<T> comparer)2434         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)2435         protected SortedSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2436         public System.Collections.Generic.IComparer<T> Comparer { get { throw null; } }
2437         public int Count { get { throw null; } }
2438         public T Max { get { throw null; } }
2439         public T Min { get { throw null; } }
2440         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
2441         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2442         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)2443         public bool Add(T item) { throw null; }
Clear()2444         public virtual void Clear() { }
Contains(T item)2445         public virtual bool Contains(T item) { throw null; }
CopyTo(T[] array)2446         public void CopyTo(T[] array) { }
CopyTo(T[] array, int index)2447         public void CopyTo(T[] array, int index) { }
CopyTo(T[] array, int index, int count)2448         public void CopyTo(T[] array, int index, int count) { }
CreateSetComparer()2449         public static System.Collections.Generic.IEqualityComparer<System.Collections.Generic.SortedSet<T>> CreateSetComparer() { throw null; }
CreateSetComparer(System.Collections.Generic.IEqualityComparer<T> memberEqualityComparer)2450         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)2451         public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
GetEnumerator()2452         public System.Collections.Generic.SortedSet<T>.Enumerator GetEnumerator() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2453         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetViewBetween(T lowerValue, T upperValue)2454         public virtual System.Collections.Generic.SortedSet<T> GetViewBetween(T lowerValue, T upperValue) { throw null; }
IntersectWith(System.Collections.Generic.IEnumerable<T> other)2455         public virtual void IntersectWith(System.Collections.Generic.IEnumerable<T> other) { }
2456         [System.Security.SecuritySafeCriticalAttribute]
IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)2457         public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
2458         [System.Security.SecuritySafeCriticalAttribute]
IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)2459         public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
2460         [System.Security.SecuritySafeCriticalAttribute]
IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)2461         public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)2462         public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
OnDeserialization(object sender)2463         protected virtual void OnDeserialization(object sender) { }
Overlaps(System.Collections.Generic.IEnumerable<T> other)2464         public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) { throw null; }
Remove(T item)2465         public bool Remove(T item) { throw null; }
RemoveWhere(System.Predicate<T> match)2466         public int RemoveWhere(System.Predicate<T> match) { throw null; }
Reverse()2467         public System.Collections.Generic.IEnumerable<T> Reverse() { throw null; }
2468         [System.Security.SecuritySafeCriticalAttribute]
SetEquals(System.Collections.Generic.IEnumerable<T> other)2469         public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) { throw null; }
SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other)2470         public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
Add(T item)2471         void System.Collections.Generic.ICollection<T>.Add(T item) { }
GetEnumerator()2472         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2473         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2474         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)2475         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2476         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
UnionWith(System.Collections.Generic.IEnumerable<T> other)2477         public void UnionWith(System.Collections.Generic.IEnumerable<T> other) { }
2478         [System.SerializableAttribute]
2479         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2480         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2481         {
2482             public T Current { get { throw null; } }
2483             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedSet.Enumerator2484             public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedSet.Enumerator2485             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedSet.Enumerator2486             void System.Collections.IEnumerator.Reset() { }
System.Runtime.Serialization.IDeserializationCallback.OnDeserializationSystem.Collections.Generic.SortedSet.Enumerator2487             void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectDataSystem.Collections.Generic.SortedSet.Enumerator2488             void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2489         }
2490     }
2491     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
2492     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.System_StackDebugView<T>")]
2493     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
2494     [System.SerializableAttribute]
2495     public partial class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
2496     {
Stack()2497         public Stack() { }
Stack(System.Collections.Generic.IEnumerable<T> collection)2498         public Stack(System.Collections.Generic.IEnumerable<T> collection) { }
Stack(int capacity)2499         public Stack(int capacity) { }
2500         public int Count { get { throw null; } }
2501         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2502         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Clear()2503         public void Clear() { }
Contains(T item)2504         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)2505         public void CopyTo(T[] array, int arrayIndex) { }
GetEnumerator()2506         public System.Collections.Generic.Stack<T>.Enumerator GetEnumerator() { throw null; }
Peek()2507         public T Peek() { throw null; }
Pop()2508         public T Pop() { throw null; }
Push(T item)2509         public void Push(T item) { }
GetEnumerator()2510         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex)2511         void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { }
System.Collections.IEnumerable.GetEnumerator()2512         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()2513         public T[] ToArray() { throw null; }
TrimExcess()2514         public void TrimExcess() { }
2515         [System.SerializableAttribute]
2516         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2517         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
2518         {
2519             public T Current { get { throw null; } }
2520             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.Stack.Enumerator2521             public void Dispose() { }
MoveNextSystem.Collections.Generic.Stack.Enumerator2522             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.Stack.Enumerator2523             void System.Collections.IEnumerator.Reset() { }
2524         }
2525     }
2526 }
2527 namespace System.Collections.ObjectModel
2528 {
2529     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2530     [System.SerializableAttribute]
2531     public partial class ObservableCollection<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
2532     {
ObservableCollection()2533         public ObservableCollection() { }
ObservableCollection(System.Collections.Generic.IEnumerable<T> collection)2534         public ObservableCollection(System.Collections.Generic.IEnumerable<T> collection) { }
ObservableCollection(System.Collections.Generic.List<T> list)2535         public ObservableCollection(System.Collections.Generic.List<T> list) { }
2536         public virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
2537         protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
2538         event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } }
BlockReentrancy()2539         protected System.IDisposable BlockReentrancy() { throw null; }
CheckReentrancy()2540         protected void CheckReentrancy() { }
ClearItems()2541         protected override void ClearItems() { }
InsertItem(int index, T item)2542         protected override void InsertItem(int index, T item) { }
Move(int oldIndex, int newIndex)2543         public void Move(int oldIndex, int newIndex) { }
MoveItem(int oldIndex, int newIndex)2544         protected virtual void MoveItem(int oldIndex, int newIndex) { }
OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)2545         protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e)2546         protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { }
RemoveItem(int index)2547         protected override void RemoveItem(int index) { }
SetItem(int index, T item)2548         protected override void SetItem(int index, T item) { }
2549     }
2550     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2551     [System.SerializableAttribute]
2552     public partial class ReadOnlyObservableCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
2553     {
ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list)2554         public ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list) : base (default(System.Collections.Generic.IList<T>)) { }
2555         protected virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
2556         protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
2557         event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } }
2558         event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } }
OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args)2559         protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args)2560         protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) { }
2561     }
2562 }
2563 namespace System.Collections.Specialized
2564 {
2565     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2566     public partial struct BitVector32
2567     {
BitVector32System.Collections.Specialized.BitVector322568         public BitVector32(System.Collections.Specialized.BitVector32 value) { throw null;}
BitVector32System.Collections.Specialized.BitVector322569         public BitVector32(int data) { throw null;}
2570         public int Data { get { throw null; } }
2571         public int this[System.Collections.Specialized.BitVector32.Section section] { get { throw null; } set { } }
2572         public bool this[int bit] { get { throw null; } set { } }
CreateMaskSystem.Collections.Specialized.BitVector322573         public static int CreateMask() { throw null; }
CreateMaskSystem.Collections.Specialized.BitVector322574         public static int CreateMask(int previous) { throw null; }
CreateSectionSystem.Collections.Specialized.BitVector322575         public static System.Collections.Specialized.BitVector32.Section CreateSection(short maxValue) { throw null; }
CreateSectionSystem.Collections.Specialized.BitVector322576         public static System.Collections.Specialized.BitVector32.Section CreateSection(short maxValue, System.Collections.Specialized.BitVector32.Section previous) { throw null; }
EqualsSystem.Collections.Specialized.BitVector322577         public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Collections.Specialized.BitVector322578         public override int GetHashCode() { throw null; }
ToStringSystem.Collections.Specialized.BitVector322579         public override string ToString() { throw null; }
ToStringSystem.Collections.Specialized.BitVector322580         public static string ToString(System.Collections.Specialized.BitVector32 value) { throw null; }
2581         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2582         public partial struct Section
2583         {
2584             public short Mask { get { throw null; } }
2585             public short Offset { get { throw null; } }
EqualsSystem.Collections.Specialized.BitVector32.Section2586             public bool Equals(System.Collections.Specialized.BitVector32.Section obj) { throw null; }
EqualsSystem.Collections.Specialized.BitVector32.Section2587             public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Collections.Specialized.BitVector32.Section2588             public override int GetHashCode() { throw null; }
operator ==System.Collections.Specialized.BitVector32.Section2589             public static bool operator ==(System.Collections.Specialized.BitVector32.Section a, System.Collections.Specialized.BitVector32.Section b) { throw null; }
operator !=System.Collections.Specialized.BitVector32.Section2590             public static bool operator !=(System.Collections.Specialized.BitVector32.Section a, System.Collections.Specialized.BitVector32.Section b) { throw null; }
ToStringSystem.Collections.Specialized.BitVector32.Section2591             public override string ToString() { throw null; }
ToStringSystem.Collections.Specialized.BitVector32.Section2592             public static string ToString(System.Collections.Specialized.BitVector32.Section value) { throw null; }
2593         }
2594     }
2595     public partial class CollectionsUtil
2596     {
CollectionsUtil()2597         public CollectionsUtil() { }
CreateCaseInsensitiveHashtable()2598         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable() { throw null; }
CreateCaseInsensitiveHashtable(System.Collections.IDictionary d)2599         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(System.Collections.IDictionary d) { throw null; }
CreateCaseInsensitiveHashtable(int capacity)2600         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(int capacity) { throw null; }
CreateCaseInsensitiveSortedList()2601         public static System.Collections.SortedList CreateCaseInsensitiveSortedList() { throw null; }
2602     }
2603     [System.SerializableAttribute]
2604     public partial class HybridDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2605     {
HybridDictionary()2606         public HybridDictionary() { }
HybridDictionary(bool caseInsensitive)2607         public HybridDictionary(bool caseInsensitive) { }
HybridDictionary(int initialSize)2608         public HybridDictionary(int initialSize) { }
HybridDictionary(int initialSize, bool caseInsensitive)2609         public HybridDictionary(int initialSize, bool caseInsensitive) { }
2610         public int Count { get { throw null; } }
2611         public bool IsFixedSize { get { throw null; } }
2612         public bool IsReadOnly { get { throw null; } }
2613         public bool IsSynchronized { get { throw null; } }
2614         public object this[object key] { get { throw null; } set { } }
2615         public System.Collections.ICollection Keys { get { throw null; } }
2616         public object SyncRoot { get { throw null; } }
2617         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)2618         public void Add(object key, object value) { }
Clear()2619         public void Clear() { }
Contains(object key)2620         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)2621         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2622         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
Remove(object key)2623         public void Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2624         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2625     }
2626     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2627     public partial interface INotifyCollectionChanged
2628     {
2629         event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged;
2630     }
2631     public partial interface IOrderedDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2632     {
2633         object this[int index] { get; set; }
GetEnumerator()2634         new System.Collections.IDictionaryEnumerator GetEnumerator();
Insert(int index, object key, object value)2635         void Insert(int index, object key, object value);
RemoveAt(int index)2636         void RemoveAt(int index);
2637     }
2638     [System.SerializableAttribute]
2639     public partial class ListDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
2640     {
ListDictionary()2641         public ListDictionary() { }
ListDictionary(System.Collections.IComparer comparer)2642         public ListDictionary(System.Collections.IComparer comparer) { }
2643         public int Count { get { throw null; } }
2644         public bool IsFixedSize { get { throw null; } }
2645         public bool IsReadOnly { get { throw null; } }
2646         public bool IsSynchronized { get { throw null; } }
2647         public object this[object key] { get { throw null; } set { } }
2648         public System.Collections.ICollection Keys { get { throw null; } }
2649         public object SyncRoot { get { throw null; } }
2650         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)2651         public void Add(object key, object value) { }
Clear()2652         public void Clear() { }
Contains(object key)2653         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)2654         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2655         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
Remove(object key)2656         public void Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2657         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2658     }
2659     [System.SerializableAttribute]
2660     public abstract partial class NameObjectCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
2661     {
NameObjectCollectionBase()2662         protected NameObjectCollectionBase() { }
NameObjectCollectionBase(System.Collections.IEqualityComparer equalityComparer)2663         protected NameObjectCollectionBase(System.Collections.IEqualityComparer equalityComparer) { }
2664         [System.ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.")]
NameObjectCollectionBase(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2665         protected NameObjectCollectionBase(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameObjectCollectionBase(int capacity)2666         protected NameObjectCollectionBase(int capacity) { }
NameObjectCollectionBase(int capacity, System.Collections.IEqualityComparer equalityComparer)2667         protected NameObjectCollectionBase(int capacity, System.Collections.IEqualityComparer equalityComparer) { }
2668         [System.ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.")]
NameObjectCollectionBase(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2669         protected NameObjectCollectionBase(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameObjectCollectionBase(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2670         protected NameObjectCollectionBase(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2671         public virtual int Count { get { throw null; } }
2672         protected bool IsReadOnly { get { throw null; } set { } }
2673         public virtual System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw null; } }
2674         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2675         object System.Collections.ICollection.SyncRoot { get { throw null; } }
BaseAdd(string name, object value)2676         protected void BaseAdd(string name, object value) { }
BaseClear()2677         protected void BaseClear() { }
BaseGet(int index)2678         protected object BaseGet(int index) { throw null; }
BaseGet(string name)2679         protected object BaseGet(string name) { throw null; }
BaseGetAllKeys()2680         protected string[] BaseGetAllKeys() { throw null; }
BaseGetAllValues()2681         protected object[] BaseGetAllValues() { throw null; }
BaseGetAllValues(System.Type type)2682         protected object[] BaseGetAllValues(System.Type type) { throw null; }
BaseGetKey(int index)2683         protected string BaseGetKey(int index) { throw null; }
BaseHasKeys()2684         protected bool BaseHasKeys() { throw null; }
BaseRemove(string name)2685         protected void BaseRemove(string name) { }
BaseRemoveAt(int index)2686         protected void BaseRemoveAt(int index) { }
BaseSet(int index, object value)2687         protected void BaseSet(int index, object value) { }
BaseSet(string name, object value)2688         protected void BaseSet(string name, object value) { }
GetEnumerator()2689         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
2690         [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)2691         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
OnDeserialization(object sender)2692         public virtual void OnDeserialization(object sender) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)2693         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
2694         [System.SerializableAttribute]
2695         public partial class KeysCollection : System.Collections.ICollection, System.Collections.IEnumerable
2696         {
KeysCollection()2697             internal KeysCollection() { }
2698             public int Count { get { throw null; } }
2699             public string this[int index] { get { throw null; } }
2700             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2701             object System.Collections.ICollection.SyncRoot { get { throw null; } }
Get(int index)2702             public virtual string Get(int index) { throw null; }
GetEnumerator()2703             public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2704             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
2705         }
2706     }
2707     [System.SerializableAttribute]
2708     public partial class NameValueCollection : System.Collections.Specialized.NameObjectCollectionBase
2709     {
NameValueCollection()2710         public NameValueCollection() { }
NameValueCollection(System.Collections.IEqualityComparer equalityComparer)2711         public NameValueCollection(System.Collections.IEqualityComparer equalityComparer) { }
2712         [System.ObsoleteAttribute("Please use NameValueCollection(IEqualityComparer) instead.")]
NameValueCollection(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2713         public NameValueCollection(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameValueCollection(System.Collections.Specialized.NameValueCollection col)2714         public NameValueCollection(System.Collections.Specialized.NameValueCollection col) { }
NameValueCollection(int capacity)2715         public NameValueCollection(int capacity) { }
NameValueCollection(int capacity, System.Collections.IEqualityComparer equalityComparer)2716         public NameValueCollection(int capacity, System.Collections.IEqualityComparer equalityComparer) { }
2717         [System.ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")]
NameValueCollection(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)2718         public NameValueCollection(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameValueCollection(int capacity, System.Collections.Specialized.NameValueCollection col)2719         public NameValueCollection(int capacity, System.Collections.Specialized.NameValueCollection col) { }
NameValueCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2720         protected NameValueCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2721         public virtual string[] AllKeys { get { throw null; } }
2722         public string this[int index] { get { throw null; } }
2723         public string this[string name] { get { throw null; } set { } }
Add(System.Collections.Specialized.NameValueCollection c)2724         public void Add(System.Collections.Specialized.NameValueCollection c) { }
Add(string name, string value)2725         public virtual void Add(string name, string value) { }
Clear()2726         public virtual void Clear() { }
CopyTo(System.Array dest, int index)2727         public void CopyTo(System.Array dest, int index) { }
Get(int index)2728         public virtual string Get(int index) { throw null; }
Get(string name)2729         public virtual string Get(string name) { throw null; }
GetKey(int index)2730         public virtual string GetKey(int index) { throw null; }
GetValues(int index)2731         public virtual string[] GetValues(int index) { throw null; }
GetValues(string name)2732         public virtual string[] GetValues(string name) { throw null; }
HasKeys()2733         public bool HasKeys() { throw null; }
InvalidateCachedArrays()2734         protected void InvalidateCachedArrays() { }
Remove(string name)2735         public virtual void Remove(string name) { }
Set(string name, string value)2736         public virtual void Set(string name, string value) { }
2737     }
2738     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2739     public enum NotifyCollectionChangedAction
2740     {
2741         Add = 0,
2742         Move = 3,
2743         Remove = 1,
2744         Replace = 2,
2745         Reset = 4,
2746     }
2747     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
2748     public partial class NotifyCollectionChangedEventArgs : System.EventArgs
2749     {
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action)2750         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems)2751         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)2752         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)2753         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)2754         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)2755         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem)2756         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index)2757         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex)2758         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem)2759         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index)2760         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) { }
2761         public System.Collections.Specialized.NotifyCollectionChangedAction Action { get { throw null; } }
2762         public System.Collections.IList NewItems { get { throw null; } }
2763         public int NewStartingIndex { get { throw null; } }
2764         public System.Collections.IList OldItems { get { throw null; } }
2765         public int OldStartingIndex { get { throw null; } }
2766     }
2767     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=3.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
NotifyCollectionChangedEventHandler(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)2768     public delegate void NotifyCollectionChangedEventHandler(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e);
2769     [System.SerializableAttribute]
2770     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
2771     {
OrderedDictionary()2772         public OrderedDictionary() { }
OrderedDictionary(System.Collections.IEqualityComparer comparer)2773         public OrderedDictionary(System.Collections.IEqualityComparer comparer) { }
OrderedDictionary(int capacity)2774         public OrderedDictionary(int capacity) { }
OrderedDictionary(int capacity, System.Collections.IEqualityComparer comparer)2775         public OrderedDictionary(int capacity, System.Collections.IEqualityComparer comparer) { }
OrderedDictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2776         protected OrderedDictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2777         public int Count { get { throw null; } }
2778         public bool IsReadOnly { get { throw null; } }
2779         public object this[int index] { get { throw null; } set { } }
2780         public object this[object key] { get { throw null; } set { } }
2781         public System.Collections.ICollection Keys { get { throw null; } }
2782         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2783         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2784         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2785         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)2786         public void Add(object key, object value) { }
AsReadOnly()2787         public System.Collections.Specialized.OrderedDictionary AsReadOnly() { throw null; }
Clear()2788         public void Clear() { }
Contains(object key)2789         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)2790         public void CopyTo(System.Array array, int index) { }
GetEnumerator()2791         public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
2792         [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)2793         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Insert(int index, object key, object value)2794         public void Insert(int index, object key, object value) { }
OnDeserialization(object sender)2795         protected virtual void OnDeserialization(object sender) { }
Remove(object key)2796         public void Remove(object key) { }
RemoveAt(int index)2797         public void RemoveAt(int index) { }
System.Collections.IEnumerable.GetEnumerator()2798         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)2799         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
2800     }
2801     [System.SerializableAttribute]
2802     public partial class StringCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
2803     {
StringCollection()2804         public StringCollection() { }
2805         public int Count { get { throw null; } }
2806         public bool IsReadOnly { get { throw null; } }
2807         public bool IsSynchronized { get { throw null; } }
2808         public string this[int index] { get { throw null; } set { } }
2809         public object SyncRoot { get { throw null; } }
2810         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2811         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2812         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(string value)2813         public int Add(string value) { throw null; }
AddRange(string[] value)2814         public void AddRange(string[] value) { }
Clear()2815         public void Clear() { }
Contains(string value)2816         public bool Contains(string value) { throw null; }
CopyTo(string[] array, int index)2817         public void CopyTo(string[] array, int index) { }
GetEnumerator()2818         public System.Collections.Specialized.StringEnumerator GetEnumerator() { throw null; }
IndexOf(string value)2819         public int IndexOf(string value) { throw null; }
Insert(int index, string value)2820         public void Insert(int index, string value) { }
Remove(string value)2821         public void Remove(string value) { }
RemoveAt(int index)2822         public void RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)2823         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()2824         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)2825         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Contains(object value)2826         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)2827         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)2828         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)2829         void System.Collections.IList.Remove(object value) { }
2830     }
2831     [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")]
2832     [System.SerializableAttribute]
2833     public partial class StringDictionary : System.Collections.IEnumerable
2834     {
StringDictionary()2835         public StringDictionary() { }
2836         public virtual int Count { get { throw null; } }
2837         public virtual bool IsSynchronized { get { throw null; } }
2838         public virtual string this[string key] { get { throw null; } set { } }
2839         public virtual System.Collections.ICollection Keys { get { throw null; } }
2840         public virtual object SyncRoot { get { throw null; } }
2841         public virtual System.Collections.ICollection Values { get { throw null; } }
Add(string key, string value)2842         public virtual void Add(string key, string value) { }
Clear()2843         public virtual void Clear() { }
ContainsKey(string key)2844         public virtual bool ContainsKey(string key) { throw null; }
ContainsValue(string value)2845         public virtual bool ContainsValue(string value) { throw null; }
CopyTo(System.Array array, int index)2846         public virtual void CopyTo(System.Array array, int index) { }
GetEnumerator()2847         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string key)2848         public virtual void Remove(string key) { }
2849     }
2850     public partial class StringEnumerator
2851     {
StringEnumerator()2852         internal StringEnumerator() { }
2853         public string Current { get { throw null; } }
MoveNext()2854         public bool MoveNext() { throw null; }
Reset()2855         public void Reset() { }
2856     }
2857 }
2858 namespace System.ComponentModel
2859 {
2860     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2861     public partial class AddingNewEventArgs : System.EventArgs
2862     {
AddingNewEventArgs()2863         public AddingNewEventArgs() { }
AddingNewEventArgs(object newObject)2864         public AddingNewEventArgs(object newObject) { }
2865         public object NewObject { get { throw null; } set { } }
2866     }
2867     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
AddingNewEventHandler(object sender, System.ComponentModel.AddingNewEventArgs e)2868     public delegate void AddingNewEventHandler(object sender, System.ComponentModel.AddingNewEventArgs e);
2869     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2870     public sealed partial class AmbientValueAttribute : System.Attribute
2871     {
AmbientValueAttribute(bool value)2872         public AmbientValueAttribute(bool value) { }
AmbientValueAttribute(byte value)2873         public AmbientValueAttribute(byte value) { }
AmbientValueAttribute(char value)2874         public AmbientValueAttribute(char value) { }
AmbientValueAttribute(double value)2875         public AmbientValueAttribute(double value) { }
AmbientValueAttribute(short value)2876         public AmbientValueAttribute(short value) { }
AmbientValueAttribute(int value)2877         public AmbientValueAttribute(int value) { }
AmbientValueAttribute(long value)2878         public AmbientValueAttribute(long value) { }
AmbientValueAttribute(object value)2879         public AmbientValueAttribute(object value) { }
AmbientValueAttribute(float value)2880         public AmbientValueAttribute(float value) { }
AmbientValueAttribute(string value)2881         public AmbientValueAttribute(string value) { }
AmbientValueAttribute(System.Type type, string value)2882         public AmbientValueAttribute(System.Type type, string value) { }
2883         public object Value { get { throw null; } }
Equals(object obj)2884         public override bool Equals(object obj) { throw null; }
GetHashCode()2885         public override int GetHashCode() { throw null; }
2886     }
2887     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2888     public partial class ArrayConverter : System.ComponentModel.CollectionConverter
2889     {
ArrayConverter()2890         public ArrayConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2891         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)2892         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2893         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
2894     }
2895     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2896     public partial class AsyncCompletedEventArgs : System.EventArgs
2897     {
2898         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2899         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
AsyncCompletedEventArgs()2900         public AsyncCompletedEventArgs() { }
AsyncCompletedEventArgs(System.Exception error, bool cancelled, object userState)2901         public AsyncCompletedEventArgs(System.Exception error, bool cancelled, object userState) { }
2902         public bool Cancelled { get { throw null; } }
2903         public System.Exception Error { get { throw null; } }
2904         public object UserState { get { throw null; } }
RaiseExceptionIfNecessary()2905         protected void RaiseExceptionIfNecessary() { }
2906     }
2907     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
AsyncCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e)2908     public delegate void AsyncCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
2909     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2910     public sealed partial class AsyncOperation
2911     {
AsyncOperation()2912         internal AsyncOperation() { }
2913         public System.Threading.SynchronizationContext SynchronizationContext { get { throw null; } }
2914         public object UserSuppliedState { get { throw null; } }
~AsyncOperation()2915         ~AsyncOperation() { }
OperationCompleted()2916         public void OperationCompleted() { }
Post(System.Threading.SendOrPostCallback d, object arg)2917         public void Post(System.Threading.SendOrPostCallback d, object arg) { }
PostOperationCompleted(System.Threading.SendOrPostCallback d, object arg)2918         public void PostOperationCompleted(System.Threading.SendOrPostCallback d, object arg) { }
2919     }
2920     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2921     public static partial class AsyncOperationManager
2922     {
2923         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
2924         public static System.Threading.SynchronizationContext SynchronizationContext { get { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
CreateOperation(object userSuppliedState)2925         public static System.ComponentModel.AsyncOperation CreateOperation(object userSuppliedState) { throw null; }
2926     }
2927     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2928     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
2929     public partial class AttributeCollection : System.Collections.ICollection, System.Collections.IEnumerable
2930     {
2931         public static readonly System.ComponentModel.AttributeCollection Empty;
AttributeCollection()2932         protected AttributeCollection() { }
AttributeCollection(params System.Attribute[] attributes)2933         public AttributeCollection(params System.Attribute[] attributes) { }
2934         protected virtual System.Attribute[] Attributes { get { throw null; } }
2935         public int Count { get { throw null; } }
2936         public virtual System.Attribute this[int index] { get { throw null; } }
2937         public virtual System.Attribute this[System.Type attributeType] { get { throw null; } }
2938         int System.Collections.ICollection.Count { get { throw null; } }
2939         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2940         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Contains(System.Attribute attribute)2941         public bool Contains(System.Attribute attribute) { throw null; }
Contains(System.Attribute[] attributes)2942         public bool Contains(System.Attribute[] attributes) { throw null; }
CopyTo(System.Array array, int index)2943         public void CopyTo(System.Array array, int index) { }
FromExisting(System.ComponentModel.AttributeCollection existing, params System.Attribute[] newAttributes)2944         public static System.ComponentModel.AttributeCollection FromExisting(System.ComponentModel.AttributeCollection existing, params System.Attribute[] newAttributes) { throw null; }
GetDefaultAttribute(System.Type attributeType)2945         protected System.Attribute GetDefaultAttribute(System.Type attributeType) { throw null; }
GetEnumerator()2946         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Matches(System.Attribute attribute)2947         public bool Matches(System.Attribute attribute) { throw null; }
Matches(System.Attribute[] attributes)2948         public bool Matches(System.Attribute[] attributes) { throw null; }
System.Collections.IEnumerable.GetEnumerator()2949         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
2950     }
2951     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
2952     public partial class AttributeProviderAttribute : System.Attribute
2953     {
AttributeProviderAttribute(string typeName)2954         public AttributeProviderAttribute(string typeName) { }
AttributeProviderAttribute(string typeName, string propertyName)2955         public AttributeProviderAttribute(string typeName, string propertyName) { }
AttributeProviderAttribute(System.Type type)2956         public AttributeProviderAttribute(System.Type type) { }
2957         public string PropertyName { get { throw null; } }
2958         public string TypeName { get { throw null; } }
2959     }
2960     [System.ComponentModel.DefaultEventAttribute("DoWork")]
2961     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2962     public partial class BackgroundWorker : System.ComponentModel.Component
2963     {
BackgroundWorker()2964         public BackgroundWorker() { }
2965         [System.ComponentModel.BrowsableAttribute(false)]
2966         public bool CancellationPending { get { throw null; } }
2967         [System.ComponentModel.BrowsableAttribute(false)]
2968         public bool IsBusy { get { throw null; } }
2969         [System.ComponentModel.DefaultValueAttribute(false)]
2970         public bool WorkerReportsProgress { get { throw null; } set { } }
2971         [System.ComponentModel.DefaultValueAttribute(false)]
2972         public bool WorkerSupportsCancellation { get { throw null; } set { } }
2973         public event System.ComponentModel.DoWorkEventHandler DoWork { add { } remove { } }
2974         public event System.ComponentModel.ProgressChangedEventHandler ProgressChanged { add { } remove { } }
2975         public event System.ComponentModel.RunWorkerCompletedEventHandler RunWorkerCompleted { add { } remove { } }
CancelAsync()2976         public void CancelAsync() { }
OnDoWork(System.ComponentModel.DoWorkEventArgs e)2977         protected virtual void OnDoWork(System.ComponentModel.DoWorkEventArgs e) { }
OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs e)2978         protected virtual void OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs e) { }
OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e)2979         protected virtual void OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e) { }
ReportProgress(int percentProgress)2980         public void ReportProgress(int percentProgress) { }
ReportProgress(int percentProgress, object userState)2981         public void ReportProgress(int percentProgress, object userState) { }
RunWorkerAsync()2982         public void RunWorkerAsync() { }
RunWorkerAsync(object argument)2983         public void RunWorkerAsync(object argument) { }
2984     }
2985     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2986     public abstract partial class BaseNumberConverter : System.ComponentModel.TypeConverter
2987     {
BaseNumberConverter()2988         protected BaseNumberConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2989         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type t)2990         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type t) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2991         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)2992         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
2993     }
2994     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2995     public sealed partial class BindableAttribute : System.Attribute
2996     {
2997         public static readonly System.ComponentModel.BindableAttribute Default;
2998         public static readonly System.ComponentModel.BindableAttribute No;
2999         public static readonly System.ComponentModel.BindableAttribute Yes;
BindableAttribute(bool bindable)3000         public BindableAttribute(bool bindable) { }
BindableAttribute(bool bindable, System.ComponentModel.BindingDirection direction)3001         public BindableAttribute(bool bindable, System.ComponentModel.BindingDirection direction) { }
BindableAttribute(System.ComponentModel.BindableSupport flags)3002         public BindableAttribute(System.ComponentModel.BindableSupport flags) { }
BindableAttribute(System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction)3003         public BindableAttribute(System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction) { }
3004         public bool Bindable { get { throw null; } }
3005         public System.ComponentModel.BindingDirection Direction { get { throw null; } }
Equals(object obj)3006         public override bool Equals(object obj) { throw null; }
GetHashCode()3007         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3008         public override bool IsDefaultAttribute() { throw null; }
3009     }
3010     public enum BindableSupport
3011     {
3012         Default = 2,
3013         No = 0,
3014         Yes = 1,
3015     }
3016     public enum BindingDirection
3017     {
3018         OneWay = 0,
3019         TwoWay = 1,
3020     }
3021     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3022     [System.SerializableAttribute]
3023     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
3024     {
BindingList()3025         public BindingList() { }
BindingList(System.Collections.Generic.IList<T> list)3026         public BindingList(System.Collections.Generic.IList<T> list) { }
3027         public bool AllowEdit { get { throw null; } set { } }
3028         public bool AllowNew { get { throw null; } set { } }
3029         public bool AllowRemove { get { throw null; } set { } }
3030         protected virtual bool IsSortedCore { get { throw null; } }
3031         public bool RaiseListChangedEvents { get { throw null; } set { } }
3032         protected virtual System.ComponentModel.ListSortDirection SortDirectionCore { get { throw null; } }
3033         protected virtual System.ComponentModel.PropertyDescriptor SortPropertyCore { get { throw null; } }
3034         protected virtual bool SupportsChangeNotificationCore { get { throw null; } }
3035         protected virtual bool SupportsSearchingCore { get { throw null; } }
3036         protected virtual bool SupportsSortingCore { get { throw null; } }
3037         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
3038         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
3039         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
3040         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
3041         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
3042         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
3043         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
3044         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
3045         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
3046         bool System.ComponentModel.IRaiseItemChangedEvents.RaisesItemChangedEvents { get { throw null; } }
3047         public event System.ComponentModel.AddingNewEventHandler AddingNew { add { } remove { } }
3048         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
AddNew()3049         public T AddNew() { throw null; }
AddNewCore()3050         protected virtual object AddNewCore() { throw null; }
ApplySortCore(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction)3051         protected virtual void ApplySortCore(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction) { }
CancelNew(int itemIndex)3052         public virtual void CancelNew(int itemIndex) { }
ClearItems()3053         protected override void ClearItems() { }
EndNew(int itemIndex)3054         public virtual void EndNew(int itemIndex) { }
FindCore(System.ComponentModel.PropertyDescriptor prop, object key)3055         protected virtual int FindCore(System.ComponentModel.PropertyDescriptor prop, object key) { throw null; }
InsertItem(int index, T item)3056         protected override void InsertItem(int index, T item) { }
OnAddingNew(System.ComponentModel.AddingNewEventArgs e)3057         protected virtual void OnAddingNew(System.ComponentModel.AddingNewEventArgs e) { }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)3058         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
RemoveItem(int index)3059         protected override void RemoveItem(int index) { }
RemoveSortCore()3060         protected virtual void RemoveSortCore() { }
ResetBindings()3061         public void ResetBindings() { }
ResetItem(int position)3062         public void ResetItem(int position) { }
SetItem(int index, T item)3063         protected override void SetItem(int index, T item) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop)3064         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop) { }
System.ComponentModel.IBindingList.AddNew()3065         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction)3066         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor prop, object key)3067         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor prop, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop)3068         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop) { }
System.ComponentModel.IBindingList.RemoveSort()3069         void System.ComponentModel.IBindingList.RemoveSort() { }
3070     }
3071     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3072     public partial class BooleanConverter : System.ComponentModel.TypeConverter
3073     {
BooleanConverter()3074         public BooleanConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3075         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3076         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)3077         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)3078         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)3079         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3080     }
3081     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3082     public sealed partial class BrowsableAttribute : System.Attribute
3083     {
3084         public static readonly System.ComponentModel.BrowsableAttribute Default;
3085         public static readonly System.ComponentModel.BrowsableAttribute No;
3086         public static readonly System.ComponentModel.BrowsableAttribute Yes;
BrowsableAttribute(bool browsable)3087         public BrowsableAttribute(bool browsable) { }
3088         public bool Browsable { get { throw null; } }
Equals(object obj)3089         public override bool Equals(object obj) { throw null; }
GetHashCode()3090         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3091         public override bool IsDefaultAttribute() { throw null; }
3092     }
3093     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3094     public partial class ByteConverter : System.ComponentModel.BaseNumberConverter
3095     {
ByteConverter()3096         public ByteConverter() { }
3097     }
3098     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3099     public partial class CancelEventArgs : System.EventArgs
3100     {
CancelEventArgs()3101         public CancelEventArgs() { }
CancelEventArgs(bool cancel)3102         public CancelEventArgs(bool cancel) { }
3103         public bool Cancel { get { throw null; } set { } }
3104     }
3105     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
CancelEventHandler(object sender, System.ComponentModel.CancelEventArgs e)3106     public delegate void CancelEventHandler(object sender, System.ComponentModel.CancelEventArgs e);
3107     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3108     public partial class CategoryAttribute : System.Attribute
3109     {
CategoryAttribute()3110         public CategoryAttribute() { }
CategoryAttribute(string category)3111         public CategoryAttribute(string category) { }
3112         public static System.ComponentModel.CategoryAttribute Action { get { throw null; } }
3113         public static System.ComponentModel.CategoryAttribute Appearance { get { throw null; } }
3114         public static System.ComponentModel.CategoryAttribute Asynchronous { get { throw null; } }
3115         public static System.ComponentModel.CategoryAttribute Behavior { get { throw null; } }
3116         public string Category { get { throw null; } }
3117         public static System.ComponentModel.CategoryAttribute Data { get { throw null; } }
3118         public static System.ComponentModel.CategoryAttribute Default { get { throw null; } }
3119         public static System.ComponentModel.CategoryAttribute Design { get { throw null; } }
3120         public static System.ComponentModel.CategoryAttribute DragDrop { get { throw null; } }
3121         public static System.ComponentModel.CategoryAttribute Focus { get { throw null; } }
3122         public static System.ComponentModel.CategoryAttribute Format { get { throw null; } }
3123         public static System.ComponentModel.CategoryAttribute Key { get { throw null; } }
3124         public static System.ComponentModel.CategoryAttribute Layout { get { throw null; } }
3125         public static System.ComponentModel.CategoryAttribute Mouse { get { throw null; } }
3126         public static System.ComponentModel.CategoryAttribute WindowStyle { get { throw null; } }
Equals(object obj)3127         public override bool Equals(object obj) { throw null; }
GetHashCode()3128         public override int GetHashCode() { throw null; }
GetLocalizedString(string value)3129         protected virtual string GetLocalizedString(string value) { throw null; }
IsDefaultAttribute()3130         public override bool IsDefaultAttribute() { throw null; }
3131     }
3132     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3133     public partial class CharConverter : System.ComponentModel.TypeConverter
3134     {
CharConverter()3135         public CharConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3136         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3137         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)3138         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3139     }
3140     public enum CollectionChangeAction
3141     {
3142         Add = 1,
3143         Refresh = 3,
3144         Remove = 2,
3145     }
3146     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3147     public partial class CollectionChangeEventArgs : System.EventArgs
3148     {
CollectionChangeEventArgs(System.ComponentModel.CollectionChangeAction action, object element)3149         public CollectionChangeEventArgs(System.ComponentModel.CollectionChangeAction action, object element) { }
3150         public virtual System.ComponentModel.CollectionChangeAction Action { get { throw null; } }
3151         public virtual object Element { get { throw null; } }
3152     }
3153     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
CollectionChangeEventHandler(object sender, System.ComponentModel.CollectionChangeEventArgs e)3154     public delegate void CollectionChangeEventHandler(object sender, System.ComponentModel.CollectionChangeEventArgs e);
3155     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3156     public partial class CollectionConverter : System.ComponentModel.TypeConverter
3157     {
CollectionConverter()3158         public CollectionConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)3159         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)3160         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)3161         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3162     }
3163     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3164     public sealed partial class ComplexBindingPropertiesAttribute : System.Attribute
3165     {
3166         public static readonly System.ComponentModel.ComplexBindingPropertiesAttribute Default;
ComplexBindingPropertiesAttribute()3167         public ComplexBindingPropertiesAttribute() { }
ComplexBindingPropertiesAttribute(string dataSource)3168         public ComplexBindingPropertiesAttribute(string dataSource) { }
ComplexBindingPropertiesAttribute(string dataSource, string dataMember)3169         public ComplexBindingPropertiesAttribute(string dataSource, string dataMember) { }
3170         public string DataMember { get { throw null; } }
3171         public string DataSource { get { throw null; } }
Equals(object obj)3172         public override bool Equals(object obj) { throw null; }
GetHashCode()3173         public override int GetHashCode() { throw null; }
3174     }
3175     [System.ComponentModel.DesignerCategoryAttribute("Component")]
3176     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
3177     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3178     public partial class Component : System.MarshalByRefObject, System.ComponentModel.IComponent, System.IDisposable
3179     {
Component()3180         public Component() { }
3181         protected virtual bool CanRaiseEvents { get { throw null; } }
3182         [System.ComponentModel.BrowsableAttribute(false)]
3183         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3184         public System.ComponentModel.IContainer Container { get { throw null; } }
3185         [System.ComponentModel.BrowsableAttribute(false)]
3186         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3187         protected bool DesignMode { get { throw null; } }
3188         protected System.ComponentModel.EventHandlerList Events { get { throw null; } }
3189         [System.ComponentModel.BrowsableAttribute(false)]
3190         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3191         public virtual System.ComponentModel.ISite Site { get { throw null; } set { } }
3192         [System.ComponentModel.BrowsableAttribute(false)]
3193         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3194         public event System.EventHandler Disposed { add { } remove { } }
Dispose()3195         public void Dispose() { }
Dispose(bool disposing)3196         protected virtual void Dispose(bool disposing) { }
~Component()3197         ~Component() { }
GetService(System.Type service)3198         protected virtual object GetService(System.Type service) { throw null; }
ToString()3199         public override string ToString() { throw null; }
3200     }
3201     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3202     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
3203     public partial class ComponentCollection : System.Collections.ReadOnlyCollectionBase
3204     {
ComponentCollection(System.ComponentModel.IComponent[] components)3205         public ComponentCollection(System.ComponentModel.IComponent[] components) { }
3206         public virtual System.ComponentModel.IComponent this[int index] { get { throw null; } }
3207         public virtual System.ComponentModel.IComponent this[string name] { get { throw null; } }
CopyTo(System.ComponentModel.IComponent[] array, int index)3208         public void CopyTo(System.ComponentModel.IComponent[] array, int index) { }
3209     }
3210     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3211     public partial class ComponentConverter : System.ComponentModel.ReferenceConverter
3212     {
ComponentConverter(System.Type type)3213         public ComponentConverter(System.Type type) : base (default(System.Type)) { }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)3214         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)3215         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3216     }
3217     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3218     public abstract partial class ComponentEditor
3219     {
ComponentEditor()3220         protected ComponentEditor() { }
EditComponent(System.ComponentModel.ITypeDescriptorContext context, object component)3221         public abstract bool EditComponent(System.ComponentModel.ITypeDescriptorContext context, object component);
EditComponent(object component)3222         public bool EditComponent(object component) { throw null; }
3223     }
3224     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3225     public partial class ComponentResourceManager : System.Resources.ResourceManager
3226     {
ComponentResourceManager()3227         public ComponentResourceManager() { }
ComponentResourceManager(System.Type t)3228         public ComponentResourceManager(System.Type t) { }
ApplyResources(object value, string objectName)3229         public void ApplyResources(object value, string objectName) { }
ApplyResources(object value, string objectName, System.Globalization.CultureInfo culture)3230         public virtual void ApplyResources(object value, string objectName, System.Globalization.CultureInfo culture) { }
3231     }
3232     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3233     public partial class Container : System.ComponentModel.IContainer, System.IDisposable
3234     {
Container()3235         public Container() { }
3236         public virtual System.ComponentModel.ComponentCollection Components { get { throw null; } }
Add(System.ComponentModel.IComponent component)3237         public virtual void Add(System.ComponentModel.IComponent component) { }
Add(System.ComponentModel.IComponent component, string name)3238         public virtual void Add(System.ComponentModel.IComponent component, string name) { }
CreateSite(System.ComponentModel.IComponent component, string name)3239         protected virtual System.ComponentModel.ISite CreateSite(System.ComponentModel.IComponent component, string name) { throw null; }
Dispose()3240         public void Dispose() { }
Dispose(bool disposing)3241         protected virtual void Dispose(bool disposing) { }
~Container()3242         ~Container() { }
GetService(System.Type service)3243         protected virtual object GetService(System.Type service) { throw null; }
Remove(System.ComponentModel.IComponent component)3244         public virtual void Remove(System.ComponentModel.IComponent component) { }
RemoveWithoutUnsiting(System.ComponentModel.IComponent component)3245         protected void RemoveWithoutUnsiting(System.ComponentModel.IComponent component) { }
ValidateName(System.ComponentModel.IComponent component, string name)3246         protected virtual void ValidateName(System.ComponentModel.IComponent component, string name) { }
3247     }
3248     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3249     public abstract partial class ContainerFilterService
3250     {
ContainerFilterService()3251         protected ContainerFilterService() { }
FilterComponents(System.ComponentModel.ComponentCollection components)3252         public virtual System.ComponentModel.ComponentCollection FilterComponents(System.ComponentModel.ComponentCollection components) { throw null; }
3253     }
3254     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3255     public partial class CultureInfoConverter : System.ComponentModel.TypeConverter
3256     {
CultureInfoConverter()3257         public CultureInfoConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3258         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3259         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3260         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)3261         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetCultureName(System.Globalization.CultureInfo culture)3262         protected virtual string GetCultureName(System.Globalization.CultureInfo culture) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)3263         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)3264         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)3265         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3266     }
3267     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3268     public abstract partial class CustomTypeDescriptor : System.ComponentModel.ICustomTypeDescriptor
3269     {
CustomTypeDescriptor()3270         protected CustomTypeDescriptor() { }
CustomTypeDescriptor(System.ComponentModel.ICustomTypeDescriptor parent)3271         protected CustomTypeDescriptor(System.ComponentModel.ICustomTypeDescriptor parent) { }
GetAttributes()3272         public virtual System.ComponentModel.AttributeCollection GetAttributes() { throw null; }
GetClassName()3273         public virtual string GetClassName() { throw null; }
GetComponentName()3274         public virtual string GetComponentName() { throw null; }
GetConverter()3275         public virtual System.ComponentModel.TypeConverter GetConverter() { throw null; }
GetDefaultEvent()3276         public virtual System.ComponentModel.EventDescriptor GetDefaultEvent() { throw null; }
GetDefaultProperty()3277         public virtual System.ComponentModel.PropertyDescriptor GetDefaultProperty() { throw null; }
GetEditor(System.Type editorBaseType)3278         public virtual object GetEditor(System.Type editorBaseType) { throw null; }
GetEvents()3279         public virtual System.ComponentModel.EventDescriptorCollection GetEvents() { throw null; }
GetEvents(System.Attribute[] attributes)3280         public virtual System.ComponentModel.EventDescriptorCollection GetEvents(System.Attribute[] attributes) { throw null; }
GetProperties()3281         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties() { throw null; }
GetProperties(System.Attribute[] attributes)3282         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Attribute[] attributes) { throw null; }
GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)3283         public virtual object GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
3284     }
3285     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3286     public partial class DataErrorsChangedEventArgs : System.EventArgs
3287     {
DataErrorsChangedEventArgs(string propertyName)3288         public DataErrorsChangedEventArgs(string propertyName) { }
3289         public virtual string PropertyName { get { throw null; } }
3290     }
3291     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3292     public sealed partial class DataObjectAttribute : System.Attribute
3293     {
3294         public static readonly System.ComponentModel.DataObjectAttribute DataObject;
3295         public static readonly System.ComponentModel.DataObjectAttribute Default;
3296         public static readonly System.ComponentModel.DataObjectAttribute NonDataObject;
DataObjectAttribute()3297         public DataObjectAttribute() { }
DataObjectAttribute(bool isDataObject)3298         public DataObjectAttribute(bool isDataObject) { }
3299         public bool IsDataObject { get { throw null; } }
Equals(object obj)3300         public override bool Equals(object obj) { throw null; }
GetHashCode()3301         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3302         public override bool IsDefaultAttribute() { throw null; }
3303     }
3304     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
3305     public sealed partial class DataObjectFieldAttribute : System.Attribute
3306     {
DataObjectFieldAttribute(bool primaryKey)3307         public DataObjectFieldAttribute(bool primaryKey) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity)3308         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable)3309         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length)3310         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length) { }
3311         public bool IsIdentity { get { throw null; } }
3312         public bool IsNullable { get { throw null; } }
3313         public int Length { get { throw null; } }
3314         public bool PrimaryKey { get { throw null; } }
Equals(object obj)3315         public override bool Equals(object obj) { throw null; }
GetHashCode()3316         public override int GetHashCode() { throw null; }
3317     }
3318     [System.AttributeUsageAttribute((System.AttributeTargets)(64))]
3319     public sealed partial class DataObjectMethodAttribute : System.Attribute
3320     {
DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType)3321         public DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType) { }
DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType, bool isDefault)3322         public DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType, bool isDefault) { }
3323         public bool IsDefault { get { throw null; } }
3324         public System.ComponentModel.DataObjectMethodType MethodType { get { throw null; } }
Equals(object obj)3325         public override bool Equals(object obj) { throw null; }
GetHashCode()3326         public override int GetHashCode() { throw null; }
Match(object obj)3327         public override bool Match(object obj) { throw null; }
3328     }
3329     public enum DataObjectMethodType
3330     {
3331         Delete = 4,
3332         Fill = 0,
3333         Insert = 3,
3334         Select = 1,
3335         Update = 2,
3336     }
3337     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3338     public partial class DateTimeConverter : System.ComponentModel.TypeConverter
3339     {
DateTimeConverter()3340         public DateTimeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3341         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3342         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3343         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)3344         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3345     }
3346     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3347     public partial class DateTimeOffsetConverter : System.ComponentModel.TypeConverter
3348     {
DateTimeOffsetConverter()3349         public DateTimeOffsetConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3350         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3351         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3352         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)3353         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3354     }
3355     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3356     public partial class DecimalConverter : System.ComponentModel.BaseNumberConverter
3357     {
DecimalConverter()3358         public DecimalConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3359         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)3360         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3361     }
3362     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3363     public sealed partial class DefaultBindingPropertyAttribute : System.Attribute
3364     {
3365         public static readonly System.ComponentModel.DefaultBindingPropertyAttribute Default;
DefaultBindingPropertyAttribute()3366         public DefaultBindingPropertyAttribute() { }
DefaultBindingPropertyAttribute(string name)3367         public DefaultBindingPropertyAttribute(string name) { }
3368         public string Name { get { throw null; } }
Equals(object obj)3369         public override bool Equals(object obj) { throw null; }
GetHashCode()3370         public override int GetHashCode() { throw null; }
3371     }
3372     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3373     public sealed partial class DefaultEventAttribute : System.Attribute
3374     {
3375         public static readonly System.ComponentModel.DefaultEventAttribute Default;
DefaultEventAttribute(string name)3376         public DefaultEventAttribute(string name) { }
3377         public string Name { get { throw null; } }
Equals(object obj)3378         public override bool Equals(object obj) { throw null; }
GetHashCode()3379         public override int GetHashCode() { throw null; }
3380     }
3381     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3382     public sealed partial class DefaultPropertyAttribute : System.Attribute
3383     {
3384         public static readonly System.ComponentModel.DefaultPropertyAttribute Default;
DefaultPropertyAttribute(string name)3385         public DefaultPropertyAttribute(string name) { }
3386         public string Name { get { throw null; } }
Equals(object obj)3387         public override bool Equals(object obj) { throw null; }
GetHashCode()3388         public override int GetHashCode() { throw null; }
3389     }
3390     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3391     public partial class DefaultValueAttribute : System.Attribute
3392     {
DefaultValueAttribute(bool value)3393         public DefaultValueAttribute(bool value) { }
DefaultValueAttribute(byte value)3394         public DefaultValueAttribute(byte value) { }
DefaultValueAttribute(char value)3395         public DefaultValueAttribute(char value) { }
DefaultValueAttribute(double value)3396         public DefaultValueAttribute(double value) { }
DefaultValueAttribute(short value)3397         public DefaultValueAttribute(short value) { }
DefaultValueAttribute(int value)3398         public DefaultValueAttribute(int value) { }
DefaultValueAttribute(long value)3399         public DefaultValueAttribute(long value) { }
DefaultValueAttribute(object value)3400         public DefaultValueAttribute(object value) { }
DefaultValueAttribute(float value)3401         public DefaultValueAttribute(float value) { }
DefaultValueAttribute(string value)3402         public DefaultValueAttribute(string value) { }
DefaultValueAttribute(System.Type type, string value)3403         public DefaultValueAttribute(System.Type type, string value) { }
3404         public virtual object Value { get { throw null; } }
Equals(object obj)3405         public override bool Equals(object obj) { throw null; }
GetHashCode()3406         public override int GetHashCode() { throw null; }
SetValue(object value)3407         protected void SetValue(object value) { }
3408     }
3409     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3410     public partial class DescriptionAttribute : System.Attribute
3411     {
3412         public static readonly System.ComponentModel.DescriptionAttribute Default;
DescriptionAttribute()3413         public DescriptionAttribute() { }
DescriptionAttribute(string description)3414         public DescriptionAttribute(string description) { }
3415         public virtual string Description { get { throw null; } }
3416         protected string DescriptionValue { get { throw null; } set { } }
Equals(object obj)3417         public override bool Equals(object obj) { throw null; }
GetHashCode()3418         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3419         public override bool IsDefaultAttribute() { throw null; }
3420     }
3421     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
3422     public sealed partial class DesignerAttribute : System.Attribute
3423     {
DesignerAttribute(string designerTypeName)3424         public DesignerAttribute(string designerTypeName) { }
DesignerAttribute(string designerTypeName, string designerBaseTypeName)3425         public DesignerAttribute(string designerTypeName, string designerBaseTypeName) { }
DesignerAttribute(string designerTypeName, System.Type designerBaseType)3426         public DesignerAttribute(string designerTypeName, System.Type designerBaseType) { }
DesignerAttribute(System.Type designerType)3427         public DesignerAttribute(System.Type designerType) { }
DesignerAttribute(System.Type designerType, System.Type designerBaseType)3428         public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { }
3429         public string DesignerBaseTypeName { get { throw null; } }
3430         public string DesignerTypeName { get { throw null; } }
3431         public override object TypeId { get { throw null; } }
Equals(object obj)3432         public override bool Equals(object obj) { throw null; }
GetHashCode()3433         public override int GetHashCode() { throw null; }
3434     }
3435     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=true)]
3436     public sealed partial class DesignerCategoryAttribute : System.Attribute
3437     {
3438         public static readonly System.ComponentModel.DesignerCategoryAttribute Component;
3439         public static readonly System.ComponentModel.DesignerCategoryAttribute Default;
3440         public static readonly System.ComponentModel.DesignerCategoryAttribute Form;
3441         public static readonly System.ComponentModel.DesignerCategoryAttribute Generic;
DesignerCategoryAttribute()3442         public DesignerCategoryAttribute() { }
DesignerCategoryAttribute(string category)3443         public DesignerCategoryAttribute(string category) { }
3444         public string Category { get { throw null; } }
3445         public override object TypeId { get { throw null; } }
Equals(object obj)3446         public override bool Equals(object obj) { throw null; }
GetHashCode()3447         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3448         public override bool IsDefaultAttribute() { throw null; }
3449     }
3450     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3451     public enum DesignerSerializationVisibility
3452     {
3453         Content = 2,
3454         Hidden = 0,
3455         Visible = 1,
3456     }
3457     [System.AttributeUsageAttribute((System.AttributeTargets)(960))]
3458     public sealed partial class DesignerSerializationVisibilityAttribute : System.Attribute
3459     {
3460         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Content;
3461         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Default;
3462         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Hidden;
3463         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Visible;
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility visibility)3464         public DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility visibility) { }
3465         public System.ComponentModel.DesignerSerializationVisibility Visibility { get { throw null; } }
Equals(object obj)3466         public override bool Equals(object obj) { throw null; }
GetHashCode()3467         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3468         public override bool IsDefaultAttribute() { throw null; }
3469     }
3470     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3471     public sealed partial class DesignOnlyAttribute : System.Attribute
3472     {
3473         public static readonly System.ComponentModel.DesignOnlyAttribute Default;
3474         public static readonly System.ComponentModel.DesignOnlyAttribute No;
3475         public static readonly System.ComponentModel.DesignOnlyAttribute Yes;
DesignOnlyAttribute(bool isDesignOnly)3476         public DesignOnlyAttribute(bool isDesignOnly) { }
3477         public bool IsDesignOnly { get { throw null; } }
Equals(object obj)3478         public override bool Equals(object obj) { throw null; }
GetHashCode()3479         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3480         public override bool IsDefaultAttribute() { throw null; }
3481     }
3482     [System.AttributeUsageAttribute((System.AttributeTargets)(1028))]
3483     public sealed partial class DesignTimeVisibleAttribute : System.Attribute
3484     {
3485         public static readonly System.ComponentModel.DesignTimeVisibleAttribute Default;
3486         public static readonly System.ComponentModel.DesignTimeVisibleAttribute No;
3487         public static readonly System.ComponentModel.DesignTimeVisibleAttribute Yes;
DesignTimeVisibleAttribute()3488         public DesignTimeVisibleAttribute() { }
DesignTimeVisibleAttribute(bool visible)3489         public DesignTimeVisibleAttribute(bool visible) { }
3490         public bool Visible { get { throw null; } }
Equals(object obj)3491         public override bool Equals(object obj) { throw null; }
GetHashCode()3492         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3493         public override bool IsDefaultAttribute() { throw null; }
3494     }
3495     [System.AttributeUsageAttribute((System.AttributeTargets)(708))]
3496     public partial class DisplayNameAttribute : System.Attribute
3497     {
3498         public static readonly System.ComponentModel.DisplayNameAttribute Default;
DisplayNameAttribute()3499         public DisplayNameAttribute() { }
DisplayNameAttribute(string displayName)3500         public DisplayNameAttribute(string displayName) { }
3501         public virtual string DisplayName { get { throw null; } }
3502         protected string DisplayNameValue { get { throw null; } set { } }
Equals(object obj)3503         public override bool Equals(object obj) { throw null; }
GetHashCode()3504         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3505         public override bool IsDefaultAttribute() { throw null; }
3506     }
3507     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3508     public partial class DoubleConverter : System.ComponentModel.BaseNumberConverter
3509     {
DoubleConverter()3510         public DoubleConverter() { }
3511     }
3512     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3513     public partial class DoWorkEventArgs : System.ComponentModel.CancelEventArgs
3514     {
DoWorkEventArgs(object argument)3515         public DoWorkEventArgs(object argument) { }
3516         public object Argument { get { throw null; } }
3517         public object Result { get { throw null; } set { } }
3518     }
3519     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DoWorkEventHandler(object sender, System.ComponentModel.DoWorkEventArgs e)3520     public delegate void DoWorkEventHandler(object sender, System.ComponentModel.DoWorkEventArgs e);
3521     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true, Inherited=true)]
3522     public sealed partial class EditorAttribute : System.Attribute
3523     {
EditorAttribute()3524         public EditorAttribute() { }
EditorAttribute(string typeName, string baseTypeName)3525         public EditorAttribute(string typeName, string baseTypeName) { }
EditorAttribute(string typeName, System.Type baseType)3526         public EditorAttribute(string typeName, System.Type baseType) { }
EditorAttribute(System.Type type, System.Type baseType)3527         public EditorAttribute(System.Type type, System.Type baseType) { }
3528         public string EditorBaseTypeName { get { throw null; } }
3529         public string EditorTypeName { get { throw null; } }
3530         public override object TypeId { get { throw null; } }
Equals(object obj)3531         public override bool Equals(object obj) { throw null; }
GetHashCode()3532         public override int GetHashCode() { throw null; }
3533     }
3534     [System.AttributeUsageAttribute((System.AttributeTargets)(6140))]
3535     public sealed partial class EditorBrowsableAttribute : System.Attribute
3536     {
EditorBrowsableAttribute()3537         public EditorBrowsableAttribute() { }
EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState state)3538         public EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState state) { }
3539         public System.ComponentModel.EditorBrowsableState State { get { throw null; } }
Equals(object obj)3540         public override bool Equals(object obj) { throw null; }
GetHashCode()3541         public override int GetHashCode() { throw null; }
3542     }
3543     public enum EditorBrowsableState
3544     {
3545         Advanced = 2,
3546         Always = 0,
3547         Never = 1,
3548     }
3549     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3550     public partial class EnumConverter : System.ComponentModel.TypeConverter
3551     {
EnumConverter(System.Type type)3552         public EnumConverter(System.Type type) { }
3553         protected virtual System.Collections.IComparer Comparer { get { throw null; } }
3554         protected System.Type EnumType { get { throw null; } }
3555         protected System.ComponentModel.TypeConverter.StandardValuesCollection Values { get { throw null; } set { } }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3556         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3557         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3558         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)3559         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)3560         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)3561         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)3562         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)3563         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
3564     }
3565     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3566     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3567     public abstract partial class EventDescriptor : System.ComponentModel.MemberDescriptor
3568     {
EventDescriptor(System.ComponentModel.MemberDescriptor descr)3569         protected EventDescriptor(System.ComponentModel.MemberDescriptor descr) : base (default(string)) { }
EventDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs)3570         protected EventDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs) : base (default(string)) { }
EventDescriptor(string name, System.Attribute[] attrs)3571         protected EventDescriptor(string name, System.Attribute[] attrs) : base (default(string)) { }
3572         public abstract System.Type ComponentType { get; }
3573         public abstract System.Type EventType { get; }
3574         public abstract bool IsMulticast { get; }
AddEventHandler(object component, System.Delegate value)3575         public abstract void AddEventHandler(object component, System.Delegate value);
RemoveEventHandler(object component, System.Delegate value)3576         public abstract void RemoveEventHandler(object component, System.Delegate value);
3577     }
3578     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3579     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
3580     public partial class EventDescriptorCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
3581     {
3582         public static readonly System.ComponentModel.EventDescriptorCollection Empty;
EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events)3583         public EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events) { }
EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events, bool readOnly)3584         public EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events, bool readOnly) { }
3585         public int Count { get { throw null; } }
3586         public virtual System.ComponentModel.EventDescriptor this[int index] { get { throw null; } }
3587         public virtual System.ComponentModel.EventDescriptor this[string name] { get { throw null; } }
3588         int System.Collections.ICollection.Count { get { throw null; } }
3589         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3590         object System.Collections.ICollection.SyncRoot { get { throw null; } }
3591         bool System.Collections.IList.IsFixedSize { get { throw null; } }
3592         bool System.Collections.IList.IsReadOnly { get { throw null; } }
3593         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.EventDescriptor value)3594         public int Add(System.ComponentModel.EventDescriptor value) { throw null; }
Clear()3595         public void Clear() { }
Contains(System.ComponentModel.EventDescriptor value)3596         public bool Contains(System.ComponentModel.EventDescriptor value) { throw null; }
Find(string name, bool ignoreCase)3597         public virtual System.ComponentModel.EventDescriptor Find(string name, bool ignoreCase) { throw null; }
GetEnumerator()3598         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.EventDescriptor value)3599         public int IndexOf(System.ComponentModel.EventDescriptor value) { throw null; }
Insert(int index, System.ComponentModel.EventDescriptor value)3600         public void Insert(int index, System.ComponentModel.EventDescriptor value) { }
InternalSort(System.Collections.IComparer sorter)3601         protected void InternalSort(System.Collections.IComparer sorter) { }
InternalSort(string[] names)3602         protected void InternalSort(string[] names) { }
Remove(System.ComponentModel.EventDescriptor value)3603         public void Remove(System.ComponentModel.EventDescriptor value) { }
RemoveAt(int index)3604         public void RemoveAt(int index) { }
Sort()3605         public virtual System.ComponentModel.EventDescriptorCollection Sort() { throw null; }
Sort(System.Collections.IComparer comparer)3606         public virtual System.ComponentModel.EventDescriptorCollection Sort(System.Collections.IComparer comparer) { throw null; }
Sort(string[] names)3607         public virtual System.ComponentModel.EventDescriptorCollection Sort(string[] names) { throw null; }
Sort(string[] names, System.Collections.IComparer comparer)3608         public virtual System.ComponentModel.EventDescriptorCollection Sort(string[] names, System.Collections.IComparer comparer) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)3609         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()3610         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)3611         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()3612         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)3613         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)3614         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)3615         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)3616         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)3617         void System.Collections.IList.RemoveAt(int index) { }
3618     }
3619     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3620     public sealed partial class EventHandlerList : System.IDisposable
3621     {
EventHandlerList()3622         public EventHandlerList() { }
3623         public System.Delegate this[object key] { get { throw null; } set { } }
AddHandler(object key, System.Delegate value)3624         public void AddHandler(object key, System.Delegate value) { }
AddHandlers(System.ComponentModel.EventHandlerList listToAddFrom)3625         public void AddHandlers(System.ComponentModel.EventHandlerList listToAddFrom) { }
Dispose()3626         public void Dispose() { }
RemoveHandler(object key, System.Delegate value)3627         public void RemoveHandler(object key, System.Delegate value) { }
3628     }
3629     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3630     public partial class ExpandableObjectConverter : System.ComponentModel.TypeConverter
3631     {
ExpandableObjectConverter()3632         public ExpandableObjectConverter() { }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)3633         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)3634         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3635     }
3636     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3637     public sealed partial class ExtenderProvidedPropertyAttribute : System.Attribute
3638     {
ExtenderProvidedPropertyAttribute()3639         public ExtenderProvidedPropertyAttribute() { }
3640         public System.ComponentModel.PropertyDescriptor ExtenderProperty { get { throw null; } }
3641         public System.ComponentModel.IExtenderProvider Provider { get { throw null; } }
3642         public System.Type ReceiverType { get { throw null; } }
Equals(object obj)3643         public override bool Equals(object obj) { throw null; }
GetHashCode()3644         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3645         public override bool IsDefaultAttribute() { throw null; }
3646     }
3647     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3648     public partial class GuidConverter : System.ComponentModel.TypeConverter
3649     {
GuidConverter()3650         public GuidConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3651         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3652         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3653         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)3654         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
3655     }
3656     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3657     public partial class HandledEventArgs : System.EventArgs
3658     {
HandledEventArgs()3659         public HandledEventArgs() { }
HandledEventArgs(bool defaultHandledValue)3660         public HandledEventArgs(bool defaultHandledValue) { }
3661         public bool Handled { get { throw null; } set { } }
3662     }
3663     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
HandledEventHandler(object sender, System.ComponentModel.HandledEventArgs e)3664     public delegate void HandledEventHandler(object sender, System.ComponentModel.HandledEventArgs e);
3665     public partial interface IBindingList : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
3666     {
3667         bool AllowEdit { get; }
3668         bool AllowNew { get; }
3669         bool AllowRemove { get; }
3670         bool IsSorted { get; }
3671         System.ComponentModel.ListSortDirection SortDirection { get; }
3672         System.ComponentModel.PropertyDescriptor SortProperty { get; }
3673         bool SupportsChangeNotification { get; }
3674         bool SupportsSearching { get; }
3675         bool SupportsSorting { get; }
3676         event System.ComponentModel.ListChangedEventHandler ListChanged;
AddIndex(System.ComponentModel.PropertyDescriptor property)3677         void AddIndex(System.ComponentModel.PropertyDescriptor property);
AddNew()3678         object AddNew();
ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)3679         void ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction);
Find(System.ComponentModel.PropertyDescriptor property, object key)3680         int Find(System.ComponentModel.PropertyDescriptor property, object key);
RemoveIndex(System.ComponentModel.PropertyDescriptor property)3681         void RemoveIndex(System.ComponentModel.PropertyDescriptor property);
RemoveSort()3682         void RemoveSort();
3683     }
3684     public partial interface IBindingListView : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList
3685     {
3686         string Filter { get; set; }
3687         System.ComponentModel.ListSortDescriptionCollection SortDescriptions { get; }
3688         bool SupportsAdvancedSorting { get; }
3689         bool SupportsFiltering { get; }
ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts)3690         void ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts);
RemoveFilter()3691         void RemoveFilter();
3692     }
3693     public partial interface ICancelAddNew
3694     {
CancelNew(int itemIndex)3695         void CancelNew(int itemIndex);
EndNew(int itemIndex)3696         void EndNew(int itemIndex);
3697     }
3698     public partial interface IChangeTracking
3699     {
3700         bool IsChanged { get; }
AcceptChanges()3701         void AcceptChanges();
3702     }
3703     [System.ObsoleteAttribute("This interface has been deprecated. Add a TypeDescriptionProvider to handle type TypeDescriptor.ComObjectType instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
3704     public partial interface IComNativeDescriptorHandler
3705     {
GetAttributes(object component)3706         System.ComponentModel.AttributeCollection GetAttributes(object component);
GetClassName(object component)3707         string GetClassName(object component);
GetConverter(object component)3708         System.ComponentModel.TypeConverter GetConverter(object component);
GetDefaultEvent(object component)3709         System.ComponentModel.EventDescriptor GetDefaultEvent(object component);
GetDefaultProperty(object component)3710         System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component);
GetEditor(object component, System.Type baseEditorType)3711         object GetEditor(object component, System.Type baseEditorType);
GetEvents(object component)3712         System.ComponentModel.EventDescriptorCollection GetEvents(object component);
GetEvents(object component, System.Attribute[] attributes)3713         System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes);
GetName(object component)3714         string GetName(object component);
GetProperties(object component, System.Attribute[] attributes)3715         System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes);
GetPropertyValue(object component, int dispid, ref bool success)3716         object GetPropertyValue(object component, int dispid, ref bool success);
GetPropertyValue(object component, string propertyName, ref bool success)3717         object GetPropertyValue(object component, string propertyName, ref bool success);
3718     }
3719     [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)]
3720     [System.ComponentModel.DesignerAttribute("System.ComponentModel.Design.ComponentDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IDesigner))]
3721     [System.ComponentModel.DesignerAttribute("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
3722     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ComponentConverter))]
3723     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3724     public partial interface IComponent : System.IDisposable
3725     {
3726         System.ComponentModel.ISite Site { get; set; }
3727         event System.EventHandler Disposed;
3728     }
3729     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3730     public partial interface IContainer : System.IDisposable
3731     {
3732         System.ComponentModel.ComponentCollection Components { get; }
Add(System.ComponentModel.IComponent component)3733         void Add(System.ComponentModel.IComponent component);
Add(System.ComponentModel.IComponent component, string name)3734         void Add(System.ComponentModel.IComponent component, string name);
Remove(System.ComponentModel.IComponent component)3735         void Remove(System.ComponentModel.IComponent component);
3736     }
3737     public partial interface ICustomTypeDescriptor
3738     {
GetAttributes()3739         System.ComponentModel.AttributeCollection GetAttributes();
GetClassName()3740         string GetClassName();
GetComponentName()3741         string GetComponentName();
GetConverter()3742         System.ComponentModel.TypeConverter GetConverter();
GetDefaultEvent()3743         System.ComponentModel.EventDescriptor GetDefaultEvent();
GetDefaultProperty()3744         System.ComponentModel.PropertyDescriptor GetDefaultProperty();
GetEditor(System.Type editorBaseType)3745         object GetEditor(System.Type editorBaseType);
GetEvents()3746         System.ComponentModel.EventDescriptorCollection GetEvents();
GetEvents(System.Attribute[] attributes)3747         System.ComponentModel.EventDescriptorCollection GetEvents(System.Attribute[] attributes);
GetProperties()3748         System.ComponentModel.PropertyDescriptorCollection GetProperties();
GetProperties(System.Attribute[] attributes)3749         System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Attribute[] attributes);
GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)3750         object GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd);
3751     }
3752     public partial interface IDataErrorInfo
3753     {
3754         string Error { get; }
3755         string this[string columnName] { get; }
3756     }
3757     public partial interface IEditableObject
3758     {
BeginEdit()3759         void BeginEdit();
CancelEdit()3760         void CancelEdit();
EndEdit()3761         void EndEdit();
3762     }
3763     public partial interface IExtenderProvider
3764     {
CanExtend(object extendee)3765         bool CanExtend(object extendee);
3766     }
3767     public partial interface IIntellisenseBuilder
3768     {
3769         string Name { get; }
Show(string language, string value, ref string newValue)3770         bool Show(string language, string value, ref string newValue);
3771     }
3772     [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")]
3773     [System.ComponentModel.MergablePropertyAttribute(false)]
3774     [System.ComponentModel.TypeConverterAttribute("System.Windows.Forms.Design.DataSourceConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3775     public partial interface IListSource
3776     {
3777         bool ContainsListCollection { get; }
GetList()3778         System.Collections.IList GetList();
3779     }
3780     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3781     public sealed partial class ImmutableObjectAttribute : System.Attribute
3782     {
3783         public static readonly System.ComponentModel.ImmutableObjectAttribute Default;
3784         public static readonly System.ComponentModel.ImmutableObjectAttribute No;
3785         public static readonly System.ComponentModel.ImmutableObjectAttribute Yes;
ImmutableObjectAttribute(bool immutable)3786         public ImmutableObjectAttribute(bool immutable) { }
3787         public bool Immutable { get { throw null; } }
Equals(object obj)3788         public override bool Equals(object obj) { throw null; }
GetHashCode()3789         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3790         public override bool IsDefaultAttribute() { throw null; }
3791     }
3792     public partial interface INestedContainer : System.ComponentModel.IContainer, System.IDisposable
3793     {
3794         System.ComponentModel.IComponent Owner { get; }
3795     }
3796     public partial interface INestedSite : System.ComponentModel.ISite, System.IServiceProvider
3797     {
3798         string FullName { get; }
3799     }
3800     [System.AttributeUsageAttribute((System.AttributeTargets)(896))]
3801     public sealed partial class InheritanceAttribute : System.Attribute
3802     {
3803         public static readonly System.ComponentModel.InheritanceAttribute Default;
3804         public static readonly System.ComponentModel.InheritanceAttribute Inherited;
3805         public static readonly System.ComponentModel.InheritanceAttribute InheritedReadOnly;
3806         public static readonly System.ComponentModel.InheritanceAttribute NotInherited;
InheritanceAttribute()3807         public InheritanceAttribute() { }
InheritanceAttribute(System.ComponentModel.InheritanceLevel inheritanceLevel)3808         public InheritanceAttribute(System.ComponentModel.InheritanceLevel inheritanceLevel) { }
3809         public System.ComponentModel.InheritanceLevel InheritanceLevel { get { throw null; } }
Equals(object value)3810         public override bool Equals(object value) { throw null; }
GetHashCode()3811         public override int GetHashCode() { throw null; }
IsDefaultAttribute()3812         public override bool IsDefaultAttribute() { throw null; }
ToString()3813         public override string ToString() { throw null; }
3814     }
3815     public enum InheritanceLevel
3816     {
3817         Inherited = 1,
3818         InheritedReadOnly = 2,
3819         NotInherited = 3,
3820     }
3821     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3822     public sealed partial class InitializationEventAttribute : System.Attribute
3823     {
InitializationEventAttribute(string eventName)3824         public InitializationEventAttribute(string eventName) { }
3825         public string EventName { get { throw null; } }
3826     }
3827     public partial interface INotifyDataErrorInfo
3828     {
3829         bool HasErrors { get; }
3830         event System.EventHandler<System.ComponentModel.DataErrorsChangedEventArgs> ErrorsChanged;
GetErrors(string propertyName)3831         System.Collections.IEnumerable GetErrors(string propertyName);
3832     }
3833     public partial interface INotifyPropertyChanged
3834     {
3835         event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
3836     }
3837     public partial interface INotifyPropertyChanging
3838     {
3839         event System.ComponentModel.PropertyChangingEventHandler PropertyChanging;
3840     }
3841     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
3842     public partial class InstallerTypeAttribute : System.Attribute
3843     {
InstallerTypeAttribute(string typeName)3844         public InstallerTypeAttribute(string typeName) { }
InstallerTypeAttribute(System.Type installerType)3845         public InstallerTypeAttribute(System.Type installerType) { }
3846         public virtual System.Type InstallerType { get { throw null; } }
Equals(object obj)3847         public override bool Equals(object obj) { throw null; }
GetHashCode()3848         public override int GetHashCode() { throw null; }
3849     }
3850     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3851     public abstract partial class InstanceCreationEditor
3852     {
InstanceCreationEditor()3853         protected InstanceCreationEditor() { }
3854         public virtual string Text { get { throw null; } }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Type instanceType)3855         public abstract object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Type instanceType);
3856     }
3857     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3858     public partial class Int16Converter : System.ComponentModel.BaseNumberConverter
3859     {
Int16Converter()3860         public Int16Converter() { }
3861     }
3862     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3863     public partial class Int32Converter : System.ComponentModel.BaseNumberConverter
3864     {
Int32Converter()3865         public Int32Converter() { }
3866     }
3867     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3868     public partial class Int64Converter : System.ComponentModel.BaseNumberConverter
3869     {
Int64Converter()3870         public Int64Converter() { }
3871     }
3872     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3873     [System.SerializableAttribute]
3874     public partial class InvalidAsynchronousStateException : System.ArgumentException
3875     {
InvalidAsynchronousStateException()3876         public InvalidAsynchronousStateException() { }
InvalidAsynchronousStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3877         protected InvalidAsynchronousStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidAsynchronousStateException(string message)3878         public InvalidAsynchronousStateException(string message) { }
InvalidAsynchronousStateException(string message, System.Exception innerException)3879         public InvalidAsynchronousStateException(string message, System.Exception innerException) { }
3880     }
3881     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3882     [System.SerializableAttribute]
3883     public partial class InvalidEnumArgumentException : System.ArgumentException
3884     {
InvalidEnumArgumentException()3885         public InvalidEnumArgumentException() { }
InvalidEnumArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3886         protected InvalidEnumArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidEnumArgumentException(string message)3887         public InvalidEnumArgumentException(string message) { }
InvalidEnumArgumentException(string message, System.Exception innerException)3888         public InvalidEnumArgumentException(string message, System.Exception innerException) { }
InvalidEnumArgumentException(string argumentName, int invalidValue, System.Type enumClass)3889         public InvalidEnumArgumentException(string argumentName, int invalidValue, System.Type enumClass) { }
3890     }
3891     public partial interface IRaiseItemChangedEvents
3892     {
3893         bool RaisesItemChangedEvents { get; }
3894     }
3895     public partial interface IRevertibleChangeTracking : System.ComponentModel.IChangeTracking
3896     {
RejectChanges()3897         void RejectChanges();
3898     }
3899     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3900     public partial interface ISite : System.IServiceProvider
3901     {
3902         System.ComponentModel.IComponent Component { get; }
3903         System.ComponentModel.IContainer Container { get; }
3904         bool DesignMode { get; }
3905         string Name { get; set; }
3906     }
3907     public partial interface ISupportInitialize
3908     {
BeginInit()3909         void BeginInit();
EndInit()3910         void EndInit();
3911     }
3912     public partial interface ISupportInitializeNotification : System.ComponentModel.ISupportInitialize
3913     {
3914         bool IsInitialized { get; }
3915         event System.EventHandler Initialized;
3916     }
3917     public partial interface ISynchronizeInvoke
3918     {
3919         bool InvokeRequired { get; }
3920         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
BeginInvoke(System.Delegate method, object[] args)3921         System.IAsyncResult BeginInvoke(System.Delegate method, object[] args);
EndInvoke(System.IAsyncResult result)3922         object EndInvoke(System.IAsyncResult result);
Invoke(System.Delegate method, object[] args)3923         object Invoke(System.Delegate method, object[] args);
3924     }
3925     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3926     public partial interface ITypeDescriptorContext : System.IServiceProvider
3927     {
3928         System.ComponentModel.IContainer Container { get; }
3929         object Instance { get; }
3930         System.ComponentModel.PropertyDescriptor PropertyDescriptor { get; }
OnComponentChanged()3931         void OnComponentChanged();
OnComponentChanging()3932         bool OnComponentChanging();
3933     }
3934     public partial interface ITypedList
3935     {
GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)3936         System.ComponentModel.PropertyDescriptorCollection GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors);
GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)3937         string GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors);
3938     }
3939     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3940     public abstract partial class License : System.IDisposable
3941     {
License()3942         protected License() { }
3943         public abstract string LicenseKey { get; }
Dispose()3944         public abstract void Dispose();
3945     }
3946     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3947     public partial class LicenseContext : System.IServiceProvider
3948     {
LicenseContext()3949         public LicenseContext() { }
3950         public virtual System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly)3951         public virtual string GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly) { throw null; }
GetService(System.Type type)3952         public virtual object GetService(System.Type type) { throw null; }
SetSavedLicenseKey(System.Type type, string key)3953         public virtual void SetSavedLicenseKey(System.Type type, string key) { }
3954     }
3955     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3956     [System.SerializableAttribute]
3957     public partial class LicenseException : System.SystemException
3958     {
LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3959         protected LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
LicenseException(System.Type type)3960         public LicenseException(System.Type type) { }
LicenseException(System.Type type, object instance)3961         public LicenseException(System.Type type, object instance) { }
LicenseException(System.Type type, object instance, string message)3962         public LicenseException(System.Type type, object instance, string message) { }
LicenseException(System.Type type, object instance, string message, System.Exception innerException)3963         public LicenseException(System.Type type, object instance, string message, System.Exception innerException) { }
3964         public System.Type LicensedType { get { throw null; } }
3965         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3966         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3967     }
3968     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalProcessMgmt=true)]
3969     public sealed partial class LicenseManager
3970     {
LicenseManager()3971         internal LicenseManager() { }
3972         public static System.ComponentModel.LicenseContext CurrentContext { get { throw null; } set { } }
3973         public static System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext)3974         public static object CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext) { throw null; }
CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext, object[] args)3975         public static object CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext, object[] args) { throw null; }
IsLicensed(System.Type type)3976         public static bool IsLicensed(System.Type type) { throw null; }
IsValid(System.Type type)3977         public static bool IsValid(System.Type type) { throw null; }
IsValid(System.Type type, object instance, out System.ComponentModel.License license)3978         public static bool IsValid(System.Type type, object instance, out System.ComponentModel.License license) { license = default(System.ComponentModel.License); throw null; }
LockContext(object contextUser)3979         public static void LockContext(object contextUser) { }
UnlockContext(object contextUser)3980         public static void UnlockContext(object contextUser) { }
Validate(System.Type type)3981         public static void Validate(System.Type type) { }
Validate(System.Type type, object instance)3982         public static System.ComponentModel.License Validate(System.Type type, object instance) { throw null; }
3983     }
3984     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3985     public abstract partial class LicenseProvider
3986     {
LicenseProvider()3987         protected LicenseProvider() { }
GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions)3988         public abstract System.ComponentModel.License GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions);
3989     }
3990     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)]
3991     public sealed partial class LicenseProviderAttribute : System.Attribute
3992     {
3993         public static readonly System.ComponentModel.LicenseProviderAttribute Default;
LicenseProviderAttribute()3994         public LicenseProviderAttribute() { }
LicenseProviderAttribute(string typeName)3995         public LicenseProviderAttribute(string typeName) { }
LicenseProviderAttribute(System.Type type)3996         public LicenseProviderAttribute(System.Type type) { }
3997         public System.Type LicenseProvider { get { throw null; } }
3998         public override object TypeId { get { throw null; } }
Equals(object value)3999         public override bool Equals(object value) { throw null; }
GetHashCode()4000         public override int GetHashCode() { throw null; }
4001     }
4002     public enum LicenseUsageMode
4003     {
4004         Designtime = 1,
4005         Runtime = 0,
4006     }
4007     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4008     public partial class LicFileLicenseProvider : System.ComponentModel.LicenseProvider
4009     {
LicFileLicenseProvider()4010         public LicFileLicenseProvider() { }
GetKey(System.Type type)4011         protected virtual string GetKey(System.Type type) { throw null; }
GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions)4012         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)4013         protected virtual bool IsKeyValid(string key, System.Type type) { throw null; }
4014     }
4015     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4016     public sealed partial class ListBindableAttribute : System.Attribute
4017     {
4018         public static readonly System.ComponentModel.ListBindableAttribute Default;
4019         public static readonly System.ComponentModel.ListBindableAttribute No;
4020         public static readonly System.ComponentModel.ListBindableAttribute Yes;
ListBindableAttribute(bool listBindable)4021         public ListBindableAttribute(bool listBindable) { }
ListBindableAttribute(System.ComponentModel.BindableSupport flags)4022         public ListBindableAttribute(System.ComponentModel.BindableSupport flags) { }
4023         public bool ListBindable { get { throw null; } }
Equals(object obj)4024         public override bool Equals(object obj) { throw null; }
GetHashCode()4025         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4026         public override bool IsDefaultAttribute() { throw null; }
4027     }
4028     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4029     public partial class ListChangedEventArgs : System.EventArgs
4030     {
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, System.ComponentModel.PropertyDescriptor propDesc)4031         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, System.ComponentModel.PropertyDescriptor propDesc) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex)4032         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, System.ComponentModel.PropertyDescriptor propDesc)4033         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, System.ComponentModel.PropertyDescriptor propDesc) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, int oldIndex)4034         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, int oldIndex) { }
4035         public System.ComponentModel.ListChangedType ListChangedType { get { throw null; } }
4036         public int NewIndex { get { throw null; } }
4037         public int OldIndex { get { throw null; } }
4038         public System.ComponentModel.PropertyDescriptor PropertyDescriptor { get { throw null; } }
4039     }
4040     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ListChangedEventHandler(object sender, System.ComponentModel.ListChangedEventArgs e)4041     public delegate void ListChangedEventHandler(object sender, System.ComponentModel.ListChangedEventArgs e);
4042     public enum ListChangedType
4043     {
4044         ItemAdded = 1,
4045         ItemChanged = 4,
4046         ItemDeleted = 2,
4047         ItemMoved = 3,
4048         PropertyDescriptorAdded = 5,
4049         PropertyDescriptorChanged = 7,
4050         PropertyDescriptorDeleted = 6,
4051         Reset = 0,
4052     }
4053     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4054     public partial class ListSortDescription
4055     {
ListSortDescription(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)4056         public ListSortDescription(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
4057         public System.ComponentModel.PropertyDescriptor PropertyDescriptor { get { throw null; } set { } }
4058         public System.ComponentModel.ListSortDirection SortDirection { get { throw null; } set { } }
4059     }
4060     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4061     public partial class ListSortDescriptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
4062     {
ListSortDescriptionCollection()4063         public ListSortDescriptionCollection() { }
ListSortDescriptionCollection(System.ComponentModel.ListSortDescription[] sorts)4064         public ListSortDescriptionCollection(System.ComponentModel.ListSortDescription[] sorts) { }
4065         public int Count { get { throw null; } }
4066         public System.ComponentModel.ListSortDescription this[int index] { get { throw null; } set { } }
4067         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4068         object System.Collections.ICollection.SyncRoot { get { throw null; } }
4069         bool System.Collections.IList.IsFixedSize { get { throw null; } }
4070         bool System.Collections.IList.IsReadOnly { get { throw null; } }
4071         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Contains(object value)4072         public bool Contains(object value) { throw null; }
CopyTo(System.Array array, int index)4073         public void CopyTo(System.Array array, int index) { }
IndexOf(object value)4074         public int IndexOf(object value) { throw null; }
System.Collections.IEnumerable.GetEnumerator()4075         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)4076         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()4077         void System.Collections.IList.Clear() { }
System.Collections.IList.Insert(int index, object value)4078         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)4079         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)4080         void System.Collections.IList.RemoveAt(int index) { }
4081     }
4082     public enum ListSortDirection
4083     {
4084         Ascending = 0,
4085         Descending = 1,
4086     }
4087     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4088     public sealed partial class LocalizableAttribute : System.Attribute
4089     {
4090         public static readonly System.ComponentModel.LocalizableAttribute Default;
4091         public static readonly System.ComponentModel.LocalizableAttribute No;
4092         public static readonly System.ComponentModel.LocalizableAttribute Yes;
LocalizableAttribute(bool isLocalizable)4093         public LocalizableAttribute(bool isLocalizable) { }
4094         public bool IsLocalizable { get { throw null; } }
Equals(object obj)4095         public override bool Equals(object obj) { throw null; }
GetHashCode()4096         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4097         public override bool IsDefaultAttribute() { throw null; }
4098     }
4099     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
4100     public sealed partial class LookupBindingPropertiesAttribute : System.Attribute
4101     {
4102         public static readonly System.ComponentModel.LookupBindingPropertiesAttribute Default;
LookupBindingPropertiesAttribute()4103         public LookupBindingPropertiesAttribute() { }
LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember)4104         public LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember) { }
4105         public string DataSource { get { throw null; } }
4106         public string DisplayMember { get { throw null; } }
4107         public string LookupMember { get { throw null; } }
4108         public string ValueMember { get { throw null; } }
Equals(object obj)4109         public override bool Equals(object obj) { throw null; }
GetHashCode()4110         public override int GetHashCode() { throw null; }
4111     }
4112     [System.ComponentModel.DesignerAttribute("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
4113     [System.ComponentModel.DesignerCategoryAttribute("Component")]
4114     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ComponentConverter))]
4115     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4116     public partial class MarshalByValueComponent : System.ComponentModel.IComponent, System.IDisposable, System.IServiceProvider
4117     {
MarshalByValueComponent()4118         public MarshalByValueComponent() { }
4119         [System.ComponentModel.BrowsableAttribute(false)]
4120         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4121         public virtual System.ComponentModel.IContainer Container { get { throw null; } }
4122         [System.ComponentModel.BrowsableAttribute(false)]
4123         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4124         public virtual bool DesignMode { get { throw null; } }
4125         protected System.ComponentModel.EventHandlerList Events { get { throw null; } }
4126         [System.ComponentModel.BrowsableAttribute(false)]
4127         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4128         public virtual System.ComponentModel.ISite Site { get { throw null; } set { } }
4129         public event System.EventHandler Disposed { add { } remove { } }
Dispose()4130         public void Dispose() { }
Dispose(bool disposing)4131         protected virtual void Dispose(bool disposing) { }
~MarshalByValueComponent()4132         ~MarshalByValueComponent() { }
GetService(System.Type service)4133         public virtual object GetService(System.Type service) { throw null; }
ToString()4134         public override string ToString() { throw null; }
4135     }
4136     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4137     public partial class MaskedTextProvider : System.ICloneable
4138     {
MaskedTextProvider(string mask)4139         public MaskedTextProvider(string mask) { }
MaskedTextProvider(string mask, bool restrictToAscii)4140         public MaskedTextProvider(string mask, bool restrictToAscii) { }
MaskedTextProvider(string mask, char passwordChar, bool allowPromptAsInput)4141         public MaskedTextProvider(string mask, char passwordChar, bool allowPromptAsInput) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture)4142         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, bool restrictToAscii)4143         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)4144         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)4145         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, char passwordChar, bool allowPromptAsInput) { }
4146         public bool AllowPromptAsInput { get { throw null; } }
4147         public bool AsciiOnly { get { throw null; } }
4148         public int AssignedEditPositionCount { get { throw null; } }
4149         public int AvailableEditPositionCount { get { throw null; } }
4150         public System.Globalization.CultureInfo Culture { get { throw null; } }
4151         public static char DefaultPasswordChar { get { throw null; } }
4152         public int EditPositionCount { get { throw null; } }
4153         public System.Collections.IEnumerator EditPositions { get { throw null; } }
4154         public bool IncludeLiterals { get { throw null; } set { } }
4155         public bool IncludePrompt { get { throw null; } set { } }
4156         public static int InvalidIndex { get { throw null; } }
4157         public bool IsPassword { get { throw null; } set { } }
4158         public char this[int index] { get { throw null; } }
4159         public int LastAssignedPosition { get { throw null; } }
4160         public int Length { get { throw null; } }
4161         public string Mask { get { throw null; } }
4162         public bool MaskCompleted { get { throw null; } }
4163         public bool MaskFull { get { throw null; } }
4164         public char PasswordChar { get { throw null; } set { } }
4165         public char PromptChar { get { throw null; } set { } }
4166         public bool ResetOnPrompt { get { throw null; } set { } }
4167         public bool ResetOnSpace { get { throw null; } set { } }
4168         public bool SkipLiterals { get { throw null; } set { } }
Add(char input)4169         public bool Add(char input) { throw null; }
Add(char input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4170         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)4171         public bool Add(string input) { throw null; }
Add(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4172         public bool Add(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Clear()4173         public void Clear() { }
Clear(out System.ComponentModel.MaskedTextResultHint resultHint)4174         public void Clear(out System.ComponentModel.MaskedTextResultHint resultHint) { resultHint = default(System.ComponentModel.MaskedTextResultHint); }
Clone()4175         public object Clone() { throw null; }
FindAssignedEditPositionFrom(int position, bool direction)4176         public int FindAssignedEditPositionFrom(int position, bool direction) { throw null; }
FindAssignedEditPositionInRange(int startPosition, int endPosition, bool direction)4177         public int FindAssignedEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindEditPositionFrom(int position, bool direction)4178         public int FindEditPositionFrom(int position, bool direction) { throw null; }
FindEditPositionInRange(int startPosition, int endPosition, bool direction)4179         public int FindEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindNonEditPositionFrom(int position, bool direction)4180         public int FindNonEditPositionFrom(int position, bool direction) { throw null; }
FindNonEditPositionInRange(int startPosition, int endPosition, bool direction)4181         public int FindNonEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindUnassignedEditPositionFrom(int position, bool direction)4182         public int FindUnassignedEditPositionFrom(int position, bool direction) { throw null; }
FindUnassignedEditPositionInRange(int startPosition, int endPosition, bool direction)4183         public int FindUnassignedEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint hint)4184         public static bool GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint hint) { throw null; }
InsertAt(char input, int position)4185         public bool InsertAt(char input, int position) { throw null; }
InsertAt(char input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4186         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)4187         public bool InsertAt(string input, int position) { throw null; }
InsertAt(string input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4188         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)4189         public bool IsAvailablePosition(int position) { throw null; }
IsEditPosition(int position)4190         public bool IsEditPosition(int position) { throw null; }
IsValidInputChar(char c)4191         public static bool IsValidInputChar(char c) { throw null; }
IsValidMaskChar(char c)4192         public static bool IsValidMaskChar(char c) { throw null; }
IsValidPasswordChar(char c)4193         public static bool IsValidPasswordChar(char c) { throw null; }
Remove()4194         public bool Remove() { throw null; }
Remove(out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4195         public bool Remove(out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
RemoveAt(int position)4196         public bool RemoveAt(int position) { throw null; }
RemoveAt(int startPosition, int endPosition)4197         public bool RemoveAt(int startPosition, int endPosition) { throw null; }
RemoveAt(int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4198         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)4199         public bool Replace(char input, int position) { throw null; }
Replace(char input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4200         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)4201         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)4202         public bool Replace(string input, int position) { throw null; }
Replace(string input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4203         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)4204         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)4205         public bool Set(string input) { throw null; }
Set(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4206         public bool Set(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
ToDisplayString()4207         public string ToDisplayString() { throw null; }
ToString()4208         public override string ToString() { throw null; }
ToString(bool ignorePasswordChar)4209         public string ToString(bool ignorePasswordChar) { throw null; }
ToString(bool includePrompt, bool includeLiterals)4210         public string ToString(bool includePrompt, bool includeLiterals) { throw null; }
ToString(bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int startPosition, int length)4211         public string ToString(bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int startPosition, int length) { throw null; }
ToString(bool includePrompt, bool includeLiterals, int startPosition, int length)4212         public string ToString(bool includePrompt, bool includeLiterals, int startPosition, int length) { throw null; }
ToString(bool ignorePasswordChar, int startPosition, int length)4213         public string ToString(bool ignorePasswordChar, int startPosition, int length) { throw null; }
ToString(int startPosition, int length)4214         public string ToString(int startPosition, int length) { throw null; }
VerifyChar(char input, int position, out System.ComponentModel.MaskedTextResultHint hint)4215         public bool VerifyChar(char input, int position, out System.ComponentModel.MaskedTextResultHint hint) { hint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
VerifyEscapeChar(char input, int position)4216         public bool VerifyEscapeChar(char input, int position) { throw null; }
VerifyString(string input)4217         public bool VerifyString(string input) { throw null; }
VerifyString(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)4218         public bool VerifyString(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
4219     }
4220     public enum MaskedTextResultHint
4221     {
4222         AlphanumericCharacterExpected = -2,
4223         AsciiCharacterExpected = -1,
4224         CharacterEscaped = 1,
4225         DigitExpected = -3,
4226         InvalidInput = -51,
4227         LetterExpected = -4,
4228         NoEffect = 2,
4229         NonEditPosition = -54,
4230         PositionOutOfRange = -55,
4231         PromptCharNotAllowed = -52,
4232         SideEffect = 3,
4233         SignedDigitExpected = -5,
4234         Success = 4,
4235         UnavailableEditPosition = -53,
4236         Unknown = 0,
4237     }
4238     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4239     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4240     public abstract partial class MemberDescriptor
4241     {
MemberDescriptor(System.ComponentModel.MemberDescriptor descr)4242         protected MemberDescriptor(System.ComponentModel.MemberDescriptor descr) { }
MemberDescriptor(System.ComponentModel.MemberDescriptor oldMemberDescriptor, System.Attribute[] newAttributes)4243         protected MemberDescriptor(System.ComponentModel.MemberDescriptor oldMemberDescriptor, System.Attribute[] newAttributes) { }
MemberDescriptor(string name)4244         protected MemberDescriptor(string name) { }
MemberDescriptor(string name, System.Attribute[] attributes)4245         protected MemberDescriptor(string name, System.Attribute[] attributes) { }
4246         protected virtual System.Attribute[] AttributeArray { get { throw null; } set { } }
4247         public virtual System.ComponentModel.AttributeCollection Attributes { get { throw null; } }
4248         public virtual string Category { get { throw null; } }
4249         public virtual string Description { get { throw null; } }
4250         public virtual bool DesignTimeOnly { get { throw null; } }
4251         public virtual string DisplayName { get { throw null; } }
4252         public virtual bool IsBrowsable { get { throw null; } }
4253         public virtual string Name { get { throw null; } }
4254         protected virtual int NameHashCode { get { throw null; } }
CreateAttributeCollection()4255         protected virtual System.ComponentModel.AttributeCollection CreateAttributeCollection() { throw null; }
Equals(object obj)4256         public override bool Equals(object obj) { throw null; }
FillAttributes(System.Collections.IList attributeList)4257         protected virtual void FillAttributes(System.Collections.IList attributeList) { }
FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType)4258         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)4259         protected static System.Reflection.MethodInfo FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType, bool publicOnly) { throw null; }
GetHashCode()4260         public override int GetHashCode() { throw null; }
GetInvocationTarget(System.Type type, object instance)4261         protected virtual object GetInvocationTarget(System.Type type, object instance) { throw null; }
4262         [System.ObsoleteAttribute("This method has been deprecated. Use GetInvocationTarget instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
GetInvokee(System.Type componentClass, object component)4263         protected static object GetInvokee(System.Type componentClass, object component) { throw null; }
GetSite(object component)4264         protected static System.ComponentModel.ISite GetSite(object component) { throw null; }
4265     }
4266     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4267     public sealed partial class MergablePropertyAttribute : System.Attribute
4268     {
4269         public static readonly System.ComponentModel.MergablePropertyAttribute Default;
4270         public static readonly System.ComponentModel.MergablePropertyAttribute No;
4271         public static readonly System.ComponentModel.MergablePropertyAttribute Yes;
MergablePropertyAttribute(bool allowMerge)4272         public MergablePropertyAttribute(bool allowMerge) { }
4273         public bool AllowMerge { get { throw null; } }
Equals(object obj)4274         public override bool Equals(object obj) { throw null; }
GetHashCode()4275         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4276         public override bool IsDefaultAttribute() { throw null; }
4277     }
4278     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4279     public partial class MultilineStringConverter : System.ComponentModel.TypeConverter
4280     {
MultilineStringConverter()4281         public MultilineStringConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4282         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)4283         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)4284         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
4285     }
4286     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4287     public partial class NestedContainer : System.ComponentModel.Container, System.ComponentModel.IContainer, System.ComponentModel.INestedContainer, System.IDisposable
4288     {
NestedContainer(System.ComponentModel.IComponent owner)4289         public NestedContainer(System.ComponentModel.IComponent owner) { }
4290         public System.ComponentModel.IComponent Owner { get { throw null; } }
4291         protected virtual string OwnerName { get { throw null; } }
CreateSite(System.ComponentModel.IComponent component, string name)4292         protected override System.ComponentModel.ISite CreateSite(System.ComponentModel.IComponent component, string name) { throw null; }
Dispose(bool disposing)4293         protected override void Dispose(bool disposing) { }
GetService(System.Type service)4294         protected override object GetService(System.Type service) { throw null; }
4295     }
4296     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4297     public sealed partial class NotifyParentPropertyAttribute : System.Attribute
4298     {
4299         public static readonly System.ComponentModel.NotifyParentPropertyAttribute Default;
4300         public static readonly System.ComponentModel.NotifyParentPropertyAttribute No;
4301         public static readonly System.ComponentModel.NotifyParentPropertyAttribute Yes;
NotifyParentPropertyAttribute(bool notifyParent)4302         public NotifyParentPropertyAttribute(bool notifyParent) { }
4303         public bool NotifyParent { get { throw null; } }
Equals(object obj)4304         public override bool Equals(object obj) { throw null; }
GetHashCode()4305         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4306         public override bool IsDefaultAttribute() { throw null; }
4307     }
4308     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4309     public partial class NullableConverter : System.ComponentModel.TypeConverter
4310     {
NullableConverter(System.Type type)4311         public NullableConverter(System.Type type) { }
4312         public System.Type NullableType { get { throw null; } }
4313         public System.Type UnderlyingType { get { throw null; } }
4314         public System.ComponentModel.TypeConverter UnderlyingTypeConverter { get { throw null; } }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4315         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4316         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4317         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)4318         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)4319         public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)4320         public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)4321         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)4322         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4323         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4324         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4325         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)4326         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
4327     }
4328     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4329     public sealed partial class ParenthesizePropertyNameAttribute : System.Attribute
4330     {
4331         public static readonly System.ComponentModel.ParenthesizePropertyNameAttribute Default;
ParenthesizePropertyNameAttribute()4332         public ParenthesizePropertyNameAttribute() { }
ParenthesizePropertyNameAttribute(bool needParenthesis)4333         public ParenthesizePropertyNameAttribute(bool needParenthesis) { }
4334         public bool NeedParenthesis { get { throw null; } }
Equals(object o)4335         public override bool Equals(object o) { throw null; }
GetHashCode()4336         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4337         public override bool IsDefaultAttribute() { throw null; }
4338     }
4339     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4340     public sealed partial class PasswordPropertyTextAttribute : System.Attribute
4341     {
4342         public static readonly System.ComponentModel.PasswordPropertyTextAttribute Default;
4343         public static readonly System.ComponentModel.PasswordPropertyTextAttribute No;
4344         public static readonly System.ComponentModel.PasswordPropertyTextAttribute Yes;
PasswordPropertyTextAttribute()4345         public PasswordPropertyTextAttribute() { }
PasswordPropertyTextAttribute(bool password)4346         public PasswordPropertyTextAttribute(bool password) { }
4347         public bool Password { get { throw null; } }
Equals(object o)4348         public override bool Equals(object o) { throw null; }
GetHashCode()4349         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4350         public override bool IsDefaultAttribute() { throw null; }
4351     }
4352     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4353     public partial class ProgressChangedEventArgs : System.EventArgs
4354     {
ProgressChangedEventArgs(int progressPercentage, object userState)4355         public ProgressChangedEventArgs(int progressPercentage, object userState) { }
4356         public int ProgressPercentage { get { throw null; } }
4357         public object UserState { get { throw null; } }
4358     }
4359     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ProgressChangedEventHandler(object sender, System.ComponentModel.ProgressChangedEventArgs e)4360     public delegate void ProgressChangedEventHandler(object sender, System.ComponentModel.ProgressChangedEventArgs e);
4361     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4362     public partial class PropertyChangedEventArgs : System.EventArgs
4363     {
PropertyChangedEventArgs(string propertyName)4364         public PropertyChangedEventArgs(string propertyName) { }
4365         public virtual string PropertyName { get { throw null; } }
4366     }
4367     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
PropertyChangedEventHandler(object sender, System.ComponentModel.PropertyChangedEventArgs e)4368     public delegate void PropertyChangedEventHandler(object sender, System.ComponentModel.PropertyChangedEventArgs e);
4369     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4370     public partial class PropertyChangingEventArgs : System.EventArgs
4371     {
PropertyChangingEventArgs(string propertyName)4372         public PropertyChangingEventArgs(string propertyName) { }
4373         public virtual string PropertyName { get { throw null; } }
4374     }
4375     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
PropertyChangingEventHandler(object sender, System.ComponentModel.PropertyChangingEventArgs e)4376     public delegate void PropertyChangingEventHandler(object sender, System.ComponentModel.PropertyChangingEventArgs e);
4377     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4378     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4379     public abstract partial class PropertyDescriptor : System.ComponentModel.MemberDescriptor
4380     {
PropertyDescriptor(System.ComponentModel.MemberDescriptor descr)4381         protected PropertyDescriptor(System.ComponentModel.MemberDescriptor descr) : base (default(string)) { }
PropertyDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs)4382         protected PropertyDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs) : base (default(string)) { }
PropertyDescriptor(string name, System.Attribute[] attrs)4383         protected PropertyDescriptor(string name, System.Attribute[] attrs) : base (default(string)) { }
4384         public abstract System.Type ComponentType { get; }
4385         public virtual System.ComponentModel.TypeConverter Converter { get { throw null; } }
4386         public virtual bool IsLocalizable { get { throw null; } }
4387         public abstract bool IsReadOnly { get; }
4388         public abstract System.Type PropertyType { get; }
4389         public System.ComponentModel.DesignerSerializationVisibility SerializationVisibility { get { throw null; } }
4390         public virtual bool SupportsChangeEvents { get { throw null; } }
AddValueChanged(object component, System.EventHandler handler)4391         public virtual void AddValueChanged(object component, System.EventHandler handler) { }
CanResetValue(object component)4392         public abstract bool CanResetValue(object component);
CreateInstance(System.Type type)4393         protected object CreateInstance(System.Type type) { throw null; }
Equals(object obj)4394         public override bool Equals(object obj) { throw null; }
FillAttributes(System.Collections.IList attributeList)4395         protected override void FillAttributes(System.Collections.IList attributeList) { }
GetChildProperties()4396         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties() { throw null; }
GetChildProperties(System.Attribute[] filter)4397         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties(System.Attribute[] filter) { throw null; }
GetChildProperties(object instance)4398         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties(object instance) { throw null; }
GetChildProperties(object instance, System.Attribute[] filter)4399         public virtual System.ComponentModel.PropertyDescriptorCollection GetChildProperties(object instance, System.Attribute[] filter) { throw null; }
GetEditor(System.Type editorBaseType)4400         public virtual object GetEditor(System.Type editorBaseType) { throw null; }
GetHashCode()4401         public override int GetHashCode() { throw null; }
GetInvocationTarget(System.Type type, object instance)4402         protected override object GetInvocationTarget(System.Type type, object instance) { throw null; }
GetTypeFromName(string typeName)4403         protected System.Type GetTypeFromName(string typeName) { throw null; }
GetValue(object component)4404         public abstract object GetValue(object component);
GetValueChangedHandler(object component)4405         protected internal System.EventHandler GetValueChangedHandler(object component) { throw null; }
OnValueChanged(object component, System.EventArgs e)4406         protected virtual void OnValueChanged(object component, System.EventArgs e) { }
RemoveValueChanged(object component, System.EventHandler handler)4407         public virtual void RemoveValueChanged(object component, System.EventHandler handler) { }
ResetValue(object component)4408         public abstract void ResetValue(object component);
SetValue(object component, object value)4409         public abstract void SetValue(object component, object value);
ShouldSerializeValue(object component)4410         public abstract bool ShouldSerializeValue(object component);
4411     }
4412     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
4413     public partial class PropertyDescriptorCollection : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.Collections.IList
4414     {
4415         public static readonly System.ComponentModel.PropertyDescriptorCollection Empty;
PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties)4416         public PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties) { }
PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties, bool readOnly)4417         public PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties, bool readOnly) { }
4418         public int Count { get { throw null; } }
4419         public virtual System.ComponentModel.PropertyDescriptor this[int index] { get { throw null; } }
4420         public virtual System.ComponentModel.PropertyDescriptor this[string name] { get { throw null; } }
4421         int System.Collections.ICollection.Count { get { throw null; } }
4422         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4423         object System.Collections.ICollection.SyncRoot { get { throw null; } }
4424         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
4425         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
4426         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
4427         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
4428         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
4429         bool System.Collections.IList.IsFixedSize { get { throw null; } }
4430         bool System.Collections.IList.IsReadOnly { get { throw null; } }
4431         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.PropertyDescriptor value)4432         public int Add(System.ComponentModel.PropertyDescriptor value) { throw null; }
Clear()4433         public void Clear() { }
Contains(System.ComponentModel.PropertyDescriptor value)4434         public bool Contains(System.ComponentModel.PropertyDescriptor value) { throw null; }
CopyTo(System.Array array, int index)4435         public void CopyTo(System.Array array, int index) { }
Find(string name, bool ignoreCase)4436         public virtual System.ComponentModel.PropertyDescriptor Find(string name, bool ignoreCase) { throw null; }
GetEnumerator()4437         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.PropertyDescriptor value)4438         public int IndexOf(System.ComponentModel.PropertyDescriptor value) { throw null; }
Insert(int index, System.ComponentModel.PropertyDescriptor value)4439         public void Insert(int index, System.ComponentModel.PropertyDescriptor value) { }
InternalSort(System.Collections.IComparer sorter)4440         protected void InternalSort(System.Collections.IComparer sorter) { }
InternalSort(string[] names)4441         protected void InternalSort(string[] names) { }
Remove(System.ComponentModel.PropertyDescriptor value)4442         public void Remove(System.ComponentModel.PropertyDescriptor value) { }
RemoveAt(int index)4443         public void RemoveAt(int index) { }
Sort()4444         public virtual System.ComponentModel.PropertyDescriptorCollection Sort() { throw null; }
Sort(System.Collections.IComparer comparer)4445         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(System.Collections.IComparer comparer) { throw null; }
Sort(string[] names)4446         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(string[] names) { throw null; }
Sort(string[] names, System.Collections.IComparer comparer)4447         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(string[] names, System.Collections.IComparer comparer) { throw null; }
System.Collections.IDictionary.Add(object key, object value)4448         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Clear()4449         void System.Collections.IDictionary.Clear() { }
System.Collections.IDictionary.Contains(object key)4450         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()4451         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)4452         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()4453         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)4454         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()4455         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)4456         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)4457         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)4458         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)4459         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)4460         void System.Collections.IList.RemoveAt(int index) { }
4461     }
4462     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4463     public partial class PropertyTabAttribute : System.Attribute
4464     {
PropertyTabAttribute()4465         public PropertyTabAttribute() { }
PropertyTabAttribute(string tabClassName)4466         public PropertyTabAttribute(string tabClassName) { }
PropertyTabAttribute(string tabClassName, System.ComponentModel.PropertyTabScope tabScope)4467         public PropertyTabAttribute(string tabClassName, System.ComponentModel.PropertyTabScope tabScope) { }
PropertyTabAttribute(System.Type tabClass)4468         public PropertyTabAttribute(System.Type tabClass) { }
PropertyTabAttribute(System.Type tabClass, System.ComponentModel.PropertyTabScope tabScope)4469         public PropertyTabAttribute(System.Type tabClass, System.ComponentModel.PropertyTabScope tabScope) { }
4470         public System.Type[] TabClasses { get { throw null; } }
4471         protected string[] TabClassNames { get { throw null; } }
4472         public System.ComponentModel.PropertyTabScope[] TabScopes { get { throw null; } }
Equals(System.ComponentModel.PropertyTabAttribute other)4473         public bool Equals(System.ComponentModel.PropertyTabAttribute other) { throw null; }
Equals(object other)4474         public override bool Equals(object other) { throw null; }
GetHashCode()4475         public override int GetHashCode() { throw null; }
InitializeArrays(string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes)4476         protected void InitializeArrays(string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes) { }
InitializeArrays(System.Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes)4477         protected void InitializeArrays(System.Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes) { }
4478     }
4479     public enum PropertyTabScope
4480     {
4481         Component = 3,
4482         Document = 2,
4483         Global = 1,
4484         Static = 0,
4485     }
4486     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true)]
4487     public sealed partial class ProvidePropertyAttribute : System.Attribute
4488     {
ProvidePropertyAttribute(string propertyName, string receiverTypeName)4489         public ProvidePropertyAttribute(string propertyName, string receiverTypeName) { }
ProvidePropertyAttribute(string propertyName, System.Type receiverType)4490         public ProvidePropertyAttribute(string propertyName, System.Type receiverType) { }
4491         public string PropertyName { get { throw null; } }
4492         public string ReceiverTypeName { get { throw null; } }
4493         public override object TypeId { get { throw null; } }
Equals(object obj)4494         public override bool Equals(object obj) { throw null; }
GetHashCode()4495         public override int GetHashCode() { throw null; }
4496     }
4497     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4498     public sealed partial class ReadOnlyAttribute : System.Attribute
4499     {
4500         public static readonly System.ComponentModel.ReadOnlyAttribute Default;
4501         public static readonly System.ComponentModel.ReadOnlyAttribute No;
4502         public static readonly System.ComponentModel.ReadOnlyAttribute Yes;
ReadOnlyAttribute(bool isReadOnly)4503         public ReadOnlyAttribute(bool isReadOnly) { }
4504         public bool IsReadOnly { get { throw null; } }
Equals(object value)4505         public override bool Equals(object value) { throw null; }
GetHashCode()4506         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4507         public override bool IsDefaultAttribute() { throw null; }
4508     }
4509     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4510     [System.ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
4511     public partial class RecommendedAsConfigurableAttribute : System.Attribute
4512     {
4513         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute Default;
4514         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute No;
4515         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute Yes;
RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable)4516         public RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable) { }
4517         public bool RecommendedAsConfigurable { get { throw null; } }
Equals(object obj)4518         public override bool Equals(object obj) { throw null; }
GetHashCode()4519         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4520         public override bool IsDefaultAttribute() { throw null; }
4521     }
4522     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4523     public partial class ReferenceConverter : System.ComponentModel.TypeConverter
4524     {
ReferenceConverter(System.Type type)4525         public ReferenceConverter(System.Type type) { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4526         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4527         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)4528         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4529         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4530         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4531         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValueAllowed(System.ComponentModel.ITypeDescriptorContext context, object value)4532         protected virtual bool IsValueAllowed(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
4533     }
4534     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4535     public partial class RefreshEventArgs : System.EventArgs
4536     {
RefreshEventArgs(object componentChanged)4537         public RefreshEventArgs(object componentChanged) { }
RefreshEventArgs(System.Type typeChanged)4538         public RefreshEventArgs(System.Type typeChanged) { }
4539         public object ComponentChanged { get { throw null; } }
4540         public System.Type TypeChanged { get { throw null; } }
4541     }
4542     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
RefreshEventHandler(System.ComponentModel.RefreshEventArgs e)4543     public delegate void RefreshEventHandler(System.ComponentModel.RefreshEventArgs e);
4544     public enum RefreshProperties
4545     {
4546         All = 1,
4547         None = 0,
4548         Repaint = 2,
4549     }
4550     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4551     public sealed partial class RefreshPropertiesAttribute : System.Attribute
4552     {
4553         public static readonly System.ComponentModel.RefreshPropertiesAttribute All;
4554         public static readonly System.ComponentModel.RefreshPropertiesAttribute Default;
4555         public static readonly System.ComponentModel.RefreshPropertiesAttribute Repaint;
RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties refresh)4556         public RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties refresh) { }
4557         public System.ComponentModel.RefreshProperties RefreshProperties { get { throw null; } }
Equals(object value)4558         public override bool Equals(object value) { throw null; }
GetHashCode()4559         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4560         public override bool IsDefaultAttribute() { throw null; }
4561     }
4562     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
4563     public partial class RunInstallerAttribute : System.Attribute
4564     {
4565         public static readonly System.ComponentModel.RunInstallerAttribute Default;
4566         public static readonly System.ComponentModel.RunInstallerAttribute No;
4567         public static readonly System.ComponentModel.RunInstallerAttribute Yes;
RunInstallerAttribute(bool runInstaller)4568         public RunInstallerAttribute(bool runInstaller) { }
4569         public bool RunInstaller { get { throw null; } }
Equals(object obj)4570         public override bool Equals(object obj) { throw null; }
GetHashCode()4571         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4572         public override bool IsDefaultAttribute() { throw null; }
4573     }
4574     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4575     public partial class RunWorkerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
4576     {
RunWorkerCompletedEventArgs(object result, System.Exception error, bool cancelled)4577         public RunWorkerCompletedEventArgs(object result, System.Exception error, bool cancelled) : base (default(System.Exception), default(bool), default(object)) { }
4578         public object Result { get { throw null; } }
4579         [System.ComponentModel.BrowsableAttribute(false)]
4580         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4581         public new object UserState { get { throw null; } }
4582     }
4583     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
RunWorkerCompletedEventHandler(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)4584     public delegate void RunWorkerCompletedEventHandler(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e);
4585     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4586     public partial class SByteConverter : System.ComponentModel.BaseNumberConverter
4587     {
SByteConverter()4588         public SByteConverter() { }
4589     }
4590     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4591     public sealed partial class SettingsBindableAttribute : System.Attribute
4592     {
4593         public static readonly System.ComponentModel.SettingsBindableAttribute No;
4594         public static readonly System.ComponentModel.SettingsBindableAttribute Yes;
SettingsBindableAttribute(bool bindable)4595         public SettingsBindableAttribute(bool bindable) { }
4596         public bool Bindable { get { throw null; } }
Equals(object obj)4597         public override bool Equals(object obj) { throw null; }
GetHashCode()4598         public override int GetHashCode() { throw null; }
4599     }
4600     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4601     public partial class SingleConverter : System.ComponentModel.BaseNumberConverter
4602     {
SingleConverter()4603         public SingleConverter() { }
4604     }
4605     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4606     public partial class StringConverter : System.ComponentModel.TypeConverter
4607     {
StringConverter()4608         public StringConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4609         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4610         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
4611     }
4612     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4613     public static partial class SyntaxCheck
4614     {
CheckMachineName(string value)4615         public static bool CheckMachineName(string value) { throw null; }
CheckPath(string value)4616         public static bool CheckPath(string value) { throw null; }
CheckRootedPath(string value)4617         public static bool CheckRootedPath(string value) { throw null; }
4618     }
4619     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4620     public partial class TimeSpanConverter : System.ComponentModel.TypeConverter
4621     {
TimeSpanConverter()4622         public TimeSpanConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4623         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4624         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4625         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)4626         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
4627     }
4628     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4629     public partial class ToolboxItemAttribute : System.Attribute
4630     {
4631         public static readonly System.ComponentModel.ToolboxItemAttribute Default;
4632         public static readonly System.ComponentModel.ToolboxItemAttribute None;
ToolboxItemAttribute(bool defaultType)4633         public ToolboxItemAttribute(bool defaultType) { }
ToolboxItemAttribute(string toolboxItemTypeName)4634         public ToolboxItemAttribute(string toolboxItemTypeName) { }
ToolboxItemAttribute(System.Type toolboxItemType)4635         public ToolboxItemAttribute(System.Type toolboxItemType) { }
4636         public System.Type ToolboxItemType { get { throw null; } }
4637         public string ToolboxItemTypeName { get { throw null; } }
Equals(object obj)4638         public override bool Equals(object obj) { throw null; }
GetHashCode()4639         public override int GetHashCode() { throw null; }
IsDefaultAttribute()4640         public override bool IsDefaultAttribute() { throw null; }
4641     }
4642     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true, Inherited=true)]
4643     [System.SerializableAttribute]
4644     public sealed partial class ToolboxItemFilterAttribute : System.Attribute
4645     {
ToolboxItemFilterAttribute(string filterString)4646         public ToolboxItemFilterAttribute(string filterString) { }
ToolboxItemFilterAttribute(string filterString, System.ComponentModel.ToolboxItemFilterType filterType)4647         public ToolboxItemFilterAttribute(string filterString, System.ComponentModel.ToolboxItemFilterType filterType) { }
4648         public string FilterString { get { throw null; } }
4649         public System.ComponentModel.ToolboxItemFilterType FilterType { get { throw null; } }
4650         public override object TypeId { get { throw null; } }
Equals(object obj)4651         public override bool Equals(object obj) { throw null; }
GetHashCode()4652         public override int GetHashCode() { throw null; }
Match(object obj)4653         public override bool Match(object obj) { throw null; }
ToString()4654         public override string ToString() { throw null; }
4655     }
4656     public enum ToolboxItemFilterType
4657     {
4658         Allow = 0,
4659         Custom = 1,
4660         Prevent = 2,
4661         Require = 3,
4662     }
4663     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4664     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4665     public partial class TypeConverter
4666     {
TypeConverter()4667         public TypeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4668         public virtual bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertFrom(System.Type sourceType)4669         public bool CanConvertFrom(System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4670         public virtual bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
CanConvertTo(System.Type destinationType)4671         public bool CanConvertTo(System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4672         public virtual object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertFrom(object value)4673         public object ConvertFrom(object value) { throw null; }
ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext context, string text)4674         public object ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext context, string text) { throw null; }
ConvertFromInvariantString(string text)4675         public object ConvertFromInvariantString(string text) { throw null; }
ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text)4676         public object ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text) { throw null; }
ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, string text)4677         public object ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, string text) { throw null; }
ConvertFromString(string text)4678         public object ConvertFromString(string text) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)4679         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)4680         public object ConvertTo(object value, System.Type destinationType) { throw null; }
ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext context, object value)4681         public string ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
ConvertToInvariantString(object value)4682         public string ConvertToInvariantString(object value) { throw null; }
ConvertToString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4683         public string ConvertToString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertToString(System.ComponentModel.ITypeDescriptorContext context, object value)4684         public string ConvertToString(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
ConvertToString(object value)4685         public string ConvertToString(object value) { throw null; }
CreateInstance(System.Collections.IDictionary propertyValues)4686         public object CreateInstance(System.Collections.IDictionary propertyValues) { throw null; }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues)4687         public virtual object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
GetConvertFromException(object value)4688         protected System.Exception GetConvertFromException(object value) { throw null; }
GetConvertToException(object value, System.Type destinationType)4689         protected System.Exception GetConvertToException(object value, System.Type destinationType) { throw null; }
GetCreateInstanceSupported()4690         public bool GetCreateInstanceSupported() { throw null; }
GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)4691         public virtual bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value)4692         public System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)4693         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetProperties(object value)4694         public System.ComponentModel.PropertyDescriptorCollection GetProperties(object value) { throw null; }
GetPropertiesSupported()4695         public bool GetPropertiesSupported() { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)4696         public virtual bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValues()4697         public System.Collections.ICollection GetStandardValues() { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4698         public virtual System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive()4699         public bool GetStandardValuesExclusive() { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4700         public virtual bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported()4701         public bool GetStandardValuesSupported() { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4702         public virtual bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)4703         public virtual bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
IsValid(object value)4704         public bool IsValid(object value) { throw null; }
SortProperties(System.ComponentModel.PropertyDescriptorCollection props, string[] names)4705         protected System.ComponentModel.PropertyDescriptorCollection SortProperties(System.ComponentModel.PropertyDescriptorCollection props, string[] names) { throw null; }
4706         protected abstract partial class SimplePropertyDescriptor : System.ComponentModel.PropertyDescriptor
4707         {
SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType)4708             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)4709             protected SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType, System.Attribute[] attributes) : base (default(string), default(System.Attribute[])) { }
4710             public override System.Type ComponentType { get { throw null; } }
4711             public override bool IsReadOnly { get { throw null; } }
4712             public override System.Type PropertyType { get { throw null; } }
CanResetValue(object component)4713             public override bool CanResetValue(object component) { throw null; }
ResetValue(object component)4714             public override void ResetValue(object component) { }
ShouldSerializeValue(object component)4715             public override bool ShouldSerializeValue(object component) { throw null; }
4716         }
4717         public partial class StandardValuesCollection : System.Collections.ICollection, System.Collections.IEnumerable
4718         {
StandardValuesCollection(System.Collections.ICollection values)4719             public StandardValuesCollection(System.Collections.ICollection values) { }
4720             public int Count { get { throw null; } }
4721             public object this[int index] { get { throw null; } }
4722             int System.Collections.ICollection.Count { get { throw null; } }
4723             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4724             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)4725             public void CopyTo(System.Array array, int index) { }
GetEnumerator()4726             public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)4727             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()4728             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
4729         }
4730     }
4731     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4732     public sealed partial class TypeConverterAttribute : System.Attribute
4733     {
4734         public static readonly System.ComponentModel.TypeConverterAttribute Default;
TypeConverterAttribute()4735         public TypeConverterAttribute() { }
TypeConverterAttribute(string typeName)4736         public TypeConverterAttribute(string typeName) { }
TypeConverterAttribute(System.Type type)4737         public TypeConverterAttribute(System.Type type) { }
4738         public string ConverterTypeName { get { throw null; } }
Equals(object obj)4739         public override bool Equals(object obj) { throw null; }
GetHashCode()4740         public override int GetHashCode() { throw null; }
4741     }
4742     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4743     public abstract partial class TypeDescriptionProvider
4744     {
TypeDescriptionProvider()4745         protected TypeDescriptionProvider() { }
TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider parent)4746         protected TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider parent) { }
CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args)4747         public virtual object CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args) { throw null; }
GetCache(object instance)4748         public virtual System.Collections.IDictionary GetCache(object instance) { throw null; }
GetExtendedTypeDescriptor(object instance)4749         public virtual System.ComponentModel.ICustomTypeDescriptor GetExtendedTypeDescriptor(object instance) { throw null; }
GetExtenderProviders(object instance)4750         protected internal virtual System.ComponentModel.IExtenderProvider[] GetExtenderProviders(object instance) { throw null; }
GetFullComponentName(object component)4751         public virtual string GetFullComponentName(object component) { throw null; }
GetReflectionType(object instance)4752         public System.Type GetReflectionType(object instance) { throw null; }
GetReflectionType(System.Type objectType)4753         public System.Type GetReflectionType(System.Type objectType) { throw null; }
GetReflectionType(System.Type objectType, object instance)4754         public virtual System.Type GetReflectionType(System.Type objectType, object instance) { throw null; }
GetRuntimeType(System.Type reflectionType)4755         public virtual System.Type GetRuntimeType(System.Type reflectionType) { throw null; }
GetTypeDescriptor(object instance)4756         public System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(object instance) { throw null; }
GetTypeDescriptor(System.Type objectType)4757         public System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType) { throw null; }
GetTypeDescriptor(System.Type objectType, object instance)4758         public virtual System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType, object instance) { throw null; }
IsSupportedType(System.Type type)4759         public virtual bool IsSupportedType(System.Type type) { throw null; }
4760     }
4761     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=true)]
4762     public sealed partial class TypeDescriptionProviderAttribute : System.Attribute
4763     {
TypeDescriptionProviderAttribute(string typeName)4764         public TypeDescriptionProviderAttribute(string typeName) { }
TypeDescriptionProviderAttribute(System.Type type)4765         public TypeDescriptionProviderAttribute(System.Type type) { }
4766         public string TypeName { get { throw null; } }
4767     }
4768     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4769     public sealed partial class TypeDescriptor
4770     {
TypeDescriptor()4771         internal TypeDescriptor() { }
4772         [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")]
4773         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 { } }
4774         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4775         public static System.Type ComObjectType { get { throw null; } }
4776         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4777         public static System.Type InterfaceType { get { throw null; } }
4778         public static event System.ComponentModel.RefreshEventHandler Refreshed { add { } remove { } }
4779         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4780         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddAttributes(object instance, params System.Attribute[] attributes)4781         public static System.ComponentModel.TypeDescriptionProvider AddAttributes(object instance, params System.Attribute[] attributes) { throw null; }
4782         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4783         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddAttributes(System.Type type, params System.Attribute[] attributes)4784         public static System.ComponentModel.TypeDescriptionProvider AddAttributes(System.Type type, params System.Attribute[] attributes) { throw null; }
4785         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddEditorTable(System.Type editorBaseType, System.Collections.Hashtable table)4786         public static void AddEditorTable(System.Type editorBaseType, System.Collections.Hashtable table) { }
4787         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4788         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance)4789         public static void AddProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4790         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4791         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4792         public static void AddProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
4793         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance)4794         public static void AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4795         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4796         public static void AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
4797         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4798         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CreateAssociation(object primary, object secondary)4799         public static void CreateAssociation(object primary, object secondary) { }
CreateDesigner(System.ComponentModel.IComponent component, System.Type designerBaseType)4800         public static System.ComponentModel.Design.IDesigner CreateDesigner(System.ComponentModel.IComponent component, System.Type designerBaseType) { throw null; }
4801         [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)4802         public static System.ComponentModel.EventDescriptor CreateEvent(System.Type componentType, System.ComponentModel.EventDescriptor oldEventDescriptor, params System.Attribute[] attributes) { throw null; }
4803         [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)4804         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)4805         public static object CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args) { throw null; }
4806         [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)4807         public static System.ComponentModel.PropertyDescriptor CreateProperty(System.Type componentType, System.ComponentModel.PropertyDescriptor oldPropertyDescriptor, params System.Attribute[] attributes) { throw null; }
4808         [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)4809         public static System.ComponentModel.PropertyDescriptor CreateProperty(System.Type componentType, string name, System.Type type, params System.Attribute[] attributes) { throw null; }
4810         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetAssociation(System.Type type, object primary)4811         public static object GetAssociation(System.Type type, object primary) { throw null; }
GetAttributes(object component)4812         public static System.ComponentModel.AttributeCollection GetAttributes(object component) { throw null; }
4813         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetAttributes(object component, bool noCustomTypeDesc)4814         public static System.ComponentModel.AttributeCollection GetAttributes(object component, bool noCustomTypeDesc) { throw null; }
GetAttributes(System.Type componentType)4815         public static System.ComponentModel.AttributeCollection GetAttributes(System.Type componentType) { throw null; }
GetClassName(object component)4816         public static string GetClassName(object component) { throw null; }
4817         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetClassName(object component, bool noCustomTypeDesc)4818         public static string GetClassName(object component, bool noCustomTypeDesc) { throw null; }
GetClassName(System.Type componentType)4819         public static string GetClassName(System.Type componentType) { throw null; }
GetComponentName(object component)4820         public static string GetComponentName(object component) { throw null; }
4821         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetComponentName(object component, bool noCustomTypeDesc)4822         public static string GetComponentName(object component, bool noCustomTypeDesc) { throw null; }
GetConverter(object component)4823         public static System.ComponentModel.TypeConverter GetConverter(object component) { throw null; }
4824         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetConverter(object component, bool noCustomTypeDesc)4825         public static System.ComponentModel.TypeConverter GetConverter(object component, bool noCustomTypeDesc) { throw null; }
GetConverter(System.Type type)4826         public static System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
GetDefaultEvent(object component)4827         public static System.ComponentModel.EventDescriptor GetDefaultEvent(object component) { throw null; }
4828         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDefaultEvent(object component, bool noCustomTypeDesc)4829         public static System.ComponentModel.EventDescriptor GetDefaultEvent(object component, bool noCustomTypeDesc) { throw null; }
GetDefaultEvent(System.Type componentType)4830         public static System.ComponentModel.EventDescriptor GetDefaultEvent(System.Type componentType) { throw null; }
GetDefaultProperty(object component)4831         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component) { throw null; }
4832         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDefaultProperty(object component, bool noCustomTypeDesc)4833         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component, bool noCustomTypeDesc) { throw null; }
GetDefaultProperty(System.Type componentType)4834         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(System.Type componentType) { throw null; }
GetEditor(object component, System.Type editorBaseType)4835         public static object GetEditor(object component, System.Type editorBaseType) { throw null; }
4836         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEditor(object component, System.Type editorBaseType, bool noCustomTypeDesc)4837         public static object GetEditor(object component, System.Type editorBaseType, bool noCustomTypeDesc) { throw null; }
GetEditor(System.Type type, System.Type editorBaseType)4838         public static object GetEditor(System.Type type, System.Type editorBaseType) { throw null; }
GetEvents(object component)4839         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component) { throw null; }
GetEvents(object component, System.Attribute[] attributes)4840         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes) { throw null; }
4841         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEvents(object component, System.Attribute[] attributes, bool noCustomTypeDesc)4842         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes, bool noCustomTypeDesc) { throw null; }
4843         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEvents(object component, bool noCustomTypeDesc)4844         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, bool noCustomTypeDesc) { throw null; }
GetEvents(System.Type componentType)4845         public static System.ComponentModel.EventDescriptorCollection GetEvents(System.Type componentType) { throw null; }
GetEvents(System.Type componentType, System.Attribute[] attributes)4846         public static System.ComponentModel.EventDescriptorCollection GetEvents(System.Type componentType, System.Attribute[] attributes) { throw null; }
GetFullComponentName(object component)4847         public static string GetFullComponentName(object component) { throw null; }
GetProperties(object component)4848         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component) { throw null; }
GetProperties(object component, System.Attribute[] attributes)4849         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes) { throw null; }
GetProperties(object component, System.Attribute[] attributes, bool noCustomTypeDesc)4850         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes, bool noCustomTypeDesc) { throw null; }
4851         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProperties(object component, bool noCustomTypeDesc)4852         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, bool noCustomTypeDesc) { throw null; }
GetProperties(System.Type componentType)4853         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Type componentType) { throw null; }
GetProperties(System.Type componentType, System.Attribute[] attributes)4854         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Type componentType, System.Attribute[] attributes) { throw null; }
4855         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProvider(object instance)4856         public static System.ComponentModel.TypeDescriptionProvider GetProvider(object instance) { throw null; }
4857         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProvider(System.Type type)4858         public static System.ComponentModel.TypeDescriptionProvider GetProvider(System.Type type) { throw null; }
4859         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetReflectionType(object instance)4860         public static System.Type GetReflectionType(object instance) { throw null; }
4861         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetReflectionType(System.Type type)4862         public static System.Type GetReflectionType(System.Type type) { throw null; }
Refresh(object component)4863         public static void Refresh(object component) { }
Refresh(System.Reflection.Assembly assembly)4864         public static void Refresh(System.Reflection.Assembly assembly) { }
Refresh(System.Reflection.Module module)4865         public static void Refresh(System.Reflection.Module module) { }
Refresh(System.Type type)4866         public static void Refresh(System.Type type) { }
4867         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4868         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveAssociation(object primary, object secondary)4869         public static void RemoveAssociation(object primary, object secondary) { }
4870         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4871         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveAssociations(object primary)4872         public static void RemoveAssociations(object primary) { }
4873         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4874         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance)4875         public static void RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4876         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4877         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4878         public static void RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
4879         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance)4880         public static void RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
4881         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)4882         public static void RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
SortDescriptorArray(System.Collections.IList infos)4883         public static void SortDescriptorArray(System.Collections.IList infos) { }
4884     }
4885     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4886     public abstract partial class TypeListConverter : System.ComponentModel.TypeConverter
4887     {
TypeListConverter(System.Type[] types)4888         protected TypeListConverter(System.Type[] types) { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)4889         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)4890         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)4891         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)4892         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)4893         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)4894         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)4895         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
4896     }
4897     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4898     public partial class UInt16Converter : System.ComponentModel.BaseNumberConverter
4899     {
UInt16Converter()4900         public UInt16Converter() { }
4901     }
4902     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4903     public partial class UInt32Converter : System.ComponentModel.BaseNumberConverter
4904     {
UInt32Converter()4905         public UInt32Converter() { }
4906     }
4907     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4908     public partial class UInt64Converter : System.ComponentModel.BaseNumberConverter
4909     {
UInt64Converter()4910         public UInt64Converter() { }
4911     }
4912     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4913     [System.SerializableAttribute]
4914     public partial class WarningException : System.SystemException
4915     {
WarningException()4916         public WarningException() { }
WarningException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4917         protected WarningException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
WarningException(string message)4918         public WarningException(string message) { }
WarningException(string message, System.Exception innerException)4919         public WarningException(string message, System.Exception innerException) { }
WarningException(string message, string helpUrl)4920         public WarningException(string message, string helpUrl) { }
WarningException(string message, string helpUrl, string helpTopic)4921         public WarningException(string message, string helpUrl, string helpTopic) { }
4922         public string HelpTopic { get { throw null; } }
4923         public string HelpUrl { get { throw null; } }
4924         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4925         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
4926     }
4927     [System.Security.SuppressUnmanagedCodeSecurityAttribute]
4928     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4929     [System.SerializableAttribute]
4930     public partial class Win32Exception : System.Runtime.InteropServices.ExternalException, System.Runtime.Serialization.ISerializable
4931     {
4932         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception()4933         public Win32Exception() { }
4934         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(int error)4935         public Win32Exception(int error) { }
4936         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(int error, string message)4937         public Win32Exception(int error, string message) { }
Win32Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4938         protected Win32Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
4939         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(string message)4940         public Win32Exception(string message) { }
4941         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(string message, System.Exception innerException)4942         public Win32Exception(string message, System.Exception innerException) { }
4943         public int NativeErrorCode { get { throw null; } }
4944         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4945         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
4946     }
4947 }
4948 namespace System.ComponentModel.Design
4949 {
4950     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4951     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4952     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4953     public partial class ActiveDesignerEventArgs : System.EventArgs
4954     {
ActiveDesignerEventArgs(System.ComponentModel.Design.IDesignerHost oldDesigner, System.ComponentModel.Design.IDesignerHost newDesigner)4955         public ActiveDesignerEventArgs(System.ComponentModel.Design.IDesignerHost oldDesigner, System.ComponentModel.Design.IDesignerHost newDesigner) { }
4956         public System.ComponentModel.Design.IDesignerHost NewDesigner { get { throw null; } }
4957         public System.ComponentModel.Design.IDesignerHost OldDesigner { get { throw null; } }
4958     }
4959     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ActiveDesignerEventHandler(object sender, System.ComponentModel.Design.ActiveDesignerEventArgs e)4960     public delegate void ActiveDesignerEventHandler(object sender, System.ComponentModel.Design.ActiveDesignerEventArgs e);
4961     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4962     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4963     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4964     [System.SerializableAttribute]
4965     public partial class CheckoutException : System.Runtime.InteropServices.ExternalException
4966     {
4967         public static readonly System.ComponentModel.Design.CheckoutException Canceled;
CheckoutException()4968         public CheckoutException() { }
CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4969         protected CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
CheckoutException(string message)4970         public CheckoutException(string message) { }
CheckoutException(string message, System.Exception innerException)4971         public CheckoutException(string message, System.Exception innerException) { }
CheckoutException(string message, int errorCode)4972         public CheckoutException(string message, int errorCode) { }
4973     }
4974     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4975     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4976     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4977     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4978     public partial class CommandID
4979     {
CommandID(System.Guid menuGroup, int commandID)4980         public CommandID(System.Guid menuGroup, int commandID) { }
4981         public virtual System.Guid Guid { get { throw null; } }
4982         public virtual int ID { get { throw null; } }
Equals(object obj)4983         public override bool Equals(object obj) { throw null; }
GetHashCode()4984         public override int GetHashCode() { throw null; }
ToString()4985         public override string ToString() { throw null; }
4986     }
4987     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4988     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4989     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4990     public sealed partial class ComponentChangedEventArgs : System.EventArgs
4991     {
ComponentChangedEventArgs(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue)4992         public ComponentChangedEventArgs(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue) { }
4993         public object Component { get { throw null; } }
4994         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
4995         public object NewValue { get { throw null; } }
4996         public object OldValue { get { throw null; } }
4997     }
4998     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4999     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentChangedEventHandler(object sender, System.ComponentModel.Design.ComponentChangedEventArgs e)5000     public delegate void ComponentChangedEventHandler(object sender, System.ComponentModel.Design.ComponentChangedEventArgs e);
5001     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5002     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5003     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5004     public sealed partial class ComponentChangingEventArgs : System.EventArgs
5005     {
ComponentChangingEventArgs(object component, System.ComponentModel.MemberDescriptor member)5006         public ComponentChangingEventArgs(object component, System.ComponentModel.MemberDescriptor member) { }
5007         public object Component { get { throw null; } }
5008         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
5009     }
5010     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5011     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentChangingEventHandler(object sender, System.ComponentModel.Design.ComponentChangingEventArgs e)5012     public delegate void ComponentChangingEventHandler(object sender, System.ComponentModel.Design.ComponentChangingEventArgs e);
5013     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5014     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5015     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5016     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5017     public partial class ComponentEventArgs : System.EventArgs
5018     {
ComponentEventArgs(System.ComponentModel.IComponent component)5019         public ComponentEventArgs(System.ComponentModel.IComponent component) { }
5020         public virtual System.ComponentModel.IComponent Component { get { throw null; } }
5021     }
5022     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5023     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentEventHandler(object sender, System.ComponentModel.Design.ComponentEventArgs e)5024     public delegate void ComponentEventHandler(object sender, System.ComponentModel.Design.ComponentEventArgs e);
5025     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5026     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5027     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5028     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5029     public partial class ComponentRenameEventArgs : System.EventArgs
5030     {
ComponentRenameEventArgs(object component, string oldName, string newName)5031         public ComponentRenameEventArgs(object component, string oldName, string newName) { }
5032         public object Component { get { throw null; } }
5033         public virtual string NewName { get { throw null; } }
5034         public virtual string OldName { get { throw null; } }
5035     }
5036     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5037     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentRenameEventHandler(object sender, System.ComponentModel.Design.ComponentRenameEventArgs e)5038     public delegate void ComponentRenameEventHandler(object sender, System.ComponentModel.Design.ComponentRenameEventArgs e);
5039     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5040     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5041     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5042     public partial class DesignerCollection : System.Collections.ICollection, System.Collections.IEnumerable
5043     {
DesignerCollection(System.Collections.IList designers)5044         public DesignerCollection(System.Collections.IList designers) { }
DesignerCollection(System.ComponentModel.Design.IDesignerHost[] designers)5045         public DesignerCollection(System.ComponentModel.Design.IDesignerHost[] designers) { }
5046         public int Count { get { throw null; } }
5047         public virtual System.ComponentModel.Design.IDesignerHost this[int index] { get { throw null; } }
5048         int System.Collections.ICollection.Count { get { throw null; } }
5049         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
5050         object System.Collections.ICollection.SyncRoot { get { throw null; } }
GetEnumerator()5051         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)5052         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()5053         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
5054     }
5055     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5056     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5057     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5058     public partial class DesignerEventArgs : System.EventArgs
5059     {
DesignerEventArgs(System.ComponentModel.Design.IDesignerHost host)5060         public DesignerEventArgs(System.ComponentModel.Design.IDesignerHost host) { }
5061         public System.ComponentModel.Design.IDesignerHost Designer { get { throw null; } }
5062     }
5063     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DesignerEventHandler(object sender, System.ComponentModel.Design.DesignerEventArgs e)5064     public delegate void DesignerEventHandler(object sender, System.ComponentModel.Design.DesignerEventArgs e);
5065     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5066     public abstract partial class DesignerOptionService : System.ComponentModel.Design.IDesignerOptionService
5067     {
DesignerOptionService()5068         protected DesignerOptionService() { }
5069         public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection Options { get { throw null; } }
CreateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection parent, string name, object value)5070         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)5071         protected virtual void PopulateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options) { }
ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject)5072         protected virtual bool ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject) { throw null; }
System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName)5073         object System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName) { throw null; }
System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value)5074         void System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value) { }
5075         [System.ComponentModel.EditorAttribute("", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
5076         [System.ComponentModel.TypeConverterAttribute("System.ComponentModel.Design.DesignerOptionService.DesignerOptionConverter")]
5077         public sealed partial class DesignerOptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
5078         {
DesignerOptionCollection()5079             internal DesignerOptionCollection() { }
5080             public int Count { get { throw null; } }
5081             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[int index] { get { throw null; } }
5082             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[string name] { get { throw null; } }
5083             public string Name { get { throw null; } }
5084             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection Parent { get { throw null; } }
5085             public System.ComponentModel.PropertyDescriptorCollection Properties { get { throw null; } }
5086             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
5087             object System.Collections.ICollection.SyncRoot { get { throw null; } }
5088             bool System.Collections.IList.IsFixedSize { get { throw null; } }
5089             bool System.Collections.IList.IsReadOnly { get { throw null; } }
5090             object System.Collections.IList.this[int index] { get { throw null; } set { } }
CopyTo(System.Array array, int index)5091             public void CopyTo(System.Array array, int index) { }
GetEnumerator()5092             public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection value)5093             public int IndexOf(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection value) { throw null; }
ShowDialog()5094             public bool ShowDialog() { throw null; }
System.Collections.IList.Add(object value)5095             int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()5096             void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)5097             bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)5098             int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)5099             void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)5100             void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)5101             void System.Collections.IList.RemoveAt(int index) { }
5102         }
5103     }
5104     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5105     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5106     public abstract partial class DesignerTransaction : System.IDisposable
5107     {
DesignerTransaction()5108         protected DesignerTransaction() { }
DesignerTransaction(string description)5109         protected DesignerTransaction(string description) { }
5110         public bool Canceled { get { throw null; } }
5111         public bool Committed { get { throw null; } }
5112         public string Description { get { throw null; } }
Cancel()5113         public void Cancel() { }
Commit()5114         public void Commit() { }
Dispose(bool disposing)5115         protected virtual void Dispose(bool disposing) { }
~DesignerTransaction()5116         ~DesignerTransaction() { }
OnCancel()5117         protected abstract void OnCancel();
OnCommit()5118         protected abstract void OnCommit();
System.IDisposable.Dispose()5119         void System.IDisposable.Dispose() { }
5120     }
5121     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5122     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5123     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5124     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5125     public partial class DesignerTransactionCloseEventArgs : System.EventArgs
5126     {
5127         [System.ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool, bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
DesignerTransactionCloseEventArgs(bool commit)5128         public DesignerTransactionCloseEventArgs(bool commit) { }
DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction)5129         public DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction) { }
5130         public bool LastTransaction { get { throw null; } }
5131         public bool TransactionCommitted { get { throw null; } }
5132     }
5133     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5134     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DesignerTransactionCloseEventHandler(object sender, System.ComponentModel.Design.DesignerTransactionCloseEventArgs e)5135     public delegate void DesignerTransactionCloseEventHandler(object sender, System.ComponentModel.Design.DesignerTransactionCloseEventArgs e);
5136     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5137     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5138     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5139     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5140     public partial class DesignerVerb : System.ComponentModel.Design.MenuCommand
5141     {
DesignerVerb(string text, System.EventHandler handler)5142         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)5143         public DesignerVerb(string text, System.EventHandler handler, System.ComponentModel.Design.CommandID startCommandID) : base (default(System.EventHandler), default(System.ComponentModel.Design.CommandID)) { }
5144         public string Description { get { throw null; } set { } }
5145         public string Text { get { throw null; } }
ToString()5146         public override string ToString() { throw null; }
5147     }
5148     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5149     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5150     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5151     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5152     public partial class DesignerVerbCollection : System.Collections.CollectionBase
5153     {
DesignerVerbCollection()5154         public DesignerVerbCollection() { }
DesignerVerbCollection(System.ComponentModel.Design.DesignerVerb[] value)5155         public DesignerVerbCollection(System.ComponentModel.Design.DesignerVerb[] value) { }
5156         public System.ComponentModel.Design.DesignerVerb this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.Design.DesignerVerb value)5157         public int Add(System.ComponentModel.Design.DesignerVerb value) { throw null; }
AddRange(System.ComponentModel.Design.DesignerVerbCollection value)5158         public void AddRange(System.ComponentModel.Design.DesignerVerbCollection value) { }
AddRange(System.ComponentModel.Design.DesignerVerb[] value)5159         public void AddRange(System.ComponentModel.Design.DesignerVerb[] value) { }
Contains(System.ComponentModel.Design.DesignerVerb value)5160         public bool Contains(System.ComponentModel.Design.DesignerVerb value) { throw null; }
CopyTo(System.ComponentModel.Design.DesignerVerb[] array, int index)5161         public void CopyTo(System.ComponentModel.Design.DesignerVerb[] array, int index) { }
IndexOf(System.ComponentModel.Design.DesignerVerb value)5162         public int IndexOf(System.ComponentModel.Design.DesignerVerb value) { throw null; }
Insert(int index, System.ComponentModel.Design.DesignerVerb value)5163         public void Insert(int index, System.ComponentModel.Design.DesignerVerb value) { }
OnClear()5164         protected override void OnClear() { }
OnInsert(int index, object value)5165         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)5166         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)5167         protected override void OnSet(int index, object oldValue, object newValue) { }
OnValidate(object value)5168         protected override void OnValidate(object value) { }
Remove(System.ComponentModel.Design.DesignerVerb value)5169         public void Remove(System.ComponentModel.Design.DesignerVerb value) { }
5170     }
5171     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5172     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5173     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5174     public partial class DesigntimeLicenseContext : System.ComponentModel.LicenseContext
5175     {
DesigntimeLicenseContext()5176         public DesigntimeLicenseContext() { }
5177         public override System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly)5178         public override string GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly) { throw null; }
SetSavedLicenseKey(System.Type type, string key)5179         public override void SetSavedLicenseKey(System.Type type, string key) { }
5180     }
5181     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5182     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5183     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5184     public partial class DesigntimeLicenseContextSerializer
5185     {
DesigntimeLicenseContextSerializer()5186         internal DesigntimeLicenseContextSerializer() { }
Serialize(System.IO.Stream o, string cryptoKey, System.ComponentModel.Design.DesigntimeLicenseContext context)5187         public static void Serialize(System.IO.Stream o, string cryptoKey, System.ComponentModel.Design.DesigntimeLicenseContext context) { }
5188     }
5189     public enum HelpContextType
5190     {
5191         Ambient = 0,
5192         Selection = 2,
5193         ToolWindowSelection = 3,
5194         Window = 1,
5195     }
5196     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=false, Inherited=false)]
5197     [System.SerializableAttribute]
5198     public sealed partial class HelpKeywordAttribute : System.Attribute
5199     {
5200         public static readonly System.ComponentModel.Design.HelpKeywordAttribute Default;
HelpKeywordAttribute()5201         public HelpKeywordAttribute() { }
HelpKeywordAttribute(string keyword)5202         public HelpKeywordAttribute(string keyword) { }
HelpKeywordAttribute(System.Type t)5203         public HelpKeywordAttribute(System.Type t) { }
5204         public string HelpKeyword { get { throw null; } }
Equals(object obj)5205         public override bool Equals(object obj) { throw null; }
GetHashCode()5206         public override int GetHashCode() { throw null; }
IsDefaultAttribute()5207         public override bool IsDefaultAttribute() { throw null; }
5208     }
5209     public enum HelpKeywordType
5210     {
5211         F1Keyword = 0,
5212         FilterKeyword = 2,
5213         GeneralKeyword = 1,
5214     }
5215     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5216     public partial interface IComponentChangeService
5217     {
5218         event System.ComponentModel.Design.ComponentEventHandler ComponentAdded;
5219         event System.ComponentModel.Design.ComponentEventHandler ComponentAdding;
5220         event System.ComponentModel.Design.ComponentChangedEventHandler ComponentChanged;
5221         event System.ComponentModel.Design.ComponentChangingEventHandler ComponentChanging;
5222         event System.ComponentModel.Design.ComponentEventHandler ComponentRemoved;
5223         event System.ComponentModel.Design.ComponentEventHandler ComponentRemoving;
5224         event System.ComponentModel.Design.ComponentRenameEventHandler ComponentRename;
OnComponentChanged(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue)5225         void OnComponentChanged(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue);
OnComponentChanging(object component, System.ComponentModel.MemberDescriptor member)5226         void OnComponentChanging(object component, System.ComponentModel.MemberDescriptor member);
5227     }
5228     public partial interface IComponentDiscoveryService
5229     {
GetComponentTypes(System.ComponentModel.Design.IDesignerHost designerHost, System.Type baseType)5230         System.Collections.ICollection GetComponentTypes(System.ComponentModel.Design.IDesignerHost designerHost, System.Type baseType);
5231     }
5232     public partial interface IComponentInitializer
5233     {
InitializeExistingComponent(System.Collections.IDictionary defaultValues)5234         void InitializeExistingComponent(System.Collections.IDictionary defaultValues);
InitializeNewComponent(System.Collections.IDictionary defaultValues)5235         void InitializeNewComponent(System.Collections.IDictionary defaultValues);
5236     }
5237     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5238     public partial interface IDesigner : System.IDisposable
5239     {
5240         System.ComponentModel.IComponent Component { get; }
5241         System.ComponentModel.Design.DesignerVerbCollection Verbs { get; }
DoDefaultAction()5242         void DoDefaultAction();
Initialize(System.ComponentModel.IComponent component)5243         void Initialize(System.ComponentModel.IComponent component);
5244     }
5245     public partial interface IDesignerEventService
5246     {
5247         System.ComponentModel.Design.IDesignerHost ActiveDesigner { get; }
5248         System.ComponentModel.Design.DesignerCollection Designers { get; }
5249         event System.ComponentModel.Design.ActiveDesignerEventHandler ActiveDesignerChanged;
5250         event System.ComponentModel.Design.DesignerEventHandler DesignerCreated;
5251         event System.ComponentModel.Design.DesignerEventHandler DesignerDisposed;
5252         event System.EventHandler SelectionChanged;
5253     }
5254     public partial interface IDesignerFilter
5255     {
PostFilterAttributes(System.Collections.IDictionary attributes)5256         void PostFilterAttributes(System.Collections.IDictionary attributes);
PostFilterEvents(System.Collections.IDictionary events)5257         void PostFilterEvents(System.Collections.IDictionary events);
PostFilterProperties(System.Collections.IDictionary properties)5258         void PostFilterProperties(System.Collections.IDictionary properties);
PreFilterAttributes(System.Collections.IDictionary attributes)5259         void PreFilterAttributes(System.Collections.IDictionary attributes);
PreFilterEvents(System.Collections.IDictionary events)5260         void PreFilterEvents(System.Collections.IDictionary events);
PreFilterProperties(System.Collections.IDictionary properties)5261         void PreFilterProperties(System.Collections.IDictionary properties);
5262     }
5263     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5264     public partial interface IDesignerHost : System.ComponentModel.Design.IServiceContainer, System.IServiceProvider
5265     {
5266         System.ComponentModel.IContainer Container { get; }
5267         bool InTransaction { get; }
5268         bool Loading { get; }
5269         System.ComponentModel.IComponent RootComponent { get; }
5270         string RootComponentClassName { get; }
5271         string TransactionDescription { get; }
5272         event System.EventHandler Activated;
5273         event System.EventHandler Deactivated;
5274         event System.EventHandler LoadComplete;
5275         event System.ComponentModel.Design.DesignerTransactionCloseEventHandler TransactionClosed;
5276         event System.ComponentModel.Design.DesignerTransactionCloseEventHandler TransactionClosing;
5277         event System.EventHandler TransactionOpened;
5278         event System.EventHandler TransactionOpening;
Activate()5279         void Activate();
CreateComponent(System.Type componentClass)5280         System.ComponentModel.IComponent CreateComponent(System.Type componentClass);
CreateComponent(System.Type componentClass, string name)5281         System.ComponentModel.IComponent CreateComponent(System.Type componentClass, string name);
CreateTransaction()5282         System.ComponentModel.Design.DesignerTransaction CreateTransaction();
CreateTransaction(string description)5283         System.ComponentModel.Design.DesignerTransaction CreateTransaction(string description);
DestroyComponent(System.ComponentModel.IComponent component)5284         void DestroyComponent(System.ComponentModel.IComponent component);
GetDesigner(System.ComponentModel.IComponent component)5285         System.ComponentModel.Design.IDesigner GetDesigner(System.ComponentModel.IComponent component);
GetType(string typeName)5286         System.Type GetType(string typeName);
5287     }
5288     public partial interface IDesignerHostTransactionState
5289     {
5290         bool IsClosingTransaction { get; }
5291     }
5292     public partial interface IDesignerOptionService
5293     {
GetOptionValue(string pageName, string valueName)5294         object GetOptionValue(string pageName, string valueName);
SetOptionValue(string pageName, string valueName, object value)5295         void SetOptionValue(string pageName, string valueName, object value);
5296     }
5297     public partial interface IDictionaryService
5298     {
GetKey(object value)5299         object GetKey(object value);
GetValue(object key)5300         object GetValue(object key);
SetValue(object key, object value)5301         void SetValue(object key, object value);
5302     }
5303     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5304     public partial interface IEventBindingService
5305     {
CreateUniqueMethodName(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e)5306         string CreateUniqueMethodName(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
GetCompatibleMethods(System.ComponentModel.EventDescriptor e)5307         System.Collections.ICollection GetCompatibleMethods(System.ComponentModel.EventDescriptor e);
GetEvent(System.ComponentModel.PropertyDescriptor property)5308         System.ComponentModel.EventDescriptor GetEvent(System.ComponentModel.PropertyDescriptor property);
GetEventProperties(System.ComponentModel.EventDescriptorCollection events)5309         System.ComponentModel.PropertyDescriptorCollection GetEventProperties(System.ComponentModel.EventDescriptorCollection events);
GetEventProperty(System.ComponentModel.EventDescriptor e)5310         System.ComponentModel.PropertyDescriptor GetEventProperty(System.ComponentModel.EventDescriptor e);
ShowCode()5311         bool ShowCode();
ShowCode(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e)5312         bool ShowCode(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
ShowCode(int lineNumber)5313         bool ShowCode(int lineNumber);
5314     }
5315     public partial interface IExtenderListService
5316     {
GetExtenderProviders()5317         System.ComponentModel.IExtenderProvider[] GetExtenderProviders();
5318     }
5319     public partial interface IExtenderProviderService
5320     {
AddExtenderProvider(System.ComponentModel.IExtenderProvider provider)5321         void AddExtenderProvider(System.ComponentModel.IExtenderProvider provider);
RemoveExtenderProvider(System.ComponentModel.IExtenderProvider provider)5322         void RemoveExtenderProvider(System.ComponentModel.IExtenderProvider provider);
5323     }
5324     public partial interface IHelpService
5325     {
AddContextAttribute(string name, string value, System.ComponentModel.Design.HelpKeywordType keywordType)5326         void AddContextAttribute(string name, string value, System.ComponentModel.Design.HelpKeywordType keywordType);
ClearContextAttributes()5327         void ClearContextAttributes();
CreateLocalContext(System.ComponentModel.Design.HelpContextType contextType)5328         System.ComponentModel.Design.IHelpService CreateLocalContext(System.ComponentModel.Design.HelpContextType contextType);
RemoveContextAttribute(string name, string value)5329         void RemoveContextAttribute(string name, string value);
RemoveLocalContext(System.ComponentModel.Design.IHelpService localContext)5330         void RemoveLocalContext(System.ComponentModel.Design.IHelpService localContext);
ShowHelpFromKeyword(string helpKeyword)5331         void ShowHelpFromKeyword(string helpKeyword);
ShowHelpFromUrl(string helpUrl)5332         void ShowHelpFromUrl(string helpUrl);
5333     }
5334     public partial interface IInheritanceService
5335     {
AddInheritedComponents(System.ComponentModel.IComponent component, System.ComponentModel.IContainer container)5336         void AddInheritedComponents(System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
GetInheritanceAttribute(System.ComponentModel.IComponent component)5337         System.ComponentModel.InheritanceAttribute GetInheritanceAttribute(System.ComponentModel.IComponent component);
5338     }
5339     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5340     public partial interface IMenuCommandService
5341     {
5342         System.ComponentModel.Design.DesignerVerbCollection Verbs { get; }
AddCommand(System.ComponentModel.Design.MenuCommand command)5343         void AddCommand(System.ComponentModel.Design.MenuCommand command);
AddVerb(System.ComponentModel.Design.DesignerVerb verb)5344         void AddVerb(System.ComponentModel.Design.DesignerVerb verb);
FindCommand(System.ComponentModel.Design.CommandID commandID)5345         System.ComponentModel.Design.MenuCommand FindCommand(System.ComponentModel.Design.CommandID commandID);
GlobalInvoke(System.ComponentModel.Design.CommandID commandID)5346         bool GlobalInvoke(System.ComponentModel.Design.CommandID commandID);
RemoveCommand(System.ComponentModel.Design.MenuCommand command)5347         void RemoveCommand(System.ComponentModel.Design.MenuCommand command);
RemoveVerb(System.ComponentModel.Design.DesignerVerb verb)5348         void RemoveVerb(System.ComponentModel.Design.DesignerVerb verb);
ShowContextMenu(System.ComponentModel.Design.CommandID menuID, int x, int y)5349         void ShowContextMenu(System.ComponentModel.Design.CommandID menuID, int x, int y);
5350     }
5351     public partial interface IReferenceService
5352     {
GetComponent(object reference)5353         System.ComponentModel.IComponent GetComponent(object reference);
GetName(object reference)5354         string GetName(object reference);
GetReference(string name)5355         object GetReference(string name);
GetReferences()5356         object[] GetReferences();
GetReferences(System.Type baseType)5357         object[] GetReferences(System.Type baseType);
5358     }
5359     public partial interface IResourceService
5360     {
GetResourceReader(System.Globalization.CultureInfo info)5361         System.Resources.IResourceReader GetResourceReader(System.Globalization.CultureInfo info);
GetResourceWriter(System.Globalization.CultureInfo info)5362         System.Resources.IResourceWriter GetResourceWriter(System.Globalization.CultureInfo info);
5363     }
5364     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5365     public partial interface IRootDesigner : System.ComponentModel.Design.IDesigner, System.IDisposable
5366     {
5367         System.ComponentModel.Design.ViewTechnology[] SupportedTechnologies { get; }
GetView(System.ComponentModel.Design.ViewTechnology technology)5368         object GetView(System.ComponentModel.Design.ViewTechnology technology);
5369     }
5370     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5371     public partial interface ISelectionService
5372     {
5373         object PrimarySelection { get; }
5374         int SelectionCount { get; }
5375         event System.EventHandler SelectionChanged;
5376         event System.EventHandler SelectionChanging;
GetComponentSelected(object component)5377         bool GetComponentSelected(object component);
GetSelectedComponents()5378         System.Collections.ICollection GetSelectedComponents();
SetSelectedComponents(System.Collections.ICollection components)5379         void SetSelectedComponents(System.Collections.ICollection components);
SetSelectedComponents(System.Collections.ICollection components, System.ComponentModel.Design.SelectionTypes selectionType)5380         void SetSelectedComponents(System.Collections.ICollection components, System.ComponentModel.Design.SelectionTypes selectionType);
5381     }
5382     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5383     public partial interface IServiceContainer : System.IServiceProvider
5384     {
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback)5385         void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback);
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote)5386         void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote);
AddService(System.Type serviceType, object serviceInstance)5387         void AddService(System.Type serviceType, object serviceInstance);
AddService(System.Type serviceType, object serviceInstance, bool promote)5388         void AddService(System.Type serviceType, object serviceInstance, bool promote);
RemoveService(System.Type serviceType)5389         void RemoveService(System.Type serviceType);
RemoveService(System.Type serviceType, bool promote)5390         void RemoveService(System.Type serviceType, bool promote);
5391     }
5392     public partial interface ITreeDesigner : System.ComponentModel.Design.IDesigner, System.IDisposable
5393     {
5394         System.Collections.ICollection Children { get; }
5395         System.ComponentModel.Design.IDesigner Parent { get; }
5396     }
5397     public partial interface ITypeDescriptorFilterService
5398     {
FilterAttributes(System.ComponentModel.IComponent component, System.Collections.IDictionary attributes)5399         bool FilterAttributes(System.ComponentModel.IComponent component, System.Collections.IDictionary attributes);
FilterEvents(System.ComponentModel.IComponent component, System.Collections.IDictionary events)5400         bool FilterEvents(System.ComponentModel.IComponent component, System.Collections.IDictionary events);
FilterProperties(System.ComponentModel.IComponent component, System.Collections.IDictionary properties)5401         bool FilterProperties(System.ComponentModel.IComponent component, System.Collections.IDictionary properties);
5402     }
5403     public partial interface ITypeDiscoveryService
5404     {
GetTypes(System.Type baseType, bool excludeGlobalTypes)5405         System.Collections.ICollection GetTypes(System.Type baseType, bool excludeGlobalTypes);
5406     }
5407     public partial interface ITypeResolutionService
5408     {
GetAssembly(System.Reflection.AssemblyName name)5409         System.Reflection.Assembly GetAssembly(System.Reflection.AssemblyName name);
GetAssembly(System.Reflection.AssemblyName name, bool throwOnError)5410         System.Reflection.Assembly GetAssembly(System.Reflection.AssemblyName name, bool throwOnError);
GetPathOfAssembly(System.Reflection.AssemblyName name)5411         string GetPathOfAssembly(System.Reflection.AssemblyName name);
GetType(string name)5412         System.Type GetType(string name);
GetType(string name, bool throwOnError)5413         System.Type GetType(string name, bool throwOnError);
GetType(string name, bool throwOnError, bool ignoreCase)5414         System.Type GetType(string name, bool throwOnError, bool ignoreCase);
ReferenceAssembly(System.Reflection.AssemblyName name)5415         void ReferenceAssembly(System.Reflection.AssemblyName name);
5416     }
5417     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5418     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5419     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5420     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5421     public partial class MenuCommand
5422     {
MenuCommand(System.EventHandler handler, System.ComponentModel.Design.CommandID command)5423         public MenuCommand(System.EventHandler handler, System.ComponentModel.Design.CommandID command) { }
5424         public virtual bool Checked { get { throw null; } set { } }
5425         public virtual System.ComponentModel.Design.CommandID CommandID { get { throw null; } }
5426         public virtual bool Enabled { get { throw null; } set { } }
5427         public virtual int OleStatus { get { throw null; } }
5428         public virtual System.Collections.IDictionary Properties { get { throw null; } }
5429         public virtual bool Supported { get { throw null; } set { } }
5430         public virtual bool Visible { get { throw null; } set { } }
5431         public event System.EventHandler CommandChanged { add { } remove { } }
Invoke()5432         public virtual void Invoke() { }
Invoke(object arg)5433         public virtual void Invoke(object arg) { }
OnCommandChanged(System.EventArgs e)5434         protected virtual void OnCommandChanged(System.EventArgs e) { }
ToString()5435         public override string ToString() { throw null; }
5436     }
5437     [System.FlagsAttribute]
5438     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5439     public enum SelectionTypes
5440     {
5441         Add = 64,
5442         Auto = 1,
5443         [System.ObsoleteAttribute("This value has been deprecated. Use SelectionTypes.Primary instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5444         Click = 16,
5445         [System.ObsoleteAttribute("This value has been deprecated.  It is no longer supported. http://go.microsoft.com/fwlink/?linkid=14202")]
5446         MouseDown = 4,
5447         [System.ObsoleteAttribute("This value has been deprecated.  It is no longer supported. http://go.microsoft.com/fwlink/?linkid=14202")]
5448         MouseUp = 8,
5449         [System.ObsoleteAttribute("This value has been deprecated. Use SelectionTypes.Auto instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5450         Normal = 1,
5451         Primary = 16,
5452         Remove = 128,
5453         Replace = 2,
5454         Toggle = 32,
5455         [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")]
5456         Valid = 31,
5457     }
5458     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5459     public partial class ServiceContainer : System.ComponentModel.Design.IServiceContainer, System.IDisposable, System.IServiceProvider
5460     {
ServiceContainer()5461         public ServiceContainer() { }
ServiceContainer(System.IServiceProvider parentProvider)5462         public ServiceContainer(System.IServiceProvider parentProvider) { }
5463         protected virtual System.Type[] DefaultServices { get { throw null; } }
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback)5464         public void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback) { }
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote)5465         public virtual void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote) { }
AddService(System.Type serviceType, object serviceInstance)5466         public void AddService(System.Type serviceType, object serviceInstance) { }
AddService(System.Type serviceType, object serviceInstance, bool promote)5467         public virtual void AddService(System.Type serviceType, object serviceInstance, bool promote) { }
Dispose()5468         public void Dispose() { }
Dispose(bool disposing)5469         protected virtual void Dispose(bool disposing) { }
GetService(System.Type serviceType)5470         public virtual object GetService(System.Type serviceType) { throw null; }
RemoveService(System.Type serviceType)5471         public void RemoveService(System.Type serviceType) { }
RemoveService(System.Type serviceType, bool promote)5472         public virtual void RemoveService(System.Type serviceType, bool promote) { }
5473     }
5474     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5475     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ServiceCreatorCallback(System.ComponentModel.Design.IServiceContainer container, System.Type serviceType)5476     public delegate object ServiceCreatorCallback(System.ComponentModel.Design.IServiceContainer container, System.Type serviceType);
5477     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5478     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5479     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5480     public partial class StandardCommands
5481     {
5482         public static readonly System.ComponentModel.Design.CommandID AlignBottom;
5483         public static readonly System.ComponentModel.Design.CommandID AlignHorizontalCenters;
5484         public static readonly System.ComponentModel.Design.CommandID AlignLeft;
5485         public static readonly System.ComponentModel.Design.CommandID AlignRight;
5486         public static readonly System.ComponentModel.Design.CommandID AlignToGrid;
5487         public static readonly System.ComponentModel.Design.CommandID AlignTop;
5488         public static readonly System.ComponentModel.Design.CommandID AlignVerticalCenters;
5489         public static readonly System.ComponentModel.Design.CommandID ArrangeBottom;
5490         public static readonly System.ComponentModel.Design.CommandID ArrangeIcons;
5491         public static readonly System.ComponentModel.Design.CommandID ArrangeRight;
5492         public static readonly System.ComponentModel.Design.CommandID BringForward;
5493         public static readonly System.ComponentModel.Design.CommandID BringToFront;
5494         public static readonly System.ComponentModel.Design.CommandID CenterHorizontally;
5495         public static readonly System.ComponentModel.Design.CommandID CenterVertically;
5496         public static readonly System.ComponentModel.Design.CommandID Copy;
5497         public static readonly System.ComponentModel.Design.CommandID Cut;
5498         public static readonly System.ComponentModel.Design.CommandID Delete;
5499         public static readonly System.ComponentModel.Design.CommandID DocumentOutline;
5500         public static readonly System.ComponentModel.Design.CommandID F1Help;
5501         public static readonly System.ComponentModel.Design.CommandID Group;
5502         public static readonly System.ComponentModel.Design.CommandID HorizSpaceConcatenate;
5503         public static readonly System.ComponentModel.Design.CommandID HorizSpaceDecrease;
5504         public static readonly System.ComponentModel.Design.CommandID HorizSpaceIncrease;
5505         public static readonly System.ComponentModel.Design.CommandID HorizSpaceMakeEqual;
5506         public static readonly System.ComponentModel.Design.CommandID LineupIcons;
5507         public static readonly System.ComponentModel.Design.CommandID LockControls;
5508         public static readonly System.ComponentModel.Design.CommandID MultiLevelRedo;
5509         public static readonly System.ComponentModel.Design.CommandID MultiLevelUndo;
5510         public static readonly System.ComponentModel.Design.CommandID Paste;
5511         public static readonly System.ComponentModel.Design.CommandID Properties;
5512         public static readonly System.ComponentModel.Design.CommandID PropertiesWindow;
5513         public static readonly System.ComponentModel.Design.CommandID Redo;
5514         public static readonly System.ComponentModel.Design.CommandID Replace;
5515         public static readonly System.ComponentModel.Design.CommandID SelectAll;
5516         public static readonly System.ComponentModel.Design.CommandID SendBackward;
5517         public static readonly System.ComponentModel.Design.CommandID SendToBack;
5518         public static readonly System.ComponentModel.Design.CommandID ShowGrid;
5519         public static readonly System.ComponentModel.Design.CommandID ShowLargeIcons;
5520         public static readonly System.ComponentModel.Design.CommandID SizeToControl;
5521         public static readonly System.ComponentModel.Design.CommandID SizeToControlHeight;
5522         public static readonly System.ComponentModel.Design.CommandID SizeToControlWidth;
5523         public static readonly System.ComponentModel.Design.CommandID SizeToFit;
5524         public static readonly System.ComponentModel.Design.CommandID SizeToGrid;
5525         public static readonly System.ComponentModel.Design.CommandID SnapToGrid;
5526         public static readonly System.ComponentModel.Design.CommandID TabOrder;
5527         public static readonly System.ComponentModel.Design.CommandID Undo;
5528         public static readonly System.ComponentModel.Design.CommandID Ungroup;
5529         public static readonly System.ComponentModel.Design.CommandID VerbFirst;
5530         public static readonly System.ComponentModel.Design.CommandID VerbLast;
5531         public static readonly System.ComponentModel.Design.CommandID VertSpaceConcatenate;
5532         public static readonly System.ComponentModel.Design.CommandID VertSpaceDecrease;
5533         public static readonly System.ComponentModel.Design.CommandID VertSpaceIncrease;
5534         public static readonly System.ComponentModel.Design.CommandID VertSpaceMakeEqual;
5535         public static readonly System.ComponentModel.Design.CommandID ViewCode;
5536         public static readonly System.ComponentModel.Design.CommandID ViewGrid;
StandardCommands()5537         public StandardCommands() { }
5538     }
5539     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5540     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5541     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5542     public partial class StandardToolWindows
5543     {
5544         public static readonly System.Guid ObjectBrowser;
5545         public static readonly System.Guid OutputWindow;
5546         public static readonly System.Guid ProjectExplorer;
5547         public static readonly System.Guid PropertyBrowser;
5548         public static readonly System.Guid RelatedLinks;
5549         public static readonly System.Guid ServerExplorer;
5550         public static readonly System.Guid TaskList;
5551         public static readonly System.Guid Toolbox;
StandardToolWindows()5552         public StandardToolWindows() { }
5553     }
5554     public abstract partial class TypeDescriptionProviderService
5555     {
TypeDescriptionProviderService()5556         protected TypeDescriptionProviderService() { }
GetProvider(object instance)5557         public abstract System.ComponentModel.TypeDescriptionProvider GetProvider(object instance);
GetProvider(System.Type type)5558         public abstract System.ComponentModel.TypeDescriptionProvider GetProvider(System.Type type);
5559     }
5560     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5561     public enum ViewTechnology
5562     {
5563         Default = 2,
5564         [System.ObsoleteAttribute("This value has been deprecated. Use ViewTechnology.Default instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5565         Passthrough = 0,
5566         [System.ObsoleteAttribute("This value has been deprecated. Use ViewTechnology.Default instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
5567         WindowsForms = 1,
5568     }
5569 }
5570 namespace System.ComponentModel.Design.Serialization
5571 {
5572     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5573     public abstract partial class ComponentSerializationService
5574     {
ComponentSerializationService()5575         protected ComponentSerializationService() { }
CreateStore()5576         public abstract System.ComponentModel.Design.Serialization.SerializationStore CreateStore();
Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store)5577         public abstract System.Collections.ICollection Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store);
Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container)5578         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)5579         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)5580         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)5581         public abstract void DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container, bool validateRecycledTypes, bool applyDefaults);
LoadStore(System.IO.Stream stream)5582         public abstract System.ComponentModel.Design.Serialization.SerializationStore LoadStore(System.IO.Stream stream);
Serialize(System.ComponentModel.Design.Serialization.SerializationStore store, object value)5583         public abstract void Serialize(System.ComponentModel.Design.Serialization.SerializationStore store, object value);
SerializeAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object value)5584         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)5585         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)5586         public abstract void SerializeMemberAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object owningObject, System.ComponentModel.MemberDescriptor member);
5587     }
5588     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5589     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5590     public sealed partial class ContextStack
5591     {
ContextStack()5592         public ContextStack() { }
5593         public object Current { get { throw null; } }
5594         public object this[int level] { get { throw null; } }
5595         public object this[System.Type type] { get { throw null; } }
Append(object context)5596         public void Append(object context) { }
Pop()5597         public object Pop() { throw null; }
Push(object context)5598         public void Push(object context) { }
5599     }
5600     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=false)]
5601     public sealed partial class DefaultSerializationProviderAttribute : System.Attribute
5602     {
DefaultSerializationProviderAttribute(string providerTypeName)5603         public DefaultSerializationProviderAttribute(string providerTypeName) { }
DefaultSerializationProviderAttribute(System.Type providerType)5604         public DefaultSerializationProviderAttribute(System.Type providerType) { }
5605         public string ProviderTypeName { get { throw null; } }
5606     }
5607     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
5608     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5609     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5610     public abstract partial class DesignerLoader
5611     {
DesignerLoader()5612         protected DesignerLoader() { }
5613         public virtual bool Loading { get { throw null; } }
BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost host)5614         public abstract void BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost host);
Dispose()5615         public abstract void Dispose();
Flush()5616         public virtual void Flush() { }
5617     }
5618     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
5619     public sealed partial class DesignerSerializerAttribute : System.Attribute
5620     {
DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName)5621         public DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName) { }
DesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType)5622         public DesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType) { }
DesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType)5623         public DesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType) { }
5624         public string SerializerBaseTypeName { get { throw null; } }
5625         public string SerializerTypeName { get { throw null; } }
5626         public override object TypeId { get { throw null; } }
5627     }
5628     public partial interface IDesignerLoaderHost : System.ComponentModel.Design.IDesignerHost, System.ComponentModel.Design.IServiceContainer, System.IServiceProvider
5629     {
EndLoad(string baseClassName, bool successful, System.Collections.ICollection errorCollection)5630         void EndLoad(string baseClassName, bool successful, System.Collections.ICollection errorCollection);
Reload()5631         void Reload();
5632     }
5633     public partial interface IDesignerLoaderHost2 : System.ComponentModel.Design.IDesignerHost, System.ComponentModel.Design.IServiceContainer, System.ComponentModel.Design.Serialization.IDesignerLoaderHost, System.IServiceProvider
5634     {
5635         bool CanReloadWithErrors { get; set; }
5636         bool IgnoreErrorsDuringReload { get; set; }
5637     }
5638     public partial interface IDesignerLoaderService
5639     {
AddLoadDependency()5640         void AddLoadDependency();
DependentLoadComplete(bool successful, System.Collections.ICollection errorCollection)5641         void DependentLoadComplete(bool successful, System.Collections.ICollection errorCollection);
Reload()5642         bool Reload();
5643     }
5644     public partial interface IDesignerSerializationManager : System.IServiceProvider
5645     {
5646         System.ComponentModel.Design.Serialization.ContextStack Context { get; }
5647         System.ComponentModel.PropertyDescriptorCollection Properties { get; }
5648         event System.ComponentModel.Design.Serialization.ResolveNameEventHandler ResolveName;
5649         event System.EventHandler SerializationComplete;
AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider)5650         void AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider);
CreateInstance(System.Type type, System.Collections.ICollection arguments, string name, bool addToContainer)5651         object CreateInstance(System.Type type, System.Collections.ICollection arguments, string name, bool addToContainer);
GetInstance(string name)5652         object GetInstance(string name);
GetName(object value)5653         string GetName(object value);
GetSerializer(System.Type objectType, System.Type serializerType)5654         object GetSerializer(System.Type objectType, System.Type serializerType);
GetType(string typeName)5655         System.Type GetType(string typeName);
RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider)5656         void RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider);
ReportError(object errorInformation)5657         void ReportError(object errorInformation);
SetName(object instance, string name)5658         void SetName(object instance, string name);
5659     }
5660     public partial interface IDesignerSerializationProvider
5661     {
GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager manager, object currentSerializer, System.Type objectType, System.Type serializerType)5662         object GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager manager, object currentSerializer, System.Type objectType, System.Type serializerType);
5663     }
5664     public partial interface IDesignerSerializationService
5665     {
Deserialize(object serializationData)5666         System.Collections.ICollection Deserialize(object serializationData);
Serialize(System.Collections.ICollection objects)5667         object Serialize(System.Collections.ICollection objects);
5668     }
5669     public partial interface INameCreationService
5670     {
CreateName(System.ComponentModel.IContainer container, System.Type dataType)5671         string CreateName(System.ComponentModel.IContainer container, System.Type dataType);
IsValidName(string name)5672         bool IsValidName(string name);
ValidateName(string name)5673         void ValidateName(string name);
5674     }
5675     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5676     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5677     public sealed partial class InstanceDescriptor
5678     {
InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments)5679         public InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments) { }
InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments, bool isComplete)5680         public InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments, bool isComplete) { }
5681         public System.Collections.ICollection Arguments { get { throw null; } }
5682         public bool IsComplete { get { throw null; } }
5683         public System.Reflection.MemberInfo MemberInfo { get { throw null; } }
Invoke()5684         public object Invoke() { throw null; }
5685     }
5686     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5687     public partial struct MemberRelationship
5688     {
5689         public static readonly System.ComponentModel.Design.Serialization.MemberRelationship Empty;
MemberRelationshipSystem.ComponentModel.Design.Serialization.MemberRelationship5690         public MemberRelationship(object owner, System.ComponentModel.MemberDescriptor member) { throw null;}
5691         public bool IsEmpty { get { throw null; } }
5692         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
5693         public object Owner { get { throw null; } }
EqualsSystem.ComponentModel.Design.Serialization.MemberRelationship5694         public override bool Equals(object obj) { throw null; }
GetHashCodeSystem.ComponentModel.Design.Serialization.MemberRelationship5695         public override int GetHashCode() { throw null; }
operator ==System.ComponentModel.Design.Serialization.MemberRelationship5696         public static bool operator ==(System.ComponentModel.Design.Serialization.MemberRelationship left, System.ComponentModel.Design.Serialization.MemberRelationship right) { throw null; }
operator !=System.ComponentModel.Design.Serialization.MemberRelationship5697         public static bool operator !=(System.ComponentModel.Design.Serialization.MemberRelationship left, System.ComponentModel.Design.Serialization.MemberRelationship right) { throw null; }
5698     }
5699     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5700     public abstract partial class MemberRelationshipService
5701     {
MemberRelationshipService()5702         protected MemberRelationshipService() { }
5703         public System.ComponentModel.Design.Serialization.MemberRelationship this[System.ComponentModel.Design.Serialization.MemberRelationship source] { get { throw null; } set { } }
5704         public System.ComponentModel.Design.Serialization.MemberRelationship this[object sourceOwner, System.ComponentModel.MemberDescriptor sourceMember] { get { throw null; } set { } }
GetRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source)5705         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)5706         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)5707         public abstract bool SupportsRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source, System.ComponentModel.Design.Serialization.MemberRelationship relationship);
5708     }
5709     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5710     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5711     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5712     public partial class ResolveNameEventArgs : System.EventArgs
5713     {
ResolveNameEventArgs(string name)5714         public ResolveNameEventArgs(string name) { }
5715         public string Name { get { throw null; } }
5716         public object Value { get { throw null; } set { } }
5717     }
5718     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ResolveNameEventHandler(object sender, System.ComponentModel.Design.Serialization.ResolveNameEventArgs e)5719     public delegate void ResolveNameEventHandler(object sender, System.ComponentModel.Design.Serialization.ResolveNameEventArgs e);
5720     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
5721     [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")]
5722     public sealed partial class RootDesignerSerializerAttribute : System.Attribute
5723     {
RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable)5724         public RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable) { }
RootDesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType, bool reloadable)5725         public RootDesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType, bool reloadable) { }
RootDesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType, bool reloadable)5726         public RootDesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType, bool reloadable) { }
5727         public bool Reloadable { get { throw null; } }
5728         public string SerializerBaseTypeName { get { throw null; } }
5729         public string SerializerTypeName { get { throw null; } }
5730         public override object TypeId { get { throw null; } }
5731     }
5732     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
5733     public abstract partial class SerializationStore : System.IDisposable
5734     {
SerializationStore()5735         protected SerializationStore() { }
5736         public abstract System.Collections.ICollection Errors { get; }
Close()5737         public abstract void Close();
Dispose(bool disposing)5738         protected virtual void Dispose(bool disposing) { }
Save(System.IO.Stream stream)5739         public abstract void Save(System.IO.Stream stream);
System.IDisposable.Dispose()5740         void System.IDisposable.Dispose() { }
5741     }
5742 }
5743 #if CONFIG_DEP
5744 namespace System.Configuration
5745 {
5746     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5747     public sealed partial class ApplicationScopedSettingAttribute : System.Configuration.SettingAttribute
5748     {
ApplicationScopedSettingAttribute()5749         public ApplicationScopedSettingAttribute() { }
5750     }
5751     public abstract partial class ApplicationSettingsBase : System.Configuration.SettingsBase, System.ComponentModel.INotifyPropertyChanged
5752     {
ApplicationSettingsBase()5753         protected ApplicationSettingsBase() { }
ApplicationSettingsBase(System.ComponentModel.IComponent owner)5754         protected ApplicationSettingsBase(System.ComponentModel.IComponent owner) { }
ApplicationSettingsBase(System.ComponentModel.IComponent owner, string settingsKey)5755         protected ApplicationSettingsBase(System.ComponentModel.IComponent owner, string settingsKey) { }
ApplicationSettingsBase(string settingsKey)5756         protected ApplicationSettingsBase(string settingsKey) { }
5757         [System.ComponentModel.BrowsableAttribute(false)]
5758         public override System.Configuration.SettingsContext Context { get { throw null; } }
5759         public override object this[string propertyName] { get { throw null; } set { } }
5760         [System.ComponentModel.BrowsableAttribute(false)]
5761         public override System.Configuration.SettingsPropertyCollection Properties { get { throw null; } }
5762         [System.ComponentModel.BrowsableAttribute(false)]
5763         public override System.Configuration.SettingsPropertyValueCollection PropertyValues { get { throw null; } }
5764         [System.ComponentModel.BrowsableAttribute(false)]
5765         public override System.Configuration.SettingsProviderCollection Providers { get { throw null; } }
5766         [System.ComponentModel.BrowsableAttribute(false)]
5767         public string SettingsKey { get { throw null; } set { } }
5768         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
5769         public event System.Configuration.SettingChangingEventHandler SettingChanging { add { } remove { } }
5770         public event System.Configuration.SettingsLoadedEventHandler SettingsLoaded { add { } remove { } }
5771         public event System.Configuration.SettingsSavingEventHandler SettingsSaving { add { } remove { } }
GetPreviousVersion(string propertyName)5772         public object GetPreviousVersion(string propertyName) { throw null; }
OnPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)5773         protected virtual void OnPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) { }
OnSettingChanging(object sender, System.Configuration.SettingChangingEventArgs e)5774         protected virtual void OnSettingChanging(object sender, System.Configuration.SettingChangingEventArgs e) { }
OnSettingsLoaded(object sender, System.Configuration.SettingsLoadedEventArgs e)5775         protected virtual void OnSettingsLoaded(object sender, System.Configuration.SettingsLoadedEventArgs e) { }
OnSettingsSaving(object sender, System.ComponentModel.CancelEventArgs e)5776         protected virtual void OnSettingsSaving(object sender, System.ComponentModel.CancelEventArgs e) { }
Reload()5777         public void Reload() { }
Reset()5778         public void Reset() { }
Save()5779         public override void Save() { }
Upgrade()5780         public virtual void Upgrade() { }
5781     }
5782     public sealed partial class ApplicationSettingsGroup : System.Configuration.ConfigurationSectionGroup
5783     {
ApplicationSettingsGroup()5784         public ApplicationSettingsGroup() { }
5785     }
5786     public partial class AppSettingsReader
5787     {
AppSettingsReader()5788         public AppSettingsReader() { }
GetValue(string key, System.Type type)5789         public object GetValue(string key, System.Type type) { throw null; }
5790     }
5791     public sealed partial class ClientSettingsSection : System.Configuration.ConfigurationSection
5792     {
ClientSettingsSection()5793         public ClientSettingsSection() { }
5794         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5795         [System.Configuration.ConfigurationPropertyAttribute("", IsDefaultCollection=true)]
5796         public System.Configuration.SettingElementCollection Settings { get { throw null; } }
5797     }
5798     [System.SerializableAttribute]
5799     public partial class ConfigurationException : System.SystemException
5800     {
5801         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException()5802         public ConfigurationException() { }
ConfigurationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5803         protected ConfigurationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
5804         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message)5805         public ConfigurationException(string message) { }
5806         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Exception inner)5807         public ConfigurationException(string message, System.Exception inner) { }
5808         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Exception inner, string filename, int line)5809         public ConfigurationException(string message, System.Exception inner, string filename, int line) { }
5810         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Exception inner, System.Xml.XmlNode node)5811         public ConfigurationException(string message, System.Exception inner, System.Xml.XmlNode node) { }
5812         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, string filename, int line)5813         public ConfigurationException(string message, string filename, int line) { }
5814         [System.ObsoleteAttribute("This class is obsolete, to create a new exception create a System.Configuration!System.Configuration.ConfigurationErrorsException")]
ConfigurationException(string message, System.Xml.XmlNode node)5815         public ConfigurationException(string message, System.Xml.XmlNode node) { }
5816         public virtual string BareMessage { get { throw null; } }
5817         public virtual string Filename { get { throw null; } }
5818         public virtual int Line { get { throw null; } }
5819         public override string Message { get { throw null; } }
5820         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5821         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
5822         [System.ObsoleteAttribute("This class is obsolete, use System.Configuration!System.Configuration.ConfigurationErrorsException.GetFilename instead")]
GetXmlNodeFilename(System.Xml.XmlNode node)5823         public static string GetXmlNodeFilename(System.Xml.XmlNode node) { throw null; }
5824         [System.ObsoleteAttribute("This class is obsolete, use System.Configuration!System.Configuration.ConfigurationErrorsException.GetLinenumber instead")]
GetXmlNodeLineNumber(System.Xml.XmlNode node)5825         public static int GetXmlNodeLineNumber(System.Xml.XmlNode node) { throw null; }
5826     }
5827     public sealed partial class ConfigurationSettings
5828     {
ConfigurationSettings()5829         internal ConfigurationSettings() { }
5830         [System.ObsoleteAttribute("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings")]
5831         public static System.Collections.Specialized.NameValueCollection AppSettings { get { throw null; } }
5832         [System.ObsoleteAttribute("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection")]
GetConfig(string sectionName)5833         public static object GetConfig(string sectionName) { throw null; }
5834     }
5835     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5836     public sealed partial class ConfigXmlDocument : System.Xml.XmlDocument, System.Configuration.Internal.IConfigErrorInfo
5837     {
ConfigXmlDocument()5838         public ConfigXmlDocument() { }
5839         public string Filename { get { throw null; } }
5840         public int LineNumber { get { throw null; } }
5841         string System.Configuration.Internal.IConfigErrorInfo.Filename { get { throw null; } }
5842         int System.Configuration.Internal.IConfigErrorInfo.LineNumber { get { throw null; } }
CreateAttribute(string prefix, string localName, string namespaceUri)5843         public override System.Xml.XmlAttribute CreateAttribute(string prefix, string localName, string namespaceUri) { throw null; }
CreateCDataSection(string data)5844         public override System.Xml.XmlCDataSection CreateCDataSection(string data) { throw null; }
CreateComment(string data)5845         public override System.Xml.XmlComment CreateComment(string data) { throw null; }
CreateElement(string prefix, string localName, string namespaceUri)5846         public override System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceUri) { throw null; }
CreateSignificantWhitespace(string data)5847         public override System.Xml.XmlSignificantWhitespace CreateSignificantWhitespace(string data) { throw null; }
CreateTextNode(string text)5848         public override System.Xml.XmlText CreateTextNode(string text) { throw null; }
CreateWhitespace(string data)5849         public override System.Xml.XmlWhitespace CreateWhitespace(string data) { throw null; }
Load(string filename)5850         public override void Load(string filename) { }
LoadSingleElement(string filename, System.Xml.XmlTextReader sourceReader)5851         public void LoadSingleElement(string filename, System.Xml.XmlTextReader sourceReader) { }
5852     }
5853     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5854     public sealed partial class DefaultSettingValueAttribute : System.Attribute
5855     {
DefaultSettingValueAttribute(string value)5856         public DefaultSettingValueAttribute(string value) { }
5857         public string Value { get { throw null; } }
5858     }
5859     public partial class DictionarySectionHandler : System.Configuration.IConfigurationSectionHandler
5860     {
DictionarySectionHandler()5861         public DictionarySectionHandler() { }
5862         protected virtual string KeyAttributeName { get { throw null; } }
5863         protected virtual string ValueAttributeName { get { throw null; } }
Create(object parent, object context, System.Xml.XmlNode section)5864         public virtual object Create(object parent, object context, System.Xml.XmlNode section) { throw null; }
5865     }
5866     public partial interface IApplicationSettingsProvider
5867     {
5868         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property)5869         System.Configuration.SettingsPropertyValue GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property);
5870         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
Reset(System.Configuration.SettingsContext context)5871         void Reset(System.Configuration.SettingsContext context);
5872         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)5873         void Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties);
5874     }
5875     public partial interface IConfigurationSectionHandler
5876     {
Create(object parent, object configContext, System.Xml.XmlNode section)5877         object Create(object parent, object configContext, System.Xml.XmlNode section);
5878     }
5879     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5880     public partial interface IConfigurationSystem
5881     {
GetConfig(string configKey)5882         object GetConfig(string configKey);
Init()5883         void Init();
5884     }
5885     public sealed partial class IdnElement : System.Configuration.ConfigurationElement
5886     {
IdnElement()5887         public IdnElement() { }
5888         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=(System.UriIdnScope)(0))]
5889         public System.UriIdnScope Enabled { get { throw null; } set { } }
5890         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5891     }
5892     public partial class IgnoreSectionHandler : System.Configuration.IConfigurationSectionHandler
5893     {
IgnoreSectionHandler()5894         public IgnoreSectionHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)5895         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
5896     }
5897     public partial interface IPersistComponentSettings
5898     {
5899         bool SaveSettings { get; set; }
5900         string SettingsKey { get; set; }
LoadComponentSettings()5901         void LoadComponentSettings();
ResetComponentSettings()5902         void ResetComponentSettings();
SaveComponentSettings()5903         void SaveComponentSettings();
5904     }
5905     public sealed partial class IriParsingElement : System.Configuration.ConfigurationElement
5906     {
IriParsingElement()5907         public IriParsingElement() { }
5908         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
5909         public bool Enabled { get { throw null; } set { } }
5910         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5911     }
5912     public partial interface ISettingsProviderService
5913     {
GetSettingsProvider(System.Configuration.SettingsProperty property)5914         System.Configuration.SettingsProvider GetSettingsProvider(System.Configuration.SettingsProperty property);
5915     }
5916     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5917     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
5918     public partial class LocalFileSettingsProvider : System.Configuration.SettingsProvider, System.Configuration.IApplicationSettingsProvider
5919     {
LocalFileSettingsProvider()5920         public LocalFileSettingsProvider() { }
5921         public override string ApplicationName { get { throw null; } set { } }
5922         [System.Security.Permissions.FileIOPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, AllFiles=(System.Security.Permissions.FileIOPermissionAccess)(9))]
5923         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
5924         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property)5925         public System.Configuration.SettingsPropertyValue GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property) { throw null; }
GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)5926         public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties) { throw null; }
Initialize(string name, System.Collections.Specialized.NameValueCollection values)5927         public override void Initialize(string name, System.Collections.Specialized.NameValueCollection values) { }
Reset(System.Configuration.SettingsContext context)5928         public void Reset(System.Configuration.SettingsContext context) { }
SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection values)5929         public override void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection values) { }
Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties)5930         public void Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties) { }
5931     }
5932     public partial class NameValueFileSectionHandler : System.Configuration.IConfigurationSectionHandler
5933     {
NameValueFileSectionHandler()5934         public NameValueFileSectionHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)5935         public object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
5936     }
5937     public partial class NameValueSectionHandler : System.Configuration.IConfigurationSectionHandler
5938     {
NameValueSectionHandler()5939         public NameValueSectionHandler() { }
5940         protected virtual string KeyAttributeName { get { throw null; } }
5941         protected virtual string ValueAttributeName { get { throw null; } }
Create(object parent, object context, System.Xml.XmlNode section)5942         public object Create(object parent, object context, System.Xml.XmlNode section) { throw null; }
5943     }
5944     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5945     public sealed partial class NoSettingsVersionUpgradeAttribute : System.Attribute
5946     {
NoSettingsVersionUpgradeAttribute()5947         public NoSettingsVersionUpgradeAttribute() { }
5948     }
5949     public sealed partial class SchemeSettingElement : System.Configuration.ConfigurationElement
5950     {
SchemeSettingElement()5951         public SchemeSettingElement() { }
5952         [System.Configuration.ConfigurationPropertyAttribute("genericUriParserOptions", DefaultValue=(System.Configuration.ConfigurationPropertyOptions)(0), IsRequired=true)]
5953         public System.GenericUriParserOptions GenericUriParserOptions { get { throw null; } }
5954         [System.Configuration.ConfigurationPropertyAttribute("name", DefaultValue=null, IsRequired=true, IsKey=true)]
5955         public string Name { get { throw null; } }
5956         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5957     }
5958     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Configuration.SchemeSettingElement), CollectionType=(System.Configuration.ConfigurationElementCollectionType)(1), AddItemName="add", ClearItemsName="clear", RemoveItemName="remove")]
5959     public sealed partial class SchemeSettingElementCollection : System.Configuration.ConfigurationElementCollection
5960     {
SchemeSettingElementCollection()5961         public SchemeSettingElementCollection() { }
5962         public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw null; } }
5963         public System.Configuration.SchemeSettingElement this[int index] { get { throw null; } }
5964         public new System.Configuration.SchemeSettingElement this[string name] { get { throw null; } }
CreateNewElement()5965         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)5966         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Configuration.SchemeSettingElement element)5967         public int IndexOf(System.Configuration.SchemeSettingElement element) { throw null; }
5968     }
5969     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
5970     public partial class SettingAttribute : System.Attribute
5971     {
SettingAttribute()5972         public SettingAttribute() { }
5973     }
5974     public partial class SettingChangingEventArgs : System.ComponentModel.CancelEventArgs
5975     {
SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel)5976         public SettingChangingEventArgs(string settingName, string settingClass, string settingKey, object newValue, bool cancel) { }
5977         public object NewValue { get { throw null; } }
5978         public string SettingClass { get { throw null; } }
5979         public string SettingKey { get { throw null; } }
5980         public string SettingName { get { throw null; } }
5981     }
SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e)5982     public delegate void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e);
5983     public sealed partial class SettingElement : System.Configuration.ConfigurationElement
5984     {
SettingElement()5985         public SettingElement() { }
SettingElement(string name, System.Configuration.SettingsSerializeAs serializeAs)5986         public SettingElement(string name, System.Configuration.SettingsSerializeAs serializeAs) { }
5987         [System.Configuration.ConfigurationPropertyAttribute("name", IsRequired=true, IsKey=true, DefaultValue="")]
5988         public string Name { get { throw null; } set { } }
5989         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
5990         [System.Configuration.ConfigurationPropertyAttribute("serializeAs", IsRequired=true, DefaultValue=(System.Configuration.SettingsSerializeAs)(0))]
5991         public System.Configuration.SettingsSerializeAs SerializeAs { get { throw null; } set { } }
5992         [System.Configuration.ConfigurationPropertyAttribute("value", IsRequired=true, DefaultValue=null)]
5993         public System.Configuration.SettingValueElement Value { get { throw null; } set { } }
Equals(object settings)5994         public override bool Equals(object settings) { throw null; }
GetHashCode()5995         public override int GetHashCode() { throw null; }
5996     }
5997     public sealed partial class SettingElementCollection : System.Configuration.ConfigurationElementCollection
5998     {
SettingElementCollection()5999         public SettingElementCollection() { }
6000         public override System.Configuration.ConfigurationElementCollectionType CollectionType { get { throw null; } }
6001         protected override string ElementName { get { throw null; } }
Add(System.Configuration.SettingElement element)6002         public void Add(System.Configuration.SettingElement element) { }
Clear()6003         public void Clear() { }
CreateNewElement()6004         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
Get(string elementKey)6005         public System.Configuration.SettingElement Get(string elementKey) { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)6006         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
Remove(System.Configuration.SettingElement element)6007         public void Remove(System.Configuration.SettingElement element) { }
6008     }
6009     [System.SerializableAttribute]
6010     public partial class SettingsAttributeDictionary : System.Collections.Hashtable
6011     {
SettingsAttributeDictionary()6012         public SettingsAttributeDictionary() { }
SettingsAttributeDictionary(System.Configuration.SettingsAttributeDictionary attributes)6013         public SettingsAttributeDictionary(System.Configuration.SettingsAttributeDictionary attributes) { }
6014     }
6015     public abstract partial class SettingsBase
6016     {
SettingsBase()6017         protected SettingsBase() { }
6018         public virtual System.Configuration.SettingsContext Context { get { throw null; } }
6019         [System.ComponentModel.BrowsableAttribute(false)]
6020         public bool IsSynchronized { get { throw null; } }
6021         public virtual object this[string propertyName] { get { throw null; } set { } }
6022         public virtual System.Configuration.SettingsPropertyCollection Properties { get { throw null; } }
6023         public virtual System.Configuration.SettingsPropertyValueCollection PropertyValues { get { throw null; } }
6024         public virtual System.Configuration.SettingsProviderCollection Providers { get { throw null; } }
Initialize(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties, System.Configuration.SettingsProviderCollection providers)6025         public void Initialize(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties, System.Configuration.SettingsProviderCollection providers) { }
Save()6026         public virtual void Save() { }
Synchronized(System.Configuration.SettingsBase settingsBase)6027         public static System.Configuration.SettingsBase Synchronized(System.Configuration.SettingsBase settingsBase) { throw null; }
6028     }
6029     [System.SerializableAttribute]
6030     public partial class SettingsContext : System.Collections.Hashtable
6031     {
SettingsContext()6032         public SettingsContext() { }
6033     }
6034     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
6035     public sealed partial class SettingsDescriptionAttribute : System.Attribute
6036     {
SettingsDescriptionAttribute(string description)6037         public SettingsDescriptionAttribute(string description) { }
6038         public string Description { get { throw null; } }
6039     }
6040     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
6041     public sealed partial class SettingsGroupDescriptionAttribute : System.Attribute
6042     {
SettingsGroupDescriptionAttribute(string description)6043         public SettingsGroupDescriptionAttribute(string description) { }
6044         public string Description { get { throw null; } }
6045     }
6046     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
6047     public sealed partial class SettingsGroupNameAttribute : System.Attribute
6048     {
SettingsGroupNameAttribute(string groupName)6049         public SettingsGroupNameAttribute(string groupName) { }
6050         public string GroupName { get { throw null; } }
6051     }
6052     public partial class SettingsLoadedEventArgs : System.EventArgs
6053     {
SettingsLoadedEventArgs(System.Configuration.SettingsProvider provider)6054         public SettingsLoadedEventArgs(System.Configuration.SettingsProvider provider) { }
6055         public System.Configuration.SettingsProvider Provider { get { throw null; } }
6056     }
SettingsLoadedEventHandler(object sender, System.Configuration.SettingsLoadedEventArgs e)6057     public delegate void SettingsLoadedEventHandler(object sender, System.Configuration.SettingsLoadedEventArgs e);
6058     public enum SettingsManageability
6059     {
6060         Roaming = 0,
6061     }
6062     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
6063     public sealed partial class SettingsManageabilityAttribute : System.Attribute
6064     {
SettingsManageabilityAttribute(System.Configuration.SettingsManageability manageability)6065         public SettingsManageabilityAttribute(System.Configuration.SettingsManageability manageability) { }
6066         public System.Configuration.SettingsManageability Manageability { get { throw null; } }
6067     }
6068     public partial class SettingsProperty
6069     {
SettingsProperty(System.Configuration.SettingsProperty propertyToCopy)6070         public SettingsProperty(System.Configuration.SettingsProperty propertyToCopy) { }
SettingsProperty(string name)6071         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)6072         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) { }
6073         public virtual System.Configuration.SettingsAttributeDictionary Attributes { get { throw null; } }
6074         public virtual object DefaultValue { get { throw null; } set { } }
6075         public virtual bool IsReadOnly { get { throw null; } set { } }
6076         public virtual string Name { get { throw null; } set { } }
6077         public virtual System.Type PropertyType { get { throw null; } set { } }
6078         public virtual System.Configuration.SettingsProvider Provider { get { throw null; } set { } }
6079         public virtual System.Configuration.SettingsSerializeAs SerializeAs { get { throw null; } set { } }
6080         public bool ThrowOnErrorDeserializing { get { throw null; } set { } }
6081         public bool ThrowOnErrorSerializing { get { throw null; } set { } }
6082     }
6083     public partial class SettingsPropertyCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable
6084     {
SettingsPropertyCollection()6085         public SettingsPropertyCollection() { }
6086         public int Count { get { throw null; } }
6087         public bool IsSynchronized { get { throw null; } }
6088         public System.Configuration.SettingsProperty this[string name] { get { throw null; } }
6089         public object SyncRoot { get { throw null; } }
Add(System.Configuration.SettingsProperty property)6090         public void Add(System.Configuration.SettingsProperty property) { }
Clear()6091         public void Clear() { }
Clone()6092         public object Clone() { throw null; }
CopyTo(System.Array array, int index)6093         public void CopyTo(System.Array array, int index) { }
GetEnumerator()6094         public System.Collections.IEnumerator GetEnumerator() { throw null; }
OnAdd(System.Configuration.SettingsProperty property)6095         protected virtual void OnAdd(System.Configuration.SettingsProperty property) { }
OnAddComplete(System.Configuration.SettingsProperty property)6096         protected virtual void OnAddComplete(System.Configuration.SettingsProperty property) { }
OnClear()6097         protected virtual void OnClear() { }
OnClearComplete()6098         protected virtual void OnClearComplete() { }
OnRemove(System.Configuration.SettingsProperty property)6099         protected virtual void OnRemove(System.Configuration.SettingsProperty property) { }
OnRemoveComplete(System.Configuration.SettingsProperty property)6100         protected virtual void OnRemoveComplete(System.Configuration.SettingsProperty property) { }
Remove(string name)6101         public void Remove(string name) { }
SetReadOnly()6102         public void SetReadOnly() { }
6103     }
6104     [System.SerializableAttribute]
6105     public partial class SettingsPropertyIsReadOnlyException : System.Exception
6106     {
SettingsPropertyIsReadOnlyException()6107         public SettingsPropertyIsReadOnlyException() { }
SettingsPropertyIsReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)6108         protected SettingsPropertyIsReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SettingsPropertyIsReadOnlyException(string message)6109         public SettingsPropertyIsReadOnlyException(string message) { }
SettingsPropertyIsReadOnlyException(string message, System.Exception innerException)6110         public SettingsPropertyIsReadOnlyException(string message, System.Exception innerException) { }
6111     }
6112     [System.SerializableAttribute]
6113     public partial class SettingsPropertyNotFoundException : System.Exception
6114     {
SettingsPropertyNotFoundException()6115         public SettingsPropertyNotFoundException() { }
SettingsPropertyNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)6116         protected SettingsPropertyNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SettingsPropertyNotFoundException(string message)6117         public SettingsPropertyNotFoundException(string message) { }
SettingsPropertyNotFoundException(string message, System.Exception innerException)6118         public SettingsPropertyNotFoundException(string message, System.Exception innerException) { }
6119     }
6120     public partial class SettingsPropertyValue
6121     {
SettingsPropertyValue(System.Configuration.SettingsProperty property)6122         public SettingsPropertyValue(System.Configuration.SettingsProperty property) { }
6123         public bool Deserialized { get { throw null; } set { } }
6124         public bool IsDirty { get { throw null; } set { } }
6125         public string Name { get { throw null; } }
6126         public System.Configuration.SettingsProperty Property { get { throw null; } }
6127         public object PropertyValue { get { throw null; } set { } }
6128         public object SerializedValue { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]set { } }
6129         public bool UsingDefaultValue { get { throw null; } }
6130     }
6131     public partial class SettingsPropertyValueCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable
6132     {
SettingsPropertyValueCollection()6133         public SettingsPropertyValueCollection() { }
6134         public int Count { get { throw null; } }
6135         public bool IsSynchronized { get { throw null; } }
6136         public System.Configuration.SettingsPropertyValue this[string name] { get { throw null; } }
6137         public object SyncRoot { get { throw null; } }
Add(System.Configuration.SettingsPropertyValue property)6138         public void Add(System.Configuration.SettingsPropertyValue property) { }
Clear()6139         public void Clear() { }
Clone()6140         public object Clone() { throw null; }
CopyTo(System.Array array, int index)6141         public void CopyTo(System.Array array, int index) { }
GetEnumerator()6142         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string name)6143         public void Remove(string name) { }
SetReadOnly()6144         public void SetReadOnly() { }
6145     }
6146     [System.SerializableAttribute]
6147     public partial class SettingsPropertyWrongTypeException : System.Exception
6148     {
SettingsPropertyWrongTypeException()6149         public SettingsPropertyWrongTypeException() { }
SettingsPropertyWrongTypeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)6150         protected SettingsPropertyWrongTypeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SettingsPropertyWrongTypeException(string message)6151         public SettingsPropertyWrongTypeException(string message) { }
SettingsPropertyWrongTypeException(string message, System.Exception innerException)6152         public SettingsPropertyWrongTypeException(string message, System.Exception innerException) { }
6153     }
6154     public abstract partial class SettingsProvider : System.Configuration.Provider.ProviderBase
6155     {
SettingsProvider()6156         protected SettingsProvider() { }
6157         public abstract string ApplicationName { get; set; }
GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection)6158         public abstract System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection);
SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection collection)6159         public abstract void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection collection);
6160     }
6161     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
6162     public sealed partial class SettingsProviderAttribute : System.Attribute
6163     {
SettingsProviderAttribute(string providerTypeName)6164         public SettingsProviderAttribute(string providerTypeName) { }
SettingsProviderAttribute(System.Type providerType)6165         public SettingsProviderAttribute(System.Type providerType) { }
6166         public string ProviderTypeName { get { throw null; } }
6167     }
6168     public partial class SettingsProviderCollection : System.Configuration.Provider.ProviderCollection
6169     {
SettingsProviderCollection()6170         public SettingsProviderCollection() { }
6171         public new System.Configuration.SettingsProvider this[string name] { get { throw null; } }
Add(System.Configuration.Provider.ProviderBase provider)6172         public override void Add(System.Configuration.Provider.ProviderBase provider) { }
6173     }
SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e)6174     public delegate void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e);
6175     public enum SettingsSerializeAs
6176     {
6177         Binary = 2,
6178         ProviderSpecific = 3,
6179         String = 0,
6180         Xml = 1,
6181     }
6182     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
6183     public sealed partial class SettingsSerializeAsAttribute : System.Attribute
6184     {
SettingsSerializeAsAttribute(System.Configuration.SettingsSerializeAs serializeAs)6185         public SettingsSerializeAsAttribute(System.Configuration.SettingsSerializeAs serializeAs) { }
6186         public System.Configuration.SettingsSerializeAs SerializeAs { get { throw null; } }
6187     }
6188     public sealed partial class SettingValueElement : System.Configuration.ConfigurationElement
6189     {
SettingValueElement()6190         public SettingValueElement() { }
6191         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
6192         public System.Xml.XmlNode ValueXml { get { throw null; } set { } }
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)6193         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
Equals(object settingValue)6194         public override bool Equals(object settingValue) { throw null; }
GetHashCode()6195         public override int GetHashCode() { throw null; }
IsModified()6196         protected override bool IsModified() { throw null; }
Reset(System.Configuration.ConfigurationElement parentElement)6197         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
ResetModified()6198         protected override void ResetModified() { }
SerializeToXmlElement(System.Xml.XmlWriter writer, string elementName)6199         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)6200         protected override void Unmerge(System.Configuration.ConfigurationElement sourceElement, System.Configuration.ConfigurationElement parentElement, System.Configuration.ConfigurationSaveMode saveMode) { }
6201     }
6202     public partial class SingleTagSectionHandler : System.Configuration.IConfigurationSectionHandler
6203     {
SingleTagSectionHandler()6204         public SingleTagSectionHandler() { }
Create(object parent, object context, System.Xml.XmlNode section)6205         public virtual object Create(object parent, object context, System.Xml.XmlNode section) { throw null; }
6206     }
6207     public enum SpecialSetting
6208     {
6209         ConnectionString = 0,
6210         WebServiceUrl = 1,
6211     }
6212     [System.AttributeUsageAttribute((System.AttributeTargets)(132))]
6213     public sealed partial class SpecialSettingAttribute : System.Attribute
6214     {
SpecialSettingAttribute(System.Configuration.SpecialSetting specialSetting)6215         public SpecialSettingAttribute(System.Configuration.SpecialSetting specialSetting) { }
6216         public System.Configuration.SpecialSetting SpecialSetting { get { throw null; } }
6217     }
6218     public sealed partial class UriSection : System.Configuration.ConfigurationSection
6219     {
UriSection()6220         public UriSection() { }
6221         [System.Configuration.ConfigurationPropertyAttribute("idn")]
6222         public System.Configuration.IdnElement Idn { get { throw null; } }
6223         [System.Configuration.ConfigurationPropertyAttribute("iriParsing")]
6224         public System.Configuration.IriParsingElement IriParsing { get { throw null; } }
6225         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
6226         [System.Configuration.ConfigurationPropertyAttribute("schemeSettings")]
6227         public System.Configuration.SchemeSettingElementCollection SchemeSettings { get { throw null; } }
6228     }
6229     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
6230     public sealed partial class UserScopedSettingAttribute : System.Configuration.SettingAttribute
6231     {
UserScopedSettingAttribute()6232         public UserScopedSettingAttribute() { }
6233     }
6234     public sealed partial class UserSettingsGroup : System.Configuration.ConfigurationSectionGroup
6235     {
UserSettingsGroup()6236         public UserSettingsGroup() { }
6237     }
6238 }
6239 #endif
6240 namespace System.Diagnostics
6241 {
6242     [System.Diagnostics.SwitchLevelAttribute(typeof(bool))]
6243     public partial class BooleanSwitch : System.Diagnostics.Switch
6244     {
BooleanSwitch(string displayName, string description)6245         public BooleanSwitch(string displayName, string description) : base (default(string), default(string)) { }
BooleanSwitch(string displayName, string description, string defaultSwitchValue)6246         public BooleanSwitch(string displayName, string description, string defaultSwitchValue) : base (default(string), default(string)) { }
6247         public bool Enabled { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
OnValueChanged()6248         protected override void OnValueChanged() { }
6249     }
6250     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
6251     public partial class ConsoleTraceListener : System.Diagnostics.TextWriterTraceListener
6252     {
ConsoleTraceListener()6253         public ConsoleTraceListener() { }
ConsoleTraceListener(bool useErrorStream)6254         public ConsoleTraceListener(bool useErrorStream) { }
Close()6255         public override void Close() { }
6256     }
6257     public partial class CorrelationManager
6258     {
CorrelationManager()6259         internal CorrelationManager() { }
6260         public System.Guid ActivityId { get { throw null; } set { } }
6261         public System.Collections.Stack LogicalOperationStack { get { throw null; } }
StartLogicalOperation()6262         public void StartLogicalOperation() { }
StartLogicalOperation(object operationId)6263         public void StartLogicalOperation(object operationId) { }
StopLogicalOperation()6264         public void StopLogicalOperation() { }
6265     }
6266     [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.CounterCreationDataConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6267     [System.SerializableAttribute]
6268     public partial class CounterCreationData
6269     {
CounterCreationData()6270         public CounterCreationData() { }
CounterCreationData(string counterName, string counterHelp, System.Diagnostics.PerformanceCounterType counterType)6271         public CounterCreationData(string counterName, string counterHelp, System.Diagnostics.PerformanceCounterType counterType) { }
6272         [System.ComponentModel.DefaultValueAttribute("")]
6273         [System.Diagnostics.MonitoringDescriptionAttribute("CounterHelp")]
6274         public string CounterHelp { get { throw null; } set { } }
6275         [System.ComponentModel.DefaultValueAttribute("")]
6276         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6277         [System.Diagnostics.MonitoringDescriptionAttribute("CounterName")]
6278         public string CounterName { get { throw null; } set { } }
6279         [System.ComponentModel.DefaultValueAttribute((System.Diagnostics.PerformanceCounterType)(65536))]
6280         [System.Diagnostics.MonitoringDescriptionAttribute("CounterType")]
6281         public System.Diagnostics.PerformanceCounterType CounterType { get { throw null; } set { } }
6282     }
6283     [System.SerializableAttribute]
6284     public partial class CounterCreationDataCollection : System.Collections.CollectionBase
6285     {
CounterCreationDataCollection()6286         public CounterCreationDataCollection() { }
CounterCreationDataCollection(System.Diagnostics.CounterCreationDataCollection value)6287         public CounterCreationDataCollection(System.Diagnostics.CounterCreationDataCollection value) { }
CounterCreationDataCollection(System.Diagnostics.CounterCreationData[] value)6288         public CounterCreationDataCollection(System.Diagnostics.CounterCreationData[] value) { }
6289         public System.Diagnostics.CounterCreationData this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.CounterCreationData value)6290         public int Add(System.Diagnostics.CounterCreationData value) { throw null; }
AddRange(System.Diagnostics.CounterCreationDataCollection value)6291         public void AddRange(System.Diagnostics.CounterCreationDataCollection value) { }
AddRange(System.Diagnostics.CounterCreationData[] value)6292         public void AddRange(System.Diagnostics.CounterCreationData[] value) { }
Contains(System.Diagnostics.CounterCreationData value)6293         public bool Contains(System.Diagnostics.CounterCreationData value) { throw null; }
CopyTo(System.Diagnostics.CounterCreationData[] array, int index)6294         public void CopyTo(System.Diagnostics.CounterCreationData[] array, int index) { }
IndexOf(System.Diagnostics.CounterCreationData value)6295         public int IndexOf(System.Diagnostics.CounterCreationData value) { throw null; }
Insert(int index, System.Diagnostics.CounterCreationData value)6296         public void Insert(int index, System.Diagnostics.CounterCreationData value) { }
OnValidate(object value)6297         protected override void OnValidate(object value) { }
Remove(System.Diagnostics.CounterCreationData value)6298         public virtual void Remove(System.Diagnostics.CounterCreationData value) { }
6299     }
6300     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
6301     public partial struct CounterSample
6302     {
6303         public static System.Diagnostics.CounterSample Empty;
CounterSampleSystem.Diagnostics.CounterSample6304         public CounterSample(long rawValue, long baseValue, long counterFrequency, long systemFrequency, long timeStamp, long timeStamp100nSec, System.Diagnostics.PerformanceCounterType counterType) { throw null;}
CounterSampleSystem.Diagnostics.CounterSample6305         public CounterSample(long rawValue, long baseValue, long counterFrequency, long systemFrequency, long timeStamp, long timeStamp100nSec, System.Diagnostics.PerformanceCounterType counterType, long counterTimeStamp) { throw null;}
6306         public long BaseValue { get { throw null; } }
6307         public long CounterFrequency { get { throw null; } }
6308         public long CounterTimeStamp { get { throw null; } }
6309         public System.Diagnostics.PerformanceCounterType CounterType { get { throw null; } }
6310         public long RawValue { get { throw null; } }
6311         public long SystemFrequency { get { throw null; } }
6312         public long TimeStamp { get { throw null; } }
6313         public long TimeStamp100nSec { get { throw null; } }
CalculateSystem.Diagnostics.CounterSample6314         public static float Calculate(System.Diagnostics.CounterSample counterSample) { throw null; }
CalculateSystem.Diagnostics.CounterSample6315         public static float Calculate(System.Diagnostics.CounterSample counterSample, System.Diagnostics.CounterSample nextCounterSample) { throw null; }
EqualsSystem.Diagnostics.CounterSample6316         public bool Equals(System.Diagnostics.CounterSample sample) { throw null; }
EqualsSystem.Diagnostics.CounterSample6317         public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Diagnostics.CounterSample6318         public override int GetHashCode() { throw null; }
operator ==System.Diagnostics.CounterSample6319         public static bool operator ==(System.Diagnostics.CounterSample a, System.Diagnostics.CounterSample b) { throw null; }
operator !=System.Diagnostics.CounterSample6320         public static bool operator !=(System.Diagnostics.CounterSample a, System.Diagnostics.CounterSample b) { throw null; }
6321     }
6322     public static partial class CounterSampleCalculator
6323     {
ComputeCounterValue(System.Diagnostics.CounterSample newSample)6324         public static float ComputeCounterValue(System.Diagnostics.CounterSample newSample) { throw null; }
ComputeCounterValue(System.Diagnostics.CounterSample oldSample, System.Diagnostics.CounterSample newSample)6325         public static float ComputeCounterValue(System.Diagnostics.CounterSample oldSample, System.Diagnostics.CounterSample newSample) { throw null; }
6326     }
6327     public partial class DataReceivedEventArgs : System.EventArgs
6328     {
DataReceivedEventArgs()6329         internal DataReceivedEventArgs() { }
6330         public string Data { get { throw null; } }
6331     }
DataReceivedEventHandler(object sender, System.Diagnostics.DataReceivedEventArgs e)6332     public delegate void DataReceivedEventHandler(object sender, System.Diagnostics.DataReceivedEventArgs e);
6333     public static partial class Debug
6334     {
6335         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 { } }
6336         public static int IndentLevel { get { throw null; } set { } }
6337         public static int IndentSize { get { throw null; } set { } }
6338         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; } }
6339         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition)6340         public static void Assert(bool condition) { }
6341         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message)6342         public static void Assert(bool condition, string message) { }
6343         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message, string detailMessage)6344         public static void Assert(bool condition, string message, string detailMessage) { }
6345         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message, string detailMessageFormat, params object[] args)6346         public static void Assert(bool condition, string message, string detailMessageFormat, params object[] args) { }
6347         [System.Diagnostics.ConditionalAttribute("DEBUG")]
6348         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Close()6349         public static void Close() { }
6350         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Fail(string message)6351         public static void Fail(string message) { }
6352         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Fail(string message, string detailMessage)6353         public static void Fail(string message, string detailMessage) { }
6354         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Flush()6355         public static void Flush() { }
6356         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Indent()6357         public static void Indent() { }
6358         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Print(string message)6359         public static void Print(string message) { }
6360         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Print(string format, params object[] args)6361         public static void Print(string format, params object[] args) { }
6362         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Unindent()6363         public static void Unindent() { }
6364         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(object value)6365         public static void Write(object value) { }
6366         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(object value, string category)6367         public static void Write(object value, string category) { }
6368         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(string message)6369         public static void Write(string message) { }
6370         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(string message, string category)6371         public static void Write(string message, string category) { }
6372         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, object value)6373         public static void WriteIf(bool condition, object value) { }
6374         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, object value, string category)6375         public static void WriteIf(bool condition, object value, string category) { }
6376         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, string message)6377         public static void WriteIf(bool condition, string message) { }
6378         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, string message, string category)6379         public static void WriteIf(bool condition, string message, string category) { }
6380         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(object value)6381         public static void WriteLine(object value) { }
6382         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(object value, string category)6383         public static void WriteLine(object value, string category) { }
6384         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string message)6385         public static void WriteLine(string message) { }
6386         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string format, params object[] args)6387         public static void WriteLine(string format, params object[] args) { }
6388         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string message, string category)6389         public static void WriteLine(string message, string category) { }
6390         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, object value)6391         public static void WriteLineIf(bool condition, object value) { }
6392         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, object value, string category)6393         public static void WriteLineIf(bool condition, object value, string category) { }
6394         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, string message)6395         public static void WriteLineIf(bool condition, string message) { }
6396         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, string message, string category)6397         public static void WriteLineIf(bool condition, string message, string category) { }
6398     }
6399     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
6400     public partial class DefaultTraceListener : System.Diagnostics.TraceListener
6401     {
DefaultTraceListener()6402         public DefaultTraceListener() { }
6403         public bool AssertUiEnabled { get { throw null; } set { } }
6404         public string LogFileName { get { throw null; } set { } }
Fail(string message)6405         public override void Fail(string message) { }
Fail(string message, string detailMessage)6406         public override void Fail(string message, string detailMessage) { }
Write(string message)6407         public override void Write(string message) { }
WriteLine(string message)6408         public override void WriteLine(string message) { }
6409     }
6410     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
6411     public partial class DelimitedListTraceListener : System.Diagnostics.TextWriterTraceListener
6412     {
DelimitedListTraceListener(System.IO.Stream stream)6413         public DelimitedListTraceListener(System.IO.Stream stream) { }
DelimitedListTraceListener(System.IO.Stream stream, string name)6414         public DelimitedListTraceListener(System.IO.Stream stream, string name) { }
DelimitedListTraceListener(System.IO.TextWriter writer)6415         public DelimitedListTraceListener(System.IO.TextWriter writer) { }
DelimitedListTraceListener(System.IO.TextWriter writer, string name)6416         public DelimitedListTraceListener(System.IO.TextWriter writer, string name) { }
DelimitedListTraceListener(string fileName)6417         public DelimitedListTraceListener(string fileName) { }
DelimitedListTraceListener(string fileName, string name)6418         public DelimitedListTraceListener(string fileName, string name) { }
6419         public string Delimiter { get { throw null; } set { } }
GetSupportedAttributes()6420         protected internal override string[] GetSupportedAttributes() { throw null; }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)6421         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)6422         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)6423         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)6424         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
6425     }
6426 #if CONFIG_DEP
6427     [System.ObsoleteAttribute("This class has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202")]
6428     public partial class DiagnosticsConfigurationHandler : System.Configuration.IConfigurationSectionHandler
6429     {
DiagnosticsConfigurationHandler()6430         public DiagnosticsConfigurationHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)6431         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
6432     }
6433 #endif
6434     public partial class EntryWrittenEventArgs : System.EventArgs
6435     {
EntryWrittenEventArgs()6436         public EntryWrittenEventArgs() { }
EntryWrittenEventArgs(System.Diagnostics.EventLogEntry entry)6437         public EntryWrittenEventArgs(System.Diagnostics.EventLogEntry entry) { }
6438         public System.Diagnostics.EventLogEntry Entry { get { throw null; } }
6439     }
EntryWrittenEventHandler(object sender, System.Diagnostics.EntryWrittenEventArgs e)6440     public delegate void EntryWrittenEventHandler(object sender, System.Diagnostics.EntryWrittenEventArgs e);
6441     public partial class EventInstance
6442     {
EventInstance(long instanceId, int categoryId)6443         public EventInstance(long instanceId, int categoryId) { }
EventInstance(long instanceId, int categoryId, System.Diagnostics.EventLogEntryType entryType)6444         public EventInstance(long instanceId, int categoryId, System.Diagnostics.EventLogEntryType entryType) { }
6445         public int CategoryId { get { throw null; } set { } }
6446         public System.Diagnostics.EventLogEntryType EntryType { get { throw null; } set { } }
6447         public long InstanceId { get { throw null; } set { } }
6448     }
6449     [System.ComponentModel.DefaultEventAttribute("EntryWritten")]
6450     [System.ComponentModel.InstallerTypeAttribute("System.Diagnostics.EventLogInstaller, System.Configuration.Install, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6451     [System.Diagnostics.MonitoringDescriptionAttribute("EventLogDesc")]
6452     public partial class EventLog : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
6453     {
EventLog()6454         public EventLog() { }
EventLog(string logName)6455         public EventLog(string logName) { }
EventLog(string logName, string machineName)6456         public EventLog(string logName, string machineName) { }
EventLog(string logName, string machineName, string source)6457         public EventLog(string logName, string machineName, string source) { }
6458         [System.ComponentModel.BrowsableAttribute(false)]
6459         [System.ComponentModel.DefaultValueAttribute(false)]
6460         [System.Diagnostics.MonitoringDescriptionAttribute("LogMonitoring")]
6461         public bool EnableRaisingEvents { get { throw null; } set { } }
6462         [System.ComponentModel.BrowsableAttribute(false)]
6463         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6464         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntries")]
6465         public System.Diagnostics.EventLogEntryCollection Entries { get { throw null; } }
6466         [System.ComponentModel.DefaultValueAttribute("")]
6467         [System.ComponentModel.ReadOnlyAttribute(true)]
6468         [System.ComponentModel.SettingsBindableAttribute(true)]
6469         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.LogConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6470         [System.Diagnostics.MonitoringDescriptionAttribute("LogLog")]
6471         public string Log { get { throw null; } set { } }
6472         [System.ComponentModel.BrowsableAttribute(false)]
6473         public string LogDisplayName { get { throw null; } }
6474         [System.ComponentModel.DefaultValueAttribute(".")]
6475         [System.ComponentModel.ReadOnlyAttribute(true)]
6476         [System.ComponentModel.SettingsBindableAttribute(true)]
6477         [System.Diagnostics.MonitoringDescriptionAttribute("LogMachineName")]
6478         public string MachineName { get { throw null; } set { } }
6479         [System.ComponentModel.BrowsableAttribute(false)]
6480         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6481         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6482         public long MaximumKilobytes { get { throw null; } set { } }
6483         [System.ComponentModel.BrowsableAttribute(false)]
6484         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6485         public int MinimumRetentionDays { get { throw null; } }
6486         [System.ComponentModel.BrowsableAttribute(false)]
6487         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6488         public System.Diagnostics.OverflowAction OverflowAction { get { throw null; } }
6489         [System.ComponentModel.DefaultValueAttribute("")]
6490         [System.ComponentModel.ReadOnlyAttribute(true)]
6491         [System.ComponentModel.SettingsBindableAttribute(true)]
6492         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6493         [System.Diagnostics.MonitoringDescriptionAttribute("LogSource")]
6494         public string Source { get { throw null; } set { } }
6495         [System.ComponentModel.BrowsableAttribute(false)]
6496         [System.ComponentModel.DefaultValueAttribute(null)]
6497         [System.Diagnostics.MonitoringDescriptionAttribute("LogSynchronizingObject")]
6498         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]get { throw null; } set { } }
6499         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryWritten")]
6500         public event System.Diagnostics.EntryWrittenEventHandler EntryWritten { add { } remove { } }
BeginInit()6501         public void BeginInit() { }
Clear()6502         public void Clear() { }
Close()6503         public void Close() { }
CreateEventSource(System.Diagnostics.EventSourceCreationData sourceData)6504         public static void CreateEventSource(System.Diagnostics.EventSourceCreationData sourceData) { }
CreateEventSource(string source, string logName)6505         public static void CreateEventSource(string source, string logName) { }
6506         [System.ObsoleteAttribute("This method has been deprecated.  Please use System.Diagnostics.EventLog.CreateEventSource(EventSourceCreationData sourceData) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
CreateEventSource(string source, string logName, string machineName)6507         public static void CreateEventSource(string source, string logName, string machineName) { }
Delete(string logName)6508         public static void Delete(string logName) { }
Delete(string logName, string machineName)6509         public static void Delete(string logName, string machineName) { }
DeleteEventSource(string source)6510         public static void DeleteEventSource(string source) { }
DeleteEventSource(string source, string machineName)6511         public static void DeleteEventSource(string source, string machineName) { }
Dispose(bool disposing)6512         protected override void Dispose(bool disposing) { }
EndInit()6513         public void EndInit() { }
Exists(string logName)6514         public static bool Exists(string logName) { throw null; }
Exists(string logName, string machineName)6515         public static bool Exists(string logName, string machineName) { throw null; }
GetEventLogs()6516         public static System.Diagnostics.EventLog[] GetEventLogs() { throw null; }
GetEventLogs(string machineName)6517         public static System.Diagnostics.EventLog[] GetEventLogs(string machineName) { throw null; }
LogNameFromSourceName(string source, string machineName)6518         public static string LogNameFromSourceName(string source, string machineName) { throw null; }
6519         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
ModifyOverflowPolicy(System.Diagnostics.OverflowAction action, int retentionDays)6520         public void ModifyOverflowPolicy(System.Diagnostics.OverflowAction action, int retentionDays) { }
6521         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
RegisterDisplayName(string resourceFile, long resourceId)6522         public void RegisterDisplayName(string resourceFile, long resourceId) { }
SourceExists(string source)6523         public static bool SourceExists(string source) { throw null; }
SourceExists(string source, string machineName)6524         public static bool SourceExists(string source, string machineName) { throw null; }
WriteEntry(string message)6525         public void WriteEntry(string message) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type)6526         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID)6527         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID) { }
WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID, short category)6528         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)6529         public void WriteEntry(string message, System.Diagnostics.EventLogEntryType type, int eventID, short category, byte[] rawData) { }
WriteEntry(string source, string message)6530         public static void WriteEntry(string source, string message) { }
WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type)6531         public static void WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type) { }
WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID)6532         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)6533         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)6534         public static void WriteEntry(string source, string message, System.Diagnostics.EventLogEntryType type, int eventID, short category, byte[] rawData) { }
6535         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
WriteEvent(System.Diagnostics.EventInstance instance, byte[] data, params object[] values)6536         public void WriteEvent(System.Diagnostics.EventInstance instance, byte[] data, params object[] values) { }
6537         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
WriteEvent(System.Diagnostics.EventInstance instance, params object[] values)6538         public void WriteEvent(System.Diagnostics.EventInstance instance, params object[] values) { }
WriteEvent(string source, System.Diagnostics.EventInstance instance, byte[] data, params object[] values)6539         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)6540         public static void WriteEvent(string source, System.Diagnostics.EventInstance instance, params object[] values) { }
6541     }
6542     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
6543     [System.ComponentModel.ToolboxItemAttribute(false)]
6544     [System.SerializableAttribute]
6545     public sealed partial class EventLogEntry : System.ComponentModel.Component, System.Runtime.Serialization.ISerializable
6546     {
EventLogEntry()6547         internal EventLogEntry() { }
6548         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryCategory")]
6549         public string Category { get { throw null; } }
6550         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryCategoryNumber")]
6551         public short CategoryNumber { get { throw null; } }
6552         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryData")]
6553         public byte[] Data { get { throw null; } }
6554         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryEntryType")]
6555         public System.Diagnostics.EventLogEntryType EntryType { get { throw null; } }
6556         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryEventID")]
6557         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.EventLogEntry.InstanceId instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6558         public int EventID { get { throw null; } }
6559         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryIndex")]
6560         public int Index { get { throw null; } }
6561         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryResourceId")]
6562         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6563         public long InstanceId { get { throw null; } }
6564         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryMachineName")]
6565         public string MachineName { get { throw null; } }
6566         [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")]
6567         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryMessage")]
6568         public string Message { get { throw null; } }
6569         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryReplacementStrings")]
6570         public string[] ReplacementStrings { get { throw null; } }
6571         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntrySource")]
6572         public string Source { get { throw null; } }
6573         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryTimeGenerated")]
6574         public System.DateTime TimeGenerated { get { throw null; } }
6575         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryTimeWritten")]
6576         public System.DateTime TimeWritten { get { throw null; } }
6577         [System.Diagnostics.MonitoringDescriptionAttribute("LogEntryUserName")]
6578         public string UserName { get { throw null; } }
Equals(System.Diagnostics.EventLogEntry otherEntry)6579         public bool Equals(System.Diagnostics.EventLogEntry otherEntry) { throw null; }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)6580         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
6581     }
6582     public partial class EventLogEntryCollection : System.Collections.ICollection, System.Collections.IEnumerable
6583     {
EventLogEntryCollection()6584         internal EventLogEntryCollection() { }
6585         public int Count { get { throw null; } }
6586         public virtual System.Diagnostics.EventLogEntry this[int index] { get { throw null; } }
6587         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
6588         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Diagnostics.EventLogEntry[] entries, int index)6589         public void CopyTo(System.Diagnostics.EventLogEntry[] entries, int index) { }
GetEnumerator()6590         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)6591         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
6592     }
6593     public enum EventLogEntryType
6594     {
6595         Error = 1,
6596         FailureAudit = 16,
6597         Information = 4,
6598         SuccessAudit = 8,
6599         Warning = 2,
6600     }
6601     [System.SerializableAttribute]
6602     public sealed partial class EventLogPermission : System.Security.Permissions.ResourcePermissionBase
6603     {
EventLogPermission()6604         public EventLogPermission() { }
EventLogPermission(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName)6605         public EventLogPermission(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName) { }
EventLogPermission(System.Diagnostics.EventLogPermissionEntry[] permissionAccessEntries)6606         public EventLogPermission(System.Diagnostics.EventLogPermissionEntry[] permissionAccessEntries) { }
EventLogPermission(System.Security.Permissions.PermissionState state)6607         public EventLogPermission(System.Security.Permissions.PermissionState state) { }
6608         public System.Diagnostics.EventLogPermissionEntryCollection PermissionEntries { get { throw null; } }
6609     }
6610     [System.FlagsAttribute]
6611     public enum EventLogPermissionAccess
6612     {
6613         Administer = 48,
6614         [System.ObsoleteAttribute("This member has been deprecated.  Please use System.Diagnostics.EventLogPermissionAccess.Administer instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6615         Audit = 10,
6616         [System.ObsoleteAttribute("This member has been deprecated.  Please use System.Diagnostics.EventLogPermissionAccess.Administer instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6617         Browse = 2,
6618         [System.ObsoleteAttribute("This member has been deprecated.  Please use System.Diagnostics.EventLogPermissionAccess.Write instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6619         Instrument = 6,
6620         None = 0,
6621         Write = 16,
6622     }
6623     [System.AttributeUsageAttribute((System.AttributeTargets)(621), AllowMultiple=true, Inherited=false)]
6624     [System.SerializableAttribute]
6625     public partial class EventLogPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
6626     {
EventLogPermissionAttribute(System.Security.Permissions.SecurityAction action)6627         public EventLogPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
6628         public string MachineName { get { throw null; } set { } }
6629         public System.Diagnostics.EventLogPermissionAccess PermissionAccess { get { throw null; } set { } }
CreatePermission()6630         public override System.Security.IPermission CreatePermission() { throw null; }
6631     }
6632     [System.SerializableAttribute]
6633     public partial class EventLogPermissionEntry
6634     {
EventLogPermissionEntry(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName)6635         public EventLogPermissionEntry(System.Diagnostics.EventLogPermissionAccess permissionAccess, string machineName) { }
6636         public string MachineName { get { throw null; } }
6637         public System.Diagnostics.EventLogPermissionAccess PermissionAccess { get { throw null; } }
6638     }
6639     [System.SerializableAttribute]
6640     public partial class EventLogPermissionEntryCollection : System.Collections.CollectionBase
6641     {
EventLogPermissionEntryCollection()6642         internal EventLogPermissionEntryCollection() { }
6643         public System.Diagnostics.EventLogPermissionEntry this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.EventLogPermissionEntry value)6644         public int Add(System.Diagnostics.EventLogPermissionEntry value) { throw null; }
AddRange(System.Diagnostics.EventLogPermissionEntryCollection value)6645         public void AddRange(System.Diagnostics.EventLogPermissionEntryCollection value) { }
AddRange(System.Diagnostics.EventLogPermissionEntry[] value)6646         public void AddRange(System.Diagnostics.EventLogPermissionEntry[] value) { }
Contains(System.Diagnostics.EventLogPermissionEntry value)6647         public bool Contains(System.Diagnostics.EventLogPermissionEntry value) { throw null; }
CopyTo(System.Diagnostics.EventLogPermissionEntry[] array, int index)6648         public void CopyTo(System.Diagnostics.EventLogPermissionEntry[] array, int index) { }
IndexOf(System.Diagnostics.EventLogPermissionEntry value)6649         public int IndexOf(System.Diagnostics.EventLogPermissionEntry value) { throw null; }
Insert(int index, System.Diagnostics.EventLogPermissionEntry value)6650         public void Insert(int index, System.Diagnostics.EventLogPermissionEntry value) { }
OnClear()6651         protected override void OnClear() { }
OnInsert(int index, object value)6652         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)6653         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)6654         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Diagnostics.EventLogPermissionEntry value)6655         public void Remove(System.Diagnostics.EventLogPermissionEntry value) { }
6656     }
6657     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
6658     public sealed partial class EventLogTraceListener : System.Diagnostics.TraceListener
6659     {
EventLogTraceListener()6660         public EventLogTraceListener() { }
EventLogTraceListener(System.Diagnostics.EventLog eventLog)6661         public EventLogTraceListener(System.Diagnostics.EventLog eventLog) { }
EventLogTraceListener(string source)6662         public EventLogTraceListener(string source) { }
6663         public System.Diagnostics.EventLog EventLog { get { throw null; } set { } }
6664         public override string Name { get { throw null; } set { } }
Close()6665         public override void Close() { }
Dispose(bool disposing)6666         protected override void Dispose(bool disposing) { }
6667         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, object data)6668         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, object data) { }
6669         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, params object[] data)6670         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, params object[] data) { }
6671         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message)6672         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message) { }
6673         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args)6674         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args) { }
Write(string message)6675         public override void Write(string message) { }
WriteLine(string message)6676         public override void WriteLine(string message) { }
6677     }
6678     public partial class EventSourceCreationData
6679     {
EventSourceCreationData(string source, string logName)6680         public EventSourceCreationData(string source, string logName) { }
6681         public int CategoryCount { get { throw null; } set { } }
6682         public string CategoryResourceFile { get { throw null; } set { } }
6683         public string LogName { get { throw null; } set { } }
6684         public string MachineName { get { throw null; } set { } }
6685         public string MessageResourceFile { get { throw null; } set { } }
6686         public string ParameterResourceFile { get { throw null; } set { } }
6687         public string Source { get { throw null; } set { } }
6688     }
6689     public partial class EventTypeFilter : System.Diagnostics.TraceFilter
6690     {
EventTypeFilter(System.Diagnostics.SourceLevels level)6691         public EventTypeFilter(System.Diagnostics.SourceLevels level) { }
6692         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)6693         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; }
6694     }
6695     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
6696     public sealed partial class FileVersionInfo
6697     {
FileVersionInfo()6698         internal FileVersionInfo() { }
6699         public string Comments { get { throw null; } }
6700         public string CompanyName { get { throw null; } }
6701         public int FileBuildPart { get { throw null; } }
6702         public string FileDescription { get { throw null; } }
6703         public int FileMajorPart { get { throw null; } }
6704         public int FileMinorPart { get { throw null; } }
6705         public string FileName { get { throw null; } }
6706         public int FilePrivatePart { get { throw null; } }
6707         public string FileVersion { get { throw null; } }
6708         public string InternalName { get { throw null; } }
6709         public bool IsDebug { get { throw null; } }
6710         public bool IsPatched { get { throw null; } }
6711         public bool IsPreRelease { get { throw null; } }
6712         public bool IsPrivateBuild { get { throw null; } }
6713         public bool IsSpecialBuild { get { throw null; } }
6714         public string Language { get { throw null; } }
6715         public string LegalCopyright { get { throw null; } }
6716         public string LegalTrademarks { get { throw null; } }
6717         public string OriginalFilename { get { throw null; } }
6718         public string PrivateBuild { get { throw null; } }
6719         public int ProductBuildPart { get { throw null; } }
6720         public int ProductMajorPart { get { throw null; } }
6721         public int ProductMinorPart { get { throw null; } }
6722         public string ProductName { get { throw null; } }
6723         public int ProductPrivatePart { get { throw null; } }
6724         public string ProductVersion { get { throw null; } }
6725         public string SpecialBuild { get { throw null; } }
GetVersionInfo(string fileName)6726         public static System.Diagnostics.FileVersionInfo GetVersionInfo(string fileName) { throw null; }
ToString()6727         public override string ToString() { throw null; }
6728     }
6729     [System.Runtime.InteropServices.GuidAttribute("73386977-D6FD-11D2-BED5-00C04F79E3AE")]
6730     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
6731     public partial interface ICollectData
6732     {
CloseData()6733         void CloseData();
6734         [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)6735         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);
6736     }
6737     public partial class InstanceData
6738     {
InstanceData(string instanceName, System.Diagnostics.CounterSample sample)6739         public InstanceData(string instanceName, System.Diagnostics.CounterSample sample) { }
6740         public string InstanceName { get { throw null; } }
6741         public long RawValue { get { throw null; } }
6742         public System.Diagnostics.CounterSample Sample { get { throw null; } }
6743     }
6744     public partial class InstanceDataCollection : System.Collections.DictionaryBase
6745     {
6746         [System.ObsoleteAttribute("This constructor has been deprecated.  Please use System.Diagnostics.InstanceDataCollectionCollection.get_Item to get an instance of this collection instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
InstanceDataCollection(string counterName)6747         public InstanceDataCollection(string counterName) { }
6748         public string CounterName { get { throw null; } }
6749         public System.Diagnostics.InstanceData this[string instanceName] { get { throw null; } }
6750         public System.Collections.ICollection Keys { get { throw null; } }
6751         public System.Collections.ICollection Values { get { throw null; } }
Contains(string instanceName)6752         public bool Contains(string instanceName) { throw null; }
CopyTo(System.Diagnostics.InstanceData[] instances, int index)6753         public void CopyTo(System.Diagnostics.InstanceData[] instances, int index) { }
6754     }
6755     public partial class InstanceDataCollectionCollection : System.Collections.DictionaryBase
6756     {
6757         [System.ObsoleteAttribute("This constructor has been deprecated.  Please use System.Diagnostics.PerformanceCounterCategory.ReadCategory() to get an instance of this collection instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
InstanceDataCollectionCollection()6758         public InstanceDataCollectionCollection() { }
6759         public System.Diagnostics.InstanceDataCollection this[string counterName] { get { throw null; } }
6760         public System.Collections.ICollection Keys { get { throw null; } }
6761         public System.Collections.ICollection Values { get { throw null; } }
Contains(string counterName)6762         public bool Contains(string counterName) { throw null; }
CopyTo(System.Diagnostics.InstanceDataCollection[] counters, int index)6763         public void CopyTo(System.Diagnostics.InstanceDataCollection[] counters, int index) { }
6764     }
6765     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
6766     public partial class MonitoringDescriptionAttribute : System.ComponentModel.DescriptionAttribute
6767     {
MonitoringDescriptionAttribute(string description)6768         public MonitoringDescriptionAttribute(string description) { }
6769         public override string Description { get { throw null; } }
6770     }
6771     public enum OverflowAction
6772     {
6773         DoNotOverwrite = -1,
6774         OverwriteAsNeeded = 0,
6775         OverwriteOlder = 1,
6776     }
6777     [System.ComponentModel.InstallerTypeAttribute("System.Diagnostics.PerformanceCounterInstaller,System.Configuration.Install, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6778     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, SharedState=true)]
6779     public sealed partial class PerformanceCounter : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
6780     {
6781         [System.ObsoleteAttribute("This field has been deprecated and is not used.  Use machine.config or an application configuration file to set the size of the PerformanceCounter file mapping.")]
6782         public static int DefaultFileMappingSize;
PerformanceCounter()6783         public PerformanceCounter() { }
PerformanceCounter(string categoryName, string counterName)6784         public PerformanceCounter(string categoryName, string counterName) { }
PerformanceCounter(string categoryName, string counterName, bool readOnly)6785         public PerformanceCounter(string categoryName, string counterName, bool readOnly) { }
PerformanceCounter(string categoryName, string counterName, string instanceName)6786         public PerformanceCounter(string categoryName, string counterName, string instanceName) { }
PerformanceCounter(string categoryName, string counterName, string instanceName, bool readOnly)6787         public PerformanceCounter(string categoryName, string counterName, string instanceName, bool readOnly) { }
PerformanceCounter(string categoryName, string counterName, string instanceName, string machineName)6788         public PerformanceCounter(string categoryName, string counterName, string instanceName, string machineName) { }
6789         [System.ComponentModel.DefaultValueAttribute("")]
6790         [System.ComponentModel.ReadOnlyAttribute(true)]
6791         [System.ComponentModel.SettingsBindableAttribute(true)]
6792         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.CategoryValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6793         public string CategoryName { get { throw null; } set { } }
6794         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6795         [System.ComponentModel.ReadOnlyAttribute(true)]
6796         [System.Diagnostics.MonitoringDescriptionAttribute("PC_CounterHelp")]
6797         public string CounterHelp { get { throw null; } }
6798         [System.ComponentModel.DefaultValueAttribute("")]
6799         [System.ComponentModel.ReadOnlyAttribute(true)]
6800         [System.ComponentModel.SettingsBindableAttribute(true)]
6801         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.CounterNameConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6802         public string CounterName { get { throw null; } set { } }
6803         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6804         [System.Diagnostics.MonitoringDescriptionAttribute("PC_CounterType")]
6805         public System.Diagnostics.PerformanceCounterType CounterType { get { throw null; } }
6806         [System.ComponentModel.DefaultValueAttribute((System.Diagnostics.PerformanceCounterInstanceLifetime)(0))]
6807         public System.Diagnostics.PerformanceCounterInstanceLifetime InstanceLifetime { get { throw null; } set { } }
6808         [System.ComponentModel.DefaultValueAttribute("")]
6809         [System.ComponentModel.ReadOnlyAttribute(true)]
6810         [System.ComponentModel.SettingsBindableAttribute(true)]
6811         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.InstanceNameConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6812         public string InstanceName { get { throw null; } set { } }
6813         [System.ComponentModel.BrowsableAttribute(false)]
6814         [System.ComponentModel.DefaultValueAttribute(".")]
6815         [System.ComponentModel.SettingsBindableAttribute(true)]
6816         public string MachineName { get { throw null; } set { } }
6817         [System.ComponentModel.BrowsableAttribute(false)]
6818         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6819         [System.Diagnostics.MonitoringDescriptionAttribute("PC_RawValue")]
6820         public long RawValue { get { throw null; } set { } }
6821         [System.ComponentModel.BrowsableAttribute(false)]
6822         [System.ComponentModel.DefaultValueAttribute(true)]
6823         [System.Diagnostics.MonitoringDescriptionAttribute("PC_ReadOnly")]
6824         public bool ReadOnly { get { throw null; } set { } }
BeginInit()6825         public void BeginInit() { }
Close()6826         public void Close() { }
CloseSharedResources()6827         public static void CloseSharedResources() { }
Decrement()6828         public long Decrement() { throw null; }
Dispose(bool disposing)6829         protected override void Dispose(bool disposing) { }
EndInit()6830         public void EndInit() { }
Increment()6831         public long Increment() { throw null; }
6832         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(1))]
IncrementBy(long value)6833         public long IncrementBy(long value) { throw null; }
NextSample()6834         public System.Diagnostics.CounterSample NextSample() { throw null; }
NextValue()6835         public float NextValue() { throw null; }
6836         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(1))]
RemoveInstance()6837         public void RemoveInstance() { }
6838     }
6839     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, SharedState=true)]
6840     public sealed partial class PerformanceCounterCategory
6841     {
PerformanceCounterCategory()6842         public PerformanceCounterCategory() { }
PerformanceCounterCategory(string categoryName)6843         public PerformanceCounterCategory(string categoryName) { }
PerformanceCounterCategory(string categoryName, string machineName)6844         public PerformanceCounterCategory(string categoryName, string machineName) { }
6845         public string CategoryHelp { get { throw null; } }
6846         public string CategoryName { get { throw null; } set { } }
6847         public System.Diagnostics.PerformanceCounterCategoryType CategoryType { get { throw null; } }
6848         public string MachineName { get { throw null; } set { } }
CounterExists(string counterName)6849         public bool CounterExists(string counterName) { throw null; }
CounterExists(string counterName, string categoryName)6850         public static bool CounterExists(string counterName, string categoryName) { throw null; }
CounterExists(string counterName, string categoryName, string machineName)6851         public static bool CounterExists(string counterName, string categoryName, string machineName) { throw null; }
6852         [System.ObsoleteAttribute("This method has been deprecated.  Please use System.Diagnostics.PerformanceCounterCategory.Create(string categoryName, string categoryHelp, PerformanceCounterCategoryType categoryType, CounterCreationDataCollection counterData) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
Create(string categoryName, string categoryHelp, System.Diagnostics.CounterCreationDataCollection counterData)6853         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)6854         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)6855         public static System.Diagnostics.PerformanceCounterCategory Create(string categoryName, string categoryHelp, System.Diagnostics.PerformanceCounterCategoryType categoryType, string counterName, string counterHelp) { throw null; }
6856         [System.ObsoleteAttribute("This method has been deprecated.  Please use System.Diagnostics.PerformanceCounterCategory.Create(string categoryName, string categoryHelp, PerformanceCounterCategoryType categoryType, string counterName, string counterHelp) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
Create(string categoryName, string categoryHelp, string counterName, string counterHelp)6857         public static System.Diagnostics.PerformanceCounterCategory Create(string categoryName, string categoryHelp, string counterName, string counterHelp) { throw null; }
Delete(string categoryName)6858         public static void Delete(string categoryName) { }
Exists(string categoryName)6859         public static bool Exists(string categoryName) { throw null; }
Exists(string categoryName, string machineName)6860         public static bool Exists(string categoryName, string machineName) { throw null; }
GetCategories()6861         public static System.Diagnostics.PerformanceCounterCategory[] GetCategories() { throw null; }
GetCategories(string machineName)6862         public static System.Diagnostics.PerformanceCounterCategory[] GetCategories(string machineName) { throw null; }
GetCounters()6863         public System.Diagnostics.PerformanceCounter[] GetCounters() { throw null; }
GetCounters(string instanceName)6864         public System.Diagnostics.PerformanceCounter[] GetCounters(string instanceName) { throw null; }
GetInstanceNames()6865         public string[] GetInstanceNames() { throw null; }
InstanceExists(string instanceName)6866         public bool InstanceExists(string instanceName) { throw null; }
InstanceExists(string instanceName, string categoryName)6867         public static bool InstanceExists(string instanceName, string categoryName) { throw null; }
InstanceExists(string instanceName, string categoryName, string machineName)6868         public static bool InstanceExists(string instanceName, string categoryName, string machineName) { throw null; }
ReadCategory()6869         public System.Diagnostics.InstanceDataCollectionCollection ReadCategory() { throw null; }
6870     }
6871     public enum PerformanceCounterCategoryType
6872     {
6873         MultiInstance = 1,
6874         SingleInstance = 0,
6875         Unknown = -1,
6876     }
6877     public enum PerformanceCounterInstanceLifetime
6878     {
6879         Global = 0,
6880         Process = 1,
6881     }
6882     [System.ObsoleteAttribute("This class has been deprecated.  Use the PerformanceCounters through the System.Diagnostics.PerformanceCounter class instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6883     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
6884     [System.Runtime.InteropServices.GuidAttribute("82840BE1-D273-11D2-B94A-00600893B17A")]
6885     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
6886     public sealed partial class PerformanceCounterManager : System.Diagnostics.ICollectData
6887     {
6888         [System.ObsoleteAttribute("This class has been deprecated.  Use the PerformanceCounters through the System.Diagnostics.PerformanceCounter class instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
PerformanceCounterManager()6889         public PerformanceCounterManager() { }
6890         [System.ObsoleteAttribute("This class has been deprecated.  Use the PerformanceCounters through the System.Diagnostics.PerformanceCounter class instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
System.Diagnostics.ICollectData.CloseData()6891         void System.Diagnostics.ICollectData.CloseData() { }
6892         [System.ObsoleteAttribute("This class has been deprecated.  Use the PerformanceCounters through the System.Diagnostics.PerformanceCounter class instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
System.Diagnostics.ICollectData.CollectData(int callIdx, System.IntPtr valueNamePtr, System.IntPtr dataPtr, int totalBytes, out System.IntPtr res)6893         void System.Diagnostics.ICollectData.CollectData(int callIdx, System.IntPtr valueNamePtr, System.IntPtr dataPtr, int totalBytes, out System.IntPtr res) { res = default(System.IntPtr); }
6894     }
6895     [System.SerializableAttribute]
6896     public sealed partial class PerformanceCounterPermission : System.Security.Permissions.ResourcePermissionBase
6897     {
PerformanceCounterPermission()6898         public PerformanceCounterPermission() { }
PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName)6899         public PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName) { }
PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionEntry[] permissionAccessEntries)6900         public PerformanceCounterPermission(System.Diagnostics.PerformanceCounterPermissionEntry[] permissionAccessEntries) { }
PerformanceCounterPermission(System.Security.Permissions.PermissionState state)6901         public PerformanceCounterPermission(System.Security.Permissions.PermissionState state) { }
6902         public System.Diagnostics.PerformanceCounterPermissionEntryCollection PermissionEntries { get { throw null; } }
6903     }
6904     [System.FlagsAttribute]
6905     public enum PerformanceCounterPermissionAccess
6906     {
6907         Administer = 7,
6908         [System.ObsoleteAttribute("This member has been deprecated.  Use System.Diagnostics.PerformanceCounter.PerformanceCounterPermissionAccess.Read instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6909         Browse = 1,
6910         [System.ObsoleteAttribute("This member has been deprecated.  Use System.Diagnostics.PerformanceCounter.PerformanceCounterPermissionAccess.Write instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
6911         Instrument = 3,
6912         None = 0,
6913         Read = 1,
6914         Write = 2,
6915     }
6916     [System.AttributeUsageAttribute((System.AttributeTargets)(621), AllowMultiple=true, Inherited=false)]
6917     [System.SerializableAttribute]
6918     public partial class PerformanceCounterPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
6919     {
PerformanceCounterPermissionAttribute(System.Security.Permissions.SecurityAction action)6920         public PerformanceCounterPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
6921         public string CategoryName { get { throw null; } set { } }
6922         public string MachineName { get { throw null; } set { } }
6923         public System.Diagnostics.PerformanceCounterPermissionAccess PermissionAccess { get { throw null; } set { } }
CreatePermission()6924         public override System.Security.IPermission CreatePermission() { throw null; }
6925     }
6926     [System.SerializableAttribute]
6927     public partial class PerformanceCounterPermissionEntry
6928     {
PerformanceCounterPermissionEntry(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName)6929         public PerformanceCounterPermissionEntry(System.Diagnostics.PerformanceCounterPermissionAccess permissionAccess, string machineName, string categoryName) { }
6930         public string CategoryName { get { throw null; } }
6931         public string MachineName { get { throw null; } }
6932         public System.Diagnostics.PerformanceCounterPermissionAccess PermissionAccess { get { throw null; } }
6933     }
6934     [System.SerializableAttribute]
6935     public partial class PerformanceCounterPermissionEntryCollection : System.Collections.CollectionBase
6936     {
PerformanceCounterPermissionEntryCollection()6937         internal PerformanceCounterPermissionEntryCollection() { }
6938         public System.Diagnostics.PerformanceCounterPermissionEntry this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.PerformanceCounterPermissionEntry value)6939         public int Add(System.Diagnostics.PerformanceCounterPermissionEntry value) { throw null; }
AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection value)6940         public void AddRange(System.Diagnostics.PerformanceCounterPermissionEntryCollection value) { }
AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[] value)6941         public void AddRange(System.Diagnostics.PerformanceCounterPermissionEntry[] value) { }
Contains(System.Diagnostics.PerformanceCounterPermissionEntry value)6942         public bool Contains(System.Diagnostics.PerformanceCounterPermissionEntry value) { throw null; }
CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[] array, int index)6943         public void CopyTo(System.Diagnostics.PerformanceCounterPermissionEntry[] array, int index) { }
IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry value)6944         public int IndexOf(System.Diagnostics.PerformanceCounterPermissionEntry value) { throw null; }
Insert(int index, System.Diagnostics.PerformanceCounterPermissionEntry value)6945         public void Insert(int index, System.Diagnostics.PerformanceCounterPermissionEntry value) { }
OnClear()6946         protected override void OnClear() { }
OnInsert(int index, object value)6947         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)6948         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)6949         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Diagnostics.PerformanceCounterPermissionEntry value)6950         public void Remove(System.Diagnostics.PerformanceCounterPermissionEntry value) { }
6951     }
6952     [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.AlphabeticalEnumConverter")]
6953     public enum PerformanceCounterType
6954     {
6955         AverageBase = 1073939458,
6956         AverageCount64 = 1073874176,
6957         AverageTimer32 = 805438464,
6958         CounterDelta32 = 4195328,
6959         CounterDelta64 = 4195584,
6960         CounterMultiBase = 1107494144,
6961         CounterMultiTimer = 574686464,
6962         CounterMultiTimer100Ns = 575735040,
6963         CounterMultiTimer100NsInverse = 592512256,
6964         CounterMultiTimerInverse = 591463680,
6965         CounterTimer = 541132032,
6966         CounterTimerInverse = 557909248,
6967         CountPerTimeInterval32 = 4523008,
6968         CountPerTimeInterval64 = 4523264,
6969         ElapsedTime = 807666944,
6970         NumberOfItems32 = 65536,
6971         NumberOfItems64 = 65792,
6972         NumberOfItemsHEX32 = 0,
6973         NumberOfItemsHEX64 = 256,
6974         RateOfCountsPerSecond32 = 272696320,
6975         RateOfCountsPerSecond64 = 272696576,
6976         RawBase = 1073939459,
6977         RawFraction = 537003008,
6978         SampleBase = 1073939457,
6979         SampleCounter = 4260864,
6980         SampleFraction = 549585920,
6981         Timer100Ns = 542180608,
6982         Timer100NsInverse = 558957824,
6983     }
6984     [System.ComponentModel.DefaultEventAttribute("Exited")]
6985     [System.ComponentModel.DefaultPropertyAttribute("StartInfo")]
6986     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6987     [System.Diagnostics.MonitoringDescriptionAttribute("ProcessDesc")]
6988     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
6989     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
6990     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, Synchronization=true, ExternalProcessMgmt=true, SelfAffectingProcessMgmt=true)]
6991     public partial class Process : System.ComponentModel.Component
6992     {
Process()6993         public Process() { }
6994         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
6995         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessBasePriority")]
6996         public int BasePriority { get { throw null; } }
6997         [System.ComponentModel.BrowsableAttribute(false)]
6998         [System.ComponentModel.DefaultValueAttribute(false)]
6999         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessEnableRaisingEvents")]
7000         public bool EnableRaisingEvents { get { throw null; } set { } }
7001         [System.ComponentModel.BrowsableAttribute(false)]
7002         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7003         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessExitCode")]
7004         public int ExitCode { get { throw null; } }
7005         [System.ComponentModel.BrowsableAttribute(false)]
7006         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7007         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessExitTime")]
7008         public System.DateTime ExitTime { get { throw null; } }
7009         [System.ComponentModel.BrowsableAttribute(false)]
7010         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7011         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessHandle")]
7012         public System.IntPtr Handle { get { throw null; } }
7013         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7014         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessHandleCount")]
7015         public int HandleCount { get { throw null; } }
7016         [System.ComponentModel.BrowsableAttribute(false)]
7017         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7018         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessTerminated")]
7019         public bool HasExited { get { throw null; } }
7020         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7021         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessId")]
7022         public int Id { get { throw null; } }
7023         [System.ComponentModel.BrowsableAttribute(false)]
7024         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7025         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessMachineName")]
7026         public string MachineName { get { throw null; } }
7027         [System.ComponentModel.BrowsableAttribute(false)]
7028         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7029         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessMainModule")]
7030         public System.Diagnostics.ProcessModule MainModule { get { throw null; } }
7031         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7032         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessMainWindowHandle")]
7033         public System.IntPtr MainWindowHandle { get { throw null; } }
7034         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7035         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessMainWindowTitle")]
7036         public string MainWindowTitle { get { throw null; } }
7037         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7038         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessMaxWorkingSet")]
7039         public System.IntPtr MaxWorkingSet { get { throw null; } set { } }
7040         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7041         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessMinWorkingSet")]
7042         public System.IntPtr MinWorkingSet { get { throw null; } set { } }
7043         [System.ComponentModel.BrowsableAttribute(false)]
7044         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7045         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessModules")]
7046         public System.Diagnostics.ProcessModuleCollection Modules { get { throw null; } }
7047         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7048         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessNonpagedSystemMemorySize")]
7049         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.NonpagedSystemMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7050         public int NonpagedSystemMemorySize { get { throw null; } }
7051         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7052         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessNonpagedSystemMemorySize")]
7053         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7054         public long NonpagedSystemMemorySize64 { get { throw null; } }
7055         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7056         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPagedMemorySize")]
7057         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.PagedMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7058         public int PagedMemorySize { get { throw null; } }
7059         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7060         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPagedMemorySize")]
7061         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7062         public long PagedMemorySize64 { get { throw null; } }
7063         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7064         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPagedSystemMemorySize")]
7065         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.PagedSystemMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7066         public int PagedSystemMemorySize { get { throw null; } }
7067         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7068         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPagedSystemMemorySize")]
7069         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7070         public long PagedSystemMemorySize64 { get { throw null; } }
7071         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7072         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPeakPagedMemorySize")]
7073         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.PeakPagedMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7074         public int PeakPagedMemorySize { get { throw null; } }
7075         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7076         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPeakPagedMemorySize")]
7077         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7078         public long PeakPagedMemorySize64 { get { throw null; } }
7079         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7080         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPeakVirtualMemorySize")]
7081         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.PeakVirtualMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7082         public int PeakVirtualMemorySize { get { throw null; } }
7083         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7084         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPeakVirtualMemorySize")]
7085         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7086         public long PeakVirtualMemorySize64 { get { throw null; } }
7087         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7088         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPeakWorkingSet")]
7089         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.PeakWorkingSet64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7090         public int PeakWorkingSet { get { throw null; } }
7091         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7092         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPeakWorkingSet")]
7093         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7094         public long PeakWorkingSet64 { get { throw null; } }
7095         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7096         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPriorityBoostEnabled")]
7097         public bool PriorityBoostEnabled { get { throw null; } set { } }
7098         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7099         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPriorityClass")]
7100         public System.Diagnostics.ProcessPriorityClass PriorityClass { get { throw null; } set { } }
7101         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7102         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPrivateMemorySize")]
7103         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.PrivateMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7104         public int PrivateMemorySize { get { throw null; } }
7105         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7106         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPrivateMemorySize")]
7107         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7108         public long PrivateMemorySize64 { get { throw null; } }
7109         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7110         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessPrivilegedProcessorTime")]
7111         public System.TimeSpan PrivilegedProcessorTime { get { throw null; } }
7112         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7113         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessProcessName")]
7114         public string ProcessName { get { throw null; } }
7115         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7116         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessProcessorAffinity")]
7117         public System.IntPtr ProcessorAffinity { get { throw null; } set { } }
7118         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7119         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessResponding")]
7120         public bool Responding { get { throw null; } }
7121         [System.ComponentModel.BrowsableAttribute(false)]
7122         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7123         public Microsoft.Win32.SafeHandles.SafeProcessHandle SafeHandle { get { throw null; } }
7124         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7125         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessSessionId")]
7126         public int SessionId { get { throw null; } }
7127         [System.ComponentModel.BrowsableAttribute(false)]
7128         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7129         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessStandardError")]
7130         public System.IO.StreamReader StandardError { get { throw null; } }
7131         [System.ComponentModel.BrowsableAttribute(false)]
7132         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7133         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessStandardInput")]
7134         public System.IO.StreamWriter StandardInput { get { throw null; } }
7135         [System.ComponentModel.BrowsableAttribute(false)]
7136         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7137         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessStandardOutput")]
7138         public System.IO.StreamReader StandardOutput { get { throw null; } }
7139         [System.ComponentModel.BrowsableAttribute(false)]
7140         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
7141         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessStartInfo")]
7142         public System.Diagnostics.ProcessStartInfo StartInfo { get { throw null; } set { } }
7143         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7144         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessStartTime")]
7145         public System.DateTime StartTime { get { throw null; } }
7146         [System.ComponentModel.BrowsableAttribute(false)]
7147         [System.ComponentModel.DefaultValueAttribute(null)]
7148         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessSynchronizingObject")]
7149         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
7150         [System.ComponentModel.BrowsableAttribute(false)]
7151         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7152         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessThreads")]
7153         public System.Diagnostics.ProcessThreadCollection Threads { get { throw null; } }
7154         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7155         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessTotalProcessorTime")]
7156         public System.TimeSpan TotalProcessorTime { get { throw null; } }
7157         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7158         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessUserProcessorTime")]
7159         public System.TimeSpan UserProcessorTime { get { throw null; } }
7160         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7161         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessVirtualMemorySize")]
7162         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.VirtualMemorySize64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7163         public int VirtualMemorySize { get { throw null; } }
7164         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7165         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessVirtualMemorySize")]
7166         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7167         public long VirtualMemorySize64 { get { throw null; } }
7168         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7169         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessWorkingSet")]
7170         [System.ObsoleteAttribute("This property has been deprecated.  Please use System.Diagnostics.Process.WorkingSet64 instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
7171         public int WorkingSet { get { throw null; } }
7172         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7173         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessWorkingSet")]
7174         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7175         public long WorkingSet64 { get { throw null; } }
7176         [System.ComponentModel.BrowsableAttribute(true)]
7177         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessAssociated")]
7178         public event System.Diagnostics.DataReceivedEventHandler ErrorDataReceived { add { } remove { } }
7179         [System.ComponentModel.CategoryAttribute("Behavior")]
7180         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessExited")]
7181         public event System.EventHandler Exited { add { } remove { } }
7182         [System.ComponentModel.BrowsableAttribute(true)]
7183         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessAssociated")]
7184         public event System.Diagnostics.DataReceivedEventHandler OutputDataReceived { add { } remove { } }
7185         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
BeginErrorReadLine()7186         public void BeginErrorReadLine() { }
7187         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
BeginOutputReadLine()7188         public void BeginOutputReadLine() { }
7189         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CancelErrorRead()7190         public void CancelErrorRead() { }
7191         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CancelOutputRead()7192         public void CancelOutputRead() { }
Close()7193         public void Close() { }
CloseMainWindow()7194         public bool CloseMainWindow() { throw null; }
Dispose(bool disposing)7195         protected override void Dispose(bool disposing) { }
EnterDebugMode()7196         public static void EnterDebugMode() { }
GetCurrentProcess()7197         public static System.Diagnostics.Process GetCurrentProcess() { throw null; }
GetProcessById(int processId)7198         public static System.Diagnostics.Process GetProcessById(int processId) { throw null; }
GetProcessById(int processId, string machineName)7199         public static System.Diagnostics.Process GetProcessById(int processId, string machineName) { throw null; }
GetProcesses()7200         public static System.Diagnostics.Process[] GetProcesses() { throw null; }
GetProcesses(string machineName)7201         public static System.Diagnostics.Process[] GetProcesses(string machineName) { throw null; }
GetProcessesByName(string processName)7202         public static System.Diagnostics.Process[] GetProcessesByName(string processName) { throw null; }
GetProcessesByName(string processName, string machineName)7203         public static System.Diagnostics.Process[] GetProcessesByName(string processName, string machineName) { throw null; }
Kill()7204         public void Kill() { }
LeaveDebugMode()7205         public static void LeaveDebugMode() { }
OnExited()7206         protected void OnExited() { }
Refresh()7207         public void Refresh() { }
Start()7208         public bool Start() { throw null; }
Start(System.Diagnostics.ProcessStartInfo startInfo)7209         public static System.Diagnostics.Process Start(System.Diagnostics.ProcessStartInfo startInfo) { throw null; }
Start(string fileName)7210         public static System.Diagnostics.Process Start(string fileName) { throw null; }
Start(string fileName, string arguments)7211         public static System.Diagnostics.Process Start(string fileName, string arguments) { throw null; }
Start(string fileName, string userName, System.Security.SecureString password, string domain)7212         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)7213         public static System.Diagnostics.Process Start(string fileName, string arguments, string userName, System.Security.SecureString password, string domain) { throw null; }
ToString()7214         public override string ToString() { throw null; }
WaitForExit()7215         public void WaitForExit() { }
WaitForExit(int milliseconds)7216         public bool WaitForExit(int milliseconds) { throw null; }
WaitForInputIdle()7217         public bool WaitForInputIdle() { throw null; }
WaitForInputIdle(int milliseconds)7218         public bool WaitForInputIdle(int milliseconds) { throw null; }
7219     }
7220     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessModuleDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7221     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
7222     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
7223     public partial class ProcessModule : System.ComponentModel.Component
7224     {
ProcessModule()7225         internal ProcessModule() { }
7226         [System.Diagnostics.MonitoringDescriptionAttribute("ProcModBaseAddress")]
7227         public System.IntPtr BaseAddress { get { throw null; } }
7228         [System.Diagnostics.MonitoringDescriptionAttribute("ProcModEntryPointAddress")]
7229         public System.IntPtr EntryPointAddress { get { throw null; } }
7230         [System.Diagnostics.MonitoringDescriptionAttribute("ProcModFileName")]
7231         public string FileName { get { throw null; } }
7232         [System.ComponentModel.BrowsableAttribute(false)]
7233         public System.Diagnostics.FileVersionInfo FileVersionInfo { get { throw null; } }
7234         [System.Diagnostics.MonitoringDescriptionAttribute("ProcModModuleMemorySize")]
7235         public int ModuleMemorySize { get { throw null; } }
7236         [System.Diagnostics.MonitoringDescriptionAttribute("ProcModModuleName")]
7237         public string ModuleName { get { throw null; } }
ToString()7238         public override string ToString() { throw null; }
7239     }
7240     public partial class ProcessModuleCollection : System.Collections.ReadOnlyCollectionBase
7241     {
ProcessModuleCollection()7242         protected ProcessModuleCollection() { }
ProcessModuleCollection(System.Diagnostics.ProcessModule[] processModules)7243         public ProcessModuleCollection(System.Diagnostics.ProcessModule[] processModules) { }
7244         public System.Diagnostics.ProcessModule this[int index] { get { throw null; } }
Contains(System.Diagnostics.ProcessModule module)7245         public bool Contains(System.Diagnostics.ProcessModule module) { throw null; }
CopyTo(System.Diagnostics.ProcessModule[] array, int index)7246         public void CopyTo(System.Diagnostics.ProcessModule[] array, int index) { }
IndexOf(System.Diagnostics.ProcessModule module)7247         public int IndexOf(System.Diagnostics.ProcessModule module) { throw null; }
7248     }
7249     public enum ProcessPriorityClass
7250     {
7251         AboveNormal = 32768,
7252         BelowNormal = 16384,
7253         High = 128,
7254         Idle = 64,
7255         Normal = 32,
7256         RealTime = 256,
7257     }
7258     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
7259     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
7260     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, SelfAffectingProcessMgmt=true)]
7261     public sealed partial class ProcessStartInfo
7262     {
ProcessStartInfo()7263         public ProcessStartInfo() { }
ProcessStartInfo(string fileName)7264         public ProcessStartInfo(string fileName) { }
ProcessStartInfo(string fileName, string arguments)7265         public ProcessStartInfo(string fileName, string arguments) { }
7266         [System.ComponentModel.DefaultValueAttribute("")]
7267         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7268         [System.ComponentModel.SettingsBindableAttribute(true)]
7269         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7270         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessArguments")]
7271         public string Arguments { get { throw null; } set { } }
7272         [System.ComponentModel.DefaultValueAttribute(false)]
7273         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7274         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessCreateNoWindow")]
7275         public bool CreateNoWindow { get { throw null; } set { } }
7276         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7277         public string Domain { get { throw null; } set { } }
7278         [System.ComponentModel.DefaultValueAttribute(null)]
7279         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7280         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7281         public System.Collections.Generic.IDictionary<string, string> Environment { get { throw null; } }
7282         [System.ComponentModel.DefaultValueAttribute(null)]
7283         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
7284         [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")]
7285         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7286         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessEnvironmentVariables")]
7287         public System.Collections.Specialized.StringDictionary EnvironmentVariables { get { throw null; } }
7288         [System.ComponentModel.DefaultValueAttribute(false)]
7289         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7290         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessErrorDialog")]
7291         public bool ErrorDialog { get { throw null; } set { } }
7292         [System.ComponentModel.BrowsableAttribute(false)]
7293         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7294         public System.IntPtr ErrorDialogParentHandle { get { throw null; } set { } }
7295         [System.ComponentModel.DefaultValueAttribute("")]
7296         [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")]
7297         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7298         [System.ComponentModel.SettingsBindableAttribute(true)]
7299         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7300         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessFileName")]
7301         public string FileName { get { throw null; } set { } }
7302         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7303         public bool LoadUserProfile { get { throw null; } set { } }
7304         public System.Security.SecureString Password { get { throw null; } set { } }
7305         [System.ComponentModel.BrowsableAttribute(false)]
7306         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7307         public string PasswordInClearText { get { throw null; } set { } }
7308         [System.ComponentModel.DefaultValueAttribute(false)]
7309         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7310         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessRedirectStandardError")]
7311         public bool RedirectStandardError { get { throw null; } set { } }
7312         [System.ComponentModel.DefaultValueAttribute(false)]
7313         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7314         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessRedirectStandardInput")]
7315         public bool RedirectStandardInput { get { throw null; } set { } }
7316         [System.ComponentModel.DefaultValueAttribute(false)]
7317         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7318         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessRedirectStandardOutput")]
7319         public bool RedirectStandardOutput { get { throw null; } set { } }
7320         public System.Text.Encoding StandardErrorEncoding { get { throw null; } set { } }
7321         public System.Text.Encoding StandardOutputEncoding { get { throw null; } set { } }
7322         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7323         public string UserName { get { throw null; } set { } }
7324         [System.ComponentModel.DefaultValueAttribute(true)]
7325         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7326         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessUseShellExecute")]
7327         public bool UseShellExecute { get { throw null; } set { } }
7328         [System.ComponentModel.DefaultValueAttribute("")]
7329         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7330         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.VerbConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7331         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessVerb")]
7332         public string Verb { get { throw null; } set { } }
7333         [System.ComponentModel.BrowsableAttribute(false)]
7334         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
7335         public string[] Verbs { get { throw null; } }
7336         [System.ComponentModel.DefaultValueAttribute((System.Diagnostics.ProcessWindowStyle)(0))]
7337         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7338         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessWindowStyle")]
7339         public System.Diagnostics.ProcessWindowStyle WindowStyle { get { throw null; } set { } }
7340         [System.ComponentModel.DefaultValueAttribute("")]
7341         [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")]
7342         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
7343         [System.ComponentModel.SettingsBindableAttribute(true)]
7344         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7345         [System.Diagnostics.MonitoringDescriptionAttribute("ProcessWorkingDirectory")]
7346         public string WorkingDirectory { get { throw null; } set { } }
7347     }
7348     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessThreadDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7349     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SelfAffectingProcessMgmt=true, SelfAffectingThreading=true)]
7350     public partial class ProcessThread : System.ComponentModel.Component
7351     {
ProcessThread()7352         internal ProcessThread() { }
7353         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadBasePriority")]
7354         public int BasePriority { get { throw null; } }
7355         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadCurrentPriority")]
7356         public int CurrentPriority { get { throw null; } }
7357         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadId")]
7358         public int Id { get { throw null; } }
7359         [System.ComponentModel.BrowsableAttribute(false)]
7360         public int IdealProcessor { set { } }
7361         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadPriorityBoostEnabled")]
7362         public bool PriorityBoostEnabled { get { throw null; } set { } }
7363         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadPriorityLevel")]
7364         public System.Diagnostics.ThreadPriorityLevel PriorityLevel { get { throw null; } set { } }
7365         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadPrivilegedProcessorTime")]
7366         public System.TimeSpan PrivilegedProcessorTime { get { throw null; } }
7367         [System.ComponentModel.BrowsableAttribute(false)]
7368         public System.IntPtr ProcessorAffinity { set { } }
7369         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadStartAddress")]
7370         public System.IntPtr StartAddress { get { throw null; } }
7371         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadStartTime")]
7372         public System.DateTime StartTime { get { throw null; } }
7373         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadThreadState")]
7374         public System.Diagnostics.ThreadState ThreadState { get { throw null; } }
7375         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadTotalProcessorTime")]
7376         public System.TimeSpan TotalProcessorTime { get { throw null; } }
7377         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadUserProcessorTime")]
7378         public System.TimeSpan UserProcessorTime { get { throw null; } }
7379         [System.Diagnostics.MonitoringDescriptionAttribute("ThreadWaitReason")]
7380         public System.Diagnostics.ThreadWaitReason WaitReason { get { throw null; } }
ResetIdealProcessor()7381         public void ResetIdealProcessor() { }
7382     }
7383     public partial class ProcessThreadCollection : System.Collections.ReadOnlyCollectionBase
7384     {
ProcessThreadCollection()7385         protected ProcessThreadCollection() { }
ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads)7386         public ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads) { }
7387         public System.Diagnostics.ProcessThread this[int index] { get { throw null; } }
Add(System.Diagnostics.ProcessThread thread)7388         public int Add(System.Diagnostics.ProcessThread thread) { throw null; }
Contains(System.Diagnostics.ProcessThread thread)7389         public bool Contains(System.Diagnostics.ProcessThread thread) { throw null; }
CopyTo(System.Diagnostics.ProcessThread[] array, int index)7390         public void CopyTo(System.Diagnostics.ProcessThread[] array, int index) { }
IndexOf(System.Diagnostics.ProcessThread thread)7391         public int IndexOf(System.Diagnostics.ProcessThread thread) { throw null; }
Insert(int index, System.Diagnostics.ProcessThread thread)7392         public void Insert(int index, System.Diagnostics.ProcessThread thread) { }
Remove(System.Diagnostics.ProcessThread thread)7393         public void Remove(System.Diagnostics.ProcessThread thread) { }
7394     }
7395     public enum ProcessWindowStyle
7396     {
7397         Hidden = 1,
7398         Maximized = 3,
7399         Minimized = 2,
7400         Normal = 0,
7401     }
7402     public partial class SourceFilter : System.Diagnostics.TraceFilter
7403     {
SourceFilter(string source)7404         public SourceFilter(string source) { }
7405         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)7406         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; }
7407     }
7408     [System.FlagsAttribute]
7409     public enum SourceLevels
7410     {
7411         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7412         ActivityTracing = 65280,
7413         All = -1,
7414         Critical = 1,
7415         Error = 3,
7416         Information = 15,
7417         Off = 0,
7418         Verbose = 31,
7419         Warning = 7,
7420     }
7421     public partial class SourceSwitch : System.Diagnostics.Switch
7422     {
SourceSwitch(string name)7423         public SourceSwitch(string name) : base (default(string), default(string)) { }
SourceSwitch(string displayName, string defaultSwitchValue)7424         public SourceSwitch(string displayName, string defaultSwitchValue) : base (default(string), default(string)) { }
7425         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()7426         protected override void OnValueChanged() { }
ShouldTrace(System.Diagnostics.TraceEventType eventType)7427         public bool ShouldTrace(System.Diagnostics.TraceEventType eventType) { throw null; }
7428     }
7429     public partial class Stopwatch
7430     {
7431         public static readonly long Frequency;
7432         public static readonly bool IsHighResolution;
Stopwatch()7433         public Stopwatch() { }
7434         public System.TimeSpan Elapsed { get { throw null; } }
7435         public long ElapsedMilliseconds { get { throw null; } }
7436         public long ElapsedTicks { get { throw null; } }
7437         public bool IsRunning { get { throw null; } }
GetTimestamp()7438         public static long GetTimestamp() { throw null; }
Reset()7439         public void Reset() { }
Restart()7440         public void Restart() { }
Start()7441         public void Start() { }
StartNew()7442         public static System.Diagnostics.Stopwatch StartNew() { throw null; }
Stop()7443         public void Stop() { }
7444     }
7445     public abstract partial class Switch
7446     {
Switch(string displayName, string description)7447         protected Switch(string displayName, string description) { }
Switch(string displayName, string description, string defaultSwitchValue)7448         protected Switch(string displayName, string description, string defaultSwitchValue) { }
7449 #if XML_DEP
7450         [System.Xml.Serialization.XmlIgnoreAttribute]
7451 #endif
7452         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
7453         public string Description { get { throw null; } }
7454         public string DisplayName { get { throw null; } }
7455         protected int SwitchSetting { get { throw null; } set { } }
7456         protected string Value { get { throw null; } set { } }
GetSupportedAttributes()7457         protected internal virtual string[] GetSupportedAttributes() { throw null; }
OnSwitchSettingChanged()7458         protected virtual void OnSwitchSettingChanged() { }
OnValueChanged()7459         protected virtual void OnValueChanged() { }
7460     }
7461     [System.AttributeUsageAttribute((System.AttributeTargets)(741))]
7462     public sealed partial class SwitchAttribute : System.Attribute
7463     {
SwitchAttribute(string switchName, System.Type switchType)7464         public SwitchAttribute(string switchName, System.Type switchType) { }
7465         public string SwitchDescription { get { throw null; } set { } }
7466         public string SwitchName { get { throw null; } set { } }
7467         public System.Type SwitchType { get { throw null; } set { } }
GetAll(System.Reflection.Assembly assembly)7468         public static System.Diagnostics.SwitchAttribute[] GetAll(System.Reflection.Assembly assembly) { throw null; }
7469     }
7470     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
7471     public sealed partial class SwitchLevelAttribute : System.Attribute
7472     {
SwitchLevelAttribute(System.Type switchLevelType)7473         public SwitchLevelAttribute(System.Type switchLevelType) { }
7474         public System.Type SwitchLevelType { get { throw null; } set { } }
7475     }
7476     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
7477     public partial class TextWriterTraceListener : System.Diagnostics.TraceListener
7478     {
TextWriterTraceListener()7479         public TextWriterTraceListener() { }
TextWriterTraceListener(System.IO.Stream stream)7480         public TextWriterTraceListener(System.IO.Stream stream) { }
TextWriterTraceListener(System.IO.Stream stream, string name)7481         public TextWriterTraceListener(System.IO.Stream stream, string name) { }
TextWriterTraceListener(System.IO.TextWriter writer)7482         public TextWriterTraceListener(System.IO.TextWriter writer) { }
TextWriterTraceListener(System.IO.TextWriter writer, string name)7483         public TextWriterTraceListener(System.IO.TextWriter writer, string name) { }
TextWriterTraceListener(string fileName)7484         public TextWriterTraceListener(string fileName) { }
TextWriterTraceListener(string fileName, string name)7485         public TextWriterTraceListener(string fileName, string name) { }
7486         public System.IO.TextWriter Writer { get { throw null; } set { } }
Close()7487         public override void Close() { }
Dispose(bool disposing)7488         protected override void Dispose(bool disposing) { }
Flush()7489         public override void Flush() { }
Write(string message)7490         public override void Write(string message) { }
WriteLine(string message)7491         public override void WriteLine(string message) { }
7492     }
7493     public enum ThreadPriorityLevel
7494     {
7495         AboveNormal = 1,
7496         BelowNormal = -1,
7497         Highest = 2,
7498         Idle = -15,
7499         Lowest = -2,
7500         Normal = 0,
7501         TimeCritical = 15,
7502     }
7503     public enum ThreadState
7504     {
7505         Initialized = 0,
7506         Ready = 1,
7507         Running = 2,
7508         Standby = 3,
7509         Terminated = 4,
7510         Transition = 6,
7511         Unknown = 7,
7512         Wait = 5,
7513     }
7514     public enum ThreadWaitReason
7515     {
7516         EventPairHigh = 7,
7517         EventPairLow = 8,
7518         ExecutionDelay = 4,
7519         Executive = 0,
7520         FreePage = 1,
7521         LpcReceive = 9,
7522         LpcReply = 10,
7523         PageIn = 2,
7524         PageOut = 12,
7525         Suspended = 5,
7526         SystemAllocation = 3,
7527         Unknown = 13,
7528         UserRequest = 6,
7529         VirtualMemory = 11,
7530     }
7531     public sealed partial class Trace
7532     {
Trace()7533         internal Trace() { }
7534         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 { } }
7535         public static System.Diagnostics.CorrelationManager CorrelationManager { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
7536         public static int IndentLevel { get { throw null; } set { } }
7537         public static int IndentSize { get { throw null; } set { } }
7538         public static System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]get { throw null; } }
7539         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 { } }
7540         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition)7541         public static void Assert(bool condition) { }
7542         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition, string message)7543         public static void Assert(bool condition, string message) { }
7544         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition, string message, string detailMessage)7545         public static void Assert(bool condition, string message, string detailMessage) { }
7546         [System.Diagnostics.ConditionalAttribute("TRACE")]
Close()7547         public static void Close() { }
7548         [System.Diagnostics.ConditionalAttribute("TRACE")]
Fail(string message)7549         public static void Fail(string message) { }
7550         [System.Diagnostics.ConditionalAttribute("TRACE")]
Fail(string message, string detailMessage)7551         public static void Fail(string message, string detailMessage) { }
7552         [System.Diagnostics.ConditionalAttribute("TRACE")]
Flush()7553         public static void Flush() { }
7554         [System.Diagnostics.ConditionalAttribute("TRACE")]
Indent()7555         public static void Indent() { }
Refresh()7556         public static void Refresh() { }
7557         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceError(string message)7558         public static void TraceError(string message) { }
7559         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceError(string format, params object[] args)7560         public static void TraceError(string format, params object[] args) { }
7561         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string message)7562         public static void TraceInformation(string message) { }
7563         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string format, params object[] args)7564         public static void TraceInformation(string format, params object[] args) { }
7565         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceWarning(string message)7566         public static void TraceWarning(string message) { }
7567         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceWarning(string format, params object[] args)7568         public static void TraceWarning(string format, params object[] args) { }
7569         [System.Diagnostics.ConditionalAttribute("TRACE")]
Unindent()7570         public static void Unindent() { }
7571         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(object value)7572         public static void Write(object value) { }
7573         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(object value, string category)7574         public static void Write(object value, string category) { }
7575         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(string message)7576         public static void Write(string message) { }
7577         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(string message, string category)7578         public static void Write(string message, string category) { }
7579         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, object value)7580         public static void WriteIf(bool condition, object value) { }
7581         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, object value, string category)7582         public static void WriteIf(bool condition, object value, string category) { }
7583         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, string message)7584         public static void WriteIf(bool condition, string message) { }
7585         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, string message, string category)7586         public static void WriteIf(bool condition, string message, string category) { }
7587         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(object value)7588         public static void WriteLine(object value) { }
7589         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(object value, string category)7590         public static void WriteLine(object value, string category) { }
7591         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(string message)7592         public static void WriteLine(string message) { }
7593         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(string message, string category)7594         public static void WriteLine(string message, string category) { }
7595         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, object value)7596         public static void WriteLineIf(bool condition, object value) { }
7597         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, object value, string category)7598         public static void WriteLineIf(bool condition, object value, string category) { }
7599         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, string message)7600         public static void WriteLineIf(bool condition, string message) { }
7601         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, string message, string category)7602         public static void WriteLineIf(bool condition, string message, string category) { }
7603     }
7604     public partial class TraceEventCache
7605     {
TraceEventCache()7606         public TraceEventCache() { }
7607         public string Callstack { get { throw null; } }
7608         public System.DateTime DateTime { get { throw null; } }
7609         public System.Collections.Stack LogicalOperationStack { get { throw null; } }
7610         public int ProcessId { get { throw null; } }
7611         public string ThreadId { get { throw null; } }
7612         public long Timestamp { get { throw null; } }
7613     }
7614     public enum TraceEventType
7615     {
7616         Critical = 1,
7617         Error = 2,
7618         Information = 8,
7619         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7620         Resume = 2048,
7621         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7622         Start = 256,
7623         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7624         Stop = 512,
7625         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7626         Suspend = 1024,
7627         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
7628         Transfer = 4096,
7629         Verbose = 16,
7630         Warning = 4,
7631     }
7632     public abstract partial class TraceFilter
7633     {
TraceFilter()7634         protected TraceFilter() { }
ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data)7635         public abstract bool ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data);
7636     }
7637     public enum TraceLevel
7638     {
7639         Error = 1,
7640         Info = 3,
7641         Off = 0,
7642         Verbose = 4,
7643         Warning = 2,
7644     }
7645     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
7646     public abstract partial class TraceListener : System.MarshalByRefObject, System.IDisposable
7647     {
TraceListener()7648         protected TraceListener() { }
TraceListener(string name)7649         protected TraceListener(string name) { }
7650         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
7651         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7652         public System.Diagnostics.TraceFilter Filter { get { throw null; } set { } }
7653         public int IndentLevel { get { throw null; } set { } }
7654         public int IndentSize { get { throw null; } set { } }
7655         public virtual bool IsThreadSafe { get { throw null; } }
7656         public virtual string Name { get { throw null; } set { } }
7657         protected bool NeedIndent { get { throw null; } set { } }
7658         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
7659         public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } }
Close()7660         public virtual void Close() { }
Dispose()7661         public void Dispose() { }
Dispose(bool disposing)7662         protected virtual void Dispose(bool disposing) { }
Fail(string message)7663         public virtual void Fail(string message) { }
Fail(string message, string detailMessage)7664         public virtual void Fail(string message, string detailMessage) { }
Flush()7665         public virtual void Flush() { }
GetSupportedAttributes()7666         protected internal virtual string[] GetSupportedAttributes() { throw null; }
7667         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)7668         public virtual void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
7669         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data)7670         public virtual void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
7671         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id)7672         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id) { }
7673         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message)7674         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
7675         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)7676         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
7677         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId)7678         public virtual void TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId) { }
Write(object o)7679         public virtual void Write(object o) { }
Write(object o, string category)7680         public virtual void Write(object o, string category) { }
Write(string message)7681         public abstract void Write(string message);
Write(string message, string category)7682         public virtual void Write(string message, string category) { }
WriteIndent()7683         protected virtual void WriteIndent() { }
WriteLine(object o)7684         public virtual void WriteLine(object o) { }
WriteLine(object o, string category)7685         public virtual void WriteLine(object o, string category) { }
WriteLine(string message)7686         public abstract void WriteLine(string message);
WriteLine(string message, string category)7687         public virtual void WriteLine(string message, string category) { }
7688     }
7689     public partial class TraceListenerCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
7690     {
TraceListenerCollection()7691         internal TraceListenerCollection() { }
7692         public int Count { get { throw null; } }
7693         public System.Diagnostics.TraceListener this[int i] { get { throw null; } set { } }
7694         public System.Diagnostics.TraceListener this[string name] { get { throw null; } }
7695         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
7696         object System.Collections.ICollection.SyncRoot { get { throw null; } }
7697         bool System.Collections.IList.IsFixedSize { get { throw null; } }
7698         bool System.Collections.IList.IsReadOnly { get { throw null; } }
7699         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.TraceListener listener)7700         public int Add(System.Diagnostics.TraceListener listener) { throw null; }
AddRange(System.Diagnostics.TraceListenerCollection value)7701         public void AddRange(System.Diagnostics.TraceListenerCollection value) { }
AddRange(System.Diagnostics.TraceListener[] value)7702         public void AddRange(System.Diagnostics.TraceListener[] value) { }
Clear()7703         public void Clear() { }
Contains(System.Diagnostics.TraceListener listener)7704         public bool Contains(System.Diagnostics.TraceListener listener) { throw null; }
CopyTo(System.Diagnostics.TraceListener[] listeners, int index)7705         public void CopyTo(System.Diagnostics.TraceListener[] listeners, int index) { }
GetEnumerator()7706         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.Diagnostics.TraceListener listener)7707         public int IndexOf(System.Diagnostics.TraceListener listener) { throw null; }
Insert(int index, System.Diagnostics.TraceListener listener)7708         public void Insert(int index, System.Diagnostics.TraceListener listener) { }
Remove(System.Diagnostics.TraceListener listener)7709         public void Remove(System.Diagnostics.TraceListener listener) { }
Remove(string name)7710         public void Remove(string name) { }
RemoveAt(int index)7711         public void RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)7712         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IList.Add(object value)7713         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Contains(object value)7714         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)7715         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)7716         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)7717         void System.Collections.IList.Remove(object value) { }
7718     }
7719     [System.FlagsAttribute]
7720     public enum TraceOptions
7721     {
7722         Callstack = 32,
7723         DateTime = 2,
7724         LogicalOperationStack = 1,
7725         None = 0,
7726         ProcessId = 8,
7727         ThreadId = 16,
7728         Timestamp = 4,
7729     }
7730     public partial class TraceSource
7731     {
TraceSource(string name)7732         public TraceSource(string name) { }
TraceSource(string name, System.Diagnostics.SourceLevels defaultLevel)7733         public TraceSource(string name, System.Diagnostics.SourceLevels defaultLevel) { }
7734         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
7735         public System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
7736         public string Name { get { throw null; } }
7737         public System.Diagnostics.SourceSwitch Switch { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
7738         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Close()7739         public void Close() { }
Flush()7740         public void Flush() { }
GetSupportedAttributes()7741         protected internal virtual string[] GetSupportedAttributes() { throw null; }
7742         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceData(System.Diagnostics.TraceEventType eventType, int id, object data)7743         public void TraceData(System.Diagnostics.TraceEventType eventType, int id, object data) { }
7744         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceData(System.Diagnostics.TraceEventType eventType, int id, params object[] data)7745         public void TraceData(System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
7746         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id)7747         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id) { }
7748         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string message)7749         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string message) { }
7750         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)7751         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
7752         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string message)7753         public void TraceInformation(string message) { }
7754         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string format, params object[] args)7755         public void TraceInformation(string format, params object[] args) { }
7756         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceTransfer(int id, string message, System.Guid relatedActivityId)7757         public void TraceTransfer(int id, string message, System.Guid relatedActivityId) { }
7758     }
7759     [System.Diagnostics.SwitchLevelAttribute(typeof(System.Diagnostics.TraceLevel))]
7760     public partial class TraceSwitch : System.Diagnostics.Switch
7761     {
TraceSwitch(string displayName, string description)7762         public TraceSwitch(string displayName, string description) : base (default(string), default(string)) { }
TraceSwitch(string displayName, string description, string defaultSwitchValue)7763         public TraceSwitch(string displayName, string description, string defaultSwitchValue) : base (default(string), default(string)) { }
7764         public System.Diagnostics.TraceLevel Level { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
7765         public bool TraceError { get { throw null; } }
7766         public bool TraceInfo { get { throw null; } }
7767         public bool TraceVerbose { get { throw null; } }
7768         public bool TraceWarning { get { throw null; } }
OnSwitchSettingChanged()7769         protected override void OnSwitchSettingChanged() { }
OnValueChanged()7770         protected override void OnValueChanged() { }
7771     }
7772     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
7773     public partial class XmlWriterTraceListener : System.Diagnostics.TextWriterTraceListener
7774     {
XmlWriterTraceListener(System.IO.Stream stream)7775         public XmlWriterTraceListener(System.IO.Stream stream) { }
XmlWriterTraceListener(System.IO.Stream stream, string name)7776         public XmlWriterTraceListener(System.IO.Stream stream, string name) { }
XmlWriterTraceListener(System.IO.TextWriter writer)7777         public XmlWriterTraceListener(System.IO.TextWriter writer) { }
XmlWriterTraceListener(System.IO.TextWriter writer, string name)7778         public XmlWriterTraceListener(System.IO.TextWriter writer, string name) { }
XmlWriterTraceListener(string filename)7779         public XmlWriterTraceListener(string filename) { }
XmlWriterTraceListener(string filename, string name)7780         public XmlWriterTraceListener(string filename, string name) { }
Close()7781         public override void Close() { }
Fail(string message, string detailMessage)7782         public override void Fail(string message, string detailMessage) { }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)7783         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)7784         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)7785         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)7786         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)7787         public override void TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId) { }
Write(string message)7788         public override void Write(string message) { }
WriteLine(string message)7789         public override void WriteLine(string message) { }
7790     }
7791 }
7792 namespace System.Diagnostics.CodeAnalysis
7793 {
7794     [System.AttributeUsageAttribute((System.AttributeTargets)(748), Inherited=false, AllowMultiple=false)]
7795     public sealed partial class ExcludeFromCodeCoverageAttribute : System.Attribute
7796     {
ExcludeFromCodeCoverageAttribute()7797         public ExcludeFromCodeCoverageAttribute() { }
7798     }
7799 }
7800 namespace System.IO
7801 {
7802     public partial class ErrorEventArgs : System.EventArgs
7803     {
ErrorEventArgs(System.Exception exception)7804         public ErrorEventArgs(System.Exception exception) { }
GetException()7805         public virtual System.Exception GetException() { throw null; }
7806     }
ErrorEventHandler(object sender, System.IO.ErrorEventArgs e)7807     public delegate void ErrorEventHandler(object sender, System.IO.ErrorEventArgs e);
7808     public partial class FileSystemEventArgs : System.EventArgs
7809     {
FileSystemEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name)7810         public FileSystemEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name) { }
7811         public System.IO.WatcherChangeTypes ChangeType { get { throw null; } }
7812         public string FullPath { get { throw null; } }
7813         public string Name { get { throw null; } }
7814     }
FileSystemEventHandler(object sender, System.IO.FileSystemEventArgs e)7815     public delegate void FileSystemEventHandler(object sender, System.IO.FileSystemEventArgs e);
7816     [System.ComponentModel.DefaultEventAttribute("Changed")]
7817     [System.IO.IODescriptionAttribute("FileSystemWatcherDesc")]
7818     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
7819     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
7820     public partial class FileSystemWatcher : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
7821     {
FileSystemWatcher()7822         public FileSystemWatcher() { }
FileSystemWatcher(string path)7823         public FileSystemWatcher(string path) { }
FileSystemWatcher(string path, string filter)7824         public FileSystemWatcher(string path, string filter) { }
7825         [System.ComponentModel.DefaultValueAttribute(false)]
7826         [System.IO.IODescriptionAttribute("FSW_Enabled")]
7827         public bool EnableRaisingEvents { get { throw null; } set { } }
7828         [System.ComponentModel.DefaultValueAttribute("*.*")]
7829         [System.ComponentModel.SettingsBindableAttribute(true)]
7830         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7831         [System.IO.IODescriptionAttribute("FSW_Filter")]
7832         public string Filter { get { throw null; } set { } }
7833         [System.ComponentModel.DefaultValueAttribute(false)]
7834         [System.IO.IODescriptionAttribute("FSW_IncludeSubdirectories")]
7835         public bool IncludeSubdirectories { get { throw null; } set { } }
7836         [System.ComponentModel.BrowsableAttribute(false)]
7837         [System.ComponentModel.DefaultValueAttribute(8192)]
7838         public int InternalBufferSize { get { throw null; } set { } }
7839         [System.ComponentModel.DefaultValueAttribute((System.IO.NotifyFilters)(19))]
7840         [System.IO.IODescriptionAttribute("FSW_ChangedFilter")]
7841         public System.IO.NotifyFilters NotifyFilter { get { throw null; } set { } }
7842         [System.ComponentModel.DefaultValueAttribute("")]
7843         [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")]
7844         [System.ComponentModel.SettingsBindableAttribute(true)]
7845         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
7846         [System.IO.IODescriptionAttribute("FSW_Path")]
7847         public string Path { get { throw null; } set { } }
7848         [System.ComponentModel.BrowsableAttribute(false)]
7849         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
7850         [System.ComponentModel.BrowsableAttribute(false)]
7851         [System.ComponentModel.DefaultValueAttribute(null)]
7852         [System.IO.IODescriptionAttribute("FSW_SynchronizingObject")]
7853         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
7854         [System.IO.IODescriptionAttribute("FSW_Changed")]
7855         public event System.IO.FileSystemEventHandler Changed { add { } remove { } }
7856         [System.IO.IODescriptionAttribute("FSW_Created")]
7857         public event System.IO.FileSystemEventHandler Created { add { } remove { } }
7858         [System.IO.IODescriptionAttribute("FSW_Deleted")]
7859         public event System.IO.FileSystemEventHandler Deleted { add { } remove { } }
7860         [System.ComponentModel.BrowsableAttribute(false)]
7861         public event System.IO.ErrorEventHandler Error { add { } remove { } }
7862         [System.IO.IODescriptionAttribute("FSW_Renamed")]
7863         public event System.IO.RenamedEventHandler Renamed { add { } remove { } }
BeginInit()7864         public void BeginInit() { }
Dispose(bool disposing)7865         protected override void Dispose(bool disposing) { }
EndInit()7866         public void EndInit() { }
OnChanged(System.IO.FileSystemEventArgs e)7867         protected void OnChanged(System.IO.FileSystemEventArgs e) { }
OnCreated(System.IO.FileSystemEventArgs e)7868         protected void OnCreated(System.IO.FileSystemEventArgs e) { }
OnDeleted(System.IO.FileSystemEventArgs e)7869         protected void OnDeleted(System.IO.FileSystemEventArgs e) { }
OnError(System.IO.ErrorEventArgs e)7870         protected void OnError(System.IO.ErrorEventArgs e) { }
OnRenamed(System.IO.RenamedEventArgs e)7871         protected void OnRenamed(System.IO.RenamedEventArgs e) { }
WaitForChanged(System.IO.WatcherChangeTypes changeType)7872         public System.IO.WaitForChangedResult WaitForChanged(System.IO.WatcherChangeTypes changeType) { throw null; }
WaitForChanged(System.IO.WatcherChangeTypes changeType, int timeout)7873         public System.IO.WaitForChangedResult WaitForChanged(System.IO.WatcherChangeTypes changeType, int timeout) { throw null; }
7874     }
7875     [System.SerializableAttribute]
7876     public partial class InternalBufferOverflowException : System.SystemException
7877     {
InternalBufferOverflowException()7878         public InternalBufferOverflowException() { }
InternalBufferOverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7879         protected InternalBufferOverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InternalBufferOverflowException(string message)7880         public InternalBufferOverflowException(string message) { }
InternalBufferOverflowException(string message, System.Exception inner)7881         public InternalBufferOverflowException(string message, System.Exception inner) { }
7882     }
7883     [System.SerializableAttribute]
7884     public sealed partial class InvalidDataException : System.SystemException
7885     {
InvalidDataException()7886         public InvalidDataException() { }
InvalidDataException(string message)7887         public InvalidDataException(string message) { }
InvalidDataException(string message, System.Exception innerException)7888         public InvalidDataException(string message, System.Exception innerException) { }
7889     }
7890     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
7891     public partial class IODescriptionAttribute : System.ComponentModel.DescriptionAttribute
7892     {
IODescriptionAttribute(string description)7893         public IODescriptionAttribute(string description) { }
7894         public override string Description { get { throw null; } }
7895     }
7896     [System.FlagsAttribute]
7897     public enum NotifyFilters
7898     {
7899         Attributes = 4,
7900         CreationTime = 64,
7901         DirectoryName = 2,
7902         FileName = 1,
7903         LastAccess = 32,
7904         LastWrite = 16,
7905         Security = 256,
7906         Size = 8,
7907     }
7908     public partial class RenamedEventArgs : System.IO.FileSystemEventArgs
7909     {
RenamedEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name, string oldName)7910         public RenamedEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name, string oldName) : base (default(System.IO.WatcherChangeTypes), default(string), default(string)) { }
7911         public string OldFullPath { get { throw null; } }
7912         public string OldName { get { throw null; } }
7913     }
RenamedEventHandler(object sender, System.IO.RenamedEventArgs e)7914     public delegate void RenamedEventHandler(object sender, System.IO.RenamedEventArgs e);
7915     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
7916     public partial struct WaitForChangedResult
7917     {
7918         public System.IO.WatcherChangeTypes ChangeType { get { throw null; } set { } }
7919         public string Name { get { throw null; } set { } }
7920         public string OldName { get { throw null; } set { } }
7921         public bool TimedOut { get { throw null; } set { } }
7922     }
7923     [System.FlagsAttribute]
7924     public enum WatcherChangeTypes
7925     {
7926         All = 15,
7927         Changed = 4,
7928         Created = 1,
7929         Deleted = 2,
7930         Renamed = 8,
7931     }
7932 }
7933 namespace System.IO.Compression
7934 {
7935     public enum CompressionLevel
7936     {
7937         Fastest = 1,
7938         NoCompression = 2,
7939         Optimal = 0,
7940     }
7941     public enum CompressionMode
7942     {
7943         Compress = 1,
7944         Decompress = 0,
7945     }
7946     public partial class DeflateStream : System.IO.Stream
7947     {
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel)7948         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen)7949         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode)7950         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen)7951         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
7952         public System.IO.Stream BaseStream { get { throw null; } }
7953         public override bool CanRead { get { throw null; } }
7954         public override bool CanSeek { get { throw null; } }
7955         public override bool CanWrite { get { throw null; } }
7956         public override long Length { get { throw null; } }
7957         public override long Position { get { throw null; } set { } }
7958         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7959         public override System.IAsyncResult BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7960         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7961         public override System.IAsyncResult BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)7962         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)7963         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)7964         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()7965         public override void Flush() { }
Read(byte[] array, int offset, int count)7966         public override int Read(byte[] array, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)7967         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)7968         public override void SetLength(long value) { }
Write(byte[] array, int offset, int count)7969         public override void Write(byte[] array, int offset, int count) { }
7970     }
7971     public partial class GZipStream : System.IO.Stream
7972     {
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel)7973         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen)7974         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode)7975         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen)7976         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
7977         public System.IO.Stream BaseStream { get { throw null; } }
7978         public override bool CanRead { get { throw null; } }
7979         public override bool CanSeek { get { throw null; } }
7980         public override bool CanWrite { get { throw null; } }
7981         public override long Length { get { throw null; } }
7982         public override long Position { get { throw null; } set { } }
7983         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7984         public override System.IAsyncResult BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7985         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7986         public override System.IAsyncResult BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)7987         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)7988         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)7989         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()7990         public override void Flush() { }
Read(byte[] array, int offset, int count)7991         public override int Read(byte[] array, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)7992         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)7993         public override void SetLength(long value) { }
Write(byte[] array, int offset, int count)7994         public override void Write(byte[] array, int offset, int count) { }
7995     }
7996 }
7997 namespace System.IO.Ports
7998 {
7999     public enum Handshake
8000     {
8001         None = 0,
8002         RequestToSend = 2,
8003         RequestToSendXOnXOff = 3,
8004         XOnXOff = 1,
8005     }
8006     public enum Parity
8007     {
8008         Even = 2,
8009         Mark = 3,
8010         None = 0,
8011         Odd = 1,
8012         Space = 4,
8013     }
8014     public enum SerialData
8015     {
8016         Chars = 1,
8017         Eof = 2,
8018     }
8019     public partial class SerialDataReceivedEventArgs : System.EventArgs
8020     {
SerialDataReceivedEventArgs()8021         internal SerialDataReceivedEventArgs() { }
8022         public System.IO.Ports.SerialData EventType { get { throw null; } }
8023     }
SerialDataReceivedEventHandler(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)8024     public delegate void SerialDataReceivedEventHandler(object sender, System.IO.Ports.SerialDataReceivedEventArgs e);
8025     public enum SerialError
8026     {
8027         Frame = 8,
8028         Overrun = 2,
8029         RXOver = 1,
8030         RXParity = 4,
8031         TXFull = 256,
8032     }
8033     public partial class SerialErrorReceivedEventArgs : System.EventArgs
8034     {
SerialErrorReceivedEventArgs()8035         internal SerialErrorReceivedEventArgs() { }
8036         public System.IO.Ports.SerialError EventType { get { throw null; } }
8037     }
SerialErrorReceivedEventHandler(object sender, System.IO.Ports.SerialErrorReceivedEventArgs e)8038     public delegate void SerialErrorReceivedEventHandler(object sender, System.IO.Ports.SerialErrorReceivedEventArgs e);
8039     public enum SerialPinChange
8040     {
8041         Break = 64,
8042         CDChanged = 32,
8043         CtsChanged = 8,
8044         DsrChanged = 16,
8045         Ring = 256,
8046     }
8047     public partial class SerialPinChangedEventArgs : System.EventArgs
8048     {
SerialPinChangedEventArgs()8049         internal SerialPinChangedEventArgs() { }
8050         public System.IO.Ports.SerialPinChange EventType { get { throw null; } }
8051     }
SerialPinChangedEventHandler(object sender, System.IO.Ports.SerialPinChangedEventArgs e)8052     public delegate void SerialPinChangedEventHandler(object sender, System.IO.Ports.SerialPinChangedEventArgs e);
8053     [System.Diagnostics.MonitoringDescriptionAttribute("SerialPortDesc")]
8054     public partial class SerialPort : System.ComponentModel.Component
8055     {
8056         public const int InfiniteTimeout = -1;
SerialPort()8057         public SerialPort() { }
SerialPort(System.ComponentModel.IContainer container)8058         public SerialPort(System.ComponentModel.IContainer container) { }
SerialPort(string portName)8059         public SerialPort(string portName) { }
SerialPort(string portName, int baudRate)8060         public SerialPort(string portName, int baudRate) { }
SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity)8061         public SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity) { }
SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits)8062         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)8063         public SerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits, System.IO.Ports.StopBits stopBits) { }
8064         [System.ComponentModel.BrowsableAttribute(false)]
8065         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8066         public System.IO.Stream BaseStream { get { throw null; } }
8067         [System.ComponentModel.BrowsableAttribute(true)]
8068         [System.ComponentModel.DefaultValueAttribute(9600)]
8069         [System.Diagnostics.MonitoringDescriptionAttribute("BaudRate")]
8070         public int BaudRate { get { throw null; } set { } }
8071         [System.ComponentModel.BrowsableAttribute(false)]
8072         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8073         public bool BreakState { get { throw null; } set { } }
8074         [System.ComponentModel.BrowsableAttribute(false)]
8075         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8076         public int BytesToRead { get { throw null; } }
8077         [System.ComponentModel.BrowsableAttribute(false)]
8078         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8079         public int BytesToWrite { get { throw null; } }
8080         [System.ComponentModel.BrowsableAttribute(false)]
8081         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8082         public bool CDHolding { get { throw null; } }
8083         [System.ComponentModel.BrowsableAttribute(false)]
8084         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8085         public bool CtsHolding { get { throw null; } }
8086         [System.ComponentModel.BrowsableAttribute(true)]
8087         [System.ComponentModel.DefaultValueAttribute(8)]
8088         [System.Diagnostics.MonitoringDescriptionAttribute("DataBits")]
8089         public int DataBits { get { throw null; } set { } }
8090         [System.ComponentModel.BrowsableAttribute(true)]
8091         [System.ComponentModel.DefaultValueAttribute(false)]
8092         [System.Diagnostics.MonitoringDescriptionAttribute("DiscardNull")]
8093         public bool DiscardNull { get { throw null; } set { } }
8094         [System.ComponentModel.BrowsableAttribute(false)]
8095         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8096         public bool DsrHolding { get { throw null; } }
8097         [System.ComponentModel.BrowsableAttribute(true)]
8098         [System.ComponentModel.DefaultValueAttribute(false)]
8099         [System.Diagnostics.MonitoringDescriptionAttribute("DtrEnable")]
8100         public bool DtrEnable { get { throw null; } set { } }
8101         [System.ComponentModel.BrowsableAttribute(false)]
8102         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
8103         [System.Diagnostics.MonitoringDescriptionAttribute("Encoding")]
8104         public System.Text.Encoding Encoding { get { throw null; } set { } }
8105         [System.ComponentModel.BrowsableAttribute(true)]
8106         [System.ComponentModel.DefaultValueAttribute((System.IO.Ports.Handshake)(0))]
8107         [System.Diagnostics.MonitoringDescriptionAttribute("Handshake")]
8108         public System.IO.Ports.Handshake Handshake { get { throw null; } set { } }
8109         [System.ComponentModel.BrowsableAttribute(false)]
8110         public bool IsOpen { get { throw null; } }
8111         [System.ComponentModel.BrowsableAttribute(false)]
8112         [System.ComponentModel.DefaultValueAttribute("\n")]
8113         [System.Diagnostics.MonitoringDescriptionAttribute("NewLine")]
8114         public string NewLine { get { throw null; } set { } }
8115         [System.ComponentModel.BrowsableAttribute(true)]
8116         [System.ComponentModel.DefaultValueAttribute((System.IO.Ports.Parity)(0))]
8117         [System.Diagnostics.MonitoringDescriptionAttribute("Parity")]
8118         public System.IO.Ports.Parity Parity { get { throw null; } set { } }
8119         [System.ComponentModel.BrowsableAttribute(true)]
8120         [System.ComponentModel.DefaultValueAttribute((byte)63)]
8121         [System.Diagnostics.MonitoringDescriptionAttribute("ParityReplace")]
8122         public byte ParityReplace { get { throw null; } set { } }
8123         [System.ComponentModel.BrowsableAttribute(true)]
8124         [System.ComponentModel.DefaultValueAttribute("COM1")]
8125         [System.Diagnostics.MonitoringDescriptionAttribute("PortName")]
8126         public string PortName { get { throw null; } set { } }
8127         [System.ComponentModel.BrowsableAttribute(true)]
8128         [System.ComponentModel.DefaultValueAttribute(4096)]
8129         [System.Diagnostics.MonitoringDescriptionAttribute("ReadBufferSize")]
8130         public int ReadBufferSize { get { throw null; } set { } }
8131         [System.ComponentModel.BrowsableAttribute(true)]
8132         [System.ComponentModel.DefaultValueAttribute(-1)]
8133         [System.Diagnostics.MonitoringDescriptionAttribute("ReadTimeout")]
8134         public int ReadTimeout { get { throw null; } set { } }
8135         [System.ComponentModel.BrowsableAttribute(true)]
8136         [System.ComponentModel.DefaultValueAttribute(1)]
8137         [System.Diagnostics.MonitoringDescriptionAttribute("ReceivedBytesThreshold")]
8138         public int ReceivedBytesThreshold { get { throw null; } set { } }
8139         [System.ComponentModel.BrowsableAttribute(true)]
8140         [System.ComponentModel.DefaultValueAttribute(false)]
8141         [System.Diagnostics.MonitoringDescriptionAttribute("RtsEnable")]
8142         public bool RtsEnable { get { throw null; } set { } }
8143         [System.ComponentModel.BrowsableAttribute(true)]
8144         [System.ComponentModel.DefaultValueAttribute((System.IO.Ports.StopBits)(1))]
8145         [System.Diagnostics.MonitoringDescriptionAttribute("StopBits")]
8146         public System.IO.Ports.StopBits StopBits { get { throw null; } set { } }
8147         [System.ComponentModel.BrowsableAttribute(true)]
8148         [System.ComponentModel.DefaultValueAttribute(2048)]
8149         [System.Diagnostics.MonitoringDescriptionAttribute("WriteBufferSize")]
8150         public int WriteBufferSize { get { throw null; } set { } }
8151         [System.ComponentModel.BrowsableAttribute(true)]
8152         [System.ComponentModel.DefaultValueAttribute(-1)]
8153         [System.Diagnostics.MonitoringDescriptionAttribute("WriteTimeout")]
8154         public int WriteTimeout { get { throw null; } set { } }
8155         [System.Diagnostics.MonitoringDescriptionAttribute("SerialDataReceived")]
8156         public event System.IO.Ports.SerialDataReceivedEventHandler DataReceived { add { } remove { } }
8157         [System.Diagnostics.MonitoringDescriptionAttribute("SerialErrorReceived")]
8158         public event System.IO.Ports.SerialErrorReceivedEventHandler ErrorReceived { add { } remove { } }
8159         [System.Diagnostics.MonitoringDescriptionAttribute("SerialPinChanged")]
8160         public event System.IO.Ports.SerialPinChangedEventHandler PinChanged { add { } remove { } }
Close()8161         public void Close() { }
DiscardInBuffer()8162         public void DiscardInBuffer() { }
DiscardOutBuffer()8163         public void DiscardOutBuffer() { }
Dispose(bool disposing)8164         protected override void Dispose(bool disposing) { }
GetPortNames()8165         public static string[] GetPortNames() { throw null; }
Open()8166         public void Open() { }
Read(byte[] buffer, int offset, int count)8167         public int Read(byte[] buffer, int offset, int count) { throw null; }
Read(char[] buffer, int offset, int count)8168         public int Read(char[] buffer, int offset, int count) { throw null; }
ReadByte()8169         public int ReadByte() { throw null; }
ReadChar()8170         public int ReadChar() { throw null; }
ReadExisting()8171         public string ReadExisting() { throw null; }
ReadLine()8172         public string ReadLine() { throw null; }
ReadTo(string value)8173         public string ReadTo(string value) { throw null; }
Write(byte[] buffer, int offset, int count)8174         public void Write(byte[] buffer, int offset, int count) { }
Write(char[] buffer, int offset, int count)8175         public void Write(char[] buffer, int offset, int count) { }
Write(string text)8176         public void Write(string text) { }
WriteLine(string text)8177         public void WriteLine(string text) { }
8178     }
8179     public enum StopBits
8180     {
8181         None = 0,
8182         One = 1,
8183         OnePointFive = 3,
8184         Two = 2,
8185     }
8186 }
8187 namespace System.Media
8188 {
8189     [System.ComponentModel.ToolboxItemAttribute(false)]
8190     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UI=true)]
8191     [System.SerializableAttribute]
8192     public partial class SoundPlayer : System.ComponentModel.Component, System.Runtime.Serialization.ISerializable
8193     {
SoundPlayer()8194         public SoundPlayer() { }
SoundPlayer(System.IO.Stream stream)8195         public SoundPlayer(System.IO.Stream stream) { }
SoundPlayer(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context)8196         protected SoundPlayer(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) { }
SoundPlayer(string soundLocation)8197         public SoundPlayer(string soundLocation) { }
8198         public bool IsLoadCompleted { get { throw null; } }
8199         public int LoadTimeout { get { throw null; } set { } }
8200         public string SoundLocation { get { throw null; } set { } }
8201         public System.IO.Stream Stream { get { throw null; } set { } }
8202         public object Tag { get { throw null; } set { } }
8203         public event System.ComponentModel.AsyncCompletedEventHandler LoadCompleted { add { } remove { } }
8204         public event System.EventHandler SoundLocationChanged { add { } remove { } }
8205         public event System.EventHandler StreamChanged { add { } remove { } }
Load()8206         public void Load() { }
LoadAsync()8207         public void LoadAsync() { }
OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs e)8208         protected virtual void OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
OnSoundLocationChanged(System.EventArgs e)8209         protected virtual void OnSoundLocationChanged(System.EventArgs e) { }
OnStreamChanged(System.EventArgs e)8210         protected virtual void OnStreamChanged(System.EventArgs e) { }
Play()8211         public void Play() { }
PlayLooping()8212         public void PlayLooping() { }
PlaySync()8213         public void PlaySync() { }
Stop()8214         public void Stop() { }
8215         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)8216         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
8217     }
8218     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UI=true)]
8219     public partial class SystemSound
8220     {
SystemSound()8221         internal SystemSound() { }
Play()8222         public void Play() { }
8223     }
8224     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UI=true)]
8225     public sealed partial class SystemSounds
8226     {
SystemSounds()8227         internal SystemSounds() { }
8228         public static System.Media.SystemSound Asterisk { get { throw null; } }
8229         public static System.Media.SystemSound Beep { get { throw null; } }
8230         public static System.Media.SystemSound Exclamation { get { throw null; } }
8231         public static System.Media.SystemSound Hand { get { throw null; } }
8232         public static System.Media.SystemSound Question { get { throw null; } }
8233     }
8234 }
8235 namespace System.Net
8236 {
8237     public partial class AuthenticationManager
8238     {
AuthenticationManager()8239         internal AuthenticationManager() { }
8240         public static System.Net.ICredentialPolicy CredentialPolicy { get { throw null; } set { } }
8241         public static System.Collections.Specialized.StringDictionary CustomTargetNameDictionary { get { throw null; } }
8242         public static System.Collections.IEnumerator RegisteredModules { get { throw null; } }
Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials)8243         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)8244         public static System.Net.Authorization PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials) { throw null; }
Register(System.Net.IAuthenticationModule authenticationModule)8245         public static void Register(System.Net.IAuthenticationModule authenticationModule) { }
Unregister(System.Net.IAuthenticationModule authenticationModule)8246         public static void Unregister(System.Net.IAuthenticationModule authenticationModule) { }
Unregister(string authenticationScheme)8247         public static void Unregister(string authenticationScheme) { }
8248     }
8249     [System.FlagsAttribute]
8250     public enum AuthenticationSchemes
8251     {
8252         Anonymous = 32768,
8253         Basic = 8,
8254         Digest = 1,
8255         IntegratedWindowsAuthentication = 6,
8256         Negotiate = 2,
8257         None = 0,
8258         Ntlm = 4,
8259     }
AuthenticationSchemeSelector(System.Net.HttpListenerRequest httpRequest)8260     public delegate System.Net.AuthenticationSchemes AuthenticationSchemeSelector(System.Net.HttpListenerRequest httpRequest);
8261     public partial class Authorization
8262     {
Authorization(string token)8263         public Authorization(string token) { }
Authorization(string token, bool finished)8264         public Authorization(string token, bool finished) { }
Authorization(string token, bool finished, string connectionGroupId)8265         public Authorization(string token, bool finished, string connectionGroupId) { }
8266         public bool Complete { get { throw null; } }
8267         public string ConnectionGroupId { get { throw null; } }
8268         public string Message { get { throw null; } }
8269         public bool MutuallyAuthenticated { get { throw null; } set { } }
8270         public string[] ProtectionRealm { get { throw null; } set { } }
8271     }
BindIPEndPoint(System.Net.ServicePoint servicePoint, System.Net.IPEndPoint remoteEndPoint, int retryCount)8272     public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.Net.IPEndPoint remoteEndPoint, int retryCount);
8273     [System.SerializableAttribute]
8274     public sealed partial class Cookie
8275     {
Cookie()8276         public Cookie() { }
Cookie(string name, string value)8277         public Cookie(string name, string value) { }
Cookie(string name, string value, string path)8278         public Cookie(string name, string value, string path) { }
Cookie(string name, string value, string path, string domain)8279         public Cookie(string name, string value, string path, string domain) { }
8280         public string Comment { get { throw null; } set { } }
8281         public System.Uri CommentUri { get { throw null; } set { } }
8282         public bool Discard { get { throw null; } set { } }
8283         public string Domain { get { throw null; } set { } }
8284         public bool Expired { get { throw null; } set { } }
8285         public System.DateTime Expires { get { throw null; } set { } }
8286         public bool HttpOnly { get { throw null; } set { } }
8287         public string Name { get { throw null; } set { } }
8288         public string Path { get { throw null; } set { } }
8289         public string Port { get { throw null; } set { } }
8290         public bool Secure { get { throw null; } set { } }
8291         public System.DateTime TimeStamp { get { throw null; } }
8292         public string Value { get { throw null; } set { } }
8293         public int Version { get { throw null; } set { } }
Equals(object comparand)8294         public override bool Equals(object comparand) { throw null; }
GetHashCode()8295         public override int GetHashCode() { throw null; }
ToString()8296         public override string ToString() { throw null; }
8297     }
8298     [System.SerializableAttribute]
8299     public partial class CookieCollection : System.Collections.ICollection, System.Collections.IEnumerable
8300     {
CookieCollection()8301         public CookieCollection() { }
8302         public int Count { get { throw null; } }
8303         public bool IsReadOnly { get { throw null; } }
8304         public bool IsSynchronized { get { throw null; } }
8305         public System.Net.Cookie this[int index] { get { throw null; } }
8306         public System.Net.Cookie this[string name] { get { throw null; } }
8307         public object SyncRoot { get { throw null; } }
Add(System.Net.Cookie cookie)8308         public void Add(System.Net.Cookie cookie) { }
Add(System.Net.CookieCollection cookies)8309         public void Add(System.Net.CookieCollection cookies) { }
CopyTo(System.Array array, int index)8310         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Net.Cookie[] array, int index)8311         public void CopyTo(System.Net.Cookie[] array, int index) { }
GetEnumerator()8312         public System.Collections.IEnumerator GetEnumerator() { throw null; }
8313     }
8314     [System.SerializableAttribute]
8315     public partial class CookieContainer
8316     {
8317         public const int DefaultCookieLengthLimit = 4096;
8318         public const int DefaultCookieLimit = 300;
8319         public const int DefaultPerDomainCookieLimit = 20;
CookieContainer()8320         public CookieContainer() { }
CookieContainer(int capacity)8321         public CookieContainer(int capacity) { }
CookieContainer(int capacity, int perDomainCapacity, int maxCookieSize)8322         public CookieContainer(int capacity, int perDomainCapacity, int maxCookieSize) { }
8323         public int Capacity { get { throw null; } set { } }
8324         public int Count { get { throw null; } }
8325         public int MaxCookieSize { get { throw null; } set { } }
8326         public int PerDomainCapacity { get { throw null; } set { } }
Add(System.Net.Cookie cookie)8327         public void Add(System.Net.Cookie cookie) { }
Add(System.Net.CookieCollection cookies)8328         public void Add(System.Net.CookieCollection cookies) { }
Add(System.Uri uri, System.Net.Cookie cookie)8329         public void Add(System.Uri uri, System.Net.Cookie cookie) { }
Add(System.Uri uri, System.Net.CookieCollection cookies)8330         public void Add(System.Uri uri, System.Net.CookieCollection cookies) { }
GetCookieHeader(System.Uri uri)8331         public string GetCookieHeader(System.Uri uri) { throw null; }
GetCookies(System.Uri uri)8332         public System.Net.CookieCollection GetCookies(System.Uri uri) { throw null; }
SetCookies(System.Uri uri, string cookieHeader)8333         public void SetCookies(System.Uri uri, string cookieHeader) { }
8334     }
8335     [System.SerializableAttribute]
8336     public partial class CookieException : System.FormatException, System.Runtime.Serialization.ISerializable
8337     {
CookieException()8338         public CookieException() { }
CookieException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8339         protected CookieException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8340         [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)8341         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8342         [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)8343         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8344     }
8345     public partial class CredentialCache : System.Collections.IEnumerable, System.Net.ICredentials, System.Net.ICredentialsByHost
8346     {
CredentialCache()8347         public CredentialCache() { }
8348         public static System.Net.ICredentials DefaultCredentials { get { throw null; } }
8349         public static System.Net.NetworkCredential DefaultNetworkCredentials { get { throw null; } }
Add(string host, int port, string authenticationType, System.Net.NetworkCredential credential)8350         public void Add(string host, int port, string authenticationType, System.Net.NetworkCredential credential) { }
Add(System.Uri uriPrefix, string authType, System.Net.NetworkCredential cred)8351         public void Add(System.Uri uriPrefix, string authType, System.Net.NetworkCredential cred) { }
GetCredential(string host, int port, string authenticationType)8352         public System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType) { throw null; }
GetCredential(System.Uri uriPrefix, string authType)8353         public System.Net.NetworkCredential GetCredential(System.Uri uriPrefix, string authType) { throw null; }
GetEnumerator()8354         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string host, int port, string authenticationType)8355         public void Remove(string host, int port, string authenticationType) { }
Remove(System.Uri uriPrefix, string authType)8356         public void Remove(System.Uri uriPrefix, string authType) { }
8357     }
8358     [System.FlagsAttribute]
8359     public enum DecompressionMethods
8360     {
8361         Deflate = 2,
8362         GZip = 1,
8363         None = 0,
8364     }
8365     public static partial class Dns
8366     {
8367         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetHostAddresses(string hostNameOrAddress, System.AsyncCallback requestCallback, object state)8368         public static System.IAsyncResult BeginGetHostAddresses(string hostNameOrAddress, System.AsyncCallback requestCallback, object state) { throw null; }
8369         [System.ObsoleteAttribute("BeginGetHostByName is obsoleted for this type, please use BeginGetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
8370         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetHostByName(string hostName, System.AsyncCallback requestCallback, object stateObject)8371         public static System.IAsyncResult BeginGetHostByName(string hostName, System.AsyncCallback requestCallback, object stateObject) { throw null; }
8372         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetHostEntry(System.Net.IPAddress address, System.AsyncCallback requestCallback, object stateObject)8373         public static System.IAsyncResult BeginGetHostEntry(System.Net.IPAddress address, System.AsyncCallback requestCallback, object stateObject) { throw null; }
8374         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetHostEntry(string hostNameOrAddress, System.AsyncCallback requestCallback, object stateObject)8375         public static System.IAsyncResult BeginGetHostEntry(string hostNameOrAddress, System.AsyncCallback requestCallback, object stateObject) { throw null; }
8376         [System.ObsoleteAttribute("BeginResolve is obsoleted for this type, please use BeginGetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
8377         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginResolve(string hostName, System.AsyncCallback requestCallback, object stateObject)8378         public static System.IAsyncResult BeginResolve(string hostName, System.AsyncCallback requestCallback, object stateObject) { throw null; }
EndGetHostAddresses(System.IAsyncResult asyncResult)8379         public static System.Net.IPAddress[] EndGetHostAddresses(System.IAsyncResult asyncResult) { throw null; }
8380         [System.ObsoleteAttribute("EndGetHostByName is obsoleted for this type, please use EndGetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
EndGetHostByName(System.IAsyncResult asyncResult)8381         public static System.Net.IPHostEntry EndGetHostByName(System.IAsyncResult asyncResult) { throw null; }
EndGetHostEntry(System.IAsyncResult asyncResult)8382         public static System.Net.IPHostEntry EndGetHostEntry(System.IAsyncResult asyncResult) { throw null; }
8383         [System.ObsoleteAttribute("EndResolve is obsoleted for this type, please use EndGetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
EndResolve(System.IAsyncResult asyncResult)8384         public static System.Net.IPHostEntry EndResolve(System.IAsyncResult asyncResult) { throw null; }
GetHostAddresses(string hostNameOrAddress)8385         public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; }
8386         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetHostAddressesAsync(string hostNameOrAddress)8387         public static System.Threading.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw null; }
8388         [System.ObsoleteAttribute("GetHostByAddress is obsoleted for this type, please use GetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
GetHostByAddress(System.Net.IPAddress address)8389         public static System.Net.IPHostEntry GetHostByAddress(System.Net.IPAddress address) { throw null; }
8390         [System.ObsoleteAttribute("GetHostByAddress is obsoleted for this type, please use GetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
GetHostByAddress(string address)8391         public static System.Net.IPHostEntry GetHostByAddress(string address) { throw null; }
8392         [System.ObsoleteAttribute("GetHostByName is obsoleted for this type, please use GetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
GetHostByName(string hostName)8393         public static System.Net.IPHostEntry GetHostByName(string hostName) { throw null; }
GetHostEntry(System.Net.IPAddress address)8394         public static System.Net.IPHostEntry GetHostEntry(System.Net.IPAddress address) { throw null; }
GetHostEntry(string hostNameOrAddress)8395         public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; }
8396         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetHostEntryAsync(System.Net.IPAddress address)8397         public static System.Threading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(System.Net.IPAddress address) { throw null; }
8398         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetHostEntryAsync(string hostNameOrAddress)8399         public static System.Threading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw null; }
GetHostName()8400         public static string GetHostName() { throw null; }
8401         [System.ObsoleteAttribute("Resolve is obsoleted for this type, please use GetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
Resolve(string hostName)8402         public static System.Net.IPHostEntry Resolve(string hostName) { throw null; }
8403     }
8404     public partial class DnsEndPoint : System.Net.EndPoint
8405     {
DnsEndPoint(string host, int port)8406         public DnsEndPoint(string host, int port) { }
DnsEndPoint(string host, int port, System.Net.Sockets.AddressFamily addressFamily)8407         public DnsEndPoint(string host, int port, System.Net.Sockets.AddressFamily addressFamily) { }
8408         public override System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
8409         public string Host { get { throw null; } }
8410         public int Port { get { throw null; } }
Equals(object comparand)8411         public override bool Equals(object comparand) { throw null; }
GetHashCode()8412         public override int GetHashCode() { throw null; }
ToString()8413         public override string ToString() { throw null; }
8414     }
8415     [System.SerializableAttribute]
8416     public sealed partial class DnsPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
8417     {
DnsPermission(System.Security.Permissions.PermissionState state)8418         public DnsPermission(System.Security.Permissions.PermissionState state) { }
Copy()8419         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)8420         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)8421         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)8422         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()8423         public bool IsUnrestricted() { throw null; }
ToXml()8424         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)8425         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
8426     }
8427     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
8428     [System.SerializableAttribute]
8429     public sealed partial class DnsPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
8430     {
DnsPermissionAttribute(System.Security.Permissions.SecurityAction action)8431         public DnsPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()8432         public override System.Security.IPermission CreatePermission() { throw null; }
8433     }
8434     public partial class DownloadDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
8435     {
DownloadDataCompletedEventArgs()8436         internal DownloadDataCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
8437         public byte[] Result { get { throw null; } }
8438     }
DownloadDataCompletedEventHandler(object sender, System.Net.DownloadDataCompletedEventArgs e)8439     public delegate void DownloadDataCompletedEventHandler(object sender, System.Net.DownloadDataCompletedEventArgs e);
8440     public partial class DownloadProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs
8441     {
DownloadProgressChangedEventArgs()8442         internal DownloadProgressChangedEventArgs() : base (default(int), default(object)) { }
8443         public long BytesReceived { get { throw null; } }
8444         public long TotalBytesToReceive { get { throw null; } }
8445     }
DownloadProgressChangedEventHandler(object sender, System.Net.DownloadProgressChangedEventArgs e)8446     public delegate void DownloadProgressChangedEventHandler(object sender, System.Net.DownloadProgressChangedEventArgs e);
8447     public partial class DownloadStringCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
8448     {
DownloadStringCompletedEventArgs()8449         internal DownloadStringCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
8450         public string Result { get { throw null; } }
8451     }
DownloadStringCompletedEventHandler(object sender, System.Net.DownloadStringCompletedEventArgs e)8452     public delegate void DownloadStringCompletedEventHandler(object sender, System.Net.DownloadStringCompletedEventArgs e);
8453     [System.SerializableAttribute]
8454     public abstract partial class EndPoint
8455     {
EndPoint()8456         protected EndPoint() { }
8457         public virtual System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
Create(System.Net.SocketAddress socketAddress)8458         public virtual System.Net.EndPoint Create(System.Net.SocketAddress socketAddress) { throw null; }
Serialize()8459         public virtual System.Net.SocketAddress Serialize() { throw null; }
8460     }
8461     [System.SerializableAttribute]
8462     public partial class EndpointPermission
8463     {
EndpointPermission()8464         internal EndpointPermission() { }
8465         public string Hostname { get { throw null; } }
8466         public int Port { get { throw null; } }
8467         public System.Net.TransportType Transport { get { throw null; } }
Equals(object obj)8468         public override bool Equals(object obj) { throw null; }
GetHashCode()8469         public override int GetHashCode() { throw null; }
ToString()8470         public override string ToString() { throw null; }
8471     }
8472     [System.SerializableAttribute]
8473     public partial class FileWebRequest : System.Net.WebRequest, System.Runtime.Serialization.ISerializable
8474     {
8475         [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)8476         protected FileWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8477         public override string ConnectionGroupName { get { throw null; } set { } }
8478         public override long ContentLength { get { throw null; } set { } }
8479         public override string ContentType { get { throw null; } set { } }
8480         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
8481         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8482         public override string Method { get { throw null; } set { } }
8483         public override bool PreAuthenticate { get { throw null; } set { } }
8484         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
8485         public override System.Uri RequestUri { get { throw null; } }
8486         public override int Timeout { get { throw null; } set { } }
8487         public override bool UseDefaultCredentials { get { throw null; } set { } }
Abort()8488         public override void Abort() { }
8489         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)8490         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
8491         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)8492         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)8493         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)8494         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
8495         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8496         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()8497         public override System.IO.Stream GetRequestStream() { throw null; }
GetResponse()8498         public override System.Net.WebResponse GetResponse() { throw null; }
8499         [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)8500         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8501     }
8502     [System.SerializableAttribute]
8503     public partial class FileWebResponse : System.Net.WebResponse, System.Runtime.Serialization.ISerializable
8504     {
8505         [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)8506         protected FileWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8507         public override long ContentLength { get { throw null; } }
8508         public override string ContentType { get { throw null; } }
8509         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8510         public override System.Uri ResponseUri { get { throw null; } }
8511         public override bool SupportsHeaders { get { throw null; } }
Close()8512         public override void Close() { }
8513         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8514         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseStream()8515         public override System.IO.Stream GetResponseStream() { throw null; }
8516         [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)8517         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8518     }
8519     public enum FtpStatusCode
8520     {
8521         AccountNeeded = 532,
8522         ActionAbortedLocalProcessingError = 451,
8523         ActionAbortedUnknownPageType = 551,
8524         ActionNotTakenFilenameNotAllowed = 553,
8525         ActionNotTakenFileUnavailable = 550,
8526         ActionNotTakenFileUnavailableOrBusy = 450,
8527         ActionNotTakenInsufficientSpace = 452,
8528         ArgumentSyntaxError = 501,
8529         BadCommandSequence = 503,
8530         CantOpenData = 425,
8531         ClosingControl = 221,
8532         ClosingData = 226,
8533         CommandExtraneous = 202,
8534         CommandNotImplemented = 502,
8535         CommandOK = 200,
8536         CommandSyntaxError = 500,
8537         ConnectionClosed = 426,
8538         DataAlreadyOpen = 125,
8539         DirectoryStatus = 212,
8540         EnteringPassive = 227,
8541         FileActionAborted = 552,
8542         FileActionOK = 250,
8543         FileCommandPending = 350,
8544         FileStatus = 213,
8545         LoggedInProceed = 230,
8546         NeedLoginAccount = 332,
8547         NotLoggedIn = 530,
8548         OpeningData = 150,
8549         PathnameCreated = 257,
8550         RestartMarker = 110,
8551         SendPasswordCommand = 331,
8552         SendUserCommand = 220,
8553         ServerWantsSecureSession = 234,
8554         ServiceNotAvailable = 421,
8555         ServiceTemporarilyNotAvailable = 120,
8556         SystemType = 215,
8557         Undefined = 0,
8558     }
8559     public sealed partial class FtpWebRequest : System.Net.WebRequest
8560     {
FtpWebRequest()8561         internal FtpWebRequest() { }
8562         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
8563         public override string ConnectionGroupName { get { throw null; } set { } }
8564         public override long ContentLength { get { throw null; } set { } }
8565         public long ContentOffset { get { throw null; } set { } }
8566         public override string ContentType { get { throw null; } set { } }
8567         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
8568         public static new System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
8569         public bool EnableSsl { get { throw null; } set { } }
8570         public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
8571         public bool KeepAlive { get { throw null; } set { } }
8572         public override string Method { get { throw null; } set { } }
8573         public override bool PreAuthenticate { get { throw null; } set { } }
8574         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
8575         public int ReadWriteTimeout { get { throw null; } set { } }
8576         public string RenameTo { get { throw null; } set { } }
8577         public override System.Uri RequestUri { get { throw null; } }
8578         public System.Net.ServicePoint ServicePoint { get { throw null; } }
8579         public override int Timeout { get { throw null; } set { } }
8580         public bool UseBinary { get { throw null; } set { } }
8581         public override bool UseDefaultCredentials { get { throw null; } set { } }
8582         public bool UsePassive { get { throw null; } set { } }
Abort()8583         public override void Abort() { }
8584         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)8585         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
8586         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)8587         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)8588         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)8589         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
GetRequestStream()8590         public override System.IO.Stream GetRequestStream() { throw null; }
GetResponse()8591         public override System.Net.WebResponse GetResponse() { throw null; }
8592     }
8593     public partial class FtpWebResponse : System.Net.WebResponse, System.IDisposable
8594     {
FtpWebResponse()8595         internal FtpWebResponse() { }
8596         public string BannerMessage { get { throw null; } }
8597         public override long ContentLength { get { throw null; } }
8598         public string ExitMessage { get { throw null; } }
8599         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8600         public System.DateTime LastModified { get { throw null; } }
8601         public override System.Uri ResponseUri { get { throw null; } }
8602         public System.Net.FtpStatusCode StatusCode { get { throw null; } }
8603         public string StatusDescription { get { throw null; } }
8604         public override bool SupportsHeaders { get { throw null; } }
8605         public string WelcomeMessage { get { throw null; } }
Close()8606         public override void Close() { }
GetResponseStream()8607         public override System.IO.Stream GetResponseStream() { throw null; }
8608     }
8609     [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")]
8610     public partial class GlobalProxySelection
8611     {
GlobalProxySelection()8612         public GlobalProxySelection() { }
8613         public static System.Net.IWebProxy Select { get { throw null; } set { } }
GetEmptyWebProxy()8614         public static System.Net.IWebProxy GetEmptyWebProxy() { throw null; }
8615     }
HttpContinueDelegate(int StatusCode, System.Net.WebHeaderCollection httpHeaders)8616     public delegate void HttpContinueDelegate(int StatusCode, System.Net.WebHeaderCollection httpHeaders);
8617     public sealed partial class HttpListener : System.IDisposable
8618     {
HttpListener()8619         public HttpListener() { }
8620         public System.Net.AuthenticationSchemes AuthenticationSchemes { get { throw null; } set { } }
8621         public System.Net.AuthenticationSchemeSelector AuthenticationSchemeSelectorDelegate { get { throw null; } set { } }
8622         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection DefaultServiceNames { get { throw null; } }
8623         public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionPolicy { get { throw null; } set { } }
8624         public System.Net.HttpListener.ExtendedProtectionSelector ExtendedProtectionSelectorDelegate { get { throw null; } set { } }
8625         public bool IgnoreWriteExceptions { get { throw null; } set { } }
8626         public bool IsListening { get { throw null; } }
8627         public static bool IsSupported { get { throw null; } }
8628         public System.Net.HttpListenerPrefixCollection Prefixes { get { throw null; } }
8629         public string Realm { get { throw null; } set { } }
8630         public System.Net.HttpListenerTimeoutManager TimeoutManager { get { throw null; } }
8631         public bool UnsafeConnectionNtlmAuthentication { get { throw null; } set { } }
Abort()8632         public void Abort() { }
8633         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetContext(System.AsyncCallback callback, object state)8634         public System.IAsyncResult BeginGetContext(System.AsyncCallback callback, object state) { throw null; }
Close()8635         public void Close() { }
EndGetContext(System.IAsyncResult asyncResult)8636         public System.Net.HttpListenerContext EndGetContext(System.IAsyncResult asyncResult) { throw null; }
GetContext()8637         public System.Net.HttpListenerContext GetContext() { throw null; }
8638         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetContextAsync()8639         public System.Threading.Tasks.Task<System.Net.HttpListenerContext> GetContextAsync() { throw null; }
Start()8640         public void Start() { }
Stop()8641         public void Stop() { }
System.IDisposable.Dispose()8642         void System.IDisposable.Dispose() { }
ExtendedProtectionSelector(System.Net.HttpListenerRequest request)8643         public delegate System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionSelector(System.Net.HttpListenerRequest request);
8644     }
8645     public partial class HttpListenerBasicIdentity : System.Security.Principal.GenericIdentity
8646     {
HttpListenerBasicIdentity(string username, string password)8647         public HttpListenerBasicIdentity(string username, string password) : base (default(string)) { }
8648         public virtual string Password { get { throw null; } }
8649     }
8650     public sealed partial class HttpListenerContext
8651     {
HttpListenerContext()8652         internal HttpListenerContext() { }
8653         public System.Net.HttpListenerRequest Request { get { throw null; } }
8654         public System.Net.HttpListenerResponse Response { get { throw null; } }
8655         public System.Security.Principal.IPrincipal User { get { throw null; } }
AcceptWebSocketAsync(string subProtocol)8656         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol) { throw null; }
AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval)8657         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval) { throw null; }
8658         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval, System.ArraySegment<byte> internalBuffer)8659         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval, System.ArraySegment<byte> internalBuffer) { throw null; }
AcceptWebSocketAsync(string subProtocol, System.TimeSpan keepAliveInterval)8660         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, System.TimeSpan keepAliveInterval) { throw null; }
8661     }
8662     [System.SerializableAttribute]
8663     public partial class HttpListenerException : System.ComponentModel.Win32Exception
8664     {
HttpListenerException()8665         public HttpListenerException() { }
HttpListenerException(int errorCode)8666         public HttpListenerException(int errorCode) { }
HttpListenerException(int errorCode, string message)8667         public HttpListenerException(int errorCode, string message) { }
HttpListenerException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8668         protected HttpListenerException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8669         public override int ErrorCode { get { throw null; } }
8670     }
8671     public partial class HttpListenerPrefixCollection : System.Collections.Generic.ICollection<string>, System.Collections.Generic.IEnumerable<string>, System.Collections.IEnumerable
8672     {
HttpListenerPrefixCollection()8673         internal HttpListenerPrefixCollection() { }
8674         public int Count { get { throw null; } }
8675         public bool IsReadOnly { get { throw null; } }
8676         public bool IsSynchronized { get { throw null; } }
Add(string uriPrefix)8677         public void Add(string uriPrefix) { }
Clear()8678         public void Clear() { }
Contains(string uriPrefix)8679         public bool Contains(string uriPrefix) { throw null; }
CopyTo(System.Array array, int offset)8680         public void CopyTo(System.Array array, int offset) { }
CopyTo(string[] array, int offset)8681         public void CopyTo(string[] array, int offset) { }
GetEnumerator()8682         public System.Collections.Generic.IEnumerator<string> GetEnumerator() { throw null; }
Remove(string uriPrefix)8683         public bool Remove(string uriPrefix) { throw null; }
System.Collections.IEnumerable.GetEnumerator()8684         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
8685     }
8686     public sealed partial class HttpListenerRequest
8687     {
HttpListenerRequest()8688         internal HttpListenerRequest() { }
8689         public string[] AcceptTypes { get { throw null; } }
8690         public int ClientCertificateError { get { throw null; } }
8691         public System.Text.Encoding ContentEncoding { get { throw null; } }
8692         public long ContentLength64 { get { throw null; } }
8693         public string ContentType { get { throw null; } }
8694         public System.Net.CookieCollection Cookies { get { throw null; } }
8695         public bool HasEntityBody { get { throw null; } }
8696         public System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
8697         public string HttpMethod { get { throw null; } }
8698         public System.IO.Stream InputStream { get { throw null; } }
8699         public bool IsAuthenticated { get { throw null; } }
8700         public bool IsLocal { get { throw null; } }
8701         public bool IsSecureConnection { get { throw null; } }
8702         public bool IsWebSocketRequest { get { throw null; } }
8703         public bool KeepAlive { get { throw null; } }
8704         public System.Net.IPEndPoint LocalEndPoint { get { throw null; } }
8705         public System.Version ProtocolVersion { get { throw null; } }
8706         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } }
8707         public string RawUrl { get { throw null; } }
8708         public System.Net.IPEndPoint RemoteEndPoint { get { throw null; } }
8709         public System.Guid RequestTraceIdentifier { get { throw null; } }
8710         public string ServiceName { get { throw null; } }
8711         public System.Net.TransportContext TransportContext { get { throw null; } }
8712         public System.Uri Url { get { throw null; } }
8713         public System.Uri UrlReferrer { get { throw null; } }
8714         public string UserAgent { get { throw null; } }
8715         public string UserHostAddress { get { throw null; } }
8716         public string UserHostName { get { throw null; } }
8717         public string[] UserLanguages { get { throw null; } }
BeginGetClientCertificate(System.AsyncCallback requestCallback, object state)8718         public System.IAsyncResult BeginGetClientCertificate(System.AsyncCallback requestCallback, object state) { throw null; }
EndGetClientCertificate(System.IAsyncResult asyncResult)8719         public System.Security.Cryptography.X509Certificates.X509Certificate2 EndGetClientCertificate(System.IAsyncResult asyncResult) { throw null; }
GetClientCertificate()8720         public System.Security.Cryptography.X509Certificates.X509Certificate2 GetClientCertificate() { throw null; }
8721         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetClientCertificateAsync()8722         public System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync() { throw null; }
8723     }
8724     public sealed partial class HttpListenerResponse : System.IDisposable
8725     {
HttpListenerResponse()8726         internal HttpListenerResponse() { }
8727         public System.Text.Encoding ContentEncoding { get { throw null; } set { } }
8728         public long ContentLength64 { get { throw null; } set { } }
8729         public string ContentType { get { throw null; } set { } }
8730         public System.Net.CookieCollection Cookies { get { throw null; } set { } }
8731         public System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
8732         public bool KeepAlive { get { throw null; } set { } }
8733         public System.IO.Stream OutputStream { get { throw null; } }
8734         public System.Version ProtocolVersion { get { throw null; } set { } }
8735         public string RedirectLocation { get { throw null; } set { } }
8736         public bool SendChunked { get { throw null; } set { } }
8737         public int StatusCode { get { throw null; } set { } }
8738         public string StatusDescription { get { throw null; } set { } }
Abort()8739         public void Abort() { }
AddHeader(string name, string value)8740         public void AddHeader(string name, string value) { }
AppendCookie(System.Net.Cookie cookie)8741         public void AppendCookie(System.Net.Cookie cookie) { }
AppendHeader(string name, string value)8742         public void AppendHeader(string name, string value) { }
Close()8743         public void Close() { }
Close(byte[] responseEntity, bool willBlock)8744         public void Close(byte[] responseEntity, bool willBlock) { }
CopyFrom(System.Net.HttpListenerResponse templateResponse)8745         public void CopyFrom(System.Net.HttpListenerResponse templateResponse) { }
Redirect(string url)8746         public void Redirect(string url) { }
SetCookie(System.Net.Cookie cookie)8747         public void SetCookie(System.Net.Cookie cookie) { }
System.IDisposable.Dispose()8748         void System.IDisposable.Dispose() { }
8749     }
8750     public partial class HttpListenerTimeoutManager
8751     {
HttpListenerTimeoutManager()8752         internal HttpListenerTimeoutManager() { }
8753         public System.TimeSpan DrainEntityBody { get { throw null; } set { } }
8754         public System.TimeSpan EntityBody { get { throw null; } set { } }
8755         public System.TimeSpan HeaderWait { get { throw null; } set { } }
8756         public System.TimeSpan IdleConnection { get { throw null; } set { } }
8757         public long MinSendBytesPerSecond { get { throw null; } set { } }
8758         public System.TimeSpan RequestQueue { get { throw null; } set { } }
8759     }
8760     public enum HttpRequestHeader
8761     {
8762         Accept = 20,
8763         AcceptCharset = 21,
8764         AcceptEncoding = 22,
8765         AcceptLanguage = 23,
8766         Allow = 10,
8767         Authorization = 24,
8768         CacheControl = 0,
8769         Connection = 1,
8770         ContentEncoding = 13,
8771         ContentLanguage = 14,
8772         ContentLength = 11,
8773         ContentLocation = 15,
8774         ContentMd5 = 16,
8775         ContentRange = 17,
8776         ContentType = 12,
8777         Cookie = 25,
8778         Date = 2,
8779         Expect = 26,
8780         Expires = 18,
8781         From = 27,
8782         Host = 28,
8783         IfMatch = 29,
8784         IfModifiedSince = 30,
8785         IfNoneMatch = 31,
8786         IfRange = 32,
8787         IfUnmodifiedSince = 33,
8788         KeepAlive = 3,
8789         LastModified = 19,
8790         MaxForwards = 34,
8791         Pragma = 4,
8792         ProxyAuthorization = 35,
8793         Range = 37,
8794         Referer = 36,
8795         Te = 38,
8796         Trailer = 5,
8797         TransferEncoding = 6,
8798         Translate = 39,
8799         Upgrade = 7,
8800         UserAgent = 40,
8801         Via = 8,
8802         Warning = 9,
8803     }
8804     public enum HttpResponseHeader
8805     {
8806         AcceptRanges = 20,
8807         Age = 21,
8808         Allow = 10,
8809         CacheControl = 0,
8810         Connection = 1,
8811         ContentEncoding = 13,
8812         ContentLanguage = 14,
8813         ContentLength = 11,
8814         ContentLocation = 15,
8815         ContentMd5 = 16,
8816         ContentRange = 17,
8817         ContentType = 12,
8818         Date = 2,
8819         ETag = 22,
8820         Expires = 18,
8821         KeepAlive = 3,
8822         LastModified = 19,
8823         Location = 23,
8824         Pragma = 4,
8825         ProxyAuthenticate = 24,
8826         RetryAfter = 25,
8827         Server = 26,
8828         SetCookie = 27,
8829         Trailer = 5,
8830         TransferEncoding = 6,
8831         Upgrade = 7,
8832         Vary = 28,
8833         Via = 8,
8834         Warning = 9,
8835         WwwAuthenticate = 29,
8836     }
8837     public enum HttpStatusCode
8838     {
8839         Accepted = 202,
8840         Ambiguous = 300,
8841         BadGateway = 502,
8842         BadRequest = 400,
8843         Conflict = 409,
8844         Continue = 100,
8845         Created = 201,
8846         ExpectationFailed = 417,
8847         Forbidden = 403,
8848         Found = 302,
8849         GatewayTimeout = 504,
8850         Gone = 410,
8851         HttpVersionNotSupported = 505,
8852         InternalServerError = 500,
8853         LengthRequired = 411,
8854         MethodNotAllowed = 405,
8855         Moved = 301,
8856         MovedPermanently = 301,
8857         MultipleChoices = 300,
8858         NoContent = 204,
8859         NonAuthoritativeInformation = 203,
8860         NotAcceptable = 406,
8861         NotFound = 404,
8862         NotImplemented = 501,
8863         NotModified = 304,
8864         OK = 200,
8865         PartialContent = 206,
8866         PaymentRequired = 402,
8867         PreconditionFailed = 412,
8868         ProxyAuthenticationRequired = 407,
8869         Redirect = 302,
8870         RedirectKeepVerb = 307,
8871         RedirectMethod = 303,
8872         RequestedRangeNotSatisfiable = 416,
8873         RequestEntityTooLarge = 413,
8874         RequestTimeout = 408,
8875         RequestUriTooLong = 414,
8876         ResetContent = 205,
8877         SeeOther = 303,
8878         ServiceUnavailable = 503,
8879         SwitchingProtocols = 101,
8880         TemporaryRedirect = 307,
8881         Unauthorized = 401,
8882         UnsupportedMediaType = 415,
8883         Unused = 306,
8884         UpgradeRequired = 426,
8885         UseProxy = 305,
8886     }
8887     public partial class HttpVersion
8888     {
8889         public static readonly System.Version Version10;
8890         public static readonly System.Version Version11;
HttpVersion()8891         public HttpVersion() { }
8892     }
8893     [System.SerializableAttribute]
8894     public partial class HttpWebRequest : System.Net.WebRequest, System.Runtime.Serialization.ISerializable
8895     {
8896         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
8897         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
HttpWebRequest()8898         public HttpWebRequest() { }
8899         [System.ObsoleteAttribute("Serialization is obsoleted for this type.  http://go.microsoft.com/fwlink/?linkid=14202")]
8900         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
HttpWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8901         protected HttpWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8902         public string Accept { get { throw null; } set { } }
8903         public System.Uri Address { get { throw null; } }
8904         public virtual bool AllowAutoRedirect { get { throw null; } set { } }
8905         public virtual bool AllowReadStreamBuffering { get { throw null; } set { } }
8906         public virtual bool AllowWriteStreamBuffering { get { throw null; } set { } }
8907         public System.Net.DecompressionMethods AutomaticDecompression { get { throw null; } set { } }
8908         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
8909         public string Connection { get { throw null; } set { } }
8910         public override string ConnectionGroupName { get { throw null; } set { } }
8911         public override long ContentLength { get { throw null; } set { } }
8912         public override string ContentType { get { throw null; } set { } }
8913         public System.Net.HttpContinueDelegate ContinueDelegate { get { throw null; } set { } }
8914         public int ContinueTimeout { get { throw null; } set { } }
8915         public virtual System.Net.CookieContainer CookieContainer { get { throw null; } set { } }
8916         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
8917         public System.DateTime Date { get { throw null; } set { } }
8918         public static new System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
8919         public static int DefaultMaximumErrorResponseLength { get { throw null; } set { } }
8920         public static int DefaultMaximumResponseHeadersLength { get { throw null; } set { } }
8921         public string Expect { get { throw null; } set { } }
8922         public virtual bool HaveResponse { get { throw null; } }
8923         public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
8924         public string Host { get { throw null; } set { } }
8925         public System.DateTime IfModifiedSince { get { throw null; } set { } }
8926         public bool KeepAlive { get { throw null; } set { } }
8927         public int MaximumAutomaticRedirections { get { throw null; } set { } }
8928         public int MaximumResponseHeadersLength { get { throw null; } set { } }
8929         public string MediaType { get { throw null; } set { } }
8930         public override string Method { get { throw null; } set { } }
8931         public bool Pipelined { get { throw null; } set { } }
8932         public override bool PreAuthenticate { get { throw null; } set { } }
8933         public System.Version ProtocolVersion { get { throw null; } set { } }
8934         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
8935         public int ReadWriteTimeout { get { throw null; } set { } }
8936         public string Referer { get { throw null; } set { } }
8937         public override System.Uri RequestUri { get { throw null; } }
8938         public bool SendChunked { get { throw null; } set { } }
8939         public System.Net.Security.RemoteCertificateValidationCallback ServerCertificateValidationCallback { get { throw null; } set { } }
8940         public System.Net.ServicePoint ServicePoint { get { throw null; } }
8941         public virtual bool SupportsCookieContainer { get { throw null; } }
8942         public override int Timeout { get { throw null; } set { } }
8943         public string TransferEncoding { get { throw null; } set { } }
8944         public bool UnsafeAuthenticatedConnectionSharing { get { throw null; } set { } }
8945         public override bool UseDefaultCredentials { get { throw null; } set { } }
8946         public string UserAgent { get { throw null; } set { } }
Abort()8947         public override void Abort() { }
AddRange(int range)8948         public void AddRange(int range) { }
AddRange(int from, int to)8949         public void AddRange(int from, int to) { }
AddRange(long range)8950         public void AddRange(long range) { }
AddRange(long from, long to)8951         public void AddRange(long from, long to) { }
AddRange(string rangeSpecifier, int range)8952         public void AddRange(string rangeSpecifier, int range) { }
AddRange(string rangeSpecifier, int from, int to)8953         public void AddRange(string rangeSpecifier, int from, int to) { }
AddRange(string rangeSpecifier, long range)8954         public void AddRange(string rangeSpecifier, long range) { }
AddRange(string rangeSpecifier, long from, long to)8955         public void AddRange(string rangeSpecifier, long from, long to) { }
8956         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)8957         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
8958         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)8959         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)8960         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult, out System.Net.TransportContext context)8961         public System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult, out System.Net.TransportContext context) { context = default(System.Net.TransportContext); throw null; }
EndGetResponse(System.IAsyncResult asyncResult)8962         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
8963         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8964         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()8965         public override System.IO.Stream GetRequestStream() { throw null; }
GetRequestStream(out System.Net.TransportContext context)8966         public System.IO.Stream GetRequestStream(out System.Net.TransportContext context) { context = default(System.Net.TransportContext); throw null; }
GetResponse()8967         public override System.Net.WebResponse GetResponse() { throw null; }
8968         [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)8969         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8970     }
8971     [System.SerializableAttribute]
8972     public partial class HttpWebResponse : System.Net.WebResponse, System.Runtime.Serialization.ISerializable
8973     {
8974         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
8975         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
HttpWebResponse()8976         public HttpWebResponse() { }
8977         [System.ObsoleteAttribute("Serialization is obsoleted for this type.  http://go.microsoft.com/fwlink/?linkid=14202")]
HttpWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8978         protected HttpWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8979         public string CharacterSet { get { throw null; } }
8980         public string ContentEncoding { get { throw null; } }
8981         public override long ContentLength { get { throw null; } }
8982         public override string ContentType { get { throw null; } }
8983         public virtual System.Net.CookieCollection Cookies { get { throw null; } set { } }
8984         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
8985         public override bool IsMutuallyAuthenticated { get { throw null; } }
8986         public System.DateTime LastModified { get { throw null; } }
8987         public virtual string Method { get { throw null; } }
8988         public System.Version ProtocolVersion { get { throw null; } }
8989         public override System.Uri ResponseUri { get { throw null; } }
8990         public string Server { get { throw null; } }
8991         public virtual System.Net.HttpStatusCode StatusCode { get { throw null; } }
8992         public virtual string StatusDescription { get { throw null; } }
8993         public override bool SupportsHeaders { get { throw null; } }
Close()8994         public override void Close() { }
Dispose(bool disposing)8995         protected override void Dispose(bool disposing) { }
8996         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8997         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseHeader(string headerName)8998         public string GetResponseHeader(string headerName) { throw null; }
GetResponseStream()8999         public override System.IO.Stream GetResponseStream() { throw null; }
9000         [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)9001         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9002     }
9003     public partial interface IAuthenticationModule
9004     {
9005         string AuthenticationType { get; }
9006         bool CanPreAuthenticate { get; }
Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials)9007         System.Net.Authorization Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials);
PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials)9008         System.Net.Authorization PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials);
9009     }
9010     public partial interface ICertificatePolicy
9011     {
CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem)9012         bool CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem);
9013     }
9014     public partial interface ICredentialPolicy
9015     {
ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authenticationModule)9016         bool ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authenticationModule);
9017     }
9018     public partial interface ICredentials
9019     {
GetCredential(System.Uri uri, string authType)9020         System.Net.NetworkCredential GetCredential(System.Uri uri, string authType);
9021     }
9022     public partial interface ICredentialsByHost
9023     {
GetCredential(string host, int port, string authenticationType)9024         System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType);
9025     }
9026     [System.SerializableAttribute]
9027     public partial class IPAddress
9028     {
9029         public static readonly System.Net.IPAddress Any;
9030         public static readonly System.Net.IPAddress Broadcast;
9031         public static readonly System.Net.IPAddress IPv6Any;
9032         public static readonly System.Net.IPAddress IPv6Loopback;
9033         public static readonly System.Net.IPAddress IPv6None;
9034         public static readonly System.Net.IPAddress Loopback;
9035         public static readonly System.Net.IPAddress None;
IPAddress(byte[] address)9036         public IPAddress(byte[] address) { }
IPAddress(byte[] address, long scopeid)9037         public IPAddress(byte[] address, long scopeid) { }
IPAddress(long newAddress)9038         public IPAddress(long newAddress) { }
9039         [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")]
9040         public long Address { get { throw null; } set { } }
9041         public System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
9042         public bool IsIPv4MappedToIPv6 { get { throw null; } }
9043         public bool IsIPv6LinkLocal { get { throw null; } }
9044         public bool IsIPv6Multicast { get { throw null; } }
9045         public bool IsIPv6SiteLocal { get { throw null; } }
9046         public bool IsIPv6Teredo { get { throw null; } }
9047         public long ScopeId { get { throw null; } set { } }
Equals(object comparand)9048         public override bool Equals(object comparand) { throw null; }
GetAddressBytes()9049         public byte[] GetAddressBytes() { throw null; }
GetHashCode()9050         public override int GetHashCode() { throw null; }
HostToNetworkOrder(short host)9051         public static short HostToNetworkOrder(short host) { throw null; }
HostToNetworkOrder(int host)9052         public static int HostToNetworkOrder(int host) { throw null; }
HostToNetworkOrder(long host)9053         public static long HostToNetworkOrder(long host) { throw null; }
IsLoopback(System.Net.IPAddress address)9054         public static bool IsLoopback(System.Net.IPAddress address) { throw null; }
MapToIPv4()9055         public System.Net.IPAddress MapToIPv4() { throw null; }
MapToIPv6()9056         public System.Net.IPAddress MapToIPv6() { throw null; }
NetworkToHostOrder(short network)9057         public static short NetworkToHostOrder(short network) { throw null; }
NetworkToHostOrder(int network)9058         public static int NetworkToHostOrder(int network) { throw null; }
NetworkToHostOrder(long network)9059         public static long NetworkToHostOrder(long network) { throw null; }
Parse(string ipString)9060         public static System.Net.IPAddress Parse(string ipString) { throw null; }
ToString()9061         public override string ToString() { throw null; }
TryParse(string ipString, out System.Net.IPAddress address)9062         public static bool TryParse(string ipString, out System.Net.IPAddress address) { address = default(System.Net.IPAddress); throw null; }
9063     }
9064     [System.SerializableAttribute]
9065     public partial class IPEndPoint : System.Net.EndPoint
9066     {
9067         public const int MaxPort = 65535;
9068         public const int MinPort = 0;
IPEndPoint(long address, int port)9069         public IPEndPoint(long address, int port) { }
IPEndPoint(System.Net.IPAddress address, int port)9070         public IPEndPoint(System.Net.IPAddress address, int port) { }
9071         public System.Net.IPAddress Address { get { throw null; } set { } }
9072         public override System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
9073         public int Port { get { throw null; } set { } }
Create(System.Net.SocketAddress socketAddress)9074         public override System.Net.EndPoint Create(System.Net.SocketAddress socketAddress) { throw null; }
Equals(object comparand)9075         public override bool Equals(object comparand) { throw null; }
GetHashCode()9076         public override int GetHashCode() { throw null; }
Serialize()9077         public override System.Net.SocketAddress Serialize() { throw null; }
ToString()9078         public override string ToString() { throw null; }
9079     }
9080     public partial class IPHostEntry
9081     {
IPHostEntry()9082         public IPHostEntry() { }
9083         public System.Net.IPAddress[] AddressList { get { throw null; } set { } }
9084         public string[] Aliases { get { throw null; } set { } }
9085         public string HostName { get { throw null; } set { } }
9086     }
9087     public partial interface IWebProxy
9088     {
9089         System.Net.ICredentials Credentials { get; set; }
GetProxy(System.Uri destination)9090         System.Uri GetProxy(System.Uri destination);
IsBypassed(System.Uri host)9091         bool IsBypassed(System.Uri host);
9092     }
9093     public partial interface IWebProxyScript
9094     {
Close()9095         void Close();
Load(System.Uri scriptLocation, string script, System.Type helperType)9096         bool Load(System.Uri scriptLocation, string script, System.Type helperType);
Run(string url, string host)9097         string Run(string url, string host);
9098     }
9099     public partial interface IWebRequestCreate
9100     {
Create(System.Uri uri)9101         System.Net.WebRequest Create(System.Uri uri);
9102     }
9103     [System.FlagsAttribute]
9104     public enum NetworkAccess
9105     {
9106         Accept = 128,
9107         Connect = 64,
9108     }
9109     public partial class NetworkCredential : System.Net.ICredentials, System.Net.ICredentialsByHost
9110     {
NetworkCredential()9111         public NetworkCredential() { }
NetworkCredential(string userName, System.Security.SecureString password)9112         public NetworkCredential(string userName, System.Security.SecureString password) { }
NetworkCredential(string userName, System.Security.SecureString password, string domain)9113         public NetworkCredential(string userName, System.Security.SecureString password, string domain) { }
NetworkCredential(string userName, string password)9114         public NetworkCredential(string userName, string password) { }
NetworkCredential(string userName, string password, string domain)9115         public NetworkCredential(string userName, string password, string domain) { }
9116         public string Domain { get { throw null; } set { } }
9117         public string Password { get { throw null; } set { } }
9118         public System.Security.SecureString SecurePassword { get { throw null; } set { } }
9119         public string UserName { get { throw null; } set { } }
GetCredential(string host, int port, string authenticationType)9120         public System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType) { throw null; }
GetCredential(System.Uri uri, string authType)9121         public System.Net.NetworkCredential GetCredential(System.Uri uri, string authType) { throw null; }
9122     }
9123     public partial class OpenReadCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9124     {
OpenReadCompletedEventArgs()9125         internal OpenReadCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9126         public System.IO.Stream Result { get { throw null; } }
9127     }
OpenReadCompletedEventHandler(object sender, System.Net.OpenReadCompletedEventArgs e)9128     public delegate void OpenReadCompletedEventHandler(object sender, System.Net.OpenReadCompletedEventArgs e);
9129     public partial class OpenWriteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9130     {
OpenWriteCompletedEventArgs()9131         internal OpenWriteCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9132         public System.IO.Stream Result { get { throw null; } }
9133     }
OpenWriteCompletedEventHandler(object sender, System.Net.OpenWriteCompletedEventArgs e)9134     public delegate void OpenWriteCompletedEventHandler(object sender, System.Net.OpenWriteCompletedEventArgs e);
9135     [System.SerializableAttribute]
9136     public partial class ProtocolViolationException : System.InvalidOperationException, System.Runtime.Serialization.ISerializable
9137     {
ProtocolViolationException()9138         public ProtocolViolationException() { }
ProtocolViolationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9139         protected ProtocolViolationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
ProtocolViolationException(string message)9140         public ProtocolViolationException(string message) { }
9141         [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)9142         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9143         [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)9144         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9145     }
9146     [System.FlagsAttribute]
9147     public enum SecurityProtocolType
9148     {
9149         Ssl3 = 48,
9150         SystemDefault = 0,
9151         Tls = 192,
9152         Tls11 = 768,
9153         Tls12 = 3072,
9154     }
9155     public partial class ServicePoint
9156     {
ServicePoint()9157         internal ServicePoint() { }
9158         public System.Uri Address { get { throw null; } }
9159         public System.Net.BindIPEndPoint BindIPEndPointDelegate { get { throw null; } set { } }
9160         public System.Security.Cryptography.X509Certificates.X509Certificate Certificate { get { throw null; } }
9161         public System.Security.Cryptography.X509Certificates.X509Certificate ClientCertificate { get { throw null; } }
9162         public int ConnectionLeaseTimeout { get { throw null; } set { } }
9163         public int ConnectionLimit { get { throw null; } set { } }
9164         public string ConnectionName { get { throw null; } }
9165         public int CurrentConnections { get { throw null; } }
9166         public bool Expect100Continue { get { throw null; } set { } }
9167         public System.DateTime IdleSince { get { throw null; } }
9168         public int MaxIdleTime { get { throw null; } set { } }
9169         public virtual System.Version ProtocolVersion { get { throw null; } }
9170         public int ReceiveBufferSize { get { throw null; } set { } }
9171         public bool SupportsPipelining { get { throw null; } }
9172         public bool UseNagleAlgorithm { get { throw null; } set { } }
CloseConnectionGroup(string connectionGroupName)9173         public bool CloseConnectionGroup(string connectionGroupName) { throw null; }
SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval)9174         public void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval) { }
9175     }
9176     public partial class ServicePointManager
9177     {
ServicePointManager()9178         internal ServicePointManager() { }
9179         public const int DefaultNonPersistentConnectionLimit = 4;
9180         public const int DefaultPersistentConnectionLimit = 2;
9181         [System.ObsoleteAttribute("CertificatePolicy is obsoleted for this type, please use ServerCertificateValidationCallback instead. http://go.microsoft.com/fwlink/?linkid=14202")]
9182         public static System.Net.ICertificatePolicy CertificatePolicy { get { throw null; } set { } }
9183         public static bool CheckCertificateRevocationList { get { throw null; } set { } }
9184         public static int DefaultConnectionLimit { get { throw null; } set { } }
9185         public static int DnsRefreshTimeout { get { throw null; } set { } }
9186         public static bool EnableDnsRoundRobin { get { throw null; } set { } }
9187         public static System.Net.Security.EncryptionPolicy EncryptionPolicy { get { throw null; } }
9188         public static bool Expect100Continue { get { throw null; } set { } }
9189         public static int MaxServicePointIdleTime { get { throw null; } set { } }
9190         public static int MaxServicePoints { get { throw null; } set { } }
9191         public static bool ReusePort { get { throw null; } set { } }
9192         public static System.Net.SecurityProtocolType SecurityProtocol { get { throw null; } set { } }
9193         public static System.Net.Security.RemoteCertificateValidationCallback ServerCertificateValidationCallback { get { throw null; } set { } }
9194         public static bool UseNagleAlgorithm { get { throw null; } set { } }
FindServicePoint(string uriString, System.Net.IWebProxy proxy)9195         public static System.Net.ServicePoint FindServicePoint(string uriString, System.Net.IWebProxy proxy) { throw null; }
FindServicePoint(System.Uri address)9196         public static System.Net.ServicePoint FindServicePoint(System.Uri address) { throw null; }
FindServicePoint(System.Uri address, System.Net.IWebProxy proxy)9197         public static System.Net.ServicePoint FindServicePoint(System.Uri address, System.Net.IWebProxy proxy) { throw null; }
SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval)9198         public static void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval) { }
9199     }
9200     public partial class SocketAddress
9201     {
SocketAddress(System.Net.Sockets.AddressFamily family)9202         public SocketAddress(System.Net.Sockets.AddressFamily family) { }
SocketAddress(System.Net.Sockets.AddressFamily family, int size)9203         public SocketAddress(System.Net.Sockets.AddressFamily family, int size) { }
9204         public System.Net.Sockets.AddressFamily Family { get { throw null; } }
9205         public byte this[int offset] { get { throw null; } set { } }
9206         public int Size { get { throw null; } }
Equals(object comparand)9207         public override bool Equals(object comparand) { throw null; }
GetHashCode()9208         public override int GetHashCode() { throw null; }
ToString()9209         public override string ToString() { throw null; }
9210     }
9211     [System.SerializableAttribute]
9212     public sealed partial class SocketPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
9213     {
9214         public const int AllPorts = -1;
SocketPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber)9215         public SocketPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber) { }
SocketPermission(System.Security.Permissions.PermissionState state)9216         public SocketPermission(System.Security.Permissions.PermissionState state) { }
9217         public System.Collections.IEnumerator AcceptList { get { throw null; } }
9218         public System.Collections.IEnumerator ConnectList { get { throw null; } }
AddPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber)9219         public void AddPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber) { }
Copy()9220         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)9221         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)9222         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)9223         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()9224         public bool IsUnrestricted() { throw null; }
ToXml()9225         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)9226         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
9227     }
9228     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
9229     [System.SerializableAttribute]
9230     public sealed partial class SocketPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
9231     {
SocketPermissionAttribute(System.Security.Permissions.SecurityAction action)9232         public SocketPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
9233         public string Access { get { throw null; } set { } }
9234         public string Host { get { throw null; } set { } }
9235         public string Port { get { throw null; } set { } }
9236         public string Transport { get { throw null; } set { } }
CreatePermission()9237         public override System.Security.IPermission CreatePermission() { throw null; }
9238     }
9239     public abstract partial class TransportContext
9240     {
TransportContext()9241         protected TransportContext() { }
GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind kind)9242         public abstract System.Security.Authentication.ExtendedProtection.ChannelBinding GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind kind);
GetTlsTokenBindings()9243         public virtual System.Collections.Generic.IEnumerable<System.Security.Authentication.ExtendedProtection.TokenBinding> GetTlsTokenBindings() { throw null; }
9244     }
9245     public enum TransportType
9246     {
9247         All = 3,
9248         Connectionless = 1,
9249         ConnectionOriented = 2,
9250         Tcp = 2,
9251         Udp = 1,
9252     }
9253     public partial class UploadDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9254     {
UploadDataCompletedEventArgs()9255         internal UploadDataCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9256         public byte[] Result { get { throw null; } }
9257     }
UploadDataCompletedEventHandler(object sender, System.Net.UploadDataCompletedEventArgs e)9258     public delegate void UploadDataCompletedEventHandler(object sender, System.Net.UploadDataCompletedEventArgs e);
9259     public partial class UploadFileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9260     {
UploadFileCompletedEventArgs()9261         internal UploadFileCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9262         public byte[] Result { get { throw null; } }
9263     }
UploadFileCompletedEventHandler(object sender, System.Net.UploadFileCompletedEventArgs e)9264     public delegate void UploadFileCompletedEventHandler(object sender, System.Net.UploadFileCompletedEventArgs e);
9265     public partial class UploadProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs
9266     {
UploadProgressChangedEventArgs()9267         internal UploadProgressChangedEventArgs() : base (default(int), default(object)) { }
9268         public long BytesReceived { get { throw null; } }
9269         public long BytesSent { get { throw null; } }
9270         public long TotalBytesToReceive { get { throw null; } }
9271         public long TotalBytesToSend { get { throw null; } }
9272     }
UploadProgressChangedEventHandler(object sender, System.Net.UploadProgressChangedEventArgs e)9273     public delegate void UploadProgressChangedEventHandler(object sender, System.Net.UploadProgressChangedEventArgs e);
9274     public partial class UploadStringCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9275     {
UploadStringCompletedEventArgs()9276         internal UploadStringCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9277         public string Result { get { throw null; } }
9278     }
UploadStringCompletedEventHandler(object sender, System.Net.UploadStringCompletedEventArgs e)9279     public delegate void UploadStringCompletedEventHandler(object sender, System.Net.UploadStringCompletedEventArgs e);
9280     public partial class UploadValuesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
9281     {
UploadValuesCompletedEventArgs()9282         internal UploadValuesCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
9283         public byte[] Result { get { throw null; } }
9284     }
UploadValuesCompletedEventHandler(object sender, System.Net.UploadValuesCompletedEventArgs e)9285     public delegate void UploadValuesCompletedEventHandler(object sender, System.Net.UploadValuesCompletedEventArgs e);
9286     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
9287     public partial class WebClient : System.ComponentModel.Component
9288     {
WebClient()9289         public WebClient() { }
9290         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9291         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9292         public bool AllowReadStreamBuffering { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
9293         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9294         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9295         public bool AllowWriteStreamBuffering { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
9296         public string BaseAddress { get { throw null; } set { } }
9297         public System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } }
9298         public System.Net.ICredentials Credentials { get { throw null; } set { } }
9299         public System.Text.Encoding Encoding { get { throw null; } set { } }
9300         public System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
9301         public bool IsBusy { get { throw null; } }
9302         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
9303         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } set { } }
9304         public System.Net.WebHeaderCollection ResponseHeaders { get { throw null; } }
9305         public bool UseDefaultCredentials { get { throw null; } set { } }
9306         public event System.Net.DownloadDataCompletedEventHandler DownloadDataCompleted { add { } remove { } }
9307         public event System.ComponentModel.AsyncCompletedEventHandler DownloadFileCompleted { add { } remove { } }
9308         public event System.Net.DownloadProgressChangedEventHandler DownloadProgressChanged { add { } remove { } }
9309         public event System.Net.DownloadStringCompletedEventHandler DownloadStringCompleted { add { } remove { } }
9310         public event System.Net.OpenReadCompletedEventHandler OpenReadCompleted { add { } remove { } }
9311         public event System.Net.OpenWriteCompletedEventHandler OpenWriteCompleted { add { } remove { } }
9312         public event System.Net.UploadDataCompletedEventHandler UploadDataCompleted { add { } remove { } }
9313         public event System.Net.UploadFileCompletedEventHandler UploadFileCompleted { add { } remove { } }
9314         public event System.Net.UploadProgressChangedEventHandler UploadProgressChanged { add { } remove { } }
9315         public event System.Net.UploadStringCompletedEventHandler UploadStringCompleted { add { } remove { } }
9316         public event System.Net.UploadValuesCompletedEventHandler UploadValuesCompleted { add { } remove { } }
9317         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9318         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9319         public event System.Net.WriteStreamClosedEventHandler WriteStreamClosed { add { } remove { } }
CancelAsync()9320         public void CancelAsync() { }
DownloadData(string address)9321         public byte[] DownloadData(string address) { throw null; }
DownloadData(System.Uri address)9322         public byte[] DownloadData(System.Uri address) { throw null; }
9323         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataAsync(System.Uri address)9324         public void DownloadDataAsync(System.Uri address) { }
9325         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataAsync(System.Uri address, object userToken)9326         public void DownloadDataAsync(System.Uri address, object userToken) { }
9327         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9328         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataTaskAsync(string address)9329         public System.Threading.Tasks.Task<byte[]> DownloadDataTaskAsync(string address) { throw null; }
9330         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9331         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataTaskAsync(System.Uri address)9332         public System.Threading.Tasks.Task<byte[]> DownloadDataTaskAsync(System.Uri address) { throw null; }
DownloadFile(string address, string fileName)9333         public void DownloadFile(string address, string fileName) { }
DownloadFile(System.Uri address, string fileName)9334         public void DownloadFile(System.Uri address, string fileName) { }
9335         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileAsync(System.Uri address, string fileName)9336         public void DownloadFileAsync(System.Uri address, string fileName) { }
9337         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileAsync(System.Uri address, string fileName, object userToken)9338         public void DownloadFileAsync(System.Uri address, string fileName, object userToken) { }
9339         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9340         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileTaskAsync(string address, string fileName)9341         public System.Threading.Tasks.Task DownloadFileTaskAsync(string address, string fileName) { throw null; }
9342         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9343         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileTaskAsync(System.Uri address, string fileName)9344         public System.Threading.Tasks.Task DownloadFileTaskAsync(System.Uri address, string fileName) { throw null; }
DownloadString(string address)9345         public string DownloadString(string address) { throw null; }
DownloadString(System.Uri address)9346         public string DownloadString(System.Uri address) { throw null; }
9347         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringAsync(System.Uri address)9348         public void DownloadStringAsync(System.Uri address) { }
9349         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringAsync(System.Uri address, object userToken)9350         public void DownloadStringAsync(System.Uri address, object userToken) { }
9351         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9352         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringTaskAsync(string address)9353         public System.Threading.Tasks.Task<string> DownloadStringTaskAsync(string address) { throw null; }
9354         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9355         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringTaskAsync(System.Uri address)9356         public System.Threading.Tasks.Task<string> DownloadStringTaskAsync(System.Uri address) { throw null; }
GetWebRequest(System.Uri address)9357         protected virtual System.Net.WebRequest GetWebRequest(System.Uri address) { throw null; }
GetWebResponse(System.Net.WebRequest request)9358         protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request) { throw null; }
GetWebResponse(System.Net.WebRequest request, System.IAsyncResult result)9359         protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request, System.IAsyncResult result) { throw null; }
OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs e)9360         protected virtual void OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs e) { }
OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs e)9361         protected virtual void OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs e)9362         protected virtual void OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs e) { }
OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs e)9363         protected virtual void OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs e) { }
OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs e)9364         protected virtual void OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs e) { }
OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs e)9365         protected virtual void OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs e) { }
OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs e)9366         protected virtual void OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs e) { }
OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs e)9367         protected virtual void OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs e) { }
OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs e)9368         protected virtual void OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs e) { }
OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs e)9369         protected virtual void OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs e) { }
OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs e)9370         protected virtual void OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs e) { }
9371         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9372         [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)9373         protected virtual void OnWriteStreamClosed(System.Net.WriteStreamClosedEventArgs e) { }
OpenRead(string address)9374         public System.IO.Stream OpenRead(string address) { throw null; }
OpenRead(System.Uri address)9375         public System.IO.Stream OpenRead(System.Uri address) { throw null; }
9376         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadAsync(System.Uri address)9377         public void OpenReadAsync(System.Uri address) { }
9378         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadAsync(System.Uri address, object userToken)9379         public void OpenReadAsync(System.Uri address, object userToken) { }
9380         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9381         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadTaskAsync(string address)9382         public System.Threading.Tasks.Task<System.IO.Stream> OpenReadTaskAsync(string address) { throw null; }
9383         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9384         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadTaskAsync(System.Uri address)9385         public System.Threading.Tasks.Task<System.IO.Stream> OpenReadTaskAsync(System.Uri address) { throw null; }
OpenWrite(string address)9386         public System.IO.Stream OpenWrite(string address) { throw null; }
OpenWrite(string address, string method)9387         public System.IO.Stream OpenWrite(string address, string method) { throw null; }
OpenWrite(System.Uri address)9388         public System.IO.Stream OpenWrite(System.Uri address) { throw null; }
OpenWrite(System.Uri address, string method)9389         public System.IO.Stream OpenWrite(System.Uri address, string method) { throw null; }
9390         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address)9391         public void OpenWriteAsync(System.Uri address) { }
9392         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address, string method)9393         public void OpenWriteAsync(System.Uri address, string method) { }
9394         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address, string method, object userToken)9395         public void OpenWriteAsync(System.Uri address, string method, object userToken) { }
9396         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9397         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(string address)9398         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(string address) { throw null; }
9399         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9400         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(string address, string method)9401         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(string address, string method) { throw null; }
9402         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9403         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(System.Uri address)9404         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(System.Uri address) { throw null; }
9405         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9406         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(System.Uri address, string method)9407         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(System.Uri address, string method) { throw null; }
UploadData(string address, byte[] data)9408         public byte[] UploadData(string address, byte[] data) { throw null; }
UploadData(string address, string method, byte[] data)9409         public byte[] UploadData(string address, string method, byte[] data) { throw null; }
UploadData(System.Uri address, byte[] data)9410         public byte[] UploadData(System.Uri address, byte[] data) { throw null; }
UploadData(System.Uri address, string method, byte[] data)9411         public byte[] UploadData(System.Uri address, string method, byte[] data) { throw null; }
9412         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, byte[] data)9413         public void UploadDataAsync(System.Uri address, byte[] data) { }
9414         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, string method, byte[] data)9415         public void UploadDataAsync(System.Uri address, string method, byte[] data) { }
9416         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, string method, byte[] data, object userToken)9417         public void UploadDataAsync(System.Uri address, string method, byte[] data, object userToken) { }
9418         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9419         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(string address, byte[] data)9420         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(string address, byte[] data) { throw null; }
9421         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9422         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(string address, string method, byte[] data)9423         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(string address, string method, byte[] data) { throw null; }
9424         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9425         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(System.Uri address, byte[] data)9426         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(System.Uri address, byte[] data) { throw null; }
9427         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9428         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(System.Uri address, string method, byte[] data)9429         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(System.Uri address, string method, byte[] data) { throw null; }
UploadFile(string address, string fileName)9430         public byte[] UploadFile(string address, string fileName) { throw null; }
UploadFile(string address, string method, string fileName)9431         public byte[] UploadFile(string address, string method, string fileName) { throw null; }
UploadFile(System.Uri address, string fileName)9432         public byte[] UploadFile(System.Uri address, string fileName) { throw null; }
UploadFile(System.Uri address, string method, string fileName)9433         public byte[] UploadFile(System.Uri address, string method, string fileName) { throw null; }
9434         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string fileName)9435         public void UploadFileAsync(System.Uri address, string fileName) { }
9436         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string method, string fileName)9437         public void UploadFileAsync(System.Uri address, string method, string fileName) { }
9438         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string method, string fileName, object userToken)9439         public void UploadFileAsync(System.Uri address, string method, string fileName, object userToken) { }
9440         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9441         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(string address, string fileName)9442         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(string address, string fileName) { throw null; }
9443         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9444         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(string address, string method, string fileName)9445         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(string address, string method, string fileName) { throw null; }
9446         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9447         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(System.Uri address, string fileName)9448         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(System.Uri address, string fileName) { throw null; }
9449         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9450         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(System.Uri address, string method, string fileName)9451         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(System.Uri address, string method, string fileName) { throw null; }
UploadString(string address, string data)9452         public string UploadString(string address, string data) { throw null; }
UploadString(string address, string method, string data)9453         public string UploadString(string address, string method, string data) { throw null; }
UploadString(System.Uri address, string data)9454         public string UploadString(System.Uri address, string data) { throw null; }
UploadString(System.Uri address, string method, string data)9455         public string UploadString(System.Uri address, string method, string data) { throw null; }
9456         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string data)9457         public void UploadStringAsync(System.Uri address, string data) { }
9458         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string method, string data)9459         public void UploadStringAsync(System.Uri address, string method, string data) { }
9460         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string method, string data, object userToken)9461         public void UploadStringAsync(System.Uri address, string method, string data, object userToken) { }
9462         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9463         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(string address, string data)9464         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(string address, string data) { throw null; }
9465         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9466         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(string address, string method, string data)9467         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(string address, string method, string data) { throw null; }
9468         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9469         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(System.Uri address, string data)9470         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(System.Uri address, string data) { throw null; }
9471         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9472         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(System.Uri address, string method, string data)9473         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(System.Uri address, string method, string data) { throw null; }
UploadValues(string address, System.Collections.Specialized.NameValueCollection data)9474         public byte[] UploadValues(string address, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(string address, string method, System.Collections.Specialized.NameValueCollection data)9475         public byte[] UploadValues(string address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(System.Uri address, System.Collections.Specialized.NameValueCollection data)9476         public byte[] UploadValues(System.Uri address, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)9477         public byte[] UploadValues(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
9478         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data)9479         public void UploadValuesAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data) { }
9480         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)9481         public void UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { }
9482         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data, object userToken)9483         public void UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data, object userToken) { }
9484         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9485         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(string address, System.Collections.Specialized.NameValueCollection data)9486         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(string address, System.Collections.Specialized.NameValueCollection data) { throw null; }
9487         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9488         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(string address, string method, System.Collections.Specialized.NameValueCollection data)9489         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(string address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
9490         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9491         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data)9492         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data) { throw null; }
9493         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9494         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)9495         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
9496     }
9497     [System.SerializableAttribute]
9498     public partial class WebException : System.InvalidOperationException, System.Runtime.Serialization.ISerializable
9499     {
WebException()9500         public WebException() { }
WebException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9501         protected WebException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
WebException(string message)9502         public WebException(string message) { }
WebException(string message, System.Exception innerException)9503         public WebException(string message, System.Exception innerException) { }
WebException(string message, System.Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response)9504         public WebException(string message, System.Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response) { }
WebException(string message, System.Net.WebExceptionStatus status)9505         public WebException(string message, System.Net.WebExceptionStatus status) { }
9506         public System.Net.WebResponse Response { get { throw null; } }
9507         public System.Net.WebExceptionStatus Status { get { throw null; } }
9508         [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)9509         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9510         [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)9511         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9512     }
9513     public enum WebExceptionStatus
9514     {
9515         CacheEntryNotFound = 18,
9516         ConnectFailure = 2,
9517         ConnectionClosed = 8,
9518         KeepAliveFailure = 12,
9519         MessageLengthLimitExceeded = 17,
9520         NameResolutionFailure = 1,
9521         Pending = 13,
9522         PipelineFailure = 5,
9523         ProtocolError = 7,
9524         ProxyNameResolutionFailure = 15,
9525         ReceiveFailure = 3,
9526         RequestCanceled = 6,
9527         RequestProhibitedByCachePolicy = 19,
9528         RequestProhibitedByProxy = 20,
9529         SecureChannelFailure = 10,
9530         SendFailure = 4,
9531         ServerProtocolViolation = 11,
9532         Success = 0,
9533         Timeout = 14,
9534         TrustFailure = 9,
9535         UnknownError = 16,
9536     }
9537     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
9538     [System.SerializableAttribute]
9539     public partial class WebHeaderCollection : System.Collections.Specialized.NameValueCollection, System.Runtime.Serialization.ISerializable
9540     {
WebHeaderCollection()9541         public WebHeaderCollection() { }
WebHeaderCollection(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9542         protected WebHeaderCollection(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9543         public override string[] AllKeys { get { throw null; } }
9544         public override int Count { get { throw null; } }
9545         public string this[System.Net.HttpRequestHeader header] { get { throw null; } set { } }
9546         public string this[System.Net.HttpResponseHeader header] { get { throw null; } set { } }
9547         public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw null; } }
Add(System.Net.HttpRequestHeader header, string value)9548         public void Add(System.Net.HttpRequestHeader header, string value) { }
Add(System.Net.HttpResponseHeader header, string value)9549         public void Add(System.Net.HttpResponseHeader header, string value) { }
Add(string header)9550         public void Add(string header) { }
Add(string name, string value)9551         public override void Add(string name, string value) { }
AddWithoutValidate(string headerName, string headerValue)9552         protected void AddWithoutValidate(string headerName, string headerValue) { }
Clear()9553         public override void Clear() { }
Get(int index)9554         public override string Get(int index) { throw null; }
Get(string name)9555         public override string Get(string name) { throw null; }
GetEnumerator()9556         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetKey(int index)9557         public override string GetKey(int index) { throw null; }
9558         [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)9559         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetValues(int index)9560         public override string[] GetValues(int index) { throw null; }
GetValues(string header)9561         public override string[] GetValues(string header) { throw null; }
IsRestricted(string headerName)9562         public static bool IsRestricted(string headerName) { throw null; }
IsRestricted(string headerName, bool response)9563         public static bool IsRestricted(string headerName, bool response) { throw null; }
OnDeserialization(object sender)9564         public override void OnDeserialization(object sender) { }
Remove(System.Net.HttpRequestHeader header)9565         public void Remove(System.Net.HttpRequestHeader header) { }
Remove(System.Net.HttpResponseHeader header)9566         public void Remove(System.Net.HttpResponseHeader header) { }
Remove(string name)9567         public override void Remove(string name) { }
Set(System.Net.HttpRequestHeader header, string value)9568         public void Set(System.Net.HttpRequestHeader header, string value) { }
Set(System.Net.HttpResponseHeader header, string value)9569         public void Set(System.Net.HttpResponseHeader header, string value) { }
Set(string name, string value)9570         public override void Set(string name, string value) { }
9571         [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)9572         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
ToByteArray()9573         public byte[] ToByteArray() { throw null; }
ToString()9574         public override string ToString() { throw null; }
9575     }
9576     [System.SerializableAttribute]
9577     public sealed partial class WebPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
9578     {
WebPermission()9579         public WebPermission() { }
WebPermission(System.Net.NetworkAccess access, string uriString)9580         public WebPermission(System.Net.NetworkAccess access, string uriString) { }
WebPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex)9581         public WebPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex) { }
WebPermission(System.Security.Permissions.PermissionState state)9582         public WebPermission(System.Security.Permissions.PermissionState state) { }
9583         public System.Collections.IEnumerator AcceptList { get { throw null; } }
9584         public System.Collections.IEnumerator ConnectList { get { throw null; } }
AddPermission(System.Net.NetworkAccess access, string uriString)9585         public void AddPermission(System.Net.NetworkAccess access, string uriString) { }
AddPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex)9586         public void AddPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex) { }
Copy()9587         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)9588         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)9589         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)9590         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()9591         public bool IsUnrestricted() { throw null; }
ToXml()9592         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)9593         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
9594     }
9595     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
9596     [System.SerializableAttribute]
9597     public sealed partial class WebPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
9598     {
WebPermissionAttribute(System.Security.Permissions.SecurityAction action)9599         public WebPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
9600         public string Accept { get { throw null; } set { } }
9601         public string AcceptPattern { get { throw null; } set { } }
9602         public string Connect { get { throw null; } set { } }
9603         public string ConnectPattern { get { throw null; } set { } }
CreatePermission()9604         public override System.Security.IPermission CreatePermission() { throw null; }
9605     }
9606     [System.SerializableAttribute]
9607     public partial class WebProxy : System.Net.IWebProxy, System.Runtime.Serialization.ISerializable
9608     {
WebProxy()9609         public WebProxy() { }
WebProxy(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9610         protected WebProxy(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
WebProxy(string Address)9611         public WebProxy(string Address) { }
WebProxy(string Address, bool BypassOnLocal)9612         public WebProxy(string Address, bool BypassOnLocal) { }
WebProxy(string Address, bool BypassOnLocal, string[] BypassList)9613         public WebProxy(string Address, bool BypassOnLocal, string[] BypassList) { }
WebProxy(string Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials)9614         public WebProxy(string Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials) { }
WebProxy(string Host, int Port)9615         public WebProxy(string Host, int Port) { }
WebProxy(System.Uri Address)9616         public WebProxy(System.Uri Address) { }
WebProxy(System.Uri Address, bool BypassOnLocal)9617         public WebProxy(System.Uri Address, bool BypassOnLocal) { }
WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList)9618         public WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList) { }
WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials)9619         public WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials) { }
9620         public System.Uri Address { get { throw null; } set { } }
9621         public System.Collections.ArrayList BypassArrayList { get { throw null; } }
9622         public string[] BypassList { get { throw null; } set { } }
9623         public bool BypassProxyOnLocal { get { throw null; } set { } }
9624         public System.Net.ICredentials Credentials { get { throw null; } set { } }
9625         public bool UseDefaultCredentials { get { throw null; } set { } }
9626         [System.ObsoleteAttribute("This method has been deprecated. Please use the proxy selected for you by default. http://go.microsoft.com/fwlink/?linkid=14202")]
GetDefaultProxy()9627         public static System.Net.WebProxy GetDefaultProxy() { throw null; }
9628         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9629         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetProxy(System.Uri destination)9630         public System.Uri GetProxy(System.Uri destination) { throw null; }
IsBypassed(System.Uri host)9631         public bool IsBypassed(System.Uri host) { throw null; }
9632         [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)9633         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9634     }
9635     [System.SerializableAttribute]
9636     public abstract partial class WebRequest : System.MarshalByRefObject, System.Runtime.Serialization.ISerializable
9637     {
WebRequest()9638         protected WebRequest() { }
WebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9639         protected WebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9640         public System.Net.Security.AuthenticationLevel AuthenticationLevel { get { throw null; } set { } }
9641         public virtual System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } }
9642         public virtual string ConnectionGroupName { get { throw null; } set { } }
9643         public virtual long ContentLength { get { throw null; } set { } }
9644         public virtual string ContentType { get { throw null; } set { } }
9645         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9646         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9647         public virtual System.Net.IWebRequestCreate CreatorInstance { get { throw null; } }
9648         public virtual System.Net.ICredentials Credentials { get { throw null; } set { } }
9649         public static System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
9650         public static System.Net.IWebProxy DefaultWebProxy { get { throw null; } set { } }
9651         public virtual System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
9652         public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } set { } }
9653         public virtual string Method { get { throw null; } set { } }
9654         public virtual bool PreAuthenticate { get { throw null; } set { } }
9655         public virtual System.Net.IWebProxy Proxy { get { throw null; } set { } }
9656         public virtual System.Uri RequestUri { get { throw null; } }
9657         public virtual int Timeout { get { throw null; } set { } }
9658         public virtual bool UseDefaultCredentials { get { throw null; } set { } }
Abort()9659         public virtual void Abort() { }
9660         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)9661         public virtual System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
9662         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)9663         public virtual System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
Create(string requestUriString)9664         public static System.Net.WebRequest Create(string requestUriString) { throw null; }
Create(System.Uri requestUri)9665         public static System.Net.WebRequest Create(System.Uri requestUri) { throw null; }
CreateDefault(System.Uri requestUri)9666         public static System.Net.WebRequest CreateDefault(System.Uri requestUri) { throw null; }
CreateHttp(string requestUriString)9667         public static System.Net.HttpWebRequest CreateHttp(string requestUriString) { throw null; }
CreateHttp(System.Uri requestUri)9668         public static System.Net.HttpWebRequest CreateHttp(System.Uri requestUri) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)9669         public virtual System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)9670         public virtual System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
9671         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9672         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()9673         public virtual System.IO.Stream GetRequestStream() { throw null; }
9674         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetRequestStreamAsync()9675         public virtual System.Threading.Tasks.Task<System.IO.Stream> GetRequestStreamAsync() { throw null; }
GetResponse()9676         public virtual System.Net.WebResponse GetResponse() { throw null; }
9677         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetResponseAsync()9678         public virtual System.Threading.Tasks.Task<System.Net.WebResponse> GetResponseAsync() { throw null; }
GetSystemWebProxy()9679         public static System.Net.IWebProxy GetSystemWebProxy() { throw null; }
9680         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9681         [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)9682         public static void RegisterPortableWebRequestCreator(System.Net.IWebRequestCreate creator) { }
RegisterPrefix(string prefix, System.Net.IWebRequestCreate creator)9683         public static bool RegisterPrefix(string prefix, System.Net.IWebRequestCreate creator) { throw null; }
9684         [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)9685         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9686     }
9687     public static partial class WebRequestMethods
9688     {
9689         public static partial class File
9690         {
9691             public const string DownloadFile = "GET";
9692             public const string UploadFile = "PUT";
9693         }
9694         public static partial class Ftp
9695         {
9696             public const string AppendFile = "APPE";
9697             public const string DeleteFile = "DELE";
9698             public const string DownloadFile = "RETR";
9699             public const string GetDateTimestamp = "MDTM";
9700             public const string GetFileSize = "SIZE";
9701             public const string ListDirectory = "NLST";
9702             public const string ListDirectoryDetails = "LIST";
9703             public const string MakeDirectory = "MKD";
9704             public const string PrintWorkingDirectory = "PWD";
9705             public const string RemoveDirectory = "RMD";
9706             public const string Rename = "RENAME";
9707             public const string UploadFile = "STOR";
9708             public const string UploadFileWithUniqueName = "STOU";
9709         }
9710         public static partial class Http
9711         {
9712             public const string Connect = "CONNECT";
9713             public const string Get = "GET";
9714             public const string Head = "HEAD";
9715             public const string MkCol = "MKCOL";
9716             public const string Post = "POST";
9717             public const string Put = "PUT";
9718         }
9719     }
9720     [System.SerializableAttribute]
9721     public abstract partial class WebResponse : System.MarshalByRefObject, System.IDisposable, System.Runtime.Serialization.ISerializable
9722     {
WebResponse()9723         protected WebResponse() { }
WebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9724         protected WebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9725         public virtual long ContentLength { get { throw null; } set { } }
9726         public virtual string ContentType { get { throw null; } set { } }
9727         public virtual System.Net.WebHeaderCollection Headers { get { throw null; } }
9728         public virtual bool IsFromCache { get { throw null; } }
9729         public virtual bool IsMutuallyAuthenticated { get { throw null; } }
9730         public virtual System.Uri ResponseUri { get { throw null; } }
9731         public virtual bool SupportsHeaders { get { throw null; } }
Close()9732         public virtual void Close() { }
Dispose()9733         public void Dispose() { }
Dispose(bool disposing)9734         protected virtual void Dispose(bool disposing) { }
9735         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9736         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseStream()9737         public virtual System.IO.Stream GetResponseStream() { throw null; }
9738         [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)9739         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
9740     }
9741     public static partial class WebUtility
9742     {
HtmlDecode(string value)9743         public static string HtmlDecode(string value) { throw null; }
HtmlDecode(string value, System.IO.TextWriter output)9744         public static void HtmlDecode(string value, System.IO.TextWriter output) { }
HtmlEncode(string value)9745         public static string HtmlEncode(string value) { throw null; }
HtmlEncode(string value, System.IO.TextWriter output)9746         public static void HtmlEncode(string value, System.IO.TextWriter output) { }
UrlDecode(string encodedValue)9747         public static string UrlDecode(string encodedValue) { throw null; }
UrlDecodeToBytes(byte[] encodedValue, int offset, int count)9748         public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count) { throw null; }
UrlEncode(string value)9749         public static string UrlEncode(string value) { throw null; }
UrlEncodeToBytes(byte[] value, int offset, int count)9750         public static byte[] UrlEncodeToBytes(byte[] value, int offset, int count) { throw null; }
9751     }
9752     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9753     public partial class WriteStreamClosedEventArgs : System.EventArgs
9754     {
9755         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9756         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
WriteStreamClosedEventArgs()9757         public WriteStreamClosedEventArgs() { }
9758         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
9759         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
9760         public System.Exception Error { get { throw null; } }
9761     }
9762     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
WriteStreamClosedEventHandler(object sender, System.Net.WriteStreamClosedEventArgs e)9763     public delegate void WriteStreamClosedEventHandler(object sender, System.Net.WriteStreamClosedEventArgs e);
9764 }
9765 namespace System.Net.Cache
9766 {
9767     public enum HttpCacheAgeControl
9768     {
9769         MaxAge = 2,
9770         MaxAgeAndMaxStale = 6,
9771         MaxAgeAndMinFresh = 3,
9772         MaxStale = 4,
9773         MinFresh = 1,
9774         None = 0,
9775     }
9776     public enum HttpRequestCacheLevel
9777     {
9778         BypassCache = 1,
9779         CacheIfAvailable = 3,
9780         CacheOnly = 2,
9781         CacheOrNextCacheOnly = 7,
9782         Default = 0,
9783         NoCacheNoStore = 6,
9784         Refresh = 8,
9785         Reload = 5,
9786         Revalidate = 4,
9787     }
9788     public partial class HttpRequestCachePolicy : System.Net.Cache.RequestCachePolicy
9789     {
HttpRequestCachePolicy()9790         public HttpRequestCachePolicy() { }
HttpRequestCachePolicy(System.DateTime cacheSyncDate)9791         public HttpRequestCachePolicy(System.DateTime cacheSyncDate) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan ageOrFreshOrStale)9792         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan ageOrFreshOrStale) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale)9793         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)9794         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale, System.DateTime cacheSyncDate) { }
HttpRequestCachePolicy(System.Net.Cache.HttpRequestCacheLevel level)9795         public HttpRequestCachePolicy(System.Net.Cache.HttpRequestCacheLevel level) { }
9796         public System.DateTime CacheSyncDate { get { throw null; } }
9797         public new System.Net.Cache.HttpRequestCacheLevel Level { get { throw null; } }
9798         public System.TimeSpan MaxAge { get { throw null; } }
9799         public System.TimeSpan MaxStale { get { throw null; } }
9800         public System.TimeSpan MinFresh { get { throw null; } }
ToString()9801         public override string ToString() { throw null; }
9802     }
9803     public enum RequestCacheLevel
9804     {
9805         BypassCache = 1,
9806         CacheIfAvailable = 3,
9807         CacheOnly = 2,
9808         Default = 0,
9809         NoCacheNoStore = 6,
9810         Reload = 5,
9811         Revalidate = 4,
9812     }
9813     public partial class RequestCachePolicy
9814     {
RequestCachePolicy()9815         public RequestCachePolicy() { }
RequestCachePolicy(System.Net.Cache.RequestCacheLevel level)9816         public RequestCachePolicy(System.Net.Cache.RequestCacheLevel level) { }
9817         public System.Net.Cache.RequestCacheLevel Level { get { throw null; } }
ToString()9818         public override string ToString() { throw null; }
9819     }
9820 }
9821 #if CONFIG_DEP
9822 namespace System.Net.Configuration
9823 {
9824     public sealed partial class AuthenticationModuleElement : System.Configuration.ConfigurationElement
9825     {
AuthenticationModuleElement()9826         public AuthenticationModuleElement() { }
AuthenticationModuleElement(string typeName)9827         public AuthenticationModuleElement(string typeName) { }
9828         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9829         [System.Configuration.ConfigurationPropertyAttribute("type", IsRequired=true, IsKey=true)]
9830         public string Type { get { throw null; } set { } }
9831     }
9832     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.AuthenticationModuleElement))]
9833     public sealed partial class AuthenticationModuleElementCollection : System.Configuration.ConfigurationElementCollection
9834     {
AuthenticationModuleElementCollection()9835         public AuthenticationModuleElementCollection() { }
9836         public System.Net.Configuration.AuthenticationModuleElement this[int index] { get { throw null; } set { } }
9837         public new System.Net.Configuration.AuthenticationModuleElement this[string name] { get { throw null; } set { } }
Add(System.Net.Configuration.AuthenticationModuleElement element)9838         public void Add(System.Net.Configuration.AuthenticationModuleElement element) { }
Clear()9839         public void Clear() { }
CreateNewElement()9840         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)9841         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.AuthenticationModuleElement element)9842         public int IndexOf(System.Net.Configuration.AuthenticationModuleElement element) { throw null; }
Remove(System.Net.Configuration.AuthenticationModuleElement element)9843         public void Remove(System.Net.Configuration.AuthenticationModuleElement element) { }
Remove(string name)9844         public void Remove(string name) { }
RemoveAt(int index)9845         public void RemoveAt(int index) { }
9846     }
9847     public sealed partial class AuthenticationModulesSection : System.Configuration.ConfigurationSection
9848     {
AuthenticationModulesSection()9849         public AuthenticationModulesSection() { }
9850         [System.Configuration.ConfigurationPropertyAttribute("", IsDefaultCollection=true)]
9851         public System.Net.Configuration.AuthenticationModuleElementCollection AuthenticationModules { get { throw null; } }
9852         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
InitializeDefault()9853         protected override void InitializeDefault() { }
PostDeserialize()9854         protected override void PostDeserialize() { }
9855     }
9856     public sealed partial class BypassElement : System.Configuration.ConfigurationElement
9857     {
BypassElement()9858         public BypassElement() { }
BypassElement(string address)9859         public BypassElement(string address) { }
9860         [System.Configuration.ConfigurationPropertyAttribute("address", IsRequired=true, IsKey=true)]
9861         public string Address { get { throw null; } set { } }
9862         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9863     }
9864     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.BypassElement))]
9865     public sealed partial class BypassElementCollection : System.Configuration.ConfigurationElementCollection
9866     {
BypassElementCollection()9867         public BypassElementCollection() { }
9868         public System.Net.Configuration.BypassElement this[int index] { get { throw null; } set { } }
9869         public new System.Net.Configuration.BypassElement this[string name] { get { throw null; } set { } }
9870         protected override bool ThrowOnDuplicate { get { throw null; } }
Add(System.Net.Configuration.BypassElement element)9871         public void Add(System.Net.Configuration.BypassElement element) { }
Clear()9872         public void Clear() { }
CreateNewElement()9873         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)9874         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.BypassElement element)9875         public int IndexOf(System.Net.Configuration.BypassElement element) { throw null; }
Remove(System.Net.Configuration.BypassElement element)9876         public void Remove(System.Net.Configuration.BypassElement element) { }
Remove(string name)9877         public void Remove(string name) { }
RemoveAt(int index)9878         public void RemoveAt(int index) { }
9879     }
9880     public sealed partial class ConnectionManagementElement : System.Configuration.ConfigurationElement
9881     {
ConnectionManagementElement()9882         public ConnectionManagementElement() { }
ConnectionManagementElement(string address, int maxConnection)9883         public ConnectionManagementElement(string address, int maxConnection) { }
9884         [System.Configuration.ConfigurationPropertyAttribute("address", IsRequired=true, IsKey=true)]
9885         public string Address { get { throw null; } set { } }
9886         [System.Configuration.ConfigurationPropertyAttribute("maxconnection", IsRequired=true, DefaultValue=1)]
9887         public int MaxConnection { get { throw null; } set { } }
9888         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9889     }
9890     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.ConnectionManagementElement))]
9891     public sealed partial class ConnectionManagementElementCollection : System.Configuration.ConfigurationElementCollection
9892     {
ConnectionManagementElementCollection()9893         public ConnectionManagementElementCollection() { }
9894         public System.Net.Configuration.ConnectionManagementElement this[int index] { get { throw null; } set { } }
9895         public new System.Net.Configuration.ConnectionManagementElement this[string name] { get { throw null; } set { } }
Add(System.Net.Configuration.ConnectionManagementElement element)9896         public void Add(System.Net.Configuration.ConnectionManagementElement element) { }
Clear()9897         public void Clear() { }
CreateNewElement()9898         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)9899         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.ConnectionManagementElement element)9900         public int IndexOf(System.Net.Configuration.ConnectionManagementElement element) { throw null; }
Remove(System.Net.Configuration.ConnectionManagementElement element)9901         public void Remove(System.Net.Configuration.ConnectionManagementElement element) { }
Remove(string name)9902         public void Remove(string name) { }
RemoveAt(int index)9903         public void RemoveAt(int index) { }
9904     }
9905     public sealed partial class ConnectionManagementSection : System.Configuration.ConfigurationSection
9906     {
ConnectionManagementSection()9907         public ConnectionManagementSection() { }
9908         [System.Configuration.ConfigurationPropertyAttribute("", IsDefaultCollection=true)]
9909         public System.Net.Configuration.ConnectionManagementElementCollection ConnectionManagement { get { throw null; } }
9910         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9911     }
9912     public sealed partial class DefaultProxySection : System.Configuration.ConfigurationSection
9913     {
DefaultProxySection()9914         public DefaultProxySection() { }
9915         [System.Configuration.ConfigurationPropertyAttribute("bypasslist")]
9916         public System.Net.Configuration.BypassElementCollection BypassList { get { throw null; } }
9917         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=true)]
9918         public bool Enabled { get { throw null; } set { } }
9919         [System.Configuration.ConfigurationPropertyAttribute("module")]
9920         public System.Net.Configuration.ModuleElement Module { get { throw null; } }
9921         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9922         [System.Configuration.ConfigurationPropertyAttribute("proxy")]
9923         public System.Net.Configuration.ProxyElement Proxy { get { throw null; } }
9924         [System.Configuration.ConfigurationPropertyAttribute("useDefaultCredentials", DefaultValue=false)]
9925         public bool UseDefaultCredentials { get { throw null; } set { } }
PostDeserialize()9926         protected override void PostDeserialize() { }
Reset(System.Configuration.ConfigurationElement parentElement)9927         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
9928     }
9929     public sealed partial class FtpCachePolicyElement : System.Configuration.ConfigurationElement
9930     {
FtpCachePolicyElement()9931         public FtpCachePolicyElement() { }
9932         [System.Configuration.ConfigurationPropertyAttribute("policyLevel", DefaultValue=(System.Net.Cache.RequestCacheLevel)(0))]
9933         public System.Net.Cache.RequestCacheLevel PolicyLevel { get { throw null; } set { } }
9934         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)9935         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
Reset(System.Configuration.ConfigurationElement parentElement)9936         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
9937     }
9938     public sealed partial class HttpCachePolicyElement : System.Configuration.ConfigurationElement
9939     {
HttpCachePolicyElement()9940         public HttpCachePolicyElement() { }
9941         [System.Configuration.ConfigurationPropertyAttribute("maximumAge", DefaultValue="10675199.02:48:05.4775807")]
9942         public System.TimeSpan MaximumAge { get { throw null; } set { } }
9943         [System.Configuration.ConfigurationPropertyAttribute("maximumStale", DefaultValue="-10675199.02:48:05.4775808")]
9944         public System.TimeSpan MaximumStale { get { throw null; } set { } }
9945         [System.Configuration.ConfigurationPropertyAttribute("minimumFresh", DefaultValue="-10675199.02:48:05.4775808")]
9946         public System.TimeSpan MinimumFresh { get { throw null; } set { } }
9947         [System.Configuration.ConfigurationPropertyAttribute("policyLevel", IsRequired=true, DefaultValue=(System.Net.Cache.HttpRequestCacheLevel)(0))]
9948         public System.Net.Cache.HttpRequestCacheLevel PolicyLevel { get { throw null; } set { } }
9949         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)9950         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
Reset(System.Configuration.ConfigurationElement parentElement)9951         protected override void Reset(System.Configuration.ConfigurationElement parentElement) { }
9952     }
9953     public sealed partial class HttpListenerElement : System.Configuration.ConfigurationElement
9954     {
HttpListenerElement()9955         public HttpListenerElement() { }
9956         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9957         [System.Configuration.ConfigurationPropertyAttribute("timeouts")]
9958         public System.Net.Configuration.HttpListenerTimeoutsElement Timeouts { get { throw null; } }
9959         [System.Configuration.ConfigurationPropertyAttribute("unescapeRequestUrl", DefaultValue=true, IsRequired=false)]
9960         public bool UnescapeRequestUrl { get { throw null; } }
9961     }
9962     public sealed partial class HttpListenerTimeoutsElement : System.Configuration.ConfigurationElement
9963     {
HttpListenerTimeoutsElement()9964         public HttpListenerTimeoutsElement() { }
9965         [System.Configuration.ConfigurationPropertyAttribute("drainEntityBody", DefaultValue=0, IsRequired=false)]
9966         public System.TimeSpan DrainEntityBody { get { throw null; } }
9967         [System.Configuration.ConfigurationPropertyAttribute("entityBody", DefaultValue=0, IsRequired=false)]
9968         public System.TimeSpan EntityBody { get { throw null; } }
9969         [System.Configuration.ConfigurationPropertyAttribute("headerWait", DefaultValue=0, IsRequired=false)]
9970         public System.TimeSpan HeaderWait { get { throw null; } }
9971         [System.Configuration.ConfigurationPropertyAttribute("idleConnection", DefaultValue=0, IsRequired=false)]
9972         public System.TimeSpan IdleConnection { get { throw null; } }
9973         [System.Configuration.ConfigurationPropertyAttribute("minSendBytesPerSecond", DefaultValue=(long)0, IsRequired=false)]
9974         public long MinSendBytesPerSecond { get { throw null; } }
9975         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9976         [System.Configuration.ConfigurationPropertyAttribute("requestQueue", DefaultValue=0, IsRequired=false)]
9977         public System.TimeSpan RequestQueue { get { throw null; } }
9978     }
9979     public sealed partial class HttpWebRequestElement : System.Configuration.ConfigurationElement
9980     {
HttpWebRequestElement()9981         public HttpWebRequestElement() { }
9982         [System.Configuration.ConfigurationPropertyAttribute("maximumErrorResponseLength", DefaultValue=64)]
9983         public int MaximumErrorResponseLength { get { throw null; } set { } }
9984         [System.Configuration.ConfigurationPropertyAttribute("maximumResponseHeadersLength", DefaultValue=64)]
9985         public int MaximumResponseHeadersLength { get { throw null; } set { } }
9986         [System.Configuration.ConfigurationPropertyAttribute("maximumUnauthorizedUploadLength", DefaultValue=-1)]
9987         public int MaximumUnauthorizedUploadLength { get { throw null; } set { } }
9988         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9989         [System.Configuration.ConfigurationPropertyAttribute("useUnsafeHeaderParsing", DefaultValue=false)]
9990         public bool UseUnsafeHeaderParsing { get { throw null; } set { } }
PostDeserialize()9991         protected override void PostDeserialize() { }
9992     }
9993     public sealed partial class Ipv6Element : System.Configuration.ConfigurationElement
9994     {
Ipv6Element()9995         public Ipv6Element() { }
9996         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
9997         public bool Enabled { get { throw null; } set { } }
9998         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
9999     }
10000     public sealed partial class MailSettingsSectionGroup : System.Configuration.ConfigurationSectionGroup
10001     {
MailSettingsSectionGroup()10002         public MailSettingsSectionGroup() { }
10003         public System.Net.Configuration.SmtpSection Smtp { get { throw null; } }
10004     }
10005     public sealed partial class ModuleElement : System.Configuration.ConfigurationElement
10006     {
ModuleElement()10007         public ModuleElement() { }
10008         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10009         [System.Configuration.ConfigurationPropertyAttribute("type")]
10010         public string Type { get { throw null; } set { } }
10011     }
10012     public sealed partial class NetSectionGroup : System.Configuration.ConfigurationSectionGroup
10013     {
NetSectionGroup()10014         public NetSectionGroup() { }
10015         [System.Configuration.ConfigurationPropertyAttribute("authenticationModules")]
10016         public System.Net.Configuration.AuthenticationModulesSection AuthenticationModules { get { throw null; } }
10017         [System.Configuration.ConfigurationPropertyAttribute("connectionManagement")]
10018         public System.Net.Configuration.ConnectionManagementSection ConnectionManagement { get { throw null; } }
10019         [System.Configuration.ConfigurationPropertyAttribute("defaultProxy")]
10020         public System.Net.Configuration.DefaultProxySection DefaultProxy { get { throw null; } }
10021         public System.Net.Configuration.MailSettingsSectionGroup MailSettings { get { throw null; } }
10022         [System.Configuration.ConfigurationPropertyAttribute("requestCaching")]
10023         public System.Net.Configuration.RequestCachingSection RequestCaching { get { throw null; } }
10024         [System.Configuration.ConfigurationPropertyAttribute("settings")]
10025         public System.Net.Configuration.SettingsSection Settings { get { throw null; } }
10026         [System.Configuration.ConfigurationPropertyAttribute("webRequestModules")]
10027         public System.Net.Configuration.WebRequestModulesSection WebRequestModules { get { throw null; } }
GetSectionGroup(System.Configuration.Configuration config)10028         public static System.Net.Configuration.NetSectionGroup GetSectionGroup(System.Configuration.Configuration config) { throw null; }
10029     }
10030     public sealed partial class PerformanceCountersElement : System.Configuration.ConfigurationElement
10031     {
PerformanceCountersElement()10032         public PerformanceCountersElement() { }
10033         [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
10034         public bool Enabled { get { throw null; } set { } }
10035         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10036     }
10037     public sealed partial class ProxyElement : System.Configuration.ConfigurationElement
10038     {
ProxyElement()10039         public ProxyElement() { }
10040         [System.Configuration.ConfigurationPropertyAttribute("autoDetect", DefaultValue=(System.Net.Configuration.ProxyElement.AutoDetectValues)(-1))]
10041         public System.Net.Configuration.ProxyElement.AutoDetectValues AutoDetect { get { throw null; } set { } }
10042         [System.Configuration.ConfigurationPropertyAttribute("bypassonlocal", DefaultValue=(System.Net.Configuration.ProxyElement.BypassOnLocalValues)(-1))]
10043         public System.Net.Configuration.ProxyElement.BypassOnLocalValues BypassOnLocal { get { throw null; } set { } }
10044         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10045         [System.Configuration.ConfigurationPropertyAttribute("proxyaddress")]
10046         public System.Uri ProxyAddress { get { throw null; } set { } }
10047         [System.Configuration.ConfigurationPropertyAttribute("scriptLocation")]
10048         public System.Uri ScriptLocation { get { throw null; } set { } }
10049         [System.Configuration.ConfigurationPropertyAttribute("usesystemdefault", DefaultValue=(System.Net.Configuration.ProxyElement.UseSystemDefaultValues)(-1))]
10050         public System.Net.Configuration.ProxyElement.UseSystemDefaultValues UseSystemDefault { get { throw null; } set { } }
10051         public enum AutoDetectValues
10052         {
10053             False = 0,
10054             True = 1,
10055             Unspecified = -1,
10056         }
10057         public enum BypassOnLocalValues
10058         {
10059             False = 0,
10060             True = 1,
10061             Unspecified = -1,
10062         }
10063         public enum UseSystemDefaultValues
10064         {
10065             False = 0,
10066             True = 1,
10067             Unspecified = -1,
10068         }
10069     }
10070     public sealed partial class RequestCachingSection : System.Configuration.ConfigurationSection
10071     {
RequestCachingSection()10072         public RequestCachingSection() { }
10073         [System.Configuration.ConfigurationPropertyAttribute("defaultFtpCachePolicy")]
10074         public System.Net.Configuration.FtpCachePolicyElement DefaultFtpCachePolicy { get { throw null; } }
10075         [System.Configuration.ConfigurationPropertyAttribute("defaultHttpCachePolicy")]
10076         public System.Net.Configuration.HttpCachePolicyElement DefaultHttpCachePolicy { get { throw null; } }
10077         [System.Configuration.ConfigurationPropertyAttribute("defaultPolicyLevel", DefaultValue=(System.Net.Cache.RequestCacheLevel)(1))]
10078         public System.Net.Cache.RequestCacheLevel DefaultPolicyLevel { get { throw null; } set { } }
10079         [System.Configuration.ConfigurationPropertyAttribute("disableAllCaching", DefaultValue=false)]
10080         public bool DisableAllCaching { get { throw null; } set { } }
10081         [System.Configuration.ConfigurationPropertyAttribute("isPrivateCache", DefaultValue=true)]
10082         public bool IsPrivateCache { get { throw null; } set { } }
10083         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10084         [System.Configuration.ConfigurationPropertyAttribute("unspecifiedMaximumAge", DefaultValue="1.00:00:00")]
10085         public System.TimeSpan UnspecifiedMaximumAge { get { throw null; } set { } }
DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey)10086         protected override void DeserializeElement(System.Xml.XmlReader reader, bool serializeCollectionKey) { }
PostDeserialize()10087         protected override void PostDeserialize() { }
10088     }
10089     public sealed partial class ServicePointManagerElement : System.Configuration.ConfigurationElement
10090     {
ServicePointManagerElement()10091         public ServicePointManagerElement() { }
10092         [System.Configuration.ConfigurationPropertyAttribute("checkCertificateName", DefaultValue=true)]
10093         public bool CheckCertificateName { get { throw null; } set { } }
10094         [System.Configuration.ConfigurationPropertyAttribute("checkCertificateRevocationList", DefaultValue=false)]
10095         public bool CheckCertificateRevocationList { get { throw null; } set { } }
10096         [System.Configuration.ConfigurationPropertyAttribute("dnsRefreshTimeout", DefaultValue=120000)]
10097         public int DnsRefreshTimeout { get { throw null; } set { } }
10098         [System.Configuration.ConfigurationPropertyAttribute("enableDnsRoundRobin", DefaultValue=false)]
10099         public bool EnableDnsRoundRobin { get { throw null; } set { } }
10100         [System.Configuration.ConfigurationPropertyAttribute("encryptionPolicy", DefaultValue=(System.Net.Security.EncryptionPolicy)(0))]
10101         public System.Net.Security.EncryptionPolicy EncryptionPolicy { get { throw null; } set { } }
10102         [System.Configuration.ConfigurationPropertyAttribute("expect100Continue", DefaultValue=true)]
10103         public bool Expect100Continue { get { throw null; } set { } }
10104         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10105         [System.Configuration.ConfigurationPropertyAttribute("useNagleAlgorithm", DefaultValue=true)]
10106         public bool UseNagleAlgorithm { get { throw null; } set { } }
PostDeserialize()10107         protected override void PostDeserialize() { }
10108     }
10109     public sealed partial class SettingsSection : System.Configuration.ConfigurationSection
10110     {
SettingsSection()10111         public SettingsSection() { }
10112         [System.Configuration.ConfigurationPropertyAttribute("httpListener")]
10113         public System.Net.Configuration.HttpListenerElement HttpListener { get { throw null; } }
10114         [System.Configuration.ConfigurationPropertyAttribute("httpWebRequest")]
10115         public System.Net.Configuration.HttpWebRequestElement HttpWebRequest { get { throw null; } }
10116         [System.Configuration.ConfigurationPropertyAttribute("ipv6")]
10117         public System.Net.Configuration.Ipv6Element Ipv6 { get { throw null; } }
10118         [System.Configuration.ConfigurationPropertyAttribute("performanceCounters")]
10119         public System.Net.Configuration.PerformanceCountersElement PerformanceCounters { get { throw null; } }
10120         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10121         [System.Configuration.ConfigurationPropertyAttribute("servicePointManager")]
10122         public System.Net.Configuration.ServicePointManagerElement ServicePointManager { get { throw null; } }
10123         [System.Configuration.ConfigurationPropertyAttribute("socket")]
10124         public System.Net.Configuration.SocketElement Socket { get { throw null; } }
10125         [System.Configuration.ConfigurationPropertyAttribute("webProxyScript")]
10126         public System.Net.Configuration.WebProxyScriptElement WebProxyScript { get { throw null; } }
10127         [System.Configuration.ConfigurationPropertyAttribute("webUtility")]
10128         public System.Net.Configuration.WebUtilityElement WebUtility { get { throw null; } }
10129     }
10130     public sealed partial class SmtpNetworkElement : System.Configuration.ConfigurationElement
10131     {
SmtpNetworkElement()10132         public SmtpNetworkElement() { }
10133         [System.Configuration.ConfigurationPropertyAttribute("clientDomain")]
10134         public string ClientDomain { get { throw null; } set { } }
10135         [System.Configuration.ConfigurationPropertyAttribute("defaultCredentials", DefaultValue=false)]
10136         public bool DefaultCredentials { get { throw null; } set { } }
10137         [System.Configuration.ConfigurationPropertyAttribute("enableSsl", DefaultValue=false)]
10138         public bool EnableSsl { get { throw null; } set { } }
10139         [System.Configuration.ConfigurationPropertyAttribute("host")]
10140         public string Host { get { throw null; } set { } }
10141         [System.Configuration.ConfigurationPropertyAttribute("password")]
10142         public string Password { get { throw null; } set { } }
10143         [System.Configuration.ConfigurationPropertyAttribute("port", DefaultValue=25)]
10144         public int Port { get { throw null; } set { } }
10145         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10146         [System.Configuration.ConfigurationPropertyAttribute("targetName")]
10147         public string TargetName { get { throw null; } set { } }
10148         [System.Configuration.ConfigurationPropertyAttribute("userName")]
10149         public string UserName { get { throw null; } set { } }
PostDeserialize()10150         protected override void PostDeserialize() { }
10151     }
10152     public sealed partial class SmtpSection : System.Configuration.ConfigurationSection
10153     {
SmtpSection()10154         public SmtpSection() { }
10155         [System.Configuration.ConfigurationPropertyAttribute("deliveryFormat", DefaultValue=(System.Net.Mail.SmtpDeliveryFormat)(0))]
10156         public System.Net.Mail.SmtpDeliveryFormat DeliveryFormat { get { throw null; } set { } }
10157         [System.Configuration.ConfigurationPropertyAttribute("deliveryMethod", DefaultValue=(System.Net.Mail.SmtpDeliveryMethod)(0))]
10158         public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get { throw null; } set { } }
10159         [System.Configuration.ConfigurationPropertyAttribute("from")]
10160         public string From { get { throw null; } set { } }
10161         [System.Configuration.ConfigurationPropertyAttribute("network")]
10162         public System.Net.Configuration.SmtpNetworkElement Network { get { throw null; } }
10163         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10164         [System.Configuration.ConfigurationPropertyAttribute("specifiedPickupDirectory")]
10165         public System.Net.Configuration.SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory { get { throw null; } }
10166     }
10167     public sealed partial class SmtpSpecifiedPickupDirectoryElement : System.Configuration.ConfigurationElement
10168     {
SmtpSpecifiedPickupDirectoryElement()10169         public SmtpSpecifiedPickupDirectoryElement() { }
10170         [System.Configuration.ConfigurationPropertyAttribute("pickupDirectoryLocation")]
10171         public string PickupDirectoryLocation { get { throw null; } set { } }
10172         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10173     }
10174     public sealed partial class SocketElement : System.Configuration.ConfigurationElement
10175     {
SocketElement()10176         public SocketElement() { }
10177         [System.Configuration.ConfigurationPropertyAttribute("alwaysUseCompletionPortsForAccept", DefaultValue=false)]
10178         public bool AlwaysUseCompletionPortsForAccept { get { throw null; } set { } }
10179         [System.Configuration.ConfigurationPropertyAttribute("alwaysUseCompletionPortsForConnect", DefaultValue=false)]
10180         public bool AlwaysUseCompletionPortsForConnect { get { throw null; } set { } }
10181         [System.Configuration.ConfigurationPropertyAttribute("ipProtectionLevel", DefaultValue=(System.Net.Sockets.IPProtectionLevel)(-1))]
10182         public System.Net.Sockets.IPProtectionLevel IPProtectionLevel { get { throw null; } set { } }
10183         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
PostDeserialize()10184         protected override void PostDeserialize() { }
10185     }
10186     public enum UnicodeDecodingConformance
10187     {
10188         Auto = 0,
10189         Compat = 2,
10190         Loose = 3,
10191         Strict = 1,
10192     }
10193     public enum UnicodeEncodingConformance
10194     {
10195         Auto = 0,
10196         Compat = 2,
10197         Strict = 1,
10198     }
10199     public sealed partial class WebProxyScriptElement : System.Configuration.ConfigurationElement
10200     {
WebProxyScriptElement()10201         public WebProxyScriptElement() { }
10202         [System.Configuration.ConfigurationPropertyAttribute("downloadTimeout", DefaultValue="00:01:00")]
10203         public System.TimeSpan DownloadTimeout { get { throw null; } set { } }
10204         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
PostDeserialize()10205         protected override void PostDeserialize() { }
10206     }
10207     public sealed partial class WebRequestModuleElement : System.Configuration.ConfigurationElement
10208     {
WebRequestModuleElement()10209         public WebRequestModuleElement() { }
WebRequestModuleElement(string prefix, string type)10210         public WebRequestModuleElement(string prefix, string type) { }
WebRequestModuleElement(string prefix, System.Type type)10211         public WebRequestModuleElement(string prefix, System.Type type) { }
10212         [System.Configuration.ConfigurationPropertyAttribute("prefix", IsRequired=true, IsKey=true)]
10213         public string Prefix { get { throw null; } set { } }
10214         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10215         [System.ComponentModel.TypeConverterAttribute("System.Net.Configuration.WebRequestModuleElement.TypeTypeConverter")]
10216         [System.Configuration.ConfigurationPropertyAttribute("type")]
10217         public System.Type Type { get { throw null; } set { } }
10218     }
10219     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Net.Configuration.WebRequestModuleElement))]
10220     public sealed partial class WebRequestModuleElementCollection : System.Configuration.ConfigurationElementCollection
10221     {
WebRequestModuleElementCollection()10222         public WebRequestModuleElementCollection() { }
10223         public System.Net.Configuration.WebRequestModuleElement this[int index] { get { throw null; } set { } }
10224         public new System.Net.Configuration.WebRequestModuleElement this[string name] { get { throw null; } set { } }
Add(System.Net.Configuration.WebRequestModuleElement element)10225         public void Add(System.Net.Configuration.WebRequestModuleElement element) { }
Clear()10226         public void Clear() { }
CreateNewElement()10227         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)10228         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Net.Configuration.WebRequestModuleElement element)10229         public int IndexOf(System.Net.Configuration.WebRequestModuleElement element) { throw null; }
Remove(System.Net.Configuration.WebRequestModuleElement element)10230         public void Remove(System.Net.Configuration.WebRequestModuleElement element) { }
Remove(string name)10231         public void Remove(string name) { }
RemoveAt(int index)10232         public void RemoveAt(int index) { }
10233     }
10234     public sealed partial class WebRequestModulesSection : System.Configuration.ConfigurationSection
10235     {
WebRequestModulesSection()10236         public WebRequestModulesSection() { }
10237         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10238         [System.Configuration.ConfigurationPropertyAttribute("", IsDefaultCollection=true)]
10239         public System.Net.Configuration.WebRequestModuleElementCollection WebRequestModules { get { throw null; } }
InitializeDefault()10240         protected override void InitializeDefault() { }
PostDeserialize()10241         protected override void PostDeserialize() { }
10242     }
10243     public sealed partial class WebUtilityElement : System.Configuration.ConfigurationElement
10244     {
WebUtilityElement()10245         public WebUtilityElement() { }
10246         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
10247         [System.Configuration.ConfigurationPropertyAttribute("unicodeDecodingConformance", DefaultValue=(System.Net.Configuration.UnicodeDecodingConformance)(0))]
10248         public System.Net.Configuration.UnicodeDecodingConformance UnicodeDecodingConformance { get { throw null; } set { } }
10249         [System.Configuration.ConfigurationPropertyAttribute("unicodeEncodingConformance", DefaultValue=(System.Net.Configuration.UnicodeEncodingConformance)(0))]
10250         public System.Net.Configuration.UnicodeEncodingConformance UnicodeEncodingConformance { get { throw null; } set { } }
10251     }
10252 }
10253 #endif
10254 namespace System.Net.Mail
10255 {
10256     public partial class AlternateView : System.Net.Mail.AttachmentBase
10257     {
AlternateView(System.IO.Stream contentStream)10258         public AlternateView(System.IO.Stream contentStream) : base (default(string)) { }
AlternateView(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10259         public AlternateView(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(string)) { }
AlternateView(System.IO.Stream contentStream, string mediaType)10260         public AlternateView(System.IO.Stream contentStream, string mediaType) : base (default(string)) { }
AlternateView(string fileName)10261         public AlternateView(string fileName) : base (default(string)) { }
AlternateView(string fileName, System.Net.Mime.ContentType contentType)10262         public AlternateView(string fileName, System.Net.Mime.ContentType contentType) : base (default(string)) { }
AlternateView(string fileName, string mediaType)10263         public AlternateView(string fileName, string mediaType) : base (default(string)) { }
10264         public System.Uri BaseUri { get { throw null; } set { } }
10265         public System.Net.Mail.LinkedResourceCollection LinkedResources { get { throw null; } }
CreateAlternateViewFromString(string content)10266         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content) { throw null; }
CreateAlternateViewFromString(string content, System.Net.Mime.ContentType contentType)10267         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)10268         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
Dispose(bool disposing)10269         protected override void Dispose(bool disposing) { }
10270     }
10271     public sealed partial class AlternateViewCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.AlternateView>, System.IDisposable
10272     {
AlternateViewCollection()10273         internal AlternateViewCollection() { }
ClearItems()10274         protected override void ClearItems() { }
Dispose()10275         public void Dispose() { }
InsertItem(int index, System.Net.Mail.AlternateView item)10276         protected override void InsertItem(int index, System.Net.Mail.AlternateView item) { }
RemoveItem(int index)10277         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.AlternateView item)10278         protected override void SetItem(int index, System.Net.Mail.AlternateView item) { }
10279     }
10280     public partial class Attachment : System.Net.Mail.AttachmentBase
10281     {
Attachment(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10282         public Attachment(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(string)) { }
Attachment(System.IO.Stream contentStream, string name)10283         public Attachment(System.IO.Stream contentStream, string name) : base (default(string)) { }
Attachment(System.IO.Stream contentStream, string name, string mediaType)10284         public Attachment(System.IO.Stream contentStream, string name, string mediaType) : base (default(string)) { }
Attachment(string fileName)10285         public Attachment(string fileName) : base (default(string)) { }
Attachment(string fileName, System.Net.Mime.ContentType contentType)10286         public Attachment(string fileName, System.Net.Mime.ContentType contentType) : base (default(string)) { }
Attachment(string fileName, string mediaType)10287         public Attachment(string fileName, string mediaType) : base (default(string)) { }
10288         public System.Net.Mime.ContentDisposition ContentDisposition { get { throw null; } }
10289         public string Name { get { throw null; } set { } }
10290         public System.Text.Encoding NameEncoding { get { throw null; } set { } }
CreateAttachmentFromString(string content, System.Net.Mime.ContentType contentType)10291         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, System.Net.Mime.ContentType contentType) { throw null; }
CreateAttachmentFromString(string content, string name)10292         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, string name) { throw null; }
CreateAttachmentFromString(string content, string name, System.Text.Encoding contentEncoding, string mediaType)10293         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, string name, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
10294     }
10295     public abstract partial class AttachmentBase : System.IDisposable
10296     {
AttachmentBase(System.IO.Stream contentStream)10297         protected AttachmentBase(System.IO.Stream contentStream) { }
AttachmentBase(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10298         protected AttachmentBase(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) { }
AttachmentBase(System.IO.Stream contentStream, string mediaType)10299         protected AttachmentBase(System.IO.Stream contentStream, string mediaType) { }
AttachmentBase(string fileName)10300         protected AttachmentBase(string fileName) { }
AttachmentBase(string fileName, System.Net.Mime.ContentType contentType)10301         protected AttachmentBase(string fileName, System.Net.Mime.ContentType contentType) { }
AttachmentBase(string fileName, string mediaType)10302         protected AttachmentBase(string fileName, string mediaType) { }
10303         public string ContentId { get { throw null; } set { } }
10304         public System.IO.Stream ContentStream { get { throw null; } }
10305         public System.Net.Mime.ContentType ContentType { get { throw null; } set { } }
10306         public System.Net.Mime.TransferEncoding TransferEncoding { get { throw null; } set { } }
Dispose()10307         public void Dispose() { }
Dispose(bool disposing)10308         protected virtual void Dispose(bool disposing) { }
10309     }
10310     public sealed partial class AttachmentCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.Attachment>, System.IDisposable
10311     {
AttachmentCollection()10312         internal AttachmentCollection() { }
ClearItems()10313         protected override void ClearItems() { }
Dispose()10314         public void Dispose() { }
InsertItem(int index, System.Net.Mail.Attachment item)10315         protected override void InsertItem(int index, System.Net.Mail.Attachment item) { }
RemoveItem(int index)10316         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.Attachment item)10317         protected override void SetItem(int index, System.Net.Mail.Attachment item) { }
10318     }
10319     [System.FlagsAttribute]
10320     public enum DeliveryNotificationOptions
10321     {
10322         Delay = 4,
10323         Never = 134217728,
10324         None = 0,
10325         OnFailure = 2,
10326         OnSuccess = 1,
10327     }
10328     public partial class LinkedResource : System.Net.Mail.AttachmentBase
10329     {
LinkedResource(System.IO.Stream contentStream)10330         public LinkedResource(System.IO.Stream contentStream) : base (default(string)) { }
LinkedResource(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)10331         public LinkedResource(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(string)) { }
LinkedResource(System.IO.Stream contentStream, string mediaType)10332         public LinkedResource(System.IO.Stream contentStream, string mediaType) : base (default(string)) { }
LinkedResource(string fileName)10333         public LinkedResource(string fileName) : base (default(string)) { }
LinkedResource(string fileName, System.Net.Mime.ContentType contentType)10334         public LinkedResource(string fileName, System.Net.Mime.ContentType contentType) : base (default(string)) { }
LinkedResource(string fileName, string mediaType)10335         public LinkedResource(string fileName, string mediaType) : base (default(string)) { }
10336         public System.Uri ContentLink { get { throw null; } set { } }
CreateLinkedResourceFromString(string content)10337         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content) { throw null; }
CreateLinkedResourceFromString(string content, System.Net.Mime.ContentType contentType)10338         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)10339         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
10340     }
10341     public sealed partial class LinkedResourceCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.LinkedResource>, System.IDisposable
10342     {
LinkedResourceCollection()10343         internal LinkedResourceCollection() { }
ClearItems()10344         protected override void ClearItems() { }
Dispose()10345         public void Dispose() { }
InsertItem(int index, System.Net.Mail.LinkedResource item)10346         protected override void InsertItem(int index, System.Net.Mail.LinkedResource item) { }
RemoveItem(int index)10347         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.LinkedResource item)10348         protected override void SetItem(int index, System.Net.Mail.LinkedResource item) { }
10349     }
10350     public partial class MailAddress
10351     {
MailAddress(string address)10352         public MailAddress(string address) { }
MailAddress(string address, string displayName)10353         public MailAddress(string address, string displayName) { }
MailAddress(string address, string displayName, System.Text.Encoding displayNameEncoding)10354         public MailAddress(string address, string displayName, System.Text.Encoding displayNameEncoding) { }
10355         public string Address { get { throw null; } }
10356         public string DisplayName { get { throw null; } }
10357         public string Host { get { throw null; } }
10358         public string User { get { throw null; } }
Equals(object value)10359         public override bool Equals(object value) { throw null; }
GetHashCode()10360         public override int GetHashCode() { throw null; }
ToString()10361         public override string ToString() { throw null; }
10362     }
10363     public partial class MailAddressCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.MailAddress>
10364     {
MailAddressCollection()10365         public MailAddressCollection() { }
Add(string addresses)10366         public void Add(string addresses) { }
InsertItem(int index, System.Net.Mail.MailAddress item)10367         protected override void InsertItem(int index, System.Net.Mail.MailAddress item) { }
SetItem(int index, System.Net.Mail.MailAddress item)10368         protected override void SetItem(int index, System.Net.Mail.MailAddress item) { }
ToString()10369         public override string ToString() { throw null; }
10370     }
10371     public partial class MailMessage : System.IDisposable
10372     {
MailMessage()10373         public MailMessage() { }
MailMessage(System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to)10374         public MailMessage(System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to) { }
MailMessage(string from, string to)10375         public MailMessage(string from, string to) { }
MailMessage(string from, string to, string subject, string body)10376         public MailMessage(string from, string to, string subject, string body) { }
10377         public System.Net.Mail.AlternateViewCollection AlternateViews { get { throw null; } }
10378         public System.Net.Mail.AttachmentCollection Attachments { get { throw null; } }
10379         public System.Net.Mail.MailAddressCollection Bcc { get { throw null; } }
10380         public string Body { get { throw null; } set { } }
10381         public System.Text.Encoding BodyEncoding { get { throw null; } set { } }
10382         public System.Net.Mime.TransferEncoding BodyTransferEncoding { get { throw null; } set { } }
10383         public System.Net.Mail.MailAddressCollection CC { get { throw null; } }
10384         public System.Net.Mail.DeliveryNotificationOptions DeliveryNotificationOptions { get { throw null; } set { } }
10385         public System.Net.Mail.MailAddress From { get { throw null; } set { } }
10386         public System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
10387         public System.Text.Encoding HeadersEncoding { get { throw null; } set { } }
10388         public bool IsBodyHtml { get { throw null; } set { } }
10389         public System.Net.Mail.MailPriority Priority { get { throw null; } set { } }
10390         [System.ObsoleteAttribute("ReplyTo is obsoleted for this type.  Please use ReplyToList instead which can accept multiple addresses. http://go.microsoft.com/fwlink/?linkid=14202")]
10391         public System.Net.Mail.MailAddress ReplyTo { get { throw null; } set { } }
10392         public System.Net.Mail.MailAddressCollection ReplyToList { get { throw null; } }
10393         public System.Net.Mail.MailAddress Sender { get { throw null; } set { } }
10394         public string Subject { get { throw null; } set { } }
10395         public System.Text.Encoding SubjectEncoding { get { throw null; } set { } }
10396         public System.Net.Mail.MailAddressCollection To { get { throw null; } }
Dispose()10397         public void Dispose() { }
Dispose(bool disposing)10398         protected virtual void Dispose(bool disposing) { }
10399     }
10400     public enum MailPriority
10401     {
10402         High = 2,
10403         Low = 1,
10404         Normal = 0,
10405     }
SendCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e)10406     public delegate void SendCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
10407     public enum SmtpAccess
10408     {
10409         Connect = 1,
10410         ConnectToUnrestrictedPort = 2,
10411         None = 0,
10412     }
10413     public partial class SmtpClient : System.IDisposable
10414     {
SmtpClient()10415         public SmtpClient() { }
SmtpClient(string host)10416         public SmtpClient(string host) { }
SmtpClient(string host, int port)10417         public SmtpClient(string host, int port) { }
10418         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } }
10419         public System.Net.ICredentialsByHost Credentials { get { throw null; } set { } }
10420         public System.Net.Mail.SmtpDeliveryFormat DeliveryFormat { get { throw null; } set { } }
10421         public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get { throw null; } set { } }
10422         public bool EnableSsl { get { throw null; } set { } }
10423         public string Host { get { throw null; } set { } }
10424         public string PickupDirectoryLocation { get { throw null; } set { } }
10425         public int Port { get { throw null; } set { } }
10426         public System.Net.ServicePoint ServicePoint { get { throw null; } }
10427         public string TargetName { get { throw null; } set { } }
10428         public int Timeout { get { throw null; } set { } }
10429         public bool UseDefaultCredentials { get { throw null; } set { } }
10430         public event System.Net.Mail.SendCompletedEventHandler SendCompleted { add { } remove { } }
Dispose()10431         public void Dispose() { }
Dispose(bool disposing)10432         protected virtual void Dispose(bool disposing) { }
OnSendCompleted(System.ComponentModel.AsyncCompletedEventArgs e)10433         protected void OnSendCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
Send(System.Net.Mail.MailMessage message)10434         public void Send(System.Net.Mail.MailMessage message) { }
Send(string from, string recipients, string subject, string body)10435         public void Send(string from, string recipients, string subject, string body) { }
10436         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(System.Net.Mail.MailMessage message, object userToken)10437         public void SendAsync(System.Net.Mail.MailMessage message, object userToken) { }
10438         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(string from, string recipients, string subject, string body, object userToken)10439         public void SendAsync(string from, string recipients, string subject, string body, object userToken) { }
SendAsyncCancel()10440         public void SendAsyncCancel() { }
10441         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendMailAsync(System.Net.Mail.MailMessage message)10442         public System.Threading.Tasks.Task SendMailAsync(System.Net.Mail.MailMessage message) { throw null; }
10443         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendMailAsync(string from, string recipients, string subject, string body)10444         public System.Threading.Tasks.Task SendMailAsync(string from, string recipients, string subject, string body) { throw null; }
10445     }
10446     public enum SmtpDeliveryFormat
10447     {
10448         International = 1,
10449         SevenBit = 0,
10450     }
10451     public enum SmtpDeliveryMethod
10452     {
10453         Network = 0,
10454         PickupDirectoryFromIis = 2,
10455         SpecifiedPickupDirectory = 1,
10456     }
10457     [System.SerializableAttribute]
10458     public partial class SmtpException : System.Exception, System.Runtime.Serialization.ISerializable
10459     {
SmtpException()10460         public SmtpException() { }
SmtpException(System.Net.Mail.SmtpStatusCode statusCode)10461         public SmtpException(System.Net.Mail.SmtpStatusCode statusCode) { }
SmtpException(System.Net.Mail.SmtpStatusCode statusCode, string message)10462         public SmtpException(System.Net.Mail.SmtpStatusCode statusCode, string message) { }
SmtpException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10463         protected SmtpException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
SmtpException(string message)10464         public SmtpException(string message) { }
SmtpException(string message, System.Exception innerException)10465         public SmtpException(string message, System.Exception innerException) { }
10466         public System.Net.Mail.SmtpStatusCode StatusCode { get { throw null; } set { } }
10467         [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)10468         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10469         [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)10470         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10471     }
10472     [System.SerializableAttribute]
10473     public partial class SmtpFailedRecipientException : System.Net.Mail.SmtpException, System.Runtime.Serialization.ISerializable
10474     {
SmtpFailedRecipientException()10475         public SmtpFailedRecipientException() { }
SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient)10476         public SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient) { }
SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient, string serverResponse)10477         public SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient, string serverResponse) { }
SmtpFailedRecipientException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10478         protected SmtpFailedRecipientException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SmtpFailedRecipientException(string message)10479         public SmtpFailedRecipientException(string message) { }
SmtpFailedRecipientException(string message, System.Exception innerException)10480         public SmtpFailedRecipientException(string message, System.Exception innerException) { }
SmtpFailedRecipientException(string message, string failedRecipient, System.Exception innerException)10481         public SmtpFailedRecipientException(string message, string failedRecipient, System.Exception innerException) { }
10482         public string FailedRecipient { get { throw null; } }
10483         [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)10484         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10485         [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)10486         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10487     }
10488     [System.SerializableAttribute]
10489     public partial class SmtpFailedRecipientsException : System.Net.Mail.SmtpFailedRecipientException, System.Runtime.Serialization.ISerializable
10490     {
SmtpFailedRecipientsException()10491         public SmtpFailedRecipientsException() { }
SmtpFailedRecipientsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10492         protected SmtpFailedRecipientsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SmtpFailedRecipientsException(string message)10493         public SmtpFailedRecipientsException(string message) { }
SmtpFailedRecipientsException(string message, System.Exception innerException)10494         public SmtpFailedRecipientsException(string message, System.Exception innerException) { }
SmtpFailedRecipientsException(string message, System.Net.Mail.SmtpFailedRecipientException[] innerExceptions)10495         public SmtpFailedRecipientsException(string message, System.Net.Mail.SmtpFailedRecipientException[] innerExceptions) { }
10496         public System.Net.Mail.SmtpFailedRecipientException[] InnerExceptions { get { throw null; } }
10497         [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)10498         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10499         [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)10500         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10501     }
10502     [System.SerializableAttribute]
10503     public sealed partial class SmtpPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
10504     {
SmtpPermission(bool unrestricted)10505         public SmtpPermission(bool unrestricted) { }
SmtpPermission(System.Net.Mail.SmtpAccess access)10506         public SmtpPermission(System.Net.Mail.SmtpAccess access) { }
SmtpPermission(System.Security.Permissions.PermissionState state)10507         public SmtpPermission(System.Security.Permissions.PermissionState state) { }
10508         public System.Net.Mail.SmtpAccess Access { get { throw null; } }
AddPermission(System.Net.Mail.SmtpAccess access)10509         public void AddPermission(System.Net.Mail.SmtpAccess access) { }
Copy()10510         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)10511         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)10512         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)10513         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()10514         public bool IsUnrestricted() { throw null; }
ToXml()10515         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)10516         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
10517     }
10518     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
10519     [System.SerializableAttribute]
10520     public sealed partial class SmtpPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
10521     {
SmtpPermissionAttribute(System.Security.Permissions.SecurityAction action)10522         public SmtpPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
10523         public string Access { get { throw null; } set { } }
CreatePermission()10524         public override System.Security.IPermission CreatePermission() { throw null; }
10525     }
10526     public enum SmtpStatusCode
10527     {
10528         BadCommandSequence = 503,
10529         CannotVerifyUserWillAttemptDelivery = 252,
10530         ClientNotPermitted = 454,
10531         CommandNotImplemented = 502,
10532         CommandParameterNotImplemented = 504,
10533         CommandUnrecognized = 500,
10534         ExceededStorageAllocation = 552,
10535         GeneralFailure = -1,
10536         HelpMessage = 214,
10537         InsufficientStorage = 452,
10538         LocalErrorInProcessing = 451,
10539         MailboxBusy = 450,
10540         MailboxNameNotAllowed = 553,
10541         MailboxUnavailable = 550,
10542         MustIssueStartTlsFirst = 530,
10543         Ok = 250,
10544         ServiceClosingTransmissionChannel = 221,
10545         ServiceNotAvailable = 421,
10546         ServiceReady = 220,
10547         StartMailInput = 354,
10548         SyntaxError = 501,
10549         SystemStatus = 211,
10550         TransactionFailed = 554,
10551         UserNotLocalTryAlternatePath = 551,
10552         UserNotLocalWillForward = 251,
10553     }
10554 }
10555 namespace System.Net.Mime
10556 {
10557     public partial class ContentDisposition
10558     {
ContentDisposition()10559         public ContentDisposition() { }
ContentDisposition(string disposition)10560         public ContentDisposition(string disposition) { }
10561         public System.DateTime CreationDate { get { throw null; } set { } }
10562         public string DispositionType { get { throw null; } set { } }
10563         public string FileName { get { throw null; } set { } }
10564         public bool Inline { get { throw null; } set { } }
10565         public System.DateTime ModificationDate { get { throw null; } set { } }
10566         public System.Collections.Specialized.StringDictionary Parameters { get { throw null; } }
10567         public System.DateTime ReadDate { get { throw null; } set { } }
10568         public long Size { get { throw null; } set { } }
Equals(object rparam)10569         public override bool Equals(object rparam) { throw null; }
GetHashCode()10570         public override int GetHashCode() { throw null; }
ToString()10571         public override string ToString() { throw null; }
10572     }
10573     public partial class ContentType
10574     {
ContentType()10575         public ContentType() { }
ContentType(string contentType)10576         public ContentType(string contentType) { }
10577         public string Boundary { get { throw null; } set { } }
10578         public string CharSet { get { throw null; } set { } }
10579         public string MediaType { get { throw null; } set { } }
10580         public string Name { get { throw null; } set { } }
10581         public System.Collections.Specialized.StringDictionary Parameters { get { throw null; } }
Equals(object rparam)10582         public override bool Equals(object rparam) { throw null; }
GetHashCode()10583         public override int GetHashCode() { throw null; }
ToString()10584         public override string ToString() { throw null; }
10585     }
10586     public static partial class DispositionTypeNames
10587     {
10588         public const string Attachment = "attachment";
10589         public const string Inline = "inline";
10590     }
10591     public static partial class MediaTypeNames
10592     {
10593         public static partial class Application
10594         {
10595             public const string Octet = "application/octet-stream";
10596             public const string Pdf = "application/pdf";
10597             public const string Rtf = "application/rtf";
10598             public const string Soap = "application/soap+xml";
10599             public const string Zip = "application/zip";
10600         }
10601         public static partial class Image
10602         {
10603             public const string Gif = "image/gif";
10604             public const string Jpeg = "image/jpeg";
10605             public const string Tiff = "image/tiff";
10606         }
10607         public static partial class Text
10608         {
10609             public const string Html = "text/html";
10610             public const string Plain = "text/plain";
10611             public const string RichText = "text/richtext";
10612             public const string Xml = "text/xml";
10613         }
10614     }
10615     public enum TransferEncoding
10616     {
10617         Base64 = 1,
10618         EightBit = 3,
10619         QuotedPrintable = 0,
10620         SevenBit = 2,
10621         Unknown = -1,
10622     }
10623 }
10624 namespace System.Net.NetworkInformation
10625 {
10626     public enum DuplicateAddressDetectionState
10627     {
10628         Deprecated = 3,
10629         Duplicate = 2,
10630         Invalid = 0,
10631         Preferred = 4,
10632         Tentative = 1,
10633     }
10634     public abstract partial class GatewayIPAddressInformation
10635     {
GatewayIPAddressInformation()10636         protected GatewayIPAddressInformation() { }
10637         public abstract System.Net.IPAddress Address { get; }
10638     }
10639     public partial class GatewayIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.GatewayIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.GatewayIPAddressInformation>, System.Collections.IEnumerable
10640     {
GatewayIPAddressInformationCollection()10641         protected internal GatewayIPAddressInformationCollection() { }
10642         public virtual int Count { get { throw null; } }
10643         public virtual bool IsReadOnly { get { throw null; } }
10644         public virtual System.Net.NetworkInformation.GatewayIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.GatewayIPAddressInformation address)10645         public virtual void Add(System.Net.NetworkInformation.GatewayIPAddressInformation address) { }
Clear()10646         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.GatewayIPAddressInformation address)10647         public virtual bool Contains(System.Net.NetworkInformation.GatewayIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.GatewayIPAddressInformation[] array, int offset)10648         public virtual void CopyTo(System.Net.NetworkInformation.GatewayIPAddressInformation[] array, int offset) { }
GetEnumerator()10649         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.GatewayIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.GatewayIPAddressInformation address)10650         public virtual bool Remove(System.Net.NetworkInformation.GatewayIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10651         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10652     }
10653     public abstract partial class IcmpV4Statistics
10654     {
IcmpV4Statistics()10655         protected IcmpV4Statistics() { }
10656         public abstract long AddressMaskRepliesReceived { get; }
10657         public abstract long AddressMaskRepliesSent { get; }
10658         public abstract long AddressMaskRequestsReceived { get; }
10659         public abstract long AddressMaskRequestsSent { get; }
10660         public abstract long DestinationUnreachableMessagesReceived { get; }
10661         public abstract long DestinationUnreachableMessagesSent { get; }
10662         public abstract long EchoRepliesReceived { get; }
10663         public abstract long EchoRepliesSent { get; }
10664         public abstract long EchoRequestsReceived { get; }
10665         public abstract long EchoRequestsSent { get; }
10666         public abstract long ErrorsReceived { get; }
10667         public abstract long ErrorsSent { get; }
10668         public abstract long MessagesReceived { get; }
10669         public abstract long MessagesSent { get; }
10670         public abstract long ParameterProblemsReceived { get; }
10671         public abstract long ParameterProblemsSent { get; }
10672         public abstract long RedirectsReceived { get; }
10673         public abstract long RedirectsSent { get; }
10674         public abstract long SourceQuenchesReceived { get; }
10675         public abstract long SourceQuenchesSent { get; }
10676         public abstract long TimeExceededMessagesReceived { get; }
10677         public abstract long TimeExceededMessagesSent { get; }
10678         public abstract long TimestampRepliesReceived { get; }
10679         public abstract long TimestampRepliesSent { get; }
10680         public abstract long TimestampRequestsReceived { get; }
10681         public abstract long TimestampRequestsSent { get; }
10682     }
10683     public abstract partial class IcmpV6Statistics
10684     {
IcmpV6Statistics()10685         protected IcmpV6Statistics() { }
10686         public abstract long DestinationUnreachableMessagesReceived { get; }
10687         public abstract long DestinationUnreachableMessagesSent { get; }
10688         public abstract long EchoRepliesReceived { get; }
10689         public abstract long EchoRepliesSent { get; }
10690         public abstract long EchoRequestsReceived { get; }
10691         public abstract long EchoRequestsSent { get; }
10692         public abstract long ErrorsReceived { get; }
10693         public abstract long ErrorsSent { get; }
10694         public abstract long MembershipQueriesReceived { get; }
10695         public abstract long MembershipQueriesSent { get; }
10696         public abstract long MembershipReductionsReceived { get; }
10697         public abstract long MembershipReductionsSent { get; }
10698         public abstract long MembershipReportsReceived { get; }
10699         public abstract long MembershipReportsSent { get; }
10700         public abstract long MessagesReceived { get; }
10701         public abstract long MessagesSent { get; }
10702         public abstract long NeighborAdvertisementsReceived { get; }
10703         public abstract long NeighborAdvertisementsSent { get; }
10704         public abstract long NeighborSolicitsReceived { get; }
10705         public abstract long NeighborSolicitsSent { get; }
10706         public abstract long PacketTooBigMessagesReceived { get; }
10707         public abstract long PacketTooBigMessagesSent { get; }
10708         public abstract long ParameterProblemsReceived { get; }
10709         public abstract long ParameterProblemsSent { get; }
10710         public abstract long RedirectsReceived { get; }
10711         public abstract long RedirectsSent { get; }
10712         public abstract long RouterAdvertisementsReceived { get; }
10713         public abstract long RouterAdvertisementsSent { get; }
10714         public abstract long RouterSolicitsReceived { get; }
10715         public abstract long RouterSolicitsSent { get; }
10716         public abstract long TimeExceededMessagesReceived { get; }
10717         public abstract long TimeExceededMessagesSent { get; }
10718     }
10719     public partial class IPAddressCollection : System.Collections.Generic.ICollection<System.Net.IPAddress>, System.Collections.Generic.IEnumerable<System.Net.IPAddress>, System.Collections.IEnumerable
10720     {
IPAddressCollection()10721         protected internal IPAddressCollection() { }
10722         public virtual int Count { get { throw null; } }
10723         public virtual bool IsReadOnly { get { throw null; } }
10724         public virtual System.Net.IPAddress this[int index] { get { throw null; } }
Add(System.Net.IPAddress address)10725         public virtual void Add(System.Net.IPAddress address) { }
Clear()10726         public virtual void Clear() { }
Contains(System.Net.IPAddress address)10727         public virtual bool Contains(System.Net.IPAddress address) { throw null; }
CopyTo(System.Net.IPAddress[] array, int offset)10728         public virtual void CopyTo(System.Net.IPAddress[] array, int offset) { }
GetEnumerator()10729         public virtual System.Collections.Generic.IEnumerator<System.Net.IPAddress> GetEnumerator() { throw null; }
Remove(System.Net.IPAddress address)10730         public virtual bool Remove(System.Net.IPAddress address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10731         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10732     }
10733     public abstract partial class IPAddressInformation
10734     {
IPAddressInformation()10735         protected IPAddressInformation() { }
10736         public abstract System.Net.IPAddress Address { get; }
10737         public abstract bool IsDnsEligible { get; }
10738         public abstract bool IsTransient { get; }
10739     }
10740     public partial class IPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.IPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.IPAddressInformation>, System.Collections.IEnumerable
10741     {
IPAddressInformationCollection()10742         internal IPAddressInformationCollection() { }
10743         public virtual int Count { get { throw null; } }
10744         public virtual bool IsReadOnly { get { throw null; } }
10745         public virtual System.Net.NetworkInformation.IPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.IPAddressInformation address)10746         public virtual void Add(System.Net.NetworkInformation.IPAddressInformation address) { }
Clear()10747         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.IPAddressInformation address)10748         public virtual bool Contains(System.Net.NetworkInformation.IPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.IPAddressInformation[] array, int offset)10749         public virtual void CopyTo(System.Net.NetworkInformation.IPAddressInformation[] array, int offset) { }
GetEnumerator()10750         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.IPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.IPAddressInformation address)10751         public virtual bool Remove(System.Net.NetworkInformation.IPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10752         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10753     }
10754     public abstract partial class IPGlobalProperties
10755     {
IPGlobalProperties()10756         protected IPGlobalProperties() { }
10757         public abstract string DhcpScopeName { get; }
10758         public abstract string DomainName { get; }
10759         public abstract string HostName { get; }
10760         public abstract bool IsWinsProxy { get; }
10761         public abstract System.Net.NetworkInformation.NetBiosNodeType NodeType { get; }
BeginGetUnicastAddresses(System.AsyncCallback callback, object state)10762         public virtual System.IAsyncResult BeginGetUnicastAddresses(System.AsyncCallback callback, object state) { throw null; }
EndGetUnicastAddresses(System.IAsyncResult asyncResult)10763         public virtual System.Net.NetworkInformation.UnicastIPAddressInformationCollection EndGetUnicastAddresses(System.IAsyncResult asyncResult) { throw null; }
GetActiveTcpConnections()10764         public abstract System.Net.NetworkInformation.TcpConnectionInformation[] GetActiveTcpConnections();
GetActiveTcpListeners()10765         public abstract System.Net.IPEndPoint[] GetActiveTcpListeners();
GetActiveUdpListeners()10766         public abstract System.Net.IPEndPoint[] GetActiveUdpListeners();
GetIcmpV4Statistics()10767         public abstract System.Net.NetworkInformation.IcmpV4Statistics GetIcmpV4Statistics();
GetIcmpV6Statistics()10768         public abstract System.Net.NetworkInformation.IcmpV6Statistics GetIcmpV6Statistics();
GetIPGlobalProperties()10769         public static System.Net.NetworkInformation.IPGlobalProperties GetIPGlobalProperties() { throw null; }
GetIPv4GlobalStatistics()10770         public abstract System.Net.NetworkInformation.IPGlobalStatistics GetIPv4GlobalStatistics();
GetIPv6GlobalStatistics()10771         public abstract System.Net.NetworkInformation.IPGlobalStatistics GetIPv6GlobalStatistics();
GetTcpIPv4Statistics()10772         public abstract System.Net.NetworkInformation.TcpStatistics GetTcpIPv4Statistics();
GetTcpIPv6Statistics()10773         public abstract System.Net.NetworkInformation.TcpStatistics GetTcpIPv6Statistics();
GetUdpIPv4Statistics()10774         public abstract System.Net.NetworkInformation.UdpStatistics GetUdpIPv4Statistics();
GetUdpIPv6Statistics()10775         public abstract System.Net.NetworkInformation.UdpStatistics GetUdpIPv6Statistics();
GetUnicastAddresses()10776         public virtual System.Net.NetworkInformation.UnicastIPAddressInformationCollection GetUnicastAddresses() { throw null; }
10777         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetUnicastAddressesAsync()10778         public virtual System.Threading.Tasks.Task<System.Net.NetworkInformation.UnicastIPAddressInformationCollection> GetUnicastAddressesAsync() { throw null; }
10779     }
10780     public abstract partial class IPGlobalStatistics
10781     {
IPGlobalStatistics()10782         protected IPGlobalStatistics() { }
10783         public abstract int DefaultTtl { get; }
10784         public abstract bool ForwardingEnabled { get; }
10785         public abstract int NumberOfInterfaces { get; }
10786         public abstract int NumberOfIPAddresses { get; }
10787         public abstract int NumberOfRoutes { get; }
10788         public abstract long OutputPacketRequests { get; }
10789         public abstract long OutputPacketRoutingDiscards { get; }
10790         public abstract long OutputPacketsDiscarded { get; }
10791         public abstract long OutputPacketsWithNoRoute { get; }
10792         public abstract long PacketFragmentFailures { get; }
10793         public abstract long PacketReassembliesRequired { get; }
10794         public abstract long PacketReassemblyFailures { get; }
10795         public abstract long PacketReassemblyTimeout { get; }
10796         public abstract long PacketsFragmented { get; }
10797         public abstract long PacketsReassembled { get; }
10798         public abstract long ReceivedPackets { get; }
10799         public abstract long ReceivedPacketsDelivered { get; }
10800         public abstract long ReceivedPacketsDiscarded { get; }
10801         public abstract long ReceivedPacketsForwarded { get; }
10802         public abstract long ReceivedPacketsWithAddressErrors { get; }
10803         public abstract long ReceivedPacketsWithHeadersErrors { get; }
10804         public abstract long ReceivedPacketsWithUnknownProtocol { get; }
10805     }
10806     public abstract partial class IPInterfaceProperties
10807     {
IPInterfaceProperties()10808         protected IPInterfaceProperties() { }
10809         public abstract System.Net.NetworkInformation.IPAddressInformationCollection AnycastAddresses { get; }
10810         public abstract System.Net.NetworkInformation.IPAddressCollection DhcpServerAddresses { get; }
10811         public abstract System.Net.NetworkInformation.IPAddressCollection DnsAddresses { get; }
10812         public abstract string DnsSuffix { get; }
10813         public abstract System.Net.NetworkInformation.GatewayIPAddressInformationCollection GatewayAddresses { get; }
10814         public abstract bool IsDnsEnabled { get; }
10815         public abstract bool IsDynamicDnsEnabled { get; }
10816         public abstract System.Net.NetworkInformation.MulticastIPAddressInformationCollection MulticastAddresses { get; }
10817         public abstract System.Net.NetworkInformation.UnicastIPAddressInformationCollection UnicastAddresses { get; }
10818         public abstract System.Net.NetworkInformation.IPAddressCollection WinsServersAddresses { get; }
GetIPv4Properties()10819         public abstract System.Net.NetworkInformation.IPv4InterfaceProperties GetIPv4Properties();
GetIPv6Properties()10820         public abstract System.Net.NetworkInformation.IPv6InterfaceProperties GetIPv6Properties();
10821     }
10822     public abstract partial class IPInterfaceStatistics
10823     {
IPInterfaceStatistics()10824         protected IPInterfaceStatistics() { }
10825         public abstract long BytesReceived { get; }
10826         public abstract long BytesSent { get; }
10827         public abstract long IncomingPacketsDiscarded { get; }
10828         public abstract long IncomingPacketsWithErrors { get; }
10829         public abstract long IncomingUnknownProtocolPackets { get; }
10830         public abstract long NonUnicastPacketsReceived { get; }
10831         public abstract long NonUnicastPacketsSent { get; }
10832         public abstract long OutgoingPacketsDiscarded { get; }
10833         public abstract long OutgoingPacketsWithErrors { get; }
10834         public abstract long OutputQueueLength { get; }
10835         public abstract long UnicastPacketsReceived { get; }
10836         public abstract long UnicastPacketsSent { get; }
10837     }
10838     public enum IPStatus
10839     {
10840         BadDestination = 11018,
10841         BadHeader = 11042,
10842         BadOption = 11007,
10843         BadRoute = 11012,
10844         DestinationHostUnreachable = 11003,
10845         DestinationNetworkUnreachable = 11002,
10846         DestinationPortUnreachable = 11005,
10847         DestinationProhibited = 11004,
10848         DestinationProtocolUnreachable = 11004,
10849         DestinationScopeMismatch = 11045,
10850         DestinationUnreachable = 11040,
10851         HardwareError = 11008,
10852         IcmpError = 11044,
10853         NoResources = 11006,
10854         PacketTooBig = 11009,
10855         ParameterProblem = 11015,
10856         SourceQuench = 11016,
10857         Success = 0,
10858         TimedOut = 11010,
10859         TimeExceeded = 11041,
10860         TtlExpired = 11013,
10861         TtlReassemblyTimeExceeded = 11014,
10862         Unknown = -1,
10863         UnrecognizedNextHeader = 11043,
10864     }
10865     public abstract partial class IPv4InterfaceProperties
10866     {
IPv4InterfaceProperties()10867         protected IPv4InterfaceProperties() { }
10868         public abstract int Index { get; }
10869         public abstract bool IsAutomaticPrivateAddressingActive { get; }
10870         public abstract bool IsAutomaticPrivateAddressingEnabled { get; }
10871         public abstract bool IsDhcpEnabled { get; }
10872         public abstract bool IsForwardingEnabled { get; }
10873         public abstract int Mtu { get; }
10874         public abstract bool UsesWins { get; }
10875     }
10876     public abstract partial class IPv4InterfaceStatistics
10877     {
IPv4InterfaceStatistics()10878         protected IPv4InterfaceStatistics() { }
10879         public abstract long BytesReceived { get; }
10880         public abstract long BytesSent { get; }
10881         public abstract long IncomingPacketsDiscarded { get; }
10882         public abstract long IncomingPacketsWithErrors { get; }
10883         public abstract long IncomingUnknownProtocolPackets { get; }
10884         public abstract long NonUnicastPacketsReceived { get; }
10885         public abstract long NonUnicastPacketsSent { get; }
10886         public abstract long OutgoingPacketsDiscarded { get; }
10887         public abstract long OutgoingPacketsWithErrors { get; }
10888         public abstract long OutputQueueLength { get; }
10889         public abstract long UnicastPacketsReceived { get; }
10890         public abstract long UnicastPacketsSent { get; }
10891     }
10892     public abstract partial class IPv6InterfaceProperties
10893     {
IPv6InterfaceProperties()10894         protected IPv6InterfaceProperties() { }
10895         public abstract int Index { get; }
10896         public abstract int Mtu { get; }
GetScopeId(System.Net.NetworkInformation.ScopeLevel scopeLevel)10897         public virtual long GetScopeId(System.Net.NetworkInformation.ScopeLevel scopeLevel) { throw null; }
10898     }
10899     public abstract partial class MulticastIPAddressInformation : System.Net.NetworkInformation.IPAddressInformation
10900     {
MulticastIPAddressInformation()10901         protected MulticastIPAddressInformation() { }
10902         public abstract long AddressPreferredLifetime { get; }
10903         public abstract long AddressValidLifetime { get; }
10904         public abstract long DhcpLeaseLifetime { get; }
10905         public abstract System.Net.NetworkInformation.DuplicateAddressDetectionState DuplicateAddressDetectionState { get; }
10906         public abstract System.Net.NetworkInformation.PrefixOrigin PrefixOrigin { get; }
10907         public abstract System.Net.NetworkInformation.SuffixOrigin SuffixOrigin { get; }
10908     }
10909     public partial class MulticastIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.MulticastIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.MulticastIPAddressInformation>, System.Collections.IEnumerable
10910     {
MulticastIPAddressInformationCollection()10911         protected internal MulticastIPAddressInformationCollection() { }
10912         public virtual int Count { get { throw null; } }
10913         public virtual bool IsReadOnly { get { throw null; } }
10914         public virtual System.Net.NetworkInformation.MulticastIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.MulticastIPAddressInformation address)10915         public virtual void Add(System.Net.NetworkInformation.MulticastIPAddressInformation address) { }
Clear()10916         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.MulticastIPAddressInformation address)10917         public virtual bool Contains(System.Net.NetworkInformation.MulticastIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.MulticastIPAddressInformation[] array, int offset)10918         public virtual void CopyTo(System.Net.NetworkInformation.MulticastIPAddressInformation[] array, int offset) { }
GetEnumerator()10919         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.MulticastIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.MulticastIPAddressInformation address)10920         public virtual bool Remove(System.Net.NetworkInformation.MulticastIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()10921         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
10922     }
10923     public enum NetBiosNodeType
10924     {
10925         Broadcast = 1,
10926         Hybrid = 8,
10927         Mixed = 4,
10928         Peer2Peer = 2,
10929         Unknown = 0,
10930     }
NetworkAddressChangedEventHandler(object sender, System.EventArgs e)10931     public delegate void NetworkAddressChangedEventHandler(object sender, System.EventArgs e);
NetworkAvailabilityChangedEventHandler(object sender, System.Net.NetworkInformation.NetworkAvailabilityEventArgs e)10932     public delegate void NetworkAvailabilityChangedEventHandler(object sender, System.Net.NetworkInformation.NetworkAvailabilityEventArgs e);
10933     public partial class NetworkAvailabilityEventArgs : System.EventArgs
10934     {
NetworkAvailabilityEventArgs()10935         internal NetworkAvailabilityEventArgs() { }
10936         public bool IsAvailable { get { throw null; } }
10937     }
10938     public partial class NetworkChange
10939     {
10940         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
10941         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
NetworkChange()10942         public NetworkChange() { }
10943         public static event System.Net.NetworkInformation.NetworkAddressChangedEventHandler NetworkAddressChanged { add { } remove { } }
10944         public static event System.Net.NetworkInformation.NetworkAvailabilityChangedEventHandler NetworkAvailabilityChanged { add { } remove { } }
10945         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
10946         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
RegisterNetworkChange(System.Net.NetworkInformation.NetworkChange nc)10947         public static void RegisterNetworkChange(System.Net.NetworkInformation.NetworkChange nc) { }
10948     }
10949     [System.FlagsAttribute]
10950     public enum NetworkInformationAccess
10951     {
10952         None = 0,
10953         Ping = 4,
10954         Read = 1,
10955     }
10956     [System.SerializableAttribute]
10957     public partial class NetworkInformationException : System.ComponentModel.Win32Exception
10958     {
NetworkInformationException()10959         public NetworkInformationException() { }
NetworkInformationException(int errorCode)10960         public NetworkInformationException(int errorCode) { }
NetworkInformationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)10961         protected NetworkInformationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
10962         public override int ErrorCode { get { throw null; } }
10963     }
10964     [System.SerializableAttribute]
10965     public sealed partial class NetworkInformationPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
10966     {
NetworkInformationPermission(System.Net.NetworkInformation.NetworkInformationAccess access)10967         public NetworkInformationPermission(System.Net.NetworkInformation.NetworkInformationAccess access) { }
NetworkInformationPermission(System.Security.Permissions.PermissionState state)10968         public NetworkInformationPermission(System.Security.Permissions.PermissionState state) { }
10969         public System.Net.NetworkInformation.NetworkInformationAccess Access { get { throw null; } }
AddPermission(System.Net.NetworkInformation.NetworkInformationAccess access)10970         public void AddPermission(System.Net.NetworkInformation.NetworkInformationAccess access) { }
Copy()10971         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)10972         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)10973         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)10974         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()10975         public bool IsUnrestricted() { throw null; }
ToXml()10976         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)10977         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
10978     }
10979     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
10980     [System.SerializableAttribute]
10981     public sealed partial class NetworkInformationPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
10982     {
NetworkInformationPermissionAttribute(System.Security.Permissions.SecurityAction action)10983         public NetworkInformationPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
10984         public string Access { get { throw null; } set { } }
CreatePermission()10985         public override System.Security.IPermission CreatePermission() { throw null; }
10986     }
10987     public abstract partial class NetworkInterface
10988     {
NetworkInterface()10989         protected NetworkInterface() { }
10990         public virtual string Description { get { throw null; } }
10991         public virtual string Id { get { throw null; } }
10992         public static int IPv6LoopbackInterfaceIndex { get { throw null; } }
10993         public virtual bool IsReceiveOnly { get { throw null; } }
10994         public static int LoopbackInterfaceIndex { get { throw null; } }
10995         public virtual string Name { get { throw null; } }
10996         public virtual System.Net.NetworkInformation.NetworkInterfaceType NetworkInterfaceType { get { throw null; } }
10997         public virtual System.Net.NetworkInformation.OperationalStatus OperationalStatus { get { throw null; } }
10998         public virtual long Speed { get { throw null; } }
10999         public virtual bool SupportsMulticast { get { throw null; } }
GetAllNetworkInterfaces()11000         public static System.Net.NetworkInformation.NetworkInterface[] GetAllNetworkInterfaces() { throw null; }
GetIPProperties()11001         public virtual System.Net.NetworkInformation.IPInterfaceProperties GetIPProperties() { throw null; }
GetIPStatistics()11002         public virtual System.Net.NetworkInformation.IPInterfaceStatistics GetIPStatistics() { throw null; }
GetIPv4Statistics()11003         public virtual System.Net.NetworkInformation.IPv4InterfaceStatistics GetIPv4Statistics() { throw null; }
GetIsNetworkAvailable()11004         public static bool GetIsNetworkAvailable() { throw null; }
GetPhysicalAddress()11005         public virtual System.Net.NetworkInformation.PhysicalAddress GetPhysicalAddress() { throw null; }
Supports(System.Net.NetworkInformation.NetworkInterfaceComponent networkInterfaceComponent)11006         public virtual bool Supports(System.Net.NetworkInformation.NetworkInterfaceComponent networkInterfaceComponent) { throw null; }
11007     }
11008     public enum NetworkInterfaceComponent
11009     {
11010         IPv4 = 0,
11011         IPv6 = 1,
11012     }
11013     public enum NetworkInterfaceType
11014     {
11015         AsymmetricDsl = 94,
11016         Atm = 37,
11017         BasicIsdn = 20,
11018         Ethernet = 6,
11019         Ethernet3Megabit = 26,
11020         FastEthernetFx = 69,
11021         FastEthernetT = 62,
11022         Fddi = 15,
11023         GenericModem = 48,
11024         GigabitEthernet = 117,
11025         HighPerformanceSerialBus = 144,
11026         IPOverAtm = 114,
11027         Isdn = 63,
11028         Loopback = 24,
11029         MultiRateSymmetricDsl = 143,
11030         Ppp = 23,
11031         PrimaryIsdn = 21,
11032         RateAdaptDsl = 95,
11033         Slip = 28,
11034         SymmetricDsl = 96,
11035         TokenRing = 9,
11036         Tunnel = 131,
11037         Unknown = 1,
11038         VeryHighSpeedDsl = 97,
11039         Wireless80211 = 71,
11040         Wman = 237,
11041         Wwanpp = 243,
11042         Wwanpp2 = 244,
11043     }
11044     public enum OperationalStatus
11045     {
11046         Dormant = 5,
11047         Down = 2,
11048         LowerLayerDown = 7,
11049         NotPresent = 6,
11050         Testing = 3,
11051         Unknown = 4,
11052         Up = 1,
11053     }
11054     public partial class PhysicalAddress
11055     {
11056         public static readonly System.Net.NetworkInformation.PhysicalAddress None;
PhysicalAddress(byte[] address)11057         public PhysicalAddress(byte[] address) { }
Equals(object comparand)11058         public override bool Equals(object comparand) { throw null; }
GetAddressBytes()11059         public byte[] GetAddressBytes() { throw null; }
GetHashCode()11060         public override int GetHashCode() { throw null; }
Parse(string address)11061         public static System.Net.NetworkInformation.PhysicalAddress Parse(string address) { throw null; }
ToString()11062         public override string ToString() { throw null; }
11063     }
11064     public partial class Ping : System.ComponentModel.Component
11065     {
Ping()11066         public Ping() { }
11067         public event System.Net.NetworkInformation.PingCompletedEventHandler PingCompleted { add { } remove { } }
Dispose(bool disposing)11068         protected override void Dispose(bool disposing) { }
OnPingCompleted(System.Net.NetworkInformation.PingCompletedEventArgs e)11069         protected void OnPingCompleted(System.Net.NetworkInformation.PingCompletedEventArgs e) { }
Send(System.Net.IPAddress address)11070         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address) { throw null; }
Send(System.Net.IPAddress address, int timeout)11071         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout) { throw null; }
Send(System.Net.IPAddress address, int timeout, byte[] buffer)11072         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)11073         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
Send(string hostNameOrAddress)11074         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; }
Send(string hostNameOrAddress, int timeout)11075         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw null; }
Send(string hostNameOrAddress, int timeout, byte[] buffer)11076         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)11077         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
11078         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken)11079         public void SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken) { }
11080         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, object userToken)11081         public void SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, object userToken) { }
11082         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(System.Net.IPAddress address, int timeout, object userToken)11083         public void SendAsync(System.Net.IPAddress address, int timeout, object userToken) { }
11084         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(System.Net.IPAddress address, object userToken)11085         public void SendAsync(System.Net.IPAddress address, object userToken) { }
11086         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken)11087         public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken) { }
11088         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken)11089         public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { }
11090         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(string hostNameOrAddress, int timeout, object userToken)11091         public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { }
11092         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(string hostNameOrAddress, object userToken)11093         public void SendAsync(string hostNameOrAddress, object userToken) { }
SendAsyncCancel()11094         public void SendAsyncCancel() { }
11095         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(System.Net.IPAddress address)11096         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address) { throw null; }
11097         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(System.Net.IPAddress address, int timeout)11098         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout) { throw null; }
11099         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer)11100         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer) { throw null; }
11101         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)11102         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; }
11103         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(string hostNameOrAddress)11104         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress) { throw null; }
11105         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(string hostNameOrAddress, int timeout)11106         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout) { throw null; }
11107         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer)11108         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer) { throw null; }
11109         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)11110         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
11111     }
11112     public partial class PingCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
11113     {
PingCompletedEventArgs()11114         internal PingCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
11115         public System.Net.NetworkInformation.PingReply Reply { get { throw null; } }
11116     }
PingCompletedEventHandler(object sender, System.Net.NetworkInformation.PingCompletedEventArgs e)11117     public delegate void PingCompletedEventHandler(object sender, System.Net.NetworkInformation.PingCompletedEventArgs e);
11118     [System.SerializableAttribute]
11119     public partial class PingException : System.InvalidOperationException
11120     {
PingException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)11121         protected PingException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
PingException(string message)11122         public PingException(string message) { }
PingException(string message, System.Exception innerException)11123         public PingException(string message, System.Exception innerException) { }
11124     }
11125     public partial class PingOptions
11126     {
PingOptions()11127         public PingOptions() { }
PingOptions(int ttl, bool dontFragment)11128         public PingOptions(int ttl, bool dontFragment) { }
11129         public bool DontFragment { get { throw null; } set { } }
11130         public int Ttl { get { throw null; } set { } }
11131     }
11132     public partial class PingReply
11133     {
PingReply()11134         internal PingReply() { }
11135         public System.Net.IPAddress Address { get { throw null; } }
11136         public byte[] Buffer { get { throw null; } }
11137         public System.Net.NetworkInformation.PingOptions Options { get { throw null; } }
11138         public long RoundtripTime { get { throw null; } }
11139         public System.Net.NetworkInformation.IPStatus Status { get { throw null; } }
11140     }
11141     public enum PrefixOrigin
11142     {
11143         Dhcp = 3,
11144         Manual = 1,
11145         Other = 0,
11146         RouterAdvertisement = 4,
11147         WellKnown = 2,
11148     }
11149     public enum ScopeLevel
11150     {
11151         Admin = 4,
11152         Global = 14,
11153         Interface = 1,
11154         Link = 2,
11155         None = 0,
11156         Organization = 8,
11157         Site = 5,
11158         Subnet = 3,
11159     }
11160     public enum SuffixOrigin
11161     {
11162         LinkLayerAddress = 4,
11163         Manual = 1,
11164         OriginDhcp = 3,
11165         Other = 0,
11166         Random = 5,
11167         WellKnown = 2,
11168     }
11169     public abstract partial class TcpConnectionInformation
11170     {
TcpConnectionInformation()11171         protected TcpConnectionInformation() { }
11172         public abstract System.Net.IPEndPoint LocalEndPoint { get; }
11173         public abstract System.Net.IPEndPoint RemoteEndPoint { get; }
11174         public abstract System.Net.NetworkInformation.TcpState State { get; }
11175     }
11176     public enum TcpState
11177     {
11178         Closed = 1,
11179         CloseWait = 8,
11180         Closing = 9,
11181         DeleteTcb = 12,
11182         Established = 5,
11183         FinWait1 = 6,
11184         FinWait2 = 7,
11185         LastAck = 10,
11186         Listen = 2,
11187         SynReceived = 4,
11188         SynSent = 3,
11189         TimeWait = 11,
11190         Unknown = 0,
11191     }
11192     public abstract partial class TcpStatistics
11193     {
TcpStatistics()11194         protected TcpStatistics() { }
11195         public abstract long ConnectionsAccepted { get; }
11196         public abstract long ConnectionsInitiated { get; }
11197         public abstract long CumulativeConnections { get; }
11198         public abstract long CurrentConnections { get; }
11199         public abstract long ErrorsReceived { get; }
11200         public abstract long FailedConnectionAttempts { get; }
11201         public abstract long MaximumConnections { get; }
11202         public abstract long MaximumTransmissionTimeout { get; }
11203         public abstract long MinimumTransmissionTimeout { get; }
11204         public abstract long ResetConnections { get; }
11205         public abstract long ResetsSent { get; }
11206         public abstract long SegmentsReceived { get; }
11207         public abstract long SegmentsResent { get; }
11208         public abstract long SegmentsSent { get; }
11209     }
11210     public abstract partial class UdpStatistics
11211     {
UdpStatistics()11212         protected UdpStatistics() { }
11213         public abstract long DatagramsReceived { get; }
11214         public abstract long DatagramsSent { get; }
11215         public abstract long IncomingDatagramsDiscarded { get; }
11216         public abstract long IncomingDatagramsWithErrors { get; }
11217         public abstract int UdpListeners { get; }
11218     }
11219     public abstract partial class UnicastIPAddressInformation : System.Net.NetworkInformation.IPAddressInformation
11220     {
UnicastIPAddressInformation()11221         protected UnicastIPAddressInformation() { }
11222         public abstract long AddressPreferredLifetime { get; }
11223         public abstract long AddressValidLifetime { get; }
11224         public abstract long DhcpLeaseLifetime { get; }
11225         public abstract System.Net.NetworkInformation.DuplicateAddressDetectionState DuplicateAddressDetectionState { get; }
11226         public abstract System.Net.IPAddress IPv4Mask { get; }
11227         public virtual int PrefixLength { get { throw null; } }
11228         public abstract System.Net.NetworkInformation.PrefixOrigin PrefixOrigin { get; }
11229         public abstract System.Net.NetworkInformation.SuffixOrigin SuffixOrigin { get; }
11230     }
11231     public partial class UnicastIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.UnicastIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.UnicastIPAddressInformation>, System.Collections.IEnumerable
11232     {
UnicastIPAddressInformationCollection()11233         protected internal UnicastIPAddressInformationCollection() { }
11234         public virtual int Count { get { throw null; } }
11235         public virtual bool IsReadOnly { get { throw null; } }
11236         public virtual System.Net.NetworkInformation.UnicastIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.UnicastIPAddressInformation address)11237         public virtual void Add(System.Net.NetworkInformation.UnicastIPAddressInformation address) { }
Clear()11238         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.UnicastIPAddressInformation address)11239         public virtual bool Contains(System.Net.NetworkInformation.UnicastIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.UnicastIPAddressInformation[] array, int offset)11240         public virtual void CopyTo(System.Net.NetworkInformation.UnicastIPAddressInformation[] array, int offset) { }
GetEnumerator()11241         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.UnicastIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.UnicastIPAddressInformation address)11242         public virtual bool Remove(System.Net.NetworkInformation.UnicastIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()11243         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
11244     }
11245 }
11246 namespace System.Net.Security
11247 {
11248     public abstract partial class AuthenticatedStream : System.IO.Stream
11249     {
AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)11250         protected AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) { }
11251         protected System.IO.Stream InnerStream { get { throw null; } }
11252         public abstract bool IsAuthenticated { get; }
11253         public abstract bool IsEncrypted { get; }
11254         public abstract bool IsMutuallyAuthenticated { get; }
11255         public abstract bool IsServer { get; }
11256         public abstract bool IsSigned { get; }
11257         public bool LeaveInnerStreamOpen { get { throw null; } }
Dispose(bool disposing)11258         protected override void Dispose(bool disposing) { }
11259     }
11260     public enum AuthenticationLevel
11261     {
11262         MutualAuthRequested = 1,
11263         MutualAuthRequired = 2,
11264         None = 0,
11265     }
11266     public enum EncryptionPolicy
11267     {
11268         AllowNoEncryption = 1,
11269         NoEncryption = 2,
11270         RequireEncryption = 0,
11271     }
LocalCertificateSelectionCallback(object sender, string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection localCertificates, System.Security.Cryptography.X509Certificates.X509Certificate remoteCertificate, string[] acceptableIssuers)11272     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);
11273     public partial class NegotiateStream : System.Net.Security.AuthenticatedStream
11274     {
NegotiateStream(System.IO.Stream innerStream)11275         public NegotiateStream(System.IO.Stream innerStream) : base (default(System.IO.Stream), default(bool)) { }
NegotiateStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)11276         public NegotiateStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) : base (default(System.IO.Stream), default(bool)) { }
11277         public override bool CanRead { get { throw null; } }
11278         public override bool CanSeek { get { throw null; } }
11279         public override bool CanTimeout { get { throw null; } }
11280         public override bool CanWrite { get { throw null; } }
11281         public virtual System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } }
11282         public override bool IsAuthenticated { get { throw null; } }
11283         public override bool IsEncrypted { get { throw null; } }
11284         public override bool IsMutuallyAuthenticated { get { throw null; } }
11285         public override bool IsServer { get { throw null; } }
11286         public override bool IsSigned { get { throw null; } }
11287         public override long Length { get { throw null; } }
11288         public override long Position { get { throw null; } set { } }
11289         public override int ReadTimeout { get { throw null; } set { } }
11290         public virtual System.Security.Principal.IIdentity RemoteIdentity { get { throw null; } }
11291         public override int WriteTimeout { get { throw null; } set { } }
AuthenticateAsClient()11292         public virtual void AuthenticateAsClient() { }
AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName)11293         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName) { }
AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11294         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) { }
AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName)11295         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName) { }
AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11296         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { }
11297         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync()11298         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync() { throw null; }
11299         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName)11300         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName) { throw null; }
11301         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11302         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; }
11303         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName)11304         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName) { throw null; }
11305         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)11306         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; }
AuthenticateAsServer()11307         public virtual void AuthenticateAsServer() { }
AuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11308         public virtual void AuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { }
AuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11309         public virtual void AuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { }
AuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy)11310         public virtual void AuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy) { }
11311         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync()11312         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync() { throw null; }
11313         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11314         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { throw null; }
11315         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)11316         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; }
11317         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy)11318         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy) { throw null; }
11319         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(System.AsyncCallback asyncCallback, object asyncState)11320         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11321         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.AsyncCallback asyncCallback, object asyncState)11322         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11323         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
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)11324         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; }
11325         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.AsyncCallback asyncCallback, object asyncState)11326         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11327         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)11328         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; }
11329         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsServer(System.AsyncCallback asyncCallback, object asyncState)11330         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11331         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)11332         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; }
11333         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
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)11334         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; }
11335         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.AsyncCallback asyncCallback, object asyncState)11336         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11337         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11338         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11339         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11340         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)11341         protected override void Dispose(bool disposing) { }
EndAuthenticateAsClient(System.IAsyncResult asyncResult)11342         public virtual void EndAuthenticateAsClient(System.IAsyncResult asyncResult) { }
EndAuthenticateAsServer(System.IAsyncResult asyncResult)11343         public virtual void EndAuthenticateAsServer(System.IAsyncResult asyncResult) { }
EndRead(System.IAsyncResult asyncResult)11344         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)11345         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()11346         public override void Flush() { }
Read(byte[] buffer, int offset, int count)11347         public override int Read(byte[] buffer, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)11348         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)11349         public override void SetLength(long value) { }
Write(byte[] buffer, int offset, int count)11350         public override void Write(byte[] buffer, int offset, int count) { }
11351     }
11352     public enum ProtectionLevel
11353     {
11354         EncryptAndSign = 2,
11355         None = 0,
11356         Sign = 1,
11357     }
RemoteCertificateValidationCallback(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)11358     public delegate bool RemoteCertificateValidationCallback(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors);
11359     [System.FlagsAttribute]
11360     public enum SslPolicyErrors
11361     {
11362         None = 0,
11363         RemoteCertificateChainErrors = 4,
11364         RemoteCertificateNameMismatch = 2,
11365         RemoteCertificateNotAvailable = 1,
11366     }
11367     public partial class SslStream : System.Net.Security.AuthenticatedStream
11368     {
SslStream(System.IO.Stream innerStream)11369         public SslStream(System.IO.Stream innerStream) : base (default(System.IO.Stream), default(bool)) { }
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)11370         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)11371         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)11372         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)) { }
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback, System.Net.Security.LocalCertificateSelectionCallback userCertificateSelectionCallback, System.Net.Security.EncryptionPolicy encryptionPolicy)11373         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)) { }
11374         public override bool CanRead { get { throw null; } }
11375         public override bool CanSeek { get { throw null; } }
11376         public override bool CanTimeout { get { throw null; } }
11377         public override bool CanWrite { get { throw null; } }
11378         public virtual bool CheckCertRevocationStatus { get { throw null; } }
11379         public virtual System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get { throw null; } }
11380         public virtual int CipherStrength { get { throw null; } }
11381         public virtual System.Security.Authentication.HashAlgorithmType HashAlgorithm { get { throw null; } }
11382         public virtual int HashStrength { get { throw null; } }
11383         public override bool IsAuthenticated { get { throw null; } }
11384         public override bool IsEncrypted { get { throw null; } }
11385         public override bool IsMutuallyAuthenticated { get { throw null; } }
11386         public override bool IsServer { get { throw null; } }
11387         public override bool IsSigned { get { throw null; } }
11388         public virtual System.Security.Authentication.ExchangeAlgorithmType KeyExchangeAlgorithm { get { throw null; } }
11389         public virtual int KeyExchangeStrength { get { throw null; } }
11390         public override long Length { get { throw null; } }
11391         public virtual System.Security.Cryptography.X509Certificates.X509Certificate LocalCertificate { get { throw null; } }
11392         public override long Position { get { throw null; } set { } }
11393         public override int ReadTimeout { get { throw null; } set { } }
11394         public virtual System.Security.Cryptography.X509Certificates.X509Certificate RemoteCertificate { get { throw null; } }
11395         public virtual System.Security.Authentication.SslProtocols SslProtocol { get { throw null; } }
11396         public System.Net.TransportContext TransportContext { get { throw null; } }
11397         public override int WriteTimeout { get { throw null; } set { } }
AuthenticateAsClient(string targetHost)11398         public virtual void AuthenticateAsClient(string targetHost) { }
AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation)11399         public virtual void AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation) { }
AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11400         public virtual void AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
11401         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(string targetHost)11402         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost) { throw null; }
11403         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation)11404         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation) { throw null; }
11405         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11406         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)11407         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { }
AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation)11408         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation) { }
AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11409         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
11410         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate)11411         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { throw null; }
11412         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation)11413         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation) { throw null; }
11414         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)11415         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { throw null; }
11416         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState)11417         public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11418         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)11419         public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11420         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)11421         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; }
11422         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState)11423         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11424         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)11425         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11426         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)11427         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; }
11428         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11429         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
11430         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)11431         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)11432         protected override void Dispose(bool disposing) { }
EndAuthenticateAsClient(System.IAsyncResult asyncResult)11433         public virtual void EndAuthenticateAsClient(System.IAsyncResult asyncResult) { }
EndAuthenticateAsServer(System.IAsyncResult asyncResult)11434         public virtual void EndAuthenticateAsServer(System.IAsyncResult asyncResult) { }
EndRead(System.IAsyncResult asyncResult)11435         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)11436         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()11437         public override void Flush() { }
Read(byte[] buffer, int offset, int count)11438         public override int Read(byte[] buffer, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)11439         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)11440         public override void SetLength(long value) { }
11441         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ShutdownAsync()11442         public virtual System.Threading.Tasks.Task ShutdownAsync() { throw null; }
Write(byte[] buffer)11443         public void Write(byte[] buffer) { }
Write(byte[] buffer, int offset, int count)11444         public override void Write(byte[] buffer, int offset, int count) { }
11445     }
11446 }
11447 namespace System.Net.Sockets
11448 {
11449     public enum AddressFamily
11450     {
11451         AppleTalk = 16,
11452         Atm = 22,
11453         Banyan = 21,
11454         Ccitt = 10,
11455         Chaos = 5,
11456         Cluster = 24,
11457         DataKit = 9,
11458         DataLink = 13,
11459         DecNet = 12,
11460         Ecma = 8,
11461         FireFox = 19,
11462         HyperChannel = 15,
11463         Ieee12844 = 25,
11464         ImpLink = 3,
11465         InterNetwork = 2,
11466         InterNetworkV6 = 23,
11467         Ipx = 6,
11468         Irda = 26,
11469         Iso = 7,
11470         Lat = 14,
11471         Max = 29,
11472         NetBios = 17,
11473         NetworkDesigners = 28,
11474         NS = 6,
11475         Osi = 7,
11476         Pup = 4,
11477         Sna = 11,
11478         Unix = 1,
11479         Unknown = -1,
11480         Unspecified = 0,
11481         VoiceView = 18,
11482     }
11483     public enum IOControlCode : long
11484     {
11485         AbsorbRouterAlert = (long)2550136837,
11486         AddMulticastGroupOnInterface = (long)2550136842,
11487         AddressListChange = (long)671088663,
11488         AddressListQuery = (long)1207959574,
11489         AddressListSort = (long)3355443225,
11490         AssociateHandle = (long)2281701377,
11491         AsyncIO = (long)2147772029,
11492         BindToInterface = (long)2550136840,
11493         DataToRead = (long)1074030207,
11494         DeleteMulticastGroupFromInterface = (long)2550136843,
11495         EnableCircularQueuing = (long)671088642,
11496         Flush = (long)671088644,
11497         GetBroadcastAddress = (long)1207959557,
11498         GetExtensionFunctionPointer = (long)3355443206,
11499         GetGroupQos = (long)3355443208,
11500         GetQos = (long)3355443207,
11501         KeepAliveValues = (long)2550136836,
11502         LimitBroadcasts = (long)2550136839,
11503         MulticastInterface = (long)2550136841,
11504         MulticastScope = (long)2281701386,
11505         MultipointLoopback = (long)2281701385,
11506         NamespaceChange = (long)2281701401,
11507         NonBlockingIO = (long)2147772030,
11508         OobDataRead = (long)1074033415,
11509         QueryTargetPnpHandle = (long)1207959576,
11510         ReceiveAll = (long)2550136833,
11511         ReceiveAllIgmpMulticast = (long)2550136835,
11512         ReceiveAllMulticast = (long)2550136834,
11513         RoutingInterfaceChange = (long)2281701397,
11514         RoutingInterfaceQuery = (long)3355443220,
11515         SetGroupQos = (long)2281701388,
11516         SetQos = (long)2281701387,
11517         TranslateHandle = (long)3355443213,
11518         UnicastInterface = (long)2550136838,
11519     }
11520     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11521     public partial struct IPPacketInformation
11522     {
11523         public System.Net.IPAddress Address { get { throw null; } }
11524         public int Interface { get { throw null; } }
EqualsSystem.Net.Sockets.IPPacketInformation11525         public override bool Equals(object comparand) { throw null; }
GetHashCodeSystem.Net.Sockets.IPPacketInformation11526         public override int GetHashCode() { throw null; }
operator ==System.Net.Sockets.IPPacketInformation11527         public static bool operator ==(System.Net.Sockets.IPPacketInformation packetInformation1, System.Net.Sockets.IPPacketInformation packetInformation2) { throw null; }
operator !=System.Net.Sockets.IPPacketInformation11528         public static bool operator !=(System.Net.Sockets.IPPacketInformation packetInformation1, System.Net.Sockets.IPPacketInformation packetInformation2) { throw null; }
11529     }
11530     public enum IPProtectionLevel
11531     {
11532         EdgeRestricted = 20,
11533         Restricted = 30,
11534         Unrestricted = 10,
11535         Unspecified = -1,
11536     }
11537     public partial class IPv6MulticastOption
11538     {
IPv6MulticastOption(System.Net.IPAddress group)11539         public IPv6MulticastOption(System.Net.IPAddress group) { }
IPv6MulticastOption(System.Net.IPAddress group, long ifindex)11540         public IPv6MulticastOption(System.Net.IPAddress group, long ifindex) { }
11541         public System.Net.IPAddress Group { get { throw null; } set { } }
11542         public long InterfaceIndex { get { throw null; } set { } }
11543     }
11544     public partial class LingerOption
11545     {
LingerOption(bool enable, int seconds)11546         public LingerOption(bool enable, int seconds) { }
11547         public bool Enabled { get { throw null; } set { } }
11548         public int LingerTime { get { throw null; } set { } }
11549     }
11550     public partial class MulticastOption
11551     {
MulticastOption(System.Net.IPAddress group)11552         public MulticastOption(System.Net.IPAddress group) { }
MulticastOption(System.Net.IPAddress group, int interfaceIndex)11553         public MulticastOption(System.Net.IPAddress group, int interfaceIndex) { }
MulticastOption(System.Net.IPAddress group, System.Net.IPAddress mcint)11554         public MulticastOption(System.Net.IPAddress group, System.Net.IPAddress mcint) { }
11555         public System.Net.IPAddress Group { get { throw null; } set { } }
11556         public int InterfaceIndex { get { throw null; } set { } }
11557         public System.Net.IPAddress LocalAddress { get { throw null; } set { } }
11558     }
11559     public partial class NetworkStream : System.IO.Stream
11560     {
NetworkStream(System.Net.Sockets.Socket socket)11561         public NetworkStream(System.Net.Sockets.Socket socket) { }
NetworkStream(System.Net.Sockets.Socket socket, bool ownsSocket)11562         public NetworkStream(System.Net.Sockets.Socket socket, bool ownsSocket) { }
NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access)11563         public NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access) { }
NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access, bool ownsSocket)11564         public NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access, bool ownsSocket) { }
11565         public override bool CanRead { get { throw null; } }
11566         public override bool CanSeek { get { throw null; } }
11567         public override bool CanTimeout { get { throw null; } }
11568         public override bool CanWrite { get { throw null; } }
11569         public virtual bool DataAvailable { get { throw null; } }
11570         public override long Length { get { throw null; } }
11571         public override long Position { get { throw null; } set { } }
11572         protected bool Readable { get { throw null; } set { } }
11573         public override int ReadTimeout { get { throw null; } set { } }
11574         protected System.Net.Sockets.Socket Socket { get { throw null; } }
11575         protected bool Writeable { get { throw null; } set { } }
11576         public override int WriteTimeout { get { throw null; } set { } }
11577         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state)11578         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state) { throw null; }
11579         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state)11580         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state) { throw null; }
Close(int timeout)11581         public void Close(int timeout) { }
Dispose(bool disposing)11582         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)11583         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)11584         public override void EndWrite(System.IAsyncResult asyncResult) { }
~NetworkStream()11585         ~NetworkStream() { }
Flush()11586         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)11587         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)11588         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)11589         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)11590         public override void SetLength(long value) { }
Write(byte[] buffer, int offset, int size)11591         public override void Write(byte[] buffer, int offset, int size) { }
11592     }
11593     public enum ProtocolFamily
11594     {
11595         AppleTalk = 16,
11596         Atm = 22,
11597         Banyan = 21,
11598         Ccitt = 10,
11599         Chaos = 5,
11600         Cluster = 24,
11601         DataKit = 9,
11602         DataLink = 13,
11603         DecNet = 12,
11604         Ecma = 8,
11605         FireFox = 19,
11606         HyperChannel = 15,
11607         Ieee12844 = 25,
11608         ImpLink = 3,
11609         InterNetwork = 2,
11610         InterNetworkV6 = 23,
11611         Ipx = 6,
11612         Irda = 26,
11613         Iso = 7,
11614         Lat = 14,
11615         Max = 29,
11616         NetBios = 17,
11617         NetworkDesigners = 28,
11618         NS = 6,
11619         Osi = 7,
11620         Pup = 4,
11621         Sna = 11,
11622         Unix = 1,
11623         Unknown = -1,
11624         Unspecified = 0,
11625         VoiceView = 18,
11626     }
11627     public enum ProtocolType
11628     {
11629         Ggp = 3,
11630         Icmp = 1,
11631         IcmpV6 = 58,
11632         Idp = 22,
11633         Igmp = 2,
11634         IP = 0,
11635         IPSecAuthenticationHeader = 51,
11636         IPSecEncapsulatingSecurityPayload = 50,
11637         IPv4 = 4,
11638         IPv6 = 41,
11639         IPv6DestinationOptions = 60,
11640         IPv6FragmentHeader = 44,
11641         IPv6HopByHopOptions = 0,
11642         IPv6NoNextHeader = 59,
11643         IPv6RoutingHeader = 43,
11644         Ipx = 1000,
11645         ND = 77,
11646         Pup = 12,
11647         Raw = 255,
11648         Spx = 1256,
11649         SpxII = 1257,
11650         Tcp = 6,
11651         Udp = 17,
11652         Unknown = -1,
11653         Unspecified = 0,
11654     }
11655     public enum SelectMode
11656     {
11657         SelectError = 2,
11658         SelectRead = 0,
11659         SelectWrite = 1,
11660     }
11661     public partial class SendPacketsElement
11662     {
SendPacketsElement(byte[] buffer)11663         public SendPacketsElement(byte[] buffer) { }
SendPacketsElement(byte[] buffer, int offset, int count)11664         public SendPacketsElement(byte[] buffer, int offset, int count) { }
SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket)11665         public SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket) { }
SendPacketsElement(string filepath)11666         public SendPacketsElement(string filepath) { }
SendPacketsElement(string filepath, int offset, int count)11667         public SendPacketsElement(string filepath, int offset, int count) { }
SendPacketsElement(string filepath, int offset, int count, bool endOfPacket)11668         public SendPacketsElement(string filepath, int offset, int count, bool endOfPacket) { }
11669         public byte[] Buffer { get { throw null; } }
11670         public int Count { get { throw null; } }
11671         public bool EndOfPacket { get { throw null; } }
11672         public string FilePath { get { throw null; } }
11673         public int Offset { get { throw null; } }
11674     }
11675     public partial class Socket : System.IDisposable
11676     {
Socket(System.Net.Sockets.AddressFamily addressFamily, System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType)11677         public Socket(System.Net.Sockets.AddressFamily addressFamily, System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType) { }
Socket(System.Net.Sockets.SocketInformation socketInformation)11678         public Socket(System.Net.Sockets.SocketInformation socketInformation) { }
Socket(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType)11679         public Socket(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType) { }
11680         public System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
11681         public int Available { get { throw null; } }
11682         public bool Blocking { get { throw null; } set { } }
11683         public bool Connected { get { throw null; } }
11684         public bool DontFragment { get { throw null; } set { } }
11685         public bool DualMode { get { throw null; } set { } }
11686         public bool EnableBroadcast { get { throw null; } set { } }
11687         public bool ExclusiveAddressUse { get { throw null; } set { } }
11688         public System.IntPtr Handle { get { throw null; } }
11689         public bool IsBound { get { throw null; } }
11690         public System.Net.Sockets.LingerOption LingerState { get { throw null; } set { } }
11691         public System.Net.EndPoint LocalEndPoint { get { throw null; } }
11692         public bool MulticastLoopback { get { throw null; } set { } }
11693         public bool NoDelay { get { throw null; } set { } }
11694         public static bool OSSupportsIPv4 { get { throw null; } }
11695         public static bool OSSupportsIPv6 { get { throw null; } }
11696         public System.Net.Sockets.ProtocolType ProtocolType { get { throw null; } }
11697         public int ReceiveBufferSize { get { throw null; } set { } }
11698         public int ReceiveTimeout { get { throw null; } set { } }
11699         public System.Net.EndPoint RemoteEndPoint { get { throw null; } }
11700         public int SendBufferSize { get { throw null; } set { } }
11701         public int SendTimeout { get { throw null; } set { } }
11702         public System.Net.Sockets.SocketType SocketType { get { throw null; } }
11703         [System.ObsoleteAttribute("SupportsIPv4 is obsoleted for this type, please use OSSupportsIPv4 instead. http://go.microsoft.com/fwlink/?linkid=14202")]
11704         public static bool SupportsIPv4 { get { throw null; } }
11705         [System.ObsoleteAttribute("SupportsIPv6 is obsoleted for this type, please use OSSupportsIPv6 instead. http://go.microsoft.com/fwlink/?linkid=14202")]
11706         public static bool SupportsIPv6 { get { throw null; } }
11707         public short Ttl { get { throw null; } set { } }
11708         public bool UseOnlyOverlappedIO { get { throw null; } set { } }
Accept()11709         public System.Net.Sockets.Socket Accept() { throw null; }
AcceptAsync(System.Net.Sockets.SocketAsyncEventArgs e)11710         public bool AcceptAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
11711         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAccept(System.AsyncCallback callback, object state)11712         public System.IAsyncResult BeginAccept(System.AsyncCallback callback, object state) { throw null; }
11713         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAccept(int receiveSize, System.AsyncCallback callback, object state)11714         public System.IAsyncResult BeginAccept(int receiveSize, System.AsyncCallback callback, object state) { throw null; }
11715         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAccept(System.Net.Sockets.Socket acceptSocket, int receiveSize, System.AsyncCallback callback, object state)11716         public System.IAsyncResult BeginAccept(System.Net.Sockets.Socket acceptSocket, int receiveSize, System.AsyncCallback callback, object state) { throw null; }
11717         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11718         public System.IAsyncResult BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) { throw null; }
11719         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state)11720         public System.IAsyncResult BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state) { throw null; }
11721         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state)11722         public System.IAsyncResult BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state) { throw null; }
11723         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state)11724         public System.IAsyncResult BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state) { throw null; }
11725         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginDisconnect(bool reuseSocket, System.AsyncCallback callback, object state)11726         public System.IAsyncResult BeginDisconnect(bool reuseSocket, System.AsyncCallback callback, object state) { throw null; }
11727         [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)11728         public System.IAsyncResult BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
11729         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11730         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; }
11731         [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)11732         public System.IAsyncResult BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
11733         [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, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11734         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; }
11735         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceiveFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11736         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; }
BeginReceiveMessageFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11737         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; }
11738         [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)11739         public System.IAsyncResult BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
11740         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11741         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; }
11742         [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)11743         public System.IAsyncResult BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
11744         [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, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)11745         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; }
11746         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSendFile(string fileName, System.AsyncCallback callback, object state)11747         public System.IAsyncResult BeginSendFile(string fileName, System.AsyncCallback callback, object state) { throw null; }
11748         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags, System.AsyncCallback callback, object state)11749         public System.IAsyncResult BeginSendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags, System.AsyncCallback callback, object state) { throw null; }
11750         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSendTo(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)11751         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)11752         public void Bind(System.Net.EndPoint localEP) { }
CancelConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)11753         public static void CancelConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { }
Close()11754         public void Close() { }
Close(int timeout)11755         public void Close(int timeout) { }
Connect(System.Net.EndPoint remoteEP)11756         public void Connect(System.Net.EndPoint remoteEP) { }
Connect(System.Net.IPAddress address, int port)11757         public void Connect(System.Net.IPAddress address, int port) { }
Connect(System.Net.IPAddress[] addresses, int port)11758         public void Connect(System.Net.IPAddress[] addresses, int port) { }
Connect(string host, int port)11759         public void Connect(string host, int port) { }
ConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)11760         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)11761         public static bool ConnectAsync(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType, System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Disconnect(bool reuseSocket)11762         public void Disconnect(bool reuseSocket) { }
DisconnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)11763         public bool DisconnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Dispose()11764         public void Dispose() { }
Dispose(bool disposing)11765         protected virtual void Dispose(bool disposing) { }
DuplicateAndClose(int targetProcessId)11766         public System.Net.Sockets.SocketInformation DuplicateAndClose(int targetProcessId) { throw null; }
EndAccept(out byte[] buffer, System.IAsyncResult asyncResult)11767         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)11768         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)11769         public System.Net.Sockets.Socket EndAccept(System.IAsyncResult asyncResult) { throw null; }
EndConnect(System.IAsyncResult asyncResult)11770         public void EndConnect(System.IAsyncResult asyncResult) { }
EndDisconnect(System.IAsyncResult asyncResult)11771         public void EndDisconnect(System.IAsyncResult asyncResult) { }
EndReceive(System.IAsyncResult asyncResult)11772         public int EndReceive(System.IAsyncResult asyncResult) { throw null; }
EndReceive(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode)11773         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)11774         public int EndReceiveFrom(System.IAsyncResult asyncResult, ref System.Net.EndPoint endPoint) { throw null; }
EndReceiveMessageFrom(System.IAsyncResult asyncResult, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint endPoint, out System.Net.Sockets.IPPacketInformation ipPacketInformation)11775         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)11776         public int EndSend(System.IAsyncResult asyncResult) { throw null; }
EndSend(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode)11777         public int EndSend(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
EndSendFile(System.IAsyncResult asyncResult)11778         public void EndSendFile(System.IAsyncResult asyncResult) { }
EndSendTo(System.IAsyncResult asyncResult)11779         public int EndSendTo(System.IAsyncResult asyncResult) { throw null; }
~Socket()11780         ~Socket() { }
GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName)11781         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)11782         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)11783         public byte[] GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, int optionLength) { throw null; }
IOControl(int ioControlCode, byte[] optionInValue, byte[] optionOutValue)11784         public int IOControl(int ioControlCode, byte[] optionInValue, byte[] optionOutValue) { throw null; }
IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue)11785         public int IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) { throw null; }
Listen(int backlog)11786         public void Listen(int backlog) { }
Poll(int microSeconds, System.Net.Sockets.SelectMode mode)11787         public bool Poll(int microSeconds, System.Net.Sockets.SelectMode mode) { throw null; }
Receive(byte[] buffer)11788         public int Receive(byte[] buffer) { throw null; }
Receive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags)11789         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)11790         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)11791         public int Receive(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags)11792         public int Receive(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers)11793         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)11794         public int Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)11795         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)11796         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)11797         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)11798         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)11799         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)11800         public int ReceiveFrom(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP) { throw null; }
ReceiveFromAsync(System.Net.Sockets.SocketAsyncEventArgs e)11801         public bool ReceiveFromAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
ReceiveMessageFrom(byte[] buffer, int offset, int size, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, out System.Net.Sockets.IPPacketInformation ipPacketInformation)11802         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; }
ReceiveMessageFromAsync(System.Net.Sockets.SocketAsyncEventArgs e)11803         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)11804         public static void Select(System.Collections.IList checkRead, System.Collections.IList checkWrite, System.Collections.IList checkError, int microSeconds) { }
Send(byte[] buffer)11805         public int Send(byte[] buffer) { throw null; }
Send(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags)11806         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)11807         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)11808         public int Send(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags)11809         public int Send(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers)11810         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)11811         public int Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)11812         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)11813         public bool SendAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SendFile(string fileName)11814         public void SendFile(string fileName) { }
SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags)11815         public void SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags) { }
SendPacketsAsync(System.Net.Sockets.SocketAsyncEventArgs e)11816         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)11817         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)11818         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)11819         public int SendTo(byte[] buffer, System.Net.EndPoint remoteEP) { throw null; }
SendTo(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)11820         public int SendTo(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e)11821         public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level)11822         public void SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level) { }
SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, bool optionValue)11823         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)11824         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)11825         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)11826         public void SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, object optionValue) { }
Shutdown(System.Net.Sockets.SocketShutdown how)11827         public void Shutdown(System.Net.Sockets.SocketShutdown how) { }
11828     }
11829     public partial class SocketAsyncEventArgs : System.EventArgs, System.IDisposable
11830     {
SocketAsyncEventArgs()11831         public SocketAsyncEventArgs() { }
11832         public System.Net.Sockets.Socket AcceptSocket { get { throw null; } set { } }
11833         public byte[] Buffer { get { throw null; } }
11834         public System.Collections.Generic.IList<System.ArraySegment<byte>> BufferList { get { throw null; } set { } }
11835         public int BytesTransferred { get { throw null; } }
11836         public System.Exception ConnectByNameError { get { throw null; } }
11837         public System.Net.Sockets.Socket ConnectSocket { get { throw null; } }
11838         public int Count { get { throw null; } }
11839         public bool DisconnectReuseSocket { get { throw null; } set { } }
11840         public System.Net.Sockets.SocketAsyncOperation LastOperation { get { throw null; } }
11841         public int Offset { get { throw null; } }
11842         public System.Net.Sockets.IPPacketInformation ReceiveMessageFromPacketInfo { get { throw null; } }
11843         public System.Net.EndPoint RemoteEndPoint { get { throw null; } set { } }
11844         public System.Net.Sockets.SendPacketsElement[] SendPacketsElements { get { throw null; } set { } }
11845         public System.Net.Sockets.TransmitFileOptions SendPacketsFlags { get { throw null; } set { } }
11846         public int SendPacketsSendSize { get { throw null; } set { } }
11847         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
11848         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
11849         public System.Net.Sockets.SocketClientAccessPolicyProtocol SocketClientAccessPolicyProtocol { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
11850         public System.Net.Sockets.SocketError SocketError { get { throw null; } set { } }
11851         public System.Net.Sockets.SocketFlags SocketFlags { get { throw null; } set { } }
11852         public object UserToken { get { throw null; } set { } }
11853         public event System.EventHandler<System.Net.Sockets.SocketAsyncEventArgs> Completed { add { } remove { } }
Dispose()11854         public void Dispose() { }
~SocketAsyncEventArgs()11855         ~SocketAsyncEventArgs() { }
OnCompleted(System.Net.Sockets.SocketAsyncEventArgs e)11856         protected virtual void OnCompleted(System.Net.Sockets.SocketAsyncEventArgs e) { }
SetBuffer(byte[] buffer, int offset, int count)11857         public void SetBuffer(byte[] buffer, int offset, int count) { }
SetBuffer(int offset, int count)11858         public void SetBuffer(int offset, int count) { }
11859     }
11860     public enum SocketAsyncOperation
11861     {
11862         Accept = 1,
11863         Connect = 2,
11864         Disconnect = 3,
11865         None = 0,
11866         Receive = 4,
11867         ReceiveFrom = 5,
11868         ReceiveMessageFrom = 6,
11869         Send = 7,
11870         SendPackets = 8,
11871         SendTo = 9,
11872     }
11873     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
11874     [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
11875     public enum SocketClientAccessPolicyProtocol
11876     {
11877         Http = 1,
11878         Tcp = 0,
11879     }
11880     public enum SocketError
11881     {
11882         AccessDenied = 10013,
11883         AddressAlreadyInUse = 10048,
11884         AddressFamilyNotSupported = 10047,
11885         AddressNotAvailable = 10049,
11886         AlreadyInProgress = 10037,
11887         ConnectionAborted = 10053,
11888         ConnectionRefused = 10061,
11889         ConnectionReset = 10054,
11890         DestinationAddressRequired = 10039,
11891         Disconnecting = 10101,
11892         Fault = 10014,
11893         HostDown = 10064,
11894         HostNotFound = 11001,
11895         HostUnreachable = 10065,
11896         InProgress = 10036,
11897         Interrupted = 10004,
11898         InvalidArgument = 10022,
11899         IOPending = 997,
11900         IsConnected = 10056,
11901         MessageSize = 10040,
11902         NetworkDown = 10050,
11903         NetworkReset = 10052,
11904         NetworkUnreachable = 10051,
11905         NoBufferSpaceAvailable = 10055,
11906         NoData = 11004,
11907         NoRecovery = 11003,
11908         NotConnected = 10057,
11909         NotInitialized = 10093,
11910         NotSocket = 10038,
11911         OperationAborted = 995,
11912         OperationNotSupported = 10045,
11913         ProcessLimit = 10067,
11914         ProtocolFamilyNotSupported = 10046,
11915         ProtocolNotSupported = 10043,
11916         ProtocolOption = 10042,
11917         ProtocolType = 10041,
11918         Shutdown = 10058,
11919         SocketError = -1,
11920         SocketNotSupported = 10044,
11921         Success = 0,
11922         SystemNotReady = 10091,
11923         TimedOut = 10060,
11924         TooManyOpenSockets = 10024,
11925         TryAgain = 11002,
11926         TypeNotFound = 10109,
11927         VersionNotSupported = 10092,
11928         WouldBlock = 10035,
11929     }
11930     [System.SerializableAttribute]
11931     public partial class SocketException : System.ComponentModel.Win32Exception
11932     {
SocketException()11933         public SocketException() { }
SocketException(int errorCode)11934         public SocketException(int errorCode) { }
SocketException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)11935         protected SocketException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
11936         public override int ErrorCode { get { throw null; } }
11937         public override string Message { get { throw null; } }
11938         public System.Net.Sockets.SocketError SocketErrorCode { get { throw null; } }
11939     }
11940     [System.FlagsAttribute]
11941     public enum SocketFlags
11942     {
11943         Broadcast = 1024,
11944         ControlDataTruncated = 512,
11945         DontRoute = 4,
11946         MaxIOVectorLength = 16,
11947         Multicast = 2048,
11948         None = 0,
11949         OutOfBand = 1,
11950         Partial = 32768,
11951         Peek = 2,
11952         Truncated = 256,
11953     }
11954     [System.SerializableAttribute]
11955     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
11956     public partial struct SocketInformation
11957     {
11958         public System.Net.Sockets.SocketInformationOptions Options { get { throw null; } set { } }
11959         public byte[] ProtocolInformation { get { throw null; } set { } }
11960     }
11961     [System.FlagsAttribute]
11962     public enum SocketInformationOptions
11963     {
11964         Connected = 2,
11965         Listening = 4,
11966         NonBlocking = 1,
11967         UseOnlyOverlappedIO = 8,
11968     }
11969     public enum SocketOptionLevel
11970     {
11971         IP = 0,
11972         IPv6 = 41,
11973         Socket = 65535,
11974         Tcp = 6,
11975         Udp = 17,
11976     }
11977     public enum SocketOptionName
11978     {
11979         AcceptConnection = 2,
11980         AddMembership = 12,
11981         AddSourceMembership = 15,
11982         BlockSource = 17,
11983         Broadcast = 32,
11984         BsdUrgent = 2,
11985         ChecksumCoverage = 20,
11986         Debug = 1,
11987         DontFragment = 14,
11988         DontLinger = -129,
11989         DontRoute = 16,
11990         DropMembership = 13,
11991         DropSourceMembership = 16,
11992         Error = 4103,
11993         ExclusiveAddressUse = -5,
11994         Expedited = 2,
11995         HeaderIncluded = 2,
11996         HopLimit = 21,
11997         IPOptions = 1,
11998         IPProtectionLevel = 23,
11999         IpTimeToLive = 4,
12000         IPv6Only = 27,
12001         KeepAlive = 8,
12002         Linger = 128,
12003         MaxConnections = 2147483647,
12004         MulticastInterface = 9,
12005         MulticastLoopback = 11,
12006         MulticastTimeToLive = 10,
12007         NoChecksum = 1,
12008         NoDelay = 1,
12009         OutOfBandInline = 256,
12010         PacketInformation = 19,
12011         ReceiveBuffer = 4098,
12012         ReceiveLowWater = 4100,
12013         ReceiveTimeout = 4102,
12014         ReuseAddress = 4,
12015         ReuseUnicastPort = 12295,
12016         SendBuffer = 4097,
12017         SendLowWater = 4099,
12018         SendTimeout = 4101,
12019         Type = 4104,
12020         TypeOfService = 3,
12021         UnblockSource = 18,
12022         UpdateAcceptContext = 28683,
12023         UpdateConnectContext = 28688,
12024         UseLoopback = 64,
12025     }
12026     public enum SocketShutdown
12027     {
12028         Both = 2,
12029         Receive = 0,
12030         Send = 1,
12031     }
12032     public enum SocketType
12033     {
12034         Dgram = 2,
12035         Raw = 3,
12036         Rdm = 4,
12037         Seqpacket = 5,
12038         Stream = 1,
12039         Unknown = -1,
12040     }
12041     public partial class TcpClient : System.IDisposable
12042     {
TcpClient()12043         public TcpClient() { }
TcpClient(System.Net.IPEndPoint localEP)12044         public TcpClient(System.Net.IPEndPoint localEP) { }
TcpClient(System.Net.Sockets.AddressFamily family)12045         public TcpClient(System.Net.Sockets.AddressFamily family) { }
TcpClient(string hostname, int port)12046         public TcpClient(string hostname, int port) { }
12047         protected bool Active { get { throw null; } set { } }
12048         public int Available { get { throw null; } }
12049         public System.Net.Sockets.Socket Client { get { throw null; } set { } }
12050         public bool Connected { get { throw null; } }
12051         public bool ExclusiveAddressUse { get { throw null; } set { } }
12052         public System.Net.Sockets.LingerOption LingerState { get { throw null; } set { } }
12053         public bool NoDelay { get { throw null; } set { } }
12054         public int ReceiveBufferSize { get { throw null; } set { } }
12055         public int ReceiveTimeout { get { throw null; } set { } }
12056         public int SendBufferSize { get { throw null; } set { } }
12057         public int SendTimeout { get { throw null; } set { } }
12058         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state)12059         public System.IAsyncResult BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state) { throw null; }
12060         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state)12061         public System.IAsyncResult BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state) { throw null; }
12062         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state)12063         public System.IAsyncResult BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state) { throw null; }
Close()12064         public void Close() { }
Connect(System.Net.IPAddress address, int port)12065         public void Connect(System.Net.IPAddress address, int port) { }
Connect(System.Net.IPAddress[] ipAddresses, int port)12066         public void Connect(System.Net.IPAddress[] ipAddresses, int port) { }
Connect(System.Net.IPEndPoint remoteEP)12067         public void Connect(System.Net.IPEndPoint remoteEP) { }
Connect(string hostname, int port)12068         public void Connect(string hostname, int port) { }
12069         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(System.Net.IPAddress address, int port)12070         public System.Threading.Tasks.Task ConnectAsync(System.Net.IPAddress address, int port) { throw null; }
12071         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(System.Net.IPAddress[] addresses, int port)12072         public System.Threading.Tasks.Task ConnectAsync(System.Net.IPAddress[] addresses, int port) { throw null; }
12073         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(string host, int port)12074         public System.Threading.Tasks.Task ConnectAsync(string host, int port) { throw null; }
Dispose()12075         public void Dispose() { }
Dispose(bool disposing)12076         protected virtual void Dispose(bool disposing) { }
EndConnect(System.IAsyncResult asyncResult)12077         public void EndConnect(System.IAsyncResult asyncResult) { }
~TcpClient()12078         ~TcpClient() { }
GetStream()12079         public System.Net.Sockets.NetworkStream GetStream() { throw null; }
12080     }
12081     public partial class TcpListener
12082     {
12083         [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)12084         public TcpListener(int port) { }
TcpListener(System.Net.IPAddress localaddr, int port)12085         public TcpListener(System.Net.IPAddress localaddr, int port) { }
TcpListener(System.Net.IPEndPoint localEP)12086         public TcpListener(System.Net.IPEndPoint localEP) { }
12087         protected bool Active { get { throw null; } }
12088         public bool ExclusiveAddressUse { get { throw null; } set { } }
12089         public System.Net.EndPoint LocalEndpoint { get { throw null; } }
12090         public System.Net.Sockets.Socket Server { get { throw null; } }
AcceptSocket()12091         public System.Net.Sockets.Socket AcceptSocket() { throw null; }
12092         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AcceptSocketAsync()12093         public System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptSocketAsync() { throw null; }
AcceptTcpClient()12094         public System.Net.Sockets.TcpClient AcceptTcpClient() { throw null; }
12095         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AcceptTcpClientAsync()12096         public System.Threading.Tasks.Task<System.Net.Sockets.TcpClient> AcceptTcpClientAsync() { throw null; }
AllowNatTraversal(bool allowed)12097         public void AllowNatTraversal(bool allowed) { }
12098         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAcceptSocket(System.AsyncCallback callback, object state)12099         public System.IAsyncResult BeginAcceptSocket(System.AsyncCallback callback, object state) { throw null; }
12100         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAcceptTcpClient(System.AsyncCallback callback, object state)12101         public System.IAsyncResult BeginAcceptTcpClient(System.AsyncCallback callback, object state) { throw null; }
Create(int port)12102         public static System.Net.Sockets.TcpListener Create(int port) { throw null; }
EndAcceptSocket(System.IAsyncResult asyncResult)12103         public System.Net.Sockets.Socket EndAcceptSocket(System.IAsyncResult asyncResult) { throw null; }
EndAcceptTcpClient(System.IAsyncResult asyncResult)12104         public System.Net.Sockets.TcpClient EndAcceptTcpClient(System.IAsyncResult asyncResult) { throw null; }
Pending()12105         public bool Pending() { throw null; }
Start()12106         public void Start() { }
Start(int backlog)12107         public void Start(int backlog) { }
Stop()12108         public void Stop() { }
12109     }
12110     [System.FlagsAttribute]
12111     public enum TransmitFileOptions
12112     {
12113         Disconnect = 1,
12114         ReuseSocket = 2,
12115         UseDefaultWorkerThread = 0,
12116         UseKernelApc = 32,
12117         UseSystemThread = 16,
12118         WriteBehind = 4,
12119     }
12120     public partial class UdpClient : System.IDisposable
12121     {
UdpClient()12122         public UdpClient() { }
UdpClient(int port)12123         public UdpClient(int port) { }
UdpClient(int port, System.Net.Sockets.AddressFamily family)12124         public UdpClient(int port, System.Net.Sockets.AddressFamily family) { }
UdpClient(System.Net.IPEndPoint localEP)12125         public UdpClient(System.Net.IPEndPoint localEP) { }
UdpClient(System.Net.Sockets.AddressFamily family)12126         public UdpClient(System.Net.Sockets.AddressFamily family) { }
UdpClient(string hostname, int port)12127         public UdpClient(string hostname, int port) { }
12128         protected bool Active { get { throw null; } set { } }
12129         public int Available { get { throw null; } }
12130         public System.Net.Sockets.Socket Client { get { throw null; } set { } }
12131         public bool DontFragment { get { throw null; } set { } }
12132         public bool EnableBroadcast { get { throw null; } set { } }
12133         public bool ExclusiveAddressUse { get { throw null; } set { } }
12134         public bool MulticastLoopback { get { throw null; } set { } }
12135         public short Ttl { get { throw null; } set { } }
AllowNatTraversal(bool allowed)12136         public void AllowNatTraversal(bool allowed) { }
12137         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceive(System.AsyncCallback requestCallback, object state)12138         public System.IAsyncResult BeginReceive(System.AsyncCallback requestCallback, object state) { throw null; }
12139         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] datagram, int bytes, System.AsyncCallback requestCallback, object state)12140         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, System.AsyncCallback requestCallback, object state) { throw null; }
12141         [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)12142         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint, System.AsyncCallback requestCallback, object state) { throw null; }
12143         [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)12144         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, string hostname, int port, System.AsyncCallback requestCallback, object state) { throw null; }
Close()12145         public void Close() { }
Connect(System.Net.IPAddress addr, int port)12146         public void Connect(System.Net.IPAddress addr, int port) { }
Connect(System.Net.IPEndPoint endPoint)12147         public void Connect(System.Net.IPEndPoint endPoint) { }
Connect(string hostname, int port)12148         public void Connect(string hostname, int port) { }
Dispose()12149         public void Dispose() { }
Dispose(bool disposing)12150         protected virtual void Dispose(bool disposing) { }
DropMulticastGroup(System.Net.IPAddress multicastAddr)12151         public void DropMulticastGroup(System.Net.IPAddress multicastAddr) { }
DropMulticastGroup(System.Net.IPAddress multicastAddr, int ifindex)12152         public void DropMulticastGroup(System.Net.IPAddress multicastAddr, int ifindex) { }
EndReceive(System.IAsyncResult asyncResult, ref System.Net.IPEndPoint remoteEP)12153         public byte[] EndReceive(System.IAsyncResult asyncResult, ref System.Net.IPEndPoint remoteEP) { throw null; }
EndSend(System.IAsyncResult asyncResult)12154         public int EndSend(System.IAsyncResult asyncResult) { throw null; }
JoinMulticastGroup(int ifindex, System.Net.IPAddress multicastAddr)12155         public void JoinMulticastGroup(int ifindex, System.Net.IPAddress multicastAddr) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr)12156         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr, int timeToLive)12157         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr, int timeToLive) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr, System.Net.IPAddress localAddress)12158         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr, System.Net.IPAddress localAddress) { }
Receive(ref System.Net.IPEndPoint remoteEP)12159         public byte[] Receive(ref System.Net.IPEndPoint remoteEP) { throw null; }
12160         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ReceiveAsync()12161         public System.Threading.Tasks.Task<System.Net.Sockets.UdpReceiveResult> ReceiveAsync() { throw null; }
Send(byte[] dgram, int bytes)12162         public int Send(byte[] dgram, int bytes) { throw null; }
Send(byte[] dgram, int bytes, System.Net.IPEndPoint endPoint)12163         public int Send(byte[] dgram, int bytes, System.Net.IPEndPoint endPoint) { throw null; }
Send(byte[] dgram, int bytes, string hostname, int port)12164         public int Send(byte[] dgram, int bytes, string hostname, int port) { throw null; }
12165         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes)12166         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes) { throw null; }
12167         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint)12168         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint) { throw null; }
12169         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes, string hostname, int port)12170         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes, string hostname, int port) { throw null; }
12171     }
12172     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12173     public partial struct UdpReceiveResult : System.IEquatable<System.Net.Sockets.UdpReceiveResult>
12174     {
UdpReceiveResultSystem.Net.Sockets.UdpReceiveResult12175         public UdpReceiveResult(byte[] buffer, System.Net.IPEndPoint remoteEndPoint) { throw null;}
12176         public byte[] Buffer { get { throw null; } }
12177         public System.Net.IPEndPoint RemoteEndPoint { get { throw null; } }
EqualsSystem.Net.Sockets.UdpReceiveResult12178         public bool Equals(System.Net.Sockets.UdpReceiveResult other) { throw null; }
EqualsSystem.Net.Sockets.UdpReceiveResult12179         public override bool Equals(object obj) { throw null; }
GetHashCodeSystem.Net.Sockets.UdpReceiveResult12180         public override int GetHashCode() { throw null; }
operator ==System.Net.Sockets.UdpReceiveResult12181         public static bool operator ==(System.Net.Sockets.UdpReceiveResult left, System.Net.Sockets.UdpReceiveResult right) { throw null; }
operator !=System.Net.Sockets.UdpReceiveResult12182         public static bool operator !=(System.Net.Sockets.UdpReceiveResult left, System.Net.Sockets.UdpReceiveResult right) { throw null; }
12183     }
12184 }
12185 namespace System.Net.WebSockets
12186 {
12187     public sealed partial class ClientWebSocket : System.Net.WebSockets.WebSocket
12188     {
ClientWebSocket()12189         public ClientWebSocket() { }
12190         public override System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { get { throw null; } }
12191         public override string CloseStatusDescription { get { throw null; } }
12192         public System.Net.WebSockets.ClientWebSocketOptions Options { get { throw null; } }
12193         public override System.Net.WebSockets.WebSocketState State { get { throw null; } }
12194         public override string SubProtocol { get { throw null; } }
Abort()12195         public override void Abort() { }
CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)12196         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)12197         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)12198         public System.Threading.Tasks.Task ConnectAsync(System.Uri uri, System.Threading.CancellationToken cancellationToken) { throw null; }
Dispose()12199         public override void Dispose() { }
ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken)12200         public override System.Threading.Tasks.Task<System.Net.WebSockets.WebSocketReceiveResult> ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)12201         public override System.Threading.Tasks.Task SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
12202     }
12203     public sealed partial class ClientWebSocketOptions
12204     {
ClientWebSocketOptions()12205         internal ClientWebSocketOptions() { }
12206         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
12207         public System.Net.CookieContainer Cookies { get { throw null; } set { } }
12208         public System.Net.ICredentials Credentials { get { throw null; } set { } }
12209         public System.TimeSpan KeepAliveInterval { get { throw null; } set { } }
12210         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
12211         public bool UseDefaultCredentials { get { throw null; } set { } }
AddSubProtocol(string subProtocol)12212         public void AddSubProtocol(string subProtocol) { }
SetBuffer(int receiveBufferSize, int sendBufferSize)12213         public void SetBuffer(int receiveBufferSize, int sendBufferSize) { }
SetBuffer(int receiveBufferSize, int sendBufferSize, System.ArraySegment<byte> buffer)12214         public void SetBuffer(int receiveBufferSize, int sendBufferSize, System.ArraySegment<byte> buffer) { }
SetRequestHeader(string headerName, string headerValue)12215         public void SetRequestHeader(string headerName, string headerValue) { }
12216     }
12217     public partial class HttpListenerWebSocketContext : System.Net.WebSockets.WebSocketContext
12218     {
HttpListenerWebSocketContext()12219         internal HttpListenerWebSocketContext() { }
12220         public override System.Net.CookieCollection CookieCollection { get { throw null; } }
12221         public override System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
12222         public override bool IsAuthenticated { get { throw null; } }
12223         public override bool IsLocal { get { throw null; } }
12224         public override bool IsSecureConnection { get { throw null; } }
12225         public override string Origin { get { throw null; } }
12226         public override System.Uri RequestUri { get { throw null; } }
12227         public override string SecWebSocketKey { get { throw null; } }
12228         public override System.Collections.Generic.IEnumerable<string> SecWebSocketProtocols { get { throw null; } }
12229         public override string SecWebSocketVersion { get { throw null; } }
12230         public override System.Security.Principal.IPrincipal User { get { throw null; } }
12231         public override System.Net.WebSockets.WebSocket WebSocket { get { throw null; } }
12232     }
12233     public abstract partial class WebSocket : System.IDisposable
12234     {
WebSocket()12235         protected WebSocket() { }
12236         public abstract System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { get; }
12237         public abstract string CloseStatusDescription { get; }
12238         public static System.TimeSpan DefaultKeepAliveInterval { get { throw null; } }
12239         public abstract System.Net.WebSockets.WebSocketState State { get; }
12240         public abstract string SubProtocol { get; }
Abort()12241         public abstract void Abort();
CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)12242         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)12243         public abstract System.Threading.Tasks.Task CloseOutputAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken);
CreateClientBuffer(int receiveBufferSize, int sendBufferSize)12244         public static System.ArraySegment<byte> CreateClientBuffer(int receiveBufferSize, int sendBufferSize) { throw null; }
12245         [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)12246         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; }
CreateServerBuffer(int receiveBufferSize)12247         public static System.ArraySegment<byte> CreateServerBuffer(int receiveBufferSize) { throw null; }
Dispose()12248         public abstract void Dispose();
12249         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
12250         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.")]
IsApplicationTargeting45()12251         public static bool IsApplicationTargeting45() { throw null; }
IsStateTerminal(System.Net.WebSockets.WebSocketState state)12252         protected static bool IsStateTerminal(System.Net.WebSockets.WebSocketState state) { throw null; }
ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken)12253         public abstract System.Threading.Tasks.Task<System.Net.WebSockets.WebSocketReceiveResult> ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken);
12254         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
RegisterPrefixes()12255         public static void RegisterPrefixes() { }
SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)12256         public abstract System.Threading.Tasks.Task SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken);
ThrowOnInvalidState(System.Net.WebSockets.WebSocketState state, params System.Net.WebSockets.WebSocketState[] validStates)12257         protected static void ThrowOnInvalidState(System.Net.WebSockets.WebSocketState state, params System.Net.WebSockets.WebSocketState[] validStates) { }
12258     }
12259     public enum WebSocketCloseStatus
12260     {
12261         Empty = 1005,
12262         EndpointUnavailable = 1001,
12263         InternalServerError = 1011,
12264         InvalidMessageType = 1003,
12265         InvalidPayloadData = 1007,
12266         MandatoryExtension = 1010,
12267         MessageTooBig = 1009,
12268         NormalClosure = 1000,
12269         PolicyViolation = 1008,
12270         ProtocolError = 1002,
12271     }
12272     public abstract partial class WebSocketContext
12273     {
WebSocketContext()12274         protected WebSocketContext() { }
12275         public abstract System.Net.CookieCollection CookieCollection { get; }
12276         public abstract System.Collections.Specialized.NameValueCollection Headers { get; }
12277         public abstract bool IsAuthenticated { get; }
12278         public abstract bool IsLocal { get; }
12279         public abstract bool IsSecureConnection { get; }
12280         public abstract string Origin { get; }
12281         public abstract System.Uri RequestUri { get; }
12282         public abstract string SecWebSocketKey { get; }
12283         public abstract System.Collections.Generic.IEnumerable<string> SecWebSocketProtocols { get; }
12284         public abstract string SecWebSocketVersion { get; }
12285         public abstract System.Security.Principal.IPrincipal User { get; }
12286         public abstract System.Net.WebSockets.WebSocket WebSocket { get; }
12287     }
12288     public enum WebSocketError
12289     {
12290         ConnectionClosedPrematurely = 8,
12291         Faulted = 2,
12292         HeaderError = 7,
12293         InvalidMessageType = 1,
12294         InvalidState = 9,
12295         NativeError = 3,
12296         NotAWebSocket = 4,
12297         Success = 0,
12298         UnsupportedProtocol = 6,
12299         UnsupportedVersion = 5,
12300     }
12301     [System.SerializableAttribute]
12302     public sealed partial class WebSocketException : System.ComponentModel.Win32Exception
12303     {
WebSocketException()12304         public WebSocketException() { }
WebSocketException(int nativeError)12305         public WebSocketException(int nativeError) { }
WebSocketException(int nativeError, System.Exception innerException)12306         public WebSocketException(int nativeError, System.Exception innerException) { }
WebSocketException(int nativeError, string message)12307         public WebSocketException(int nativeError, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error)12308         public WebSocketException(System.Net.WebSockets.WebSocketError error) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, System.Exception innerException)12309         public WebSocketException(System.Net.WebSockets.WebSocketError error, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError)12310         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, System.Exception innerException)12311         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message)12312         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, System.Exception innerException)12313         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, string message)12314         public WebSocketException(System.Net.WebSockets.WebSocketError error, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, string message, System.Exception innerException)12315         public WebSocketException(System.Net.WebSockets.WebSocketError error, string message, System.Exception innerException) { }
WebSocketException(string message)12316         public WebSocketException(string message) { }
WebSocketException(string message, System.Exception innerException)12317         public WebSocketException(string message, System.Exception innerException) { }
12318         public override int ErrorCode { get { throw null; } }
12319         public System.Net.WebSockets.WebSocketError WebSocketErrorCode { get { throw null; } }
12320         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12321         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
12322     }
12323     public enum WebSocketMessageType
12324     {
12325         Binary = 1,
12326         Close = 2,
12327         Text = 0,
12328     }
12329     public partial class WebSocketReceiveResult
12330     {
WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage)12331         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)12332         public WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> closeStatus, string closeStatusDescription) { }
12333         public System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12334         public string CloseStatusDescription { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12335         public int Count { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12336         public bool EndOfMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12337         public System.Net.WebSockets.WebSocketMessageType MessageType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
12338     }
12339     public enum WebSocketState
12340     {
12341         Aborted = 6,
12342         Closed = 5,
12343         CloseReceived = 4,
12344         CloseSent = 3,
12345         Connecting = 1,
12346         None = 0,
12347         Open = 2,
12348     }
12349 }
12350 namespace System.Reflection
12351 {
12352     public partial interface ICustomTypeProvider
12353     {
GetCustomType()12354         System.Type GetCustomType();
12355     }
12356 }
12357 namespace System.Runtime.InteropServices
12358 {
12359     [System.AttributeUsageAttribute((System.AttributeTargets)(2048))]
12360     public sealed partial class DefaultParameterValueAttribute : System.Attribute
12361     {
DefaultParameterValueAttribute(object value)12362         public DefaultParameterValueAttribute(object value) { }
12363         public object Value { get { throw null; } }
12364     }
12365     public sealed partial class HandleCollector
12366     {
HandleCollector(string name, int initialThreshold)12367         public HandleCollector(string name, int initialThreshold) { }
HandleCollector(string name, int initialThreshold, int maximumThreshold)12368         public HandleCollector(string name, int initialThreshold, int maximumThreshold) { }
12369         public int Count { get { throw null; } }
12370         public int InitialThreshold { get { throw null; } }
12371         public int MaximumThreshold { get { throw null; } }
12372         public string Name { get { throw null; } }
Add()12373         public void Add() { }
Remove()12374         public void Remove() { }
12375     }
12376     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
12377     public partial class StandardOleMarshalObject : System.MarshalByRefObject
12378     {
StandardOleMarshalObject()12379         protected StandardOleMarshalObject() { }
12380     }
12381 }
12382 namespace System.Runtime.InteropServices.ComTypes
12383 {
12384     [System.FlagsAttribute]
12385     public enum ADVF
12386     {
12387         ADVFCACHE_FORCEBUILTIN = 16,
12388         ADVFCACHE_NOHANDLER = 8,
12389         ADVFCACHE_ONSAVE = 32,
12390         ADVF_DATAONSTOP = 64,
12391         ADVF_NODATA = 1,
12392         ADVF_ONLYONCE = 4,
12393         ADVF_PRIMEFIRST = 2,
12394     }
12395     public enum DATADIR
12396     {
12397         DATADIR_GET = 1,
12398         DATADIR_SET = 2,
12399     }
12400     [System.FlagsAttribute]
12401     public enum DVASPECT
12402     {
12403         DVASPECT_CONTENT = 1,
12404         DVASPECT_DOCPRINT = 8,
12405         DVASPECT_ICON = 4,
12406         DVASPECT_THUMBNAIL = 2,
12407     }
12408     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12409     public partial struct FORMATETC
12410     {
12411         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U2)]
12412         public short cfFormat;
12413         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U4)]
12414         public System.Runtime.InteropServices.ComTypes.DVASPECT dwAspect;
12415         public int lindex;
12416         public System.IntPtr ptd;
12417         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U4)]
12418         public System.Runtime.InteropServices.ComTypes.TYMED tymed;
12419     }
12420     [System.Runtime.InteropServices.GuidAttribute("0000010F-0000-0000-C000-000000000046")]
12421     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12422     public partial interface IAdviseSink
12423     {
OnClose()12424         [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)12425         [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)12426         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnRename(System.Runtime.InteropServices.ComTypes.IMoniker moniker);
OnSave()12427         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnSave();
OnViewChange(int aspect, int index)12428         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnViewChange(int aspect, int index);
12429     }
12430     [System.Runtime.InteropServices.GuidAttribute("0000010E-0000-0000-C000-000000000046")]
12431     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12432     public partial interface IDataObject
12433     {
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)12434         [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)12435         void DUnadvise(int connection);
EnumDAdvise(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA enumAdvise)12436         [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)12437         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)12438         [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)12439         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)12440         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)12441         [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)12442         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);
12443     }
12444     [System.Runtime.InteropServices.GuidAttribute("00000103-0000-0000-C000-000000000046")]
12445     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12446     public partial interface IEnumFORMATETC
12447     {
Clone(out System.Runtime.InteropServices.ComTypes.IEnumFORMATETC newEnum)12448         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)12449         [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()12450         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset();
Skip(int celt)12451         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt);
12452     }
12453     [System.Runtime.InteropServices.GuidAttribute("00000103-0000-0000-C000-000000000046")]
12454     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
12455     public partial interface IEnumSTATDATA
12456     {
Clone(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA newEnum)12457         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)12458         [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()12459         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset();
Skip(int celt)12460         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt);
12461     }
12462     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12463     public partial struct STATDATA
12464     {
12465         public System.Runtime.InteropServices.ComTypes.ADVF advf;
12466         public System.Runtime.InteropServices.ComTypes.IAdviseSink advSink;
12467         public int connection;
12468         public System.Runtime.InteropServices.ComTypes.FORMATETC formatetc;
12469     }
12470     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
12471     public partial struct STGMEDIUM
12472     {
12473         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]
12474         public object pUnkForRelease;
12475         public System.Runtime.InteropServices.ComTypes.TYMED tymed;
12476         public System.IntPtr unionmember;
12477     }
12478     [System.FlagsAttribute]
12479     public enum TYMED
12480     {
12481         TYMED_ENHMF = 64,
12482         TYMED_FILE = 2,
12483         TYMED_GDI = 16,
12484         TYMED_HGLOBAL = 1,
12485         TYMED_ISTORAGE = 8,
12486         TYMED_ISTREAM = 4,
12487         TYMED_MFPICT = 32,
12488         TYMED_NULL = 0,
12489     }
12490 }
12491 namespace System.Runtime.Versioning
12492 {
12493     [System.SerializableAttribute]
12494     public sealed partial class FrameworkName : System.IEquatable<System.Runtime.Versioning.FrameworkName>
12495     {
FrameworkName(string frameworkName)12496         public FrameworkName(string frameworkName) { }
FrameworkName(string identifier, System.Version version)12497         public FrameworkName(string identifier, System.Version version) { }
FrameworkName(string identifier, System.Version version, string profile)12498         public FrameworkName(string identifier, System.Version version, string profile) { }
12499         public string FullName { get { throw null; } }
12500         public string Identifier { get { throw null; } }
12501         public string Profile { get { throw null; } }
12502         public System.Version Version { get { throw null; } }
Equals(object obj)12503         public override bool Equals(object obj) { throw null; }
Equals(System.Runtime.Versioning.FrameworkName other)12504         public bool Equals(System.Runtime.Versioning.FrameworkName other) { throw null; }
GetHashCode()12505         public override int GetHashCode() { throw null; }
operator ==(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right)12506         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)12507         public static bool operator !=(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right) { throw null; }
ToString()12508         public override string ToString() { throw null; }
12509     }
12510 }
12511 namespace System.Security.AccessControl
12512 {
12513     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12514     public sealed partial class SemaphoreAccessRule : System.Security.AccessControl.AccessRule
12515     {
SemaphoreAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AccessControlType type)12516         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)12517         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)) { }
12518         public System.Security.AccessControl.SemaphoreRights SemaphoreRights { get { throw null; } }
12519     }
12520     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12521     public sealed partial class SemaphoreAuditRule : System.Security.AccessControl.AuditRule
12522     {
SemaphoreAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AuditFlags flags)12523         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)) { }
12524         public System.Security.AccessControl.SemaphoreRights SemaphoreRights { get { throw null; } }
12525     }
12526     [System.FlagsAttribute]
12527     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12528     public enum SemaphoreRights
12529     {
12530         ChangePermissions = 262144,
12531         Delete = 65536,
12532         FullControl = 2031619,
12533         Modify = 2,
12534         ReadPermissions = 131072,
12535         Synchronize = 1048576,
12536         TakeOwnership = 524288,
12537     }
12538     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
12539     public sealed partial class SemaphoreSecurity : System.Security.AccessControl.NativeObjectSecurity
12540     {
SemaphoreSecurity()12541         public SemaphoreSecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { }
SemaphoreSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections)12542         public SemaphoreSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { }
12543         public override System.Type AccessRightType { get { throw null; } }
12544         public override System.Type AccessRuleType { get { throw null; } }
12545         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)12546         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)12547         public void AddAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
AddAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)12548         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)12549         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)12550         public bool RemoveAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { throw null; }
RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule rule)12551         public void RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule rule) { }
RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule rule)12552         public void RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule rule) { }
RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)12553         public bool RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { throw null; }
RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule rule)12554         public void RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule rule) { }
RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule rule)12555         public void RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule rule) { }
ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)12556         public void ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)12557         public void SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)12558         public void SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { }
12559     }
12560 }
12561 namespace System.Security.Authentication
12562 {
12563     [System.SerializableAttribute]
12564     public partial class AuthenticationException : System.SystemException
12565     {
AuthenticationException()12566         public AuthenticationException() { }
AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)12567         protected AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
AuthenticationException(string message)12568         public AuthenticationException(string message) { }
AuthenticationException(string message, System.Exception innerException)12569         public AuthenticationException(string message, System.Exception innerException) { }
12570     }
12571     public enum CipherAlgorithmType
12572     {
12573         Aes = 26129,
12574         Aes128 = 26126,
12575         Aes192 = 26127,
12576         Aes256 = 26128,
12577         Des = 26113,
12578         None = 0,
12579         Null = 24576,
12580         Rc2 = 26114,
12581         Rc4 = 26625,
12582         TripleDes = 26115,
12583     }
12584     public enum ExchangeAlgorithmType
12585     {
12586         DiffieHellman = 43522,
12587         None = 0,
12588         RsaKeyX = 41984,
12589         RsaSign = 9216,
12590     }
12591     public enum HashAlgorithmType
12592     {
12593         Md5 = 32771,
12594         None = 0,
12595         Sha1 = 32772,
12596         Sha256 = 32780,
12597         Sha384 = 32781,
12598         Sha512 = 32782,
12599     }
12600     [System.SerializableAttribute]
12601     public partial class InvalidCredentialException : System.Security.Authentication.AuthenticationException
12602     {
InvalidCredentialException()12603         public InvalidCredentialException() { }
InvalidCredentialException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)12604         protected InvalidCredentialException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
InvalidCredentialException(string message)12605         public InvalidCredentialException(string message) { }
InvalidCredentialException(string message, System.Exception innerException)12606         public InvalidCredentialException(string message, System.Exception innerException) { }
12607     }
12608     [System.FlagsAttribute]
12609     public enum SslProtocols
12610     {
12611         Default = 240,
12612         None = 0,
12613         Ssl2 = 12,
12614         Ssl3 = 48,
12615         Tls = 192,
12616         Tls11 = 768,
12617         Tls12 = 3072,
12618     }
12619 }
12620 namespace System.Security.Authentication.ExtendedProtection
12621 {
12622     public abstract partial class ChannelBinding : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
12623     {
ChannelBinding()12624         protected ChannelBinding() : base (default(bool)) { }
ChannelBinding(bool ownsHandle)12625         protected ChannelBinding(bool ownsHandle) : base (default(bool)) { }
12626         public abstract int Size { get; }
12627     }
12628     public enum ChannelBindingKind
12629     {
12630         Endpoint = 26,
12631         Unique = 25,
12632         Unknown = 0,
12633     }
12634     [System.ComponentModel.TypeConverterAttribute(typeof(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicyTypeConverter))]
12635     [System.SerializableAttribute]
12636     public partial class ExtendedProtectionPolicy : System.Runtime.Serialization.ISerializable
12637     {
ExtendedProtectionPolicy(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12638         protected ExtendedProtectionPolicy(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement)12639         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement) { }
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ChannelBinding customChannelBinding)12640         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)12641         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)12642         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ProtectionScenario protectionScenario, System.Security.Authentication.ExtendedProtection.ServiceNameCollection customServiceNames) { }
12643         public System.Security.Authentication.ExtendedProtection.ChannelBinding CustomChannelBinding { get { throw null; } }
12644         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { throw null; } }
12645         public static bool OSSupportsExtendedProtection { get { throw null; } }
12646         public System.Security.Authentication.ExtendedProtection.PolicyEnforcement PolicyEnforcement { get { throw null; } }
12647         public System.Security.Authentication.ExtendedProtection.ProtectionScenario ProtectionScenario { get { throw null; } }
12648         [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)12649         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ToString()12650         public override string ToString() { throw null; }
12651     }
12652     public partial class ExtendedProtectionPolicyTypeConverter : System.ComponentModel.TypeConverter
12653     {
ExtendedProtectionPolicyTypeConverter()12654         public ExtendedProtectionPolicyTypeConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)12655         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)12656         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
12657     }
12658     public enum PolicyEnforcement
12659     {
12660         Always = 2,
12661         Never = 0,
12662         WhenSupported = 1,
12663     }
12664     public enum ProtectionScenario
12665     {
12666         TransportSelected = 0,
12667         TrustedProxy = 1,
12668     }
12669     [System.SerializableAttribute]
12670     public partial class ServiceNameCollection : System.Collections.ReadOnlyCollectionBase
12671     {
ServiceNameCollection(System.Collections.ICollection items)12672         public ServiceNameCollection(System.Collections.ICollection items) { }
Contains(string searchServiceName)12673         public bool Contains(string searchServiceName) { throw null; }
Merge(System.Collections.IEnumerable serviceNames)12674         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection Merge(System.Collections.IEnumerable serviceNames) { throw null; }
Merge(string serviceName)12675         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection Merge(string serviceName) { throw null; }
12676     }
12677     public partial class TokenBinding
12678     {
TokenBinding()12679         internal TokenBinding() { }
12680         public System.Security.Authentication.ExtendedProtection.TokenBindingType BindingType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetRawTokenBindingId()12681         public byte[] GetRawTokenBindingId() { throw null; }
12682     }
12683     public enum TokenBindingType
12684     {
12685         Provided = 0,
12686         Referred = 1,
12687     }
12688 }
12689 #if CONFIG_DEP
12690 namespace System.Security.Authentication.ExtendedProtection.Configuration
12691 {
12692     public sealed partial class ExtendedProtectionPolicyElement : System.Configuration.ConfigurationElement
12693     {
ExtendedProtectionPolicyElement()12694         public ExtendedProtectionPolicyElement() { }
12695         [System.Configuration.ConfigurationPropertyAttribute("customServiceNames")]
12696         public System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection CustomServiceNames { get { throw null; } }
12697         [System.Configuration.ConfigurationPropertyAttribute("policyEnforcement")]
12698         public System.Security.Authentication.ExtendedProtection.PolicyEnforcement PolicyEnforcement { get { throw null; } set { } }
12699         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
12700         [System.Configuration.ConfigurationPropertyAttribute("protectionScenario", DefaultValue=(System.Security.Authentication.ExtendedProtection.ProtectionScenario)(0))]
12701         public System.Security.Authentication.ExtendedProtection.ProtectionScenario ProtectionScenario { get { throw null; } set { } }
BuildPolicy()12702         public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy BuildPolicy() { throw null; }
12703     }
12704     public sealed partial class ServiceNameElement : System.Configuration.ConfigurationElement
12705     {
ServiceNameElement()12706         public ServiceNameElement() { }
12707         [System.Configuration.ConfigurationPropertyAttribute("name")]
12708         public string Name { get { throw null; } set { } }
12709         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
12710     }
12711     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement))]
12712     public sealed partial class ServiceNameElementCollection : System.Configuration.ConfigurationElementCollection
12713     {
ServiceNameElementCollection()12714         public ServiceNameElementCollection() { }
12715         public System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement this[int index] { get { throw null; } set { } }
12716         public new System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement this[string name] { get { throw null; } set { } }
Add(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element)12717         public void Add(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element) { }
Clear()12718         public void Clear() { }
CreateNewElement()12719         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)12720         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element)12721         public int IndexOf(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element) { throw null; }
Remove(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element)12722         public void Remove(System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement element) { }
Remove(string name)12723         public void Remove(string name) { }
RemoveAt(int index)12724         public void RemoveAt(int index) { }
12725     }
12726 }
12727 #endif
12728 namespace System.Security.Claims
12729 {
12730     public static partial class DynamicRoleClaimProvider
12731     {
12732         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
12733         [System.ObsoleteAttribute("Use ClaimsAuthenticationManager to add claims to a ClaimsIdentity", true)]
AddDynamicRoleClaims(System.Security.Claims.ClaimsIdentity claimsIdentity, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> claims)12734         public static void AddDynamicRoleClaims(System.Security.Claims.ClaimsIdentity claimsIdentity, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim> claims) { }
12735     }
12736 }
12737 namespace System.Security.Cryptography
12738 {
12739     public partial class AsnEncodedData
12740     {
AsnEncodedData()12741         protected AsnEncodedData() { }
AsnEncodedData(byte[] rawData)12742         public AsnEncodedData(byte[] rawData) { }
AsnEncodedData(System.Security.Cryptography.AsnEncodedData asnEncodedData)12743         public AsnEncodedData(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
AsnEncodedData(System.Security.Cryptography.Oid oid, byte[] rawData)12744         public AsnEncodedData(System.Security.Cryptography.Oid oid, byte[] rawData) { }
AsnEncodedData(string oid, byte[] rawData)12745         public AsnEncodedData(string oid, byte[] rawData) { }
12746         public System.Security.Cryptography.Oid Oid { get { throw null; } set { } }
12747         public byte[] RawData { get { throw null; } set { } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12748         public virtual void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
Format(bool multiLine)12749         public virtual string Format(bool multiLine) { throw null; }
12750     }
12751     public sealed partial class AsnEncodedDataCollection : System.Collections.ICollection, System.Collections.IEnumerable
12752     {
AsnEncodedDataCollection()12753         public AsnEncodedDataCollection() { }
AsnEncodedDataCollection(System.Security.Cryptography.AsnEncodedData asnEncodedData)12754         public AsnEncodedDataCollection(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12755         public int Count { get { throw null; } }
12756         public bool IsSynchronized { get { throw null; } }
12757         public System.Security.Cryptography.AsnEncodedData this[int index] { get { throw null; } }
12758         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.AsnEncodedData asnEncodedData)12759         public int Add(System.Security.Cryptography.AsnEncodedData asnEncodedData) { throw null; }
CopyTo(System.Security.Cryptography.AsnEncodedData[] array, int index)12760         public void CopyTo(System.Security.Cryptography.AsnEncodedData[] array, int index) { }
GetEnumerator()12761         public System.Security.Cryptography.AsnEncodedDataEnumerator GetEnumerator() { throw null; }
Remove(System.Security.Cryptography.AsnEncodedData asnEncodedData)12762         public void Remove(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)12763         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()12764         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
12765     }
12766     public sealed partial class AsnEncodedDataEnumerator : System.Collections.IEnumerator
12767     {
AsnEncodedDataEnumerator()12768         internal AsnEncodedDataEnumerator() { }
12769         public System.Security.Cryptography.AsnEncodedData Current { get { throw null; } }
12770         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12771         public bool MoveNext() { throw null; }
Reset()12772         public void Reset() { }
12773     }
12774     public sealed partial class Oid
12775     {
Oid()12776         public Oid() { }
Oid(System.Security.Cryptography.Oid oid)12777         public Oid(System.Security.Cryptography.Oid oid) { }
Oid(string oid)12778         public Oid(string oid) { }
Oid(string value, string friendlyName)12779         public Oid(string value, string friendlyName) { }
12780         public string FriendlyName { get { throw null; } set { } }
12781         public string Value { get { throw null; } set { } }
FromFriendlyName(string friendlyName, System.Security.Cryptography.OidGroup group)12782         public static System.Security.Cryptography.Oid FromFriendlyName(string friendlyName, System.Security.Cryptography.OidGroup group) { throw null; }
FromOidValue(string oidValue, System.Security.Cryptography.OidGroup group)12783         public static System.Security.Cryptography.Oid FromOidValue(string oidValue, System.Security.Cryptography.OidGroup group) { throw null; }
12784     }
12785     public sealed partial class OidCollection : System.Collections.ICollection, System.Collections.IEnumerable
12786     {
OidCollection()12787         public OidCollection() { }
12788         public int Count { get { throw null; } }
12789         public bool IsSynchronized { get { throw null; } }
12790         public System.Security.Cryptography.Oid this[int index] { get { throw null; } }
12791         public System.Security.Cryptography.Oid this[string oid] { get { throw null; } }
12792         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.Oid oid)12793         public int Add(System.Security.Cryptography.Oid oid) { throw null; }
CopyTo(System.Security.Cryptography.Oid[] array, int index)12794         public void CopyTo(System.Security.Cryptography.Oid[] array, int index) { }
GetEnumerator()12795         public System.Security.Cryptography.OidEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)12796         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()12797         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
12798     }
12799     public sealed partial class OidEnumerator : System.Collections.IEnumerator
12800     {
OidEnumerator()12801         internal OidEnumerator() { }
12802         public System.Security.Cryptography.Oid Current { get { throw null; } }
12803         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12804         public bool MoveNext() { throw null; }
Reset()12805         public void Reset() { }
12806     }
12807     public enum OidGroup
12808     {
12809         All = 0,
12810         Attribute = 5,
12811         EncryptionAlgorithm = 2,
12812         EnhancedKeyUsage = 7,
12813         ExtensionOrAttribute = 6,
12814         HashAlgorithm = 1,
12815         KeyDerivationFunction = 10,
12816         Policy = 8,
12817         PublicKeyAlgorithm = 3,
12818         SignatureAlgorithm = 4,
12819         Template = 9,
12820     }
12821 }
12822 namespace System.Security.Cryptography.X509Certificates
12823 {
12824     [System.FlagsAttribute]
12825     public enum OpenFlags
12826     {
12827         IncludeArchived = 8,
12828         MaxAllowed = 2,
12829         OpenExistingOnly = 4,
12830         ReadOnly = 0,
12831         ReadWrite = 1,
12832     }
12833     public sealed partial class PublicKey
12834     {
PublicKey(System.Security.Cryptography.Oid oid, System.Security.Cryptography.AsnEncodedData parameters, System.Security.Cryptography.AsnEncodedData keyValue)12835         public PublicKey(System.Security.Cryptography.Oid oid, System.Security.Cryptography.AsnEncodedData parameters, System.Security.Cryptography.AsnEncodedData keyValue) { }
12836         public System.Security.Cryptography.AsnEncodedData EncodedKeyValue { get { throw null; } }
12837         public System.Security.Cryptography.AsnEncodedData EncodedParameters { get { throw null; } }
12838         public System.Security.Cryptography.AsymmetricAlgorithm Key { get { throw null; } }
12839         public System.Security.Cryptography.Oid Oid { get { throw null; } }
12840     }
12841     public enum StoreLocation
12842     {
12843         CurrentUser = 1,
12844         LocalMachine = 2,
12845     }
12846     public enum StoreName
12847     {
12848         AddressBook = 1,
12849         AuthRoot = 2,
12850         CertificateAuthority = 3,
12851         Disallowed = 4,
12852         My = 5,
12853         Root = 6,
12854         TrustedPeople = 7,
12855         TrustedPublisher = 8,
12856     }
12857     public sealed partial class X500DistinguishedName : System.Security.Cryptography.AsnEncodedData
12858     {
X500DistinguishedName(byte[] encodedDistinguishedName)12859         public X500DistinguishedName(byte[] encodedDistinguishedName) { }
X500DistinguishedName(System.Security.Cryptography.AsnEncodedData encodedDistinguishedName)12860         public X500DistinguishedName(System.Security.Cryptography.AsnEncodedData encodedDistinguishedName) { }
X500DistinguishedName(System.Security.Cryptography.X509Certificates.X500DistinguishedName distinguishedName)12861         public X500DistinguishedName(System.Security.Cryptography.X509Certificates.X500DistinguishedName distinguishedName) { }
X500DistinguishedName(string distinguishedName)12862         public X500DistinguishedName(string distinguishedName) { }
X500DistinguishedName(string distinguishedName, System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag)12863         public X500DistinguishedName(string distinguishedName, System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag) { }
12864         public string Name { get { throw null; } }
Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag)12865         public string Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag) { throw null; }
Format(bool multiLine)12866         public override string Format(bool multiLine) { throw null; }
12867     }
12868     [System.FlagsAttribute]
12869     public enum X500DistinguishedNameFlags
12870     {
12871         DoNotUsePlusSign = 32,
12872         DoNotUseQuotes = 64,
12873         ForceUTF8Encoding = 16384,
12874         None = 0,
12875         Reversed = 1,
12876         UseCommas = 128,
12877         UseNewLines = 256,
12878         UseSemicolons = 16,
12879         UseT61Encoding = 8192,
12880         UseUTF8Encoding = 4096,
12881     }
12882     public sealed partial class X509BasicConstraintsExtension : System.Security.Cryptography.X509Certificates.X509Extension
12883     {
X509BasicConstraintsExtension()12884         public X509BasicConstraintsExtension() { }
X509BasicConstraintsExtension(bool certificateAuthority, bool hasPathLengthConstraint, int pathLengthConstraint, bool critical)12885         public X509BasicConstraintsExtension(bool certificateAuthority, bool hasPathLengthConstraint, int pathLengthConstraint, bool critical) { }
X509BasicConstraintsExtension(System.Security.Cryptography.AsnEncodedData encodedBasicConstraints, bool critical)12886         public X509BasicConstraintsExtension(System.Security.Cryptography.AsnEncodedData encodedBasicConstraints, bool critical) { }
12887         public bool CertificateAuthority { get { throw null; } }
12888         public bool HasPathLengthConstraint { get { throw null; } }
12889         public int PathLengthConstraint { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)12890         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
12891     }
12892     [System.SerializableAttribute]
12893     public partial class X509Certificate2 : System.Security.Cryptography.X509Certificates.X509Certificate
12894     {
X509Certificate2()12895         public X509Certificate2() { }
X509Certificate2(byte[] rawData)12896         public X509Certificate2(byte[] rawData) { }
X509Certificate2(byte[] rawData, System.Security.SecureString password)12897         public X509Certificate2(byte[] rawData, System.Security.SecureString password) { }
X509Certificate2(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12898         public X509Certificate2(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(byte[] rawData, string password)12899         public X509Certificate2(byte[] rawData, string password) { }
X509Certificate2(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12900         public X509Certificate2(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12901         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
12902         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
X509Certificate2(System.IntPtr handle)12903         public X509Certificate2(System.IntPtr handle) { }
12904         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
12905         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
X509Certificate2(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)12906         protected X509Certificate2(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
X509Certificate2(System.Security.Cryptography.X509Certificates.X509Certificate certificate)12907         public X509Certificate2(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { }
X509Certificate2(string fileName)12908         public X509Certificate2(string fileName) { }
X509Certificate2(string fileName, System.Security.SecureString password)12909         public X509Certificate2(string fileName, System.Security.SecureString password) { }
X509Certificate2(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12910         public X509Certificate2(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(string fileName, string password)12911         public X509Certificate2(string fileName, string password) { }
X509Certificate2(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12912         public X509Certificate2(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12913         public bool Archived { get { throw null; } set { } }
12914         public System.Security.Cryptography.X509Certificates.X509ExtensionCollection Extensions { get { throw null; } }
12915         public string FriendlyName { get { throw null; } set { } }
12916         public bool HasPrivateKey { get { throw null; } }
12917         public System.Security.Cryptography.X509Certificates.X500DistinguishedName IssuerName { get { throw null; } }
12918         public System.DateTime NotAfter { get { throw null; } }
12919         public System.DateTime NotBefore { get { throw null; } }
12920         public System.Security.Cryptography.AsymmetricAlgorithm PrivateKey { get { throw null; } set { } }
12921         public System.Security.Cryptography.X509Certificates.PublicKey PublicKey { get { throw null; } }
12922         public byte[] RawData { get { throw null; } }
12923         public string SerialNumber { get { throw null; } }
12924         public System.Security.Cryptography.Oid SignatureAlgorithm { get { throw null; } }
12925         public System.Security.Cryptography.X509Certificates.X500DistinguishedName SubjectName { get { throw null; } }
12926         public string Thumbprint { get { throw null; } }
12927         public int Version { get { throw null; } }
GetCertContentType(byte[] rawData)12928         public static System.Security.Cryptography.X509Certificates.X509ContentType GetCertContentType(byte[] rawData) { throw null; }
GetCertContentType(string fileName)12929         public static System.Security.Cryptography.X509Certificates.X509ContentType GetCertContentType(string fileName) { throw null; }
GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType nameType, bool forIssuer)12930         public string GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType nameType, bool forIssuer) { throw null; }
12931         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12932         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Import(byte[] rawData)12933         public override void Import(byte[] rawData) { }
12934         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12935         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12936         public override void Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12937         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12938         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12939         public override void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12940         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12941         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Import(string fileName)12942         public override void Import(string fileName) { }
12943         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12944         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12945         public override void Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12946         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12947         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12948         public override void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
12949         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
12950         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Reset()12951         public override void Reset() { }
ToString()12952         public override string ToString() { throw null; }
ToString(bool verbose)12953         public override string ToString(bool verbose) { throw null; }
Verify()12954         public bool Verify() { throw null; }
12955     }
12956     public partial class X509Certificate2Collection : System.Security.Cryptography.X509Certificates.X509CertificateCollection
12957     {
X509Certificate2Collection()12958         public X509Certificate2Collection() { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12959         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12960         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)12961         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
12962         public new System.Security.Cryptography.X509Certificates.X509Certificate2 this[int index] { get { throw null; } set { } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12963         public int Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12964         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)12965         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
Contains(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12966         public bool Contains(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType)12967         public byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType) { throw null; }
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password)12968         public byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password) { throw null; }
Find(System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue, bool validOnly)12969         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection Find(System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue, bool validOnly) { throw null; }
GetEnumerator()12970         public new System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator GetEnumerator() { throw null; }
Import(byte[] rawData)12971         public void Import(byte[] rawData) { }
Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12972         public void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Import(string fileName)12973         public void Import(string fileName) { }
Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)12974         public void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12975         public void Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)12976         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)12977         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)12978         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
12979     }
12980     public sealed partial class X509Certificate2Enumerator : System.Collections.IEnumerator
12981     {
X509Certificate2Enumerator()12982         internal X509Certificate2Enumerator() { }
12983         public System.Security.Cryptography.X509Certificates.X509Certificate2 Current { get { throw null; } }
12984         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()12985         public bool MoveNext() { throw null; }
Reset()12986         public void Reset() { }
System.Collections.IEnumerator.MoveNext()12987         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()12988         void System.Collections.IEnumerator.Reset() { }
12989     }
12990     [System.SerializableAttribute]
12991     public partial class X509CertificateCollection : System.Collections.CollectionBase
12992     {
X509CertificateCollection()12993         public X509CertificateCollection() { }
X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509CertificateCollection value)12994         public X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509CertificateCollection value) { }
X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509Certificate[] value)12995         public X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509Certificate[] value) { }
12996         public System.Security.Cryptography.X509Certificates.X509Certificate this[int index] { get { throw null; } set { } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate value)12997         public int Add(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection value)12998         public void AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection value) { }
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[] value)12999         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[] value) { }
Contains(System.Security.Cryptography.X509Certificates.X509Certificate value)13000         public bool Contains(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[] array, int index)13001         public void CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[] array, int index) { }
GetEnumerator()13002         public new System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator GetEnumerator() { throw null; }
GetHashCode()13003         public override int GetHashCode() { throw null; }
IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate value)13004         public int IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate value)13005         public void Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate value) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate value)13006         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate value) { }
13007         public partial class X509CertificateEnumerator : System.Collections.IEnumerator
13008         {
X509CertificateEnumerator(System.Security.Cryptography.X509Certificates.X509CertificateCollection mappings)13009             public X509CertificateEnumerator(System.Security.Cryptography.X509Certificates.X509CertificateCollection mappings) { }
13010             public System.Security.Cryptography.X509Certificates.X509Certificate Current { get { throw null; } }
13011             object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()13012             public bool MoveNext() { throw null; }
Reset()13013             public void Reset() { }
System.Collections.IEnumerator.MoveNext()13014             bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()13015             void System.Collections.IEnumerator.Reset() { }
13016         }
13017     }
13018     public partial class X509Chain : System.IDisposable
13019     {
13020         [System.Security.SecurityCriticalAttribute]
X509Chain()13021         public X509Chain() { }
13022         [System.Security.SecurityCriticalAttribute]
X509Chain(bool useMachineContext)13023         public X509Chain(bool useMachineContext) { }
13024         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
13025         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
X509Chain(System.IntPtr chainContext)13026         public X509Chain(System.IntPtr chainContext) { }
13027         public System.IntPtr ChainContext { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2)), System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
13028         public System.Security.Cryptography.X509Certificates.X509ChainElementCollection ChainElements { get { throw null; } }
13029         public System.Security.Cryptography.X509Certificates.X509ChainPolicy ChainPolicy { get { throw null; } set { } }
13030         public System.Security.Cryptography.X509Certificates.X509ChainStatus[] ChainStatus { get { throw null; } }
13031         public Microsoft.Win32.SafeHandles.SafeX509ChainHandle SafeHandle { [System.Security.SecurityCriticalAttribute][System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2)), System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
13032         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
13033         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Build(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)13034         public bool Build(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
Create()13035         public static System.Security.Cryptography.X509Certificates.X509Chain Create() { throw null; }
13036         [System.Security.SecuritySafeCriticalAttribute]
Dispose()13037         public void Dispose() { }
13038         [System.Security.SecuritySafeCriticalAttribute]
Dispose(bool disposing)13039         protected virtual void Dispose(bool disposing) { }
13040         [System.Security.SecurityCriticalAttribute]
13041         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
13042         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
Reset()13043         public void Reset() { }
13044     }
13045     public partial class X509ChainElement
13046     {
X509ChainElement()13047         internal X509ChainElement() { }
13048         public System.Security.Cryptography.X509Certificates.X509Certificate2 Certificate { get { throw null; } }
13049         public System.Security.Cryptography.X509Certificates.X509ChainStatus[] ChainElementStatus { get { throw null; } }
13050         public string Information { get { throw null; } }
13051     }
13052     public sealed partial class X509ChainElementCollection : System.Collections.ICollection, System.Collections.IEnumerable
13053     {
X509ChainElementCollection()13054         internal X509ChainElementCollection() { }
13055         public int Count { get { throw null; } }
13056         public bool IsSynchronized { get { throw null; } }
13057         public System.Security.Cryptography.X509Certificates.X509ChainElement this[int index] { get { throw null; } }
13058         public object SyncRoot { get { throw null; } }
CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[] array, int index)13059         public void CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[] array, int index) { }
GetEnumerator()13060         public System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)13061         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()13062         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
13063     }
13064     public sealed partial class X509ChainElementEnumerator : System.Collections.IEnumerator
13065     {
X509ChainElementEnumerator()13066         internal X509ChainElementEnumerator() { }
13067         public System.Security.Cryptography.X509Certificates.X509ChainElement Current { get { throw null; } }
13068         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()13069         public bool MoveNext() { throw null; }
Reset()13070         public void Reset() { }
13071     }
13072     public sealed partial class X509ChainPolicy
13073     {
X509ChainPolicy()13074         public X509ChainPolicy() { }
13075         public System.Security.Cryptography.OidCollection ApplicationPolicy { get { throw null; } }
13076         public System.Security.Cryptography.OidCollection CertificatePolicy { get { throw null; } }
13077         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection ExtraStore { get { throw null; } }
13078         public System.Security.Cryptography.X509Certificates.X509RevocationFlag RevocationFlag { get { throw null; } set { } }
13079         public System.Security.Cryptography.X509Certificates.X509RevocationMode RevocationMode { get { throw null; } set { } }
13080         public System.TimeSpan UrlRetrievalTimeout { get { throw null; } set { } }
13081         public System.Security.Cryptography.X509Certificates.X509VerificationFlags VerificationFlags { get { throw null; } set { } }
13082         public System.DateTime VerificationTime { get { throw null; } set { } }
Reset()13083         public void Reset() { }
13084     }
13085     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
13086     public partial struct X509ChainStatus
13087     {
13088         public System.Security.Cryptography.X509Certificates.X509ChainStatusFlags Status { get { throw null; } set { } }
13089         public string StatusInformation { get { throw null; } set { } }
13090     }
13091     [System.FlagsAttribute]
13092     public enum X509ChainStatusFlags
13093     {
13094         CtlNotSignatureValid = 262144,
13095         CtlNotTimeValid = 131072,
13096         CtlNotValidForUsage = 524288,
13097         Cyclic = 128,
13098         ExplicitDistrust = 67108864,
13099         HasExcludedNameConstraint = 32768,
13100         HasNotDefinedNameConstraint = 8192,
13101         HasNotPermittedNameConstraint = 16384,
13102         HasNotSupportedCriticalExtension = 134217728,
13103         HasNotSupportedNameConstraint = 4096,
13104         HasWeakSignature = 1048576,
13105         InvalidBasicConstraints = 1024,
13106         InvalidExtension = 256,
13107         InvalidNameConstraints = 2048,
13108         InvalidPolicyConstraints = 512,
13109         NoError = 0,
13110         NoIssuanceChainPolicy = 33554432,
13111         NotSignatureValid = 8,
13112         NotTimeNested = 2,
13113         NotTimeValid = 1,
13114         NotValidForUsage = 16,
13115         OfflineRevocation = 16777216,
13116         PartialChain = 65536,
13117         RevocationStatusUnknown = 64,
13118         Revoked = 4,
13119         UntrustedRoot = 32,
13120     }
13121     public sealed partial class X509EnhancedKeyUsageExtension : System.Security.Cryptography.X509Certificates.X509Extension
13122     {
X509EnhancedKeyUsageExtension()13123         public X509EnhancedKeyUsageExtension() { }
X509EnhancedKeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedEnhancedKeyUsages, bool critical)13124         public X509EnhancedKeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedEnhancedKeyUsages, bool critical) { }
X509EnhancedKeyUsageExtension(System.Security.Cryptography.OidCollection enhancedKeyUsages, bool critical)13125         public X509EnhancedKeyUsageExtension(System.Security.Cryptography.OidCollection enhancedKeyUsages, bool critical) { }
13126         public System.Security.Cryptography.OidCollection EnhancedKeyUsages { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)13127         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
13128     }
13129     public partial class X509Extension : System.Security.Cryptography.AsnEncodedData
13130     {
X509Extension()13131         protected X509Extension() { }
X509Extension(System.Security.Cryptography.AsnEncodedData encodedExtension, bool critical)13132         public X509Extension(System.Security.Cryptography.AsnEncodedData encodedExtension, bool critical) { }
X509Extension(System.Security.Cryptography.Oid oid, byte[] rawData, bool critical)13133         public X509Extension(System.Security.Cryptography.Oid oid, byte[] rawData, bool critical) { }
X509Extension(string oid, byte[] rawData, bool critical)13134         public X509Extension(string oid, byte[] rawData, bool critical) { }
13135         public bool Critical { get { throw null; } set { } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)13136         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
13137     }
13138     public sealed partial class X509ExtensionCollection : System.Collections.ICollection, System.Collections.IEnumerable
13139     {
X509ExtensionCollection()13140         public X509ExtensionCollection() { }
13141         public int Count { get { throw null; } }
13142         public bool IsSynchronized { get { throw null; } }
13143         public System.Security.Cryptography.X509Certificates.X509Extension this[int index] { get { throw null; } }
13144         public System.Security.Cryptography.X509Certificates.X509Extension this[string oid] { get { throw null; } }
13145         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.X509Certificates.X509Extension extension)13146         public int Add(System.Security.Cryptography.X509Certificates.X509Extension extension) { throw null; }
CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[] array, int index)13147         public void CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[] array, int index) { }
GetEnumerator()13148         public System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)13149         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()13150         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
13151     }
13152     public sealed partial class X509ExtensionEnumerator : System.Collections.IEnumerator
13153     {
X509ExtensionEnumerator()13154         internal X509ExtensionEnumerator() { }
13155         public System.Security.Cryptography.X509Certificates.X509Extension Current { get { throw null; } }
13156         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()13157         public bool MoveNext() { throw null; }
Reset()13158         public void Reset() { }
13159     }
13160     public enum X509FindType
13161     {
13162         FindByApplicationPolicy = 10,
13163         FindByCertificatePolicy = 11,
13164         FindByExtension = 12,
13165         FindByIssuerDistinguishedName = 4,
13166         FindByIssuerName = 3,
13167         FindByKeyUsage = 13,
13168         FindBySerialNumber = 5,
13169         FindBySubjectDistinguishedName = 2,
13170         FindBySubjectKeyIdentifier = 14,
13171         FindBySubjectName = 1,
13172         FindByTemplateName = 9,
13173         FindByThumbprint = 0,
13174         FindByTimeExpired = 8,
13175         FindByTimeNotYetValid = 7,
13176         FindByTimeValid = 6,
13177     }
13178     public enum X509IncludeOption
13179     {
13180         EndCertOnly = 2,
13181         ExcludeRoot = 1,
13182         None = 0,
13183         WholeChain = 3,
13184     }
13185     public sealed partial class X509KeyUsageExtension : System.Security.Cryptography.X509Certificates.X509Extension
13186     {
X509KeyUsageExtension()13187         public X509KeyUsageExtension() { }
X509KeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedKeyUsage, bool critical)13188         public X509KeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedKeyUsage, bool critical) { }
X509KeyUsageExtension(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags keyUsages, bool critical)13189         public X509KeyUsageExtension(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags keyUsages, bool critical) { }
13190         public System.Security.Cryptography.X509Certificates.X509KeyUsageFlags KeyUsages { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)13191         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
13192     }
13193     [System.FlagsAttribute]
13194     public enum X509KeyUsageFlags
13195     {
13196         CrlSign = 2,
13197         DataEncipherment = 16,
13198         DecipherOnly = 32768,
13199         DigitalSignature = 128,
13200         EncipherOnly = 1,
13201         KeyAgreement = 8,
13202         KeyCertSign = 4,
13203         KeyEncipherment = 32,
13204         None = 0,
13205         NonRepudiation = 64,
13206     }
13207     public enum X509NameType
13208     {
13209         DnsFromAlternativeName = 4,
13210         DnsName = 3,
13211         EmailName = 1,
13212         SimpleName = 0,
13213         UpnName = 2,
13214         UrlName = 5,
13215     }
13216     public enum X509RevocationFlag
13217     {
13218         EndCertificateOnly = 0,
13219         EntireChain = 1,
13220         ExcludeRoot = 2,
13221     }
13222     public enum X509RevocationMode
13223     {
13224         NoCheck = 0,
13225         Offline = 2,
13226         Online = 1,
13227     }
13228     public sealed partial class X509Store : System.IDisposable
13229     {
X509Store()13230         public X509Store() { }
13231         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
13232         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
X509Store(System.IntPtr storeHandle)13233         public X509Store(System.IntPtr storeHandle) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)13234         public X509Store(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName)13235         public X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)13236         public X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
X509Store(string storeName)13237         public X509Store(string storeName) { }
X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)13238         public X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
13239         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection Certificates { get { throw null; } }
13240         public System.Security.Cryptography.X509Certificates.StoreLocation Location { get { throw null; } }
13241         public string Name { get { throw null; } }
13242         public System.IntPtr StoreHandle { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2)), System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)13243         public void Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)13244         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
Close()13245         public void Close() { }
Dispose()13246         public void Dispose() { }
Open(System.Security.Cryptography.X509Certificates.OpenFlags flags)13247         public void Open(System.Security.Cryptography.X509Certificates.OpenFlags flags) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)13248         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)13249         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
13250     }
13251     public sealed partial class X509SubjectKeyIdentifierExtension : System.Security.Cryptography.X509Certificates.X509Extension
13252     {
X509SubjectKeyIdentifierExtension()13253         public X509SubjectKeyIdentifierExtension() { }
X509SubjectKeyIdentifierExtension(byte[] subjectKeyIdentifier, bool critical)13254         public X509SubjectKeyIdentifierExtension(byte[] subjectKeyIdentifier, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.AsnEncodedData encodedSubjectKeyIdentifier, bool critical)13255         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.AsnEncodedData encodedSubjectKeyIdentifier, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, bool critical)13256         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)13257         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm algorithm, bool critical) { }
X509SubjectKeyIdentifierExtension(string subjectKeyIdentifier, bool critical)13258         public X509SubjectKeyIdentifierExtension(string subjectKeyIdentifier, bool critical) { }
13259         public string SubjectKeyIdentifier { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)13260         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
13261     }
13262     public enum X509SubjectKeyIdentifierHashAlgorithm
13263     {
13264         CapiSha1 = 2,
13265         Sha1 = 0,
13266         ShortSha1 = 1,
13267     }
13268     [System.FlagsAttribute]
13269     public enum X509VerificationFlags
13270     {
13271         AllFlags = 4095,
13272         AllowUnknownCertificateAuthority = 16,
13273         IgnoreCertificateAuthorityRevocationUnknown = 1024,
13274         IgnoreCtlNotTimeValid = 2,
13275         IgnoreCtlSignerRevocationUnknown = 512,
13276         IgnoreEndRevocationUnknown = 256,
13277         IgnoreInvalidBasicConstraints = 8,
13278         IgnoreInvalidName = 64,
13279         IgnoreInvalidPolicy = 128,
13280         IgnoreNotTimeNested = 4,
13281         IgnoreNotTimeValid = 1,
13282         IgnoreRootRevocationUnknown = 2048,
13283         IgnoreWrongUsage = 32,
13284         NoFlag = 0,
13285     }
13286 }
13287 namespace System.Security.Permissions
13288 {
13289     [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, ControlEvidence=true, ControlPolicy=true)]
13290     [System.SerializableAttribute]
13291     public abstract partial class ResourcePermissionBase : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13292     {
13293         public const string Any = "*";
13294         public const string Local = ".";
ResourcePermissionBase()13295         protected ResourcePermissionBase() { }
ResourcePermissionBase(System.Security.Permissions.PermissionState state)13296         protected ResourcePermissionBase(System.Security.Permissions.PermissionState state) { }
13297         protected System.Type PermissionAccessType { get { throw null; } set { } }
13298         protected string[] TagNames { get { throw null; } set { } }
AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry)13299         protected void AddPermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry) { }
Clear()13300         protected void Clear() { }
Copy()13301         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13302         public override void FromXml(System.Security.SecurityElement securityElement) { }
GetPermissionEntries()13303         protected System.Security.Permissions.ResourcePermissionBaseEntry[] GetPermissionEntries() { throw null; }
Intersect(System.Security.IPermission target)13304         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13305         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13306         public bool IsUnrestricted() { throw null; }
RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry)13307         protected void RemovePermissionAccess(System.Security.Permissions.ResourcePermissionBaseEntry entry) { }
ToXml()13308         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13309         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13310     }
13311     [System.SerializableAttribute]
13312     public partial class ResourcePermissionBaseEntry
13313     {
ResourcePermissionBaseEntry()13314         public ResourcePermissionBaseEntry() { }
ResourcePermissionBaseEntry(int permissionAccess, string[] permissionAccessPath)13315         public ResourcePermissionBaseEntry(int permissionAccess, string[] permissionAccessPath) { }
13316         public int PermissionAccess { get { throw null; } }
13317         public string[] PermissionAccessPath { get { throw null; } }
13318     }
13319     [System.SerializableAttribute]
13320     public sealed partial class StorePermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13321     {
StorePermission(System.Security.Permissions.PermissionState state)13322         public StorePermission(System.Security.Permissions.PermissionState state) { }
StorePermission(System.Security.Permissions.StorePermissionFlags flag)13323         public StorePermission(System.Security.Permissions.StorePermissionFlags flag) { }
13324         public System.Security.Permissions.StorePermissionFlags Flags { get { throw null; } set { } }
Copy()13325         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13326         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)13327         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13328         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13329         public bool IsUnrestricted() { throw null; }
ToXml()13330         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13331         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13332     }
13333     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
13334     [System.SerializableAttribute]
13335     public sealed partial class StorePermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
13336     {
StorePermissionAttribute(System.Security.Permissions.SecurityAction action)13337         public StorePermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
13338         public bool AddToStore { get { throw null; } set { } }
13339         public bool CreateStore { get { throw null; } set { } }
13340         public bool DeleteStore { get { throw null; } set { } }
13341         public bool EnumerateCertificates { get { throw null; } set { } }
13342         public bool EnumerateStores { get { throw null; } set { } }
13343         public System.Security.Permissions.StorePermissionFlags Flags { get { throw null; } set { } }
13344         public bool OpenStore { get { throw null; } set { } }
13345         public bool RemoveFromStore { get { throw null; } set { } }
CreatePermission()13346         public override System.Security.IPermission CreatePermission() { throw null; }
13347     }
13348     [System.FlagsAttribute]
13349     [System.SerializableAttribute]
13350     public enum StorePermissionFlags
13351     {
13352         AddToStore = 32,
13353         AllFlags = 247,
13354         CreateStore = 1,
13355         DeleteStore = 2,
13356         EnumerateCertificates = 128,
13357         EnumerateStores = 4,
13358         NoFlags = 0,
13359         OpenStore = 16,
13360         RemoveFromStore = 64,
13361     }
13362     [System.SerializableAttribute]
13363     public sealed partial class TypeDescriptorPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13364     {
TypeDescriptorPermission(System.Security.Permissions.PermissionState state)13365         public TypeDescriptorPermission(System.Security.Permissions.PermissionState state) { }
TypeDescriptorPermission(System.Security.Permissions.TypeDescriptorPermissionFlags flag)13366         public TypeDescriptorPermission(System.Security.Permissions.TypeDescriptorPermissionFlags flag) { }
13367         public System.Security.Permissions.TypeDescriptorPermissionFlags Flags { get { throw null; } set { } }
Copy()13368         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13369         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)13370         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13371         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13372         public bool IsUnrestricted() { throw null; }
ToXml()13373         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13374         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13375     }
13376     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
13377     [System.SerializableAttribute]
13378     public sealed partial class TypeDescriptorPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
13379     {
TypeDescriptorPermissionAttribute(System.Security.Permissions.SecurityAction action)13380         public TypeDescriptorPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
13381         public System.Security.Permissions.TypeDescriptorPermissionFlags Flags { get { throw null; } set { } }
13382         public bool RestrictedRegistrationAccess { get { throw null; } set { } }
CreatePermission()13383         public override System.Security.IPermission CreatePermission() { throw null; }
13384     }
13385     [System.FlagsAttribute]
13386     [System.SerializableAttribute]
13387     public enum TypeDescriptorPermissionFlags
13388     {
13389         NoFlags = 0,
13390         RestrictedRegistrationAccess = 1,
13391     }
13392 }
13393 namespace System.Text.RegularExpressions
13394 {
13395     [System.SerializableAttribute]
13396     public partial class Capture
13397     {
Capture()13398         internal Capture() { }
13399         public int Index { get { throw null; } }
13400         public int Length { get { throw null; } }
13401         public string Value { get { throw null; } }
ToString()13402         public override string ToString() { throw null; }
13403     }
13404     [System.SerializableAttribute]
13405     public partial class CaptureCollection : System.Collections.ICollection, System.Collections.IEnumerable
13406     {
CaptureCollection()13407         internal CaptureCollection() { }
13408         public int Count { get { throw null; } }
13409         public bool IsReadOnly { get { throw null; } }
13410         public bool IsSynchronized { get { throw null; } }
13411         public System.Text.RegularExpressions.Capture this[int i] { get { throw null; } }
13412         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)13413         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()13414         public System.Collections.IEnumerator GetEnumerator() { throw null; }
13415     }
13416     [System.SerializableAttribute]
13417     public partial class Group : System.Text.RegularExpressions.Capture
13418     {
Group()13419         internal Group() { }
13420         public System.Text.RegularExpressions.CaptureCollection Captures { get { throw null; } }
13421         public string Name { get { throw null; } }
13422         public bool Success { get { throw null; } }
13423         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
Synchronized(System.Text.RegularExpressions.Group inner)13424         public static System.Text.RegularExpressions.Group Synchronized(System.Text.RegularExpressions.Group inner) { throw null; }
13425     }
13426     [System.SerializableAttribute]
13427     public partial class GroupCollection : System.Collections.ICollection, System.Collections.IEnumerable
13428     {
GroupCollection()13429         internal GroupCollection() { }
13430         public int Count { get { throw null; } }
13431         public bool IsReadOnly { get { throw null; } }
13432         public bool IsSynchronized { get { throw null; } }
13433         public System.Text.RegularExpressions.Group this[int groupnum] { get { throw null; } }
13434         public System.Text.RegularExpressions.Group this[string groupname] { get { throw null; } }
13435         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)13436         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()13437         public System.Collections.IEnumerator GetEnumerator() { throw null; }
13438     }
13439     [System.SerializableAttribute]
13440     public partial class Match : System.Text.RegularExpressions.Group
13441     {
Match()13442         internal Match() { }
13443         public static System.Text.RegularExpressions.Match Empty { get { throw null; } }
13444         public virtual System.Text.RegularExpressions.GroupCollection Groups { get { throw null; } }
NextMatch()13445         public System.Text.RegularExpressions.Match NextMatch() { throw null; }
Result(string replacement)13446         public virtual string Result(string replacement) { throw null; }
13447         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
Synchronized(System.Text.RegularExpressions.Match inner)13448         public static System.Text.RegularExpressions.Match Synchronized(System.Text.RegularExpressions.Match inner) { throw null; }
13449     }
13450     [System.SerializableAttribute]
13451     public partial class MatchCollection : System.Collections.ICollection, System.Collections.IEnumerable
13452     {
MatchCollection()13453         internal MatchCollection() { }
13454         public int Count { get { throw null; } }
13455         public bool IsReadOnly { get { throw null; } }
13456         public bool IsSynchronized { get { throw null; } }
13457         public virtual System.Text.RegularExpressions.Match this[int i] { get { throw null; } }
13458         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)13459         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()13460         public System.Collections.IEnumerator GetEnumerator() { throw null; }
13461     }
13462     [System.SerializableAttribute]
MatchEvaluator(System.Text.RegularExpressions.Match match)13463     public delegate string MatchEvaluator(System.Text.RegularExpressions.Match match);
13464     [System.SerializableAttribute]
13465     public partial class Regex : System.Runtime.Serialization.ISerializable
13466     {
13467         protected internal System.Collections.Hashtable capnames;
13468         protected internal System.Collections.Hashtable caps;
13469         protected internal int capsize;
13470         protected internal string[] capslist;
13471         protected internal System.Text.RegularExpressions.RegexRunnerFactory factory;
13472         [System.NonSerializedAttribute]
13473         public static readonly System.TimeSpan InfiniteMatchTimeout;
13474         [System.Runtime.Serialization.OptionalFieldAttribute(VersionAdded=2)]
13475         protected internal System.TimeSpan internalMatchTimeout;
13476         protected internal string pattern;
13477         protected internal System.Text.RegularExpressions.RegexOptions roptions;
Regex()13478         protected Regex() { }
Regex(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)13479         protected Regex(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Regex(string pattern)13480         public Regex(string pattern) { }
Regex(string pattern, System.Text.RegularExpressions.RegexOptions options)13481         public Regex(string pattern, System.Text.RegularExpressions.RegexOptions options) { }
Regex(string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)13482         public Regex(string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { }
13483         public static int CacheSize { get { throw null; } set { } }
13484         public System.TimeSpan MatchTimeout { get { throw null; } }
13485         public System.Text.RegularExpressions.RegexOptions Options { get { throw null; } }
13486         public bool RightToLeft { get { throw null; } }
13487         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname)13488         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname) { }
13489         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes)13490         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes) { }
13491         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes, string resourceFile)13492         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes, string resourceFile) { }
Escape(string str)13493         public static string Escape(string str) { throw null; }
GetGroupNames()13494         public string[] GetGroupNames() { throw null; }
GetGroupNumbers()13495         public int[] GetGroupNumbers() { throw null; }
GroupNameFromNumber(int i)13496         public string GroupNameFromNumber(int i) { throw null; }
GroupNumberFromName(string name)13497         public int GroupNumberFromName(string name) { throw null; }
InitializeReferences()13498         protected void InitializeReferences() { }
IsMatch(string input)13499         public bool IsMatch(string input) { throw null; }
IsMatch(string input, int startat)13500         public bool IsMatch(string input, int startat) { throw null; }
IsMatch(string input, string pattern)13501         public static bool IsMatch(string input, string pattern) { throw null; }
IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13502         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)13503         public static bool IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Match(string input)13504         public System.Text.RegularExpressions.Match Match(string input) { throw null; }
Match(string input, int startat)13505         public System.Text.RegularExpressions.Match Match(string input, int startat) { throw null; }
Match(string input, int beginning, int length)13506         public System.Text.RegularExpressions.Match Match(string input, int beginning, int length) { throw null; }
Match(string input, string pattern)13507         public static System.Text.RegularExpressions.Match Match(string input, string pattern) { throw null; }
Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13508         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)13509         public static System.Text.RegularExpressions.Match Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Matches(string input)13510         public System.Text.RegularExpressions.MatchCollection Matches(string input) { throw null; }
Matches(string input, int startat)13511         public System.Text.RegularExpressions.MatchCollection Matches(string input, int startat) { throw null; }
Matches(string input, string pattern)13512         public static System.Text.RegularExpressions.MatchCollection Matches(string input, string pattern) { throw null; }
Matches(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13513         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)13514         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)13515         public string Replace(string input, string replacement) { throw null; }
Replace(string input, string replacement, int count)13516         public string Replace(string input, string replacement, int count) { throw null; }
Replace(string input, string replacement, int count, int startat)13517         public string Replace(string input, string replacement, int count, int startat) { throw null; }
Replace(string input, string pattern, string replacement)13518         public static string Replace(string input, string pattern, string replacement) { throw null; }
Replace(string input, string pattern, string replacement, System.Text.RegularExpressions.RegexOptions options)13519         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)13520         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)13521         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)13522         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)13523         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)13524         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator) { throw null; }
Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count)13525         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)13526         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count, int startat) { throw null; }
Split(string input)13527         public string[] Split(string input) { throw null; }
Split(string input, int count)13528         public string[] Split(string input, int count) { throw null; }
Split(string input, int count, int startat)13529         public string[] Split(string input, int count, int startat) { throw null; }
Split(string input, string pattern)13530         public static string[] Split(string input, string pattern) { throw null; }
Split(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)13531         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)13532         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)13533         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
ToString()13534         public override string ToString() { throw null; }
Unescape(string str)13535         public static string Unescape(string str) { throw null; }
UseOptionC()13536         protected bool UseOptionC() { throw null; }
UseOptionR()13537         protected bool UseOptionR() { throw null; }
ValidateMatchTimeout(System.TimeSpan matchTimeout)13538         protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { }
13539     }
13540     [System.SerializableAttribute]
13541     public partial class RegexCompilationInfo
13542     {
RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic)13543         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)13544         public RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { }
13545         public bool IsPublic { get { throw null; } set { } }
13546         public System.TimeSpan MatchTimeout { get { throw null; } set { } }
13547         public string Name { get { throw null; } set { } }
13548         public string Namespace { get { throw null; } set { } }
13549         public System.Text.RegularExpressions.RegexOptions Options { get { throw null; } set { } }
13550         public string Pattern { get { throw null; } set { } }
13551     }
13552     [System.SerializableAttribute]
13553     public partial class RegexMatchTimeoutException : System.TimeoutException, System.Runtime.Serialization.ISerializable
13554     {
RegexMatchTimeoutException()13555         public RegexMatchTimeoutException() { }
13556         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
RegexMatchTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)13557         protected RegexMatchTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
RegexMatchTimeoutException(string message)13558         public RegexMatchTimeoutException(string message) { }
RegexMatchTimeoutException(string message, System.Exception inner)13559         public RegexMatchTimeoutException(string message, System.Exception inner) { }
RegexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout)13560         public RegexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { }
13561         public string Input { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
13562         public System.TimeSpan MatchTimeout { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
13563         public string Pattern { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
13564         [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)13565         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
13566     }
13567     [System.FlagsAttribute]
13568     public enum RegexOptions
13569     {
13570         Compiled = 8,
13571         CultureInvariant = 512,
13572         ECMAScript = 256,
13573         ExplicitCapture = 4,
13574         IgnoreCase = 1,
13575         IgnorePatternWhitespace = 32,
13576         Multiline = 2,
13577         None = 0,
13578         RightToLeft = 64,
13579         Singleline = 16,
13580     }
13581     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
13582     public abstract partial class RegexRunner
13583     {
13584         protected internal int[] runcrawl;
13585         protected internal int runcrawlpos;
13586         protected internal System.Text.RegularExpressions.Match runmatch;
13587         protected internal System.Text.RegularExpressions.Regex runregex;
13588         protected internal int[] runstack;
13589         protected internal int runstackpos;
13590         protected internal string runtext;
13591         protected internal int runtextbeg;
13592         protected internal int runtextend;
13593         protected internal int runtextpos;
13594         protected internal int runtextstart;
13595         protected internal int[] runtrack;
13596         protected internal int runtrackcount;
13597         protected internal int runtrackpos;
RegexRunner()13598         protected internal RegexRunner() { }
Capture(int capnum, int start, int end)13599         protected void Capture(int capnum, int start, int end) { }
CharInClass(char ch, string charClass)13600         protected static bool CharInClass(char ch, string charClass) { throw null; }
CharInSet(char ch, string @set, string category)13601         protected static bool CharInSet(char ch, string @set, string category) { throw null; }
CheckTimeout()13602         protected void CheckTimeout() { }
Crawl(int i)13603         protected void Crawl(int i) { }
Crawlpos()13604         protected int Crawlpos() { throw null; }
DoubleCrawl()13605         protected void DoubleCrawl() { }
DoubleStack()13606         protected void DoubleStack() { }
DoubleTrack()13607         protected void DoubleTrack() { }
EnsureStorage()13608         protected void EnsureStorage() { }
FindFirstChar()13609         protected abstract bool FindFirstChar();
Go()13610         protected abstract void Go();
InitTrackCount()13611         protected abstract void InitTrackCount();
IsBoundary(int index, int startpos, int endpos)13612         protected bool IsBoundary(int index, int startpos, int endpos) { throw null; }
IsECMABoundary(int index, int startpos, int endpos)13613         protected bool IsECMABoundary(int index, int startpos, int endpos) { throw null; }
IsMatched(int cap)13614         protected bool IsMatched(int cap) { throw null; }
MatchIndex(int cap)13615         protected int MatchIndex(int cap) { throw null; }
MatchLength(int cap)13616         protected int MatchLength(int cap) { throw null; }
Popcrawl()13617         protected int Popcrawl() { throw null; }
Scan(System.Text.RegularExpressions.Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick)13618         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)13619         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)13620         protected void TransferCapture(int capnum, int uncapnum, int start, int end) { }
Uncapture()13621         protected void Uncapture() { }
13622     }
13623     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
13624     public abstract partial class RegexRunnerFactory
13625     {
RegexRunnerFactory()13626         protected RegexRunnerFactory() { }
CreateInstance()13627         protected internal abstract System.Text.RegularExpressions.RegexRunner CreateInstance();
13628     }
13629 }
13630 namespace System.Threading
13631 {
13632     [System.Diagnostics.DebuggerDisplayAttribute("Participant Count={ParticipantCount},Participants Remaining={ParticipantsRemaining}")]
13633     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
13634     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
13635     public partial class Barrier : System.IDisposable
13636     {
Barrier(int participantCount)13637         public Barrier(int participantCount) { }
Barrier(int participantCount, System.Action<System.Threading.Barrier> postPhaseAction)13638         public Barrier(int participantCount, System.Action<System.Threading.Barrier> postPhaseAction) { }
13639         public long CurrentPhaseNumber { get { throw null; } }
13640         public int ParticipantCount { get { throw null; } }
13641         public int ParticipantsRemaining { get { throw null; } }
AddParticipant()13642         public long AddParticipant() { throw null; }
AddParticipants(int participantCount)13643         public long AddParticipants(int participantCount) { throw null; }
Dispose()13644         public void Dispose() { }
Dispose(bool disposing)13645         protected virtual void Dispose(bool disposing) { }
RemoveParticipant()13646         public void RemoveParticipant() { }
RemoveParticipants(int participantCount)13647         public void RemoveParticipants(int participantCount) { }
SignalAndWait()13648         public void SignalAndWait() { }
SignalAndWait(int millisecondsTimeout)13649         public bool SignalAndWait(int millisecondsTimeout) { throw null; }
SignalAndWait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)13650         public bool SignalAndWait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
SignalAndWait(System.Threading.CancellationToken cancellationToken)13651         public void SignalAndWait(System.Threading.CancellationToken cancellationToken) { }
SignalAndWait(System.TimeSpan timeout)13652         public bool SignalAndWait(System.TimeSpan timeout) { throw null; }
SignalAndWait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken)13653         public bool SignalAndWait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; }
13654     }
13655     [System.SerializableAttribute]
13656     public partial class BarrierPostPhaseException : System.Exception
13657     {
BarrierPostPhaseException()13658         public BarrierPostPhaseException() { }
BarrierPostPhaseException(System.Exception innerException)13659         public BarrierPostPhaseException(System.Exception innerException) { }
13660         [System.Security.SecurityCriticalAttribute]
BarrierPostPhaseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)13661         protected BarrierPostPhaseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
BarrierPostPhaseException(string message)13662         public BarrierPostPhaseException(string message) { }
BarrierPostPhaseException(string message, System.Exception innerException)13663         public BarrierPostPhaseException(string message, System.Exception innerException) { }
13664     }
13665     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
13666     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
13667     public sealed partial class Semaphore : System.Threading.WaitHandle
13668     {
13669         [System.Security.SecuritySafeCriticalAttribute]
Semaphore(int initialCount, int maximumCount)13670         public Semaphore(int initialCount, int maximumCount) { }
13671         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Semaphore(int initialCount, int maximumCount, string name)13672         public Semaphore(int initialCount, int maximumCount, string name) { }
13673         [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)13674         public Semaphore(int initialCount, int maximumCount, string name, out bool createdNew) { createdNew = default(bool); }
13675         [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)13676         public Semaphore(int initialCount, int maximumCount, string name, out bool createdNew, System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity) { createdNew = default(bool); }
GetAccessControl()13677         public System.Security.AccessControl.SemaphoreSecurity GetAccessControl() { throw null; }
13678         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
OpenExisting(string name)13679         public static System.Threading.Semaphore OpenExisting(string name) { throw null; }
13680         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
OpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights)13681         public static System.Threading.Semaphore OpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights) { throw null; }
13682         [System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute]
13683         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Release()13684         public int Release() { throw null; }
13685         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Release(int releaseCount)13686         public int Release(int releaseCount) { throw null; }
SetAccessControl(System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity)13687         public void SetAccessControl(System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity) { }
13688         [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)13689         public static bool TryOpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights, out System.Threading.Semaphore result) { result = default(System.Threading.Semaphore); throw null; }
13690         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
TryOpenExisting(string name, out System.Threading.Semaphore result)13691         public static bool TryOpenExisting(string name, out System.Threading.Semaphore result) { result = default(System.Threading.Semaphore); throw null; }
13692     }
13693     public partial class ThreadExceptionEventArgs : System.EventArgs
13694     {
ThreadExceptionEventArgs(System.Exception t)13695         public ThreadExceptionEventArgs(System.Exception t) { }
13696         public System.Exception Exception { get { throw null; } }
13697     }
ThreadExceptionEventHandler(object sender, System.Threading.ThreadExceptionEventArgs e)13698     public delegate void ThreadExceptionEventHandler(object sender, System.Threading.ThreadExceptionEventArgs e);
13699 }
13700 namespace System.Timers
13701 {
13702     public partial class ElapsedEventArgs : System.EventArgs
13703     {
ElapsedEventArgs()13704         internal ElapsedEventArgs() { }
13705         public System.DateTime SignalTime { get { throw null; } }
13706     }
ElapsedEventHandler(object sender, System.Timers.ElapsedEventArgs e)13707     public delegate void ElapsedEventHandler(object sender, System.Timers.ElapsedEventArgs e);
13708     [System.ComponentModel.DefaultEventAttribute("Elapsed")]
13709     [System.ComponentModel.DefaultPropertyAttribute("Interval")]
13710     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
13711     public partial class Timer : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
13712     {
Timer()13713         public Timer() { }
Timer(double interval)13714         public Timer(double interval) { }
13715         [System.ComponentModel.CategoryAttribute("Behavior")]
13716         [System.ComponentModel.DefaultValueAttribute(true)]
13717         [System.Timers.TimersDescriptionAttribute("TimerAutoReset")]
13718         public bool AutoReset { get { throw null; } set { } }
13719         [System.ComponentModel.CategoryAttribute("Behavior")]
13720         [System.ComponentModel.DefaultValueAttribute(false)]
13721         [System.Timers.TimersDescriptionAttribute("TimerEnabled")]
13722         public bool Enabled { get { throw null; } set { } }
13723         [System.ComponentModel.CategoryAttribute("Behavior")]
13724         [System.ComponentModel.DefaultValueAttribute(100)]
13725         [System.ComponentModel.SettingsBindableAttribute(true)]
13726         [System.Timers.TimersDescriptionAttribute("TimerInterval")]
13727         public double Interval { get { throw null; } set { } }
13728         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
13729         [System.ComponentModel.BrowsableAttribute(false)]
13730         [System.ComponentModel.DefaultValueAttribute(null)]
13731         [System.Timers.TimersDescriptionAttribute("TimerSynchronizingObject")]
13732         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
13733         [System.ComponentModel.CategoryAttribute("Behavior")]
13734         [System.Timers.TimersDescriptionAttribute("TimerIntervalElapsed")]
13735         public event System.Timers.ElapsedEventHandler Elapsed { add { } remove { } }
BeginInit()13736         public void BeginInit() { }
Close()13737         public void Close() { }
Dispose(bool disposing)13738         protected override void Dispose(bool disposing) { }
EndInit()13739         public void EndInit() { }
Start()13740         public void Start() { }
Stop()13741         public void Stop() { }
13742     }
13743     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
13744     public partial class TimersDescriptionAttribute : System.ComponentModel.DescriptionAttribute
13745     {
TimersDescriptionAttribute(string description)13746         public TimersDescriptionAttribute(string description) { }
13747         public override string Description { get { throw null; } }
13748     }
13749 }
13750 namespace System.Web
13751 {
13752     [System.SerializableAttribute]
13753     public sealed partial class AspNetHostingPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
13754     {
AspNetHostingPermission(System.Security.Permissions.PermissionState state)13755         public AspNetHostingPermission(System.Security.Permissions.PermissionState state) { }
AspNetHostingPermission(System.Web.AspNetHostingPermissionLevel level)13756         public AspNetHostingPermission(System.Web.AspNetHostingPermissionLevel level) { }
13757         public System.Web.AspNetHostingPermissionLevel Level { get { throw null; } set { } }
Copy()13758         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)13759         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)13760         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)13761         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()13762         public bool IsUnrestricted() { throw null; }
ToXml()13763         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)13764         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
13765     }
13766     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true, Inherited=false)]
13767     [System.SerializableAttribute]
13768     public sealed partial class AspNetHostingPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
13769     {
AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction action)13770         public AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
13771         public System.Web.AspNetHostingPermissionLevel Level { get { throw null; } set { } }
CreatePermission()13772         public override System.Security.IPermission CreatePermission() { throw null; }
13773     }
13774     [System.SerializableAttribute]
13775     public enum AspNetHostingPermissionLevel
13776     {
13777         High = 500,
13778         Low = 300,
13779         Medium = 400,
13780         Minimal = 200,
13781         None = 100,
13782         Unrestricted = 600,
13783     }
13784 }
13785 namespace System.Windows.Input
13786 {
13787     [System.ComponentModel.TypeConverterAttribute("System.Windows.Input.CommandConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
13788     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
13789     [System.Windows.Markup.ValueSerializerAttribute("System.Windows.Input.CommandValueSerializer, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
13790     public partial interface ICommand
13791     {
13792         event System.EventHandler CanExecuteChanged;
CanExecute(object parameter)13793         bool CanExecute(object parameter);
Execute(object parameter)13794         void Execute(object parameter);
13795     }
13796 }
13797 namespace System.Windows.Markup
13798 {
13799     [System.AttributeUsageAttribute((System.AttributeTargets)(1244), AllowMultiple=false, Inherited=true)]
13800     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
13801     public sealed partial class ValueSerializerAttribute : System.Attribute
13802     {
ValueSerializerAttribute(string valueSerializerTypeName)13803         public ValueSerializerAttribute(string valueSerializerTypeName) { }
ValueSerializerAttribute(System.Type valueSerializerType)13804         public ValueSerializerAttribute(System.Type valueSerializerType) { }
13805         public System.Type ValueSerializerType { get { throw null; } }
13806         public string ValueSerializerTypeName { get { throw null; } }
13807     }
13808 }
13809