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("2.0.5.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.0.50524.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.50524.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("2.0.5.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Btls.Interface, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
20 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Security, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
21 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.ComponentModel.DataAnnotations, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
22 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
23 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
24 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
25 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
26 namespace Microsoft.Win32.SafeHandles
27 {
28     [System.Security.SuppressUnmanagedCodeSecurityAttribute]
29     public sealed partial class SafeProcessHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
30     {
31         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]
SafeProcessHandle(System.IntPtr existingHandle, bool ownsHandle)32         public SafeProcessHandle(System.IntPtr existingHandle, bool ownsHandle) : base (default(bool)) { }
ReleaseHandle()33         protected override bool ReleaseHandle() { throw null; }
34     }
35     public sealed partial class SafeX509ChainHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
36     {
SafeX509ChainHandle()37         internal SafeX509ChainHandle() : base (default(bool)) { }
38         [System.MonoTODOAttribute]
ReleaseHandle()39         protected override bool ReleaseHandle() { throw null; }
40     }
41 }
42 namespace System
43 {
44     public partial class FileStyleUriParser : System.UriParser
45     {
FileStyleUriParser()46         public FileStyleUriParser() { }
47     }
48     public partial class FtpStyleUriParser : System.UriParser
49     {
FtpStyleUriParser()50         public FtpStyleUriParser() { }
51     }
52     public partial class GenericUriParser : System.UriParser
53     {
GenericUriParser(System.GenericUriParserOptions options)54         public GenericUriParser(System.GenericUriParserOptions options) { }
55     }
56     [System.FlagsAttribute]
57     public enum GenericUriParserOptions
58     {
59         AllowEmptyAuthority = 2,
60         Default = 0,
61         DontCompressPath = 128,
62         DontConvertPathBackslashes = 64,
63         DontUnescapePathDotsAndSlashes = 256,
64         GenericAuthority = 1,
65         Idn = 512,
66         IriParsing = 1024,
67         NoFragment = 32,
68         NoPort = 8,
69         NoQuery = 16,
70         NoUserInfo = 4,
71     }
72     public partial class GopherStyleUriParser : System.UriParser
73     {
GopherStyleUriParser()74         public GopherStyleUriParser() { }
75     }
76     public partial class HttpStyleUriParser : System.UriParser
77     {
HttpStyleUriParser()78         public HttpStyleUriParser() { }
79     }
80     public partial class LdapStyleUriParser : System.UriParser
81     {
LdapStyleUriParser()82         public LdapStyleUriParser() { }
83     }
84     public partial class NetPipeStyleUriParser : System.UriParser
85     {
NetPipeStyleUriParser()86         public NetPipeStyleUriParser() { }
87     }
88     public partial class NetTcpStyleUriParser : System.UriParser
89     {
NetTcpStyleUriParser()90         public NetTcpStyleUriParser() { }
91     }
92     public partial class NewsStyleUriParser : System.UriParser
93     {
NewsStyleUriParser()94         public NewsStyleUriParser() { }
95     }
96     [System.ComponentModel.TypeConverterAttribute(typeof(System.UriTypeConverter))]
97     [System.SerializableAttribute]
98     public partial class Uri : System.Runtime.Serialization.ISerializable
99     {
100         public static readonly string SchemeDelimiter;
101         public static readonly string UriSchemeFile;
102         public static readonly string UriSchemeFtp;
103         public static readonly string UriSchemeGopher;
104         public static readonly string UriSchemeHttp;
105         public static readonly string UriSchemeHttps;
106         public static readonly string UriSchemeMailto;
107         public static readonly string UriSchemeNetPipe;
108         public static readonly string UriSchemeNetTcp;
109         public static readonly string UriSchemeNews;
110         public static readonly string UriSchemeNntp;
Uri(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)111         protected Uri(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
Uri(string uriString)112         public Uri(string uriString) { }
113         [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)114         public Uri(string uriString, bool dontEscape) { }
Uri(string uriString, System.UriKind uriKind)115         public Uri(string uriString, System.UriKind uriKind) { }
Uri(System.Uri baseUri, string relativeUri)116         public Uri(System.Uri baseUri, string relativeUri) { }
117         [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)118         public Uri(System.Uri baseUri, string relativeUri, bool dontEscape) { }
Uri(System.Uri baseUri, System.Uri relativeUri)119         public Uri(System.Uri baseUri, System.Uri relativeUri) { }
120         public string AbsolutePath { get { throw null; } }
121         public string AbsoluteUri { get { throw null; } }
122         public string Authority { get { throw null; } }
123         public string DnsSafeHost { get { throw null; } }
124         public string Fragment { get { throw null; } }
125         public string Host { get { throw null; } }
126         public System.UriHostNameType HostNameType { get { throw null; } }
127         public string IdnHost { get { throw null; } }
128         public bool IsAbsoluteUri { get { throw null; } }
129         public bool IsDefaultPort { get { throw null; } }
130         public bool IsFile { get { throw null; } }
131         public bool IsLoopback { get { throw null; } }
132         public bool IsUnc { get { throw null; } }
133         public string LocalPath { get { throw null; } }
134         public string OriginalString { get { throw null; } }
135         public string PathAndQuery { get { throw null; } }
136         public int Port { get { throw null; } }
137         public string Query { get { throw null; } }
138         public string Scheme { get { throw null; } }
139         public string[] Segments { get { throw null; } }
140         public bool UserEscaped { get { throw null; } }
141         public string UserInfo { get { throw null; } }
142         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Canonicalize()143         protected virtual void Canonicalize() { }
CheckHostName(string name)144         public static System.UriHostNameType CheckHostName(string name) { throw null; }
CheckSchemeName(string schemeName)145         public static bool CheckSchemeName(string schemeName) { throw null; }
146         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
CheckSecurity()147         protected virtual void CheckSecurity() { }
Compare(System.Uri uri1, System.Uri uri2, System.UriComponents partsToCompare, System.UriFormat compareFormat, System.StringComparison comparisonType)148         public static int Compare(System.Uri uri1, System.Uri uri2, System.UriComponents partsToCompare, System.UriFormat compareFormat, System.StringComparison comparisonType) { throw null; }
149         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
Equals(object comparand)150         public override bool Equals(object comparand) { throw null; }
151         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Escape()152         protected virtual void Escape() { }
EscapeDataString(string stringToEscape)153         public static string EscapeDataString(string stringToEscape) { throw null; }
154         [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)155         protected static string EscapeString(string str) { throw null; }
EscapeUriString(string stringToEscape)156         public static string EscapeUriString(string stringToEscape) { throw null; }
FromHex(char digit)157         public static int FromHex(char digit) { throw null; }
GetComponents(System.UriComponents components, System.UriFormat format)158         public string GetComponents(System.UriComponents components, System.UriFormat format) { throw null; }
159         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
GetHashCode()160         public override int GetHashCode() { throw null; }
GetLeftPart(System.UriPartial part)161         public string GetLeftPart(System.UriPartial part) { throw null; }
162         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)163         protected void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
HexEscape(char character)164         public static string HexEscape(char character) { throw null; }
HexUnescape(string pattern, ref int index)165         public static char HexUnescape(string pattern, ref int index) { throw null; }
166         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsBadFileSystemCharacter(char character)167         protected virtual bool IsBadFileSystemCharacter(char character) { throw null; }
IsBaseOf(System.Uri uri)168         public bool IsBaseOf(System.Uri uri) { throw null; }
169         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsExcludedCharacter(char character)170         protected static bool IsExcludedCharacter(char character) { throw null; }
IsHexDigit(char character)171         public static bool IsHexDigit(char character) { throw null; }
IsHexEncoding(string pattern, int index)172         public static bool IsHexEncoding(string pattern, int index) { throw null; }
173         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
IsReservedCharacter(char character)174         protected virtual bool IsReservedCharacter(char character) { throw null; }
IsWellFormedOriginalString()175         public bool IsWellFormedOriginalString() { throw null; }
IsWellFormedUriString(string uriString, System.UriKind uriKind)176         public static bool IsWellFormedUriString(string uriString, System.UriKind uriKind) { throw null; }
177         [System.ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). http://go.microsoft.com/fwlink/?linkid=14202")]
MakeRelative(System.Uri toUri)178         public string MakeRelative(System.Uri toUri) { throw null; }
MakeRelativeUri(System.Uri uri)179         public System.Uri MakeRelativeUri(System.Uri uri) { throw null; }
180         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
operator ==(System.Uri uri1, System.Uri uri2)181         public static bool operator ==(System.Uri uri1, System.Uri uri2) { throw null; }
182         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
operator !=(System.Uri uri1, System.Uri uri2)183         public static bool operator !=(System.Uri uri1, System.Uri uri2) { throw null; }
184         [System.ObsoleteAttribute("The method has been deprecated. It is not used by the system. http://go.microsoft.com/fwlink/?linkid=14202")]
Parse()185         protected virtual void Parse() { }
186         [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)187         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
188         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(4096))]
ToString()189         public override string ToString() { throw null; }
TryCreate(string uriString, System.UriKind uriKind, out System.Uri result)190         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)191         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)192         public static bool TryCreate(System.Uri baseUri, System.Uri relativeUri, out System.Uri result) { result = default(System.Uri); throw null; }
193         [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)194         protected virtual string Unescape(string path) { throw null; }
UnescapeDataString(string stringToUnescape)195         public static string UnescapeDataString(string stringToUnescape) { throw null; }
196     }
197     public partial class UriBuilder
198     {
UriBuilder()199         public UriBuilder() { }
UriBuilder(string uri)200         public UriBuilder(string uri) { }
UriBuilder(string schemeName, string hostName)201         public UriBuilder(string schemeName, string hostName) { }
UriBuilder(string scheme, string host, int portNumber)202         public UriBuilder(string scheme, string host, int portNumber) { }
UriBuilder(string scheme, string host, int port, string pathValue)203         public UriBuilder(string scheme, string host, int port, string pathValue) { }
UriBuilder(string scheme, string host, int port, string path, string extraValue)204         public UriBuilder(string scheme, string host, int port, string path, string extraValue) { }
UriBuilder(System.Uri uri)205         public UriBuilder(System.Uri uri) { }
206         public string Fragment { get { throw null; } set { } }
207         public string Host { get { throw null; } set { } }
208         public string Password { get { throw null; } set { } }
209         public string Path { get { throw null; } set { } }
210         public int Port { get { throw null; } set { } }
211         public string Query { get { throw null; } set { } }
212         public string Scheme { get { throw null; } set { } }
213         public System.Uri Uri { get { throw null; } }
214         public string UserName { get { throw null; } set { } }
Equals(object rparam)215         public override bool Equals(object rparam) { throw null; }
GetHashCode()216         public override int GetHashCode() { throw null; }
ToString()217         public override string ToString() { throw null; }
218     }
219     [System.FlagsAttribute]
220     public enum UriComponents
221     {
222         AbsoluteUri = 127,
223         Fragment = 64,
224         Host = 4,
225         HostAndPort = 132,
226         HttpRequestUrl = 61,
227         KeepDelimiter = 1073741824,
228         NormalizedHost = 256,
229         Path = 16,
230         PathAndQuery = 48,
231         Port = 8,
232         Query = 32,
233         Scheme = 1,
234         SchemeAndServer = 13,
235         SerializationInfoString = -2147483648,
236         StrongAuthority = 134,
237         StrongPort = 128,
238         UserInfo = 2,
239     }
240     public enum UriFormat
241     {
242         SafeUnescaped = 3,
243         Unescaped = 2,
244         UriEscaped = 1,
245     }
246     [System.SerializableAttribute]
247     public partial class UriFormatException : System.FormatException, System.Runtime.Serialization.ISerializable
248     {
UriFormatException()249         public UriFormatException() { }
UriFormatException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)250         protected UriFormatException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
UriFormatException(string textString)251         public UriFormatException(string textString) { }
UriFormatException(string textString, System.Exception e)252         public UriFormatException(string textString, System.Exception e) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)253         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
254     }
255     public enum UriHostNameType
256     {
257         Basic = 1,
258         Dns = 2,
259         IPv4 = 3,
260         IPv6 = 4,
261         Unknown = 0,
262     }
263     public enum UriIdnScope
264     {
265         All = 2,
266         AllExceptIntranet = 1,
267         None = 0,
268     }
269     public enum UriKind
270     {
271         Absolute = 1,
272         Relative = 2,
273         RelativeOrAbsolute = 0,
274     }
275     public abstract partial class UriParser
276     {
UriParser()277         protected UriParser() { }
GetComponents(System.Uri uri, System.UriComponents components, System.UriFormat format)278         protected virtual string GetComponents(System.Uri uri, System.UriComponents components, System.UriFormat format) { throw null; }
InitializeAndValidate(System.Uri uri, out System.UriFormatException parsingError)279         protected virtual void InitializeAndValidate(System.Uri uri, out System.UriFormatException parsingError) { parsingError = default(System.UriFormatException); }
IsBaseOf(System.Uri baseUri, System.Uri relativeUri)280         protected virtual bool IsBaseOf(System.Uri baseUri, System.Uri relativeUri) { throw null; }
IsKnownScheme(string schemeName)281         public static bool IsKnownScheme(string schemeName) { throw null; }
IsWellFormedOriginalString(System.Uri uri)282         protected virtual bool IsWellFormedOriginalString(System.Uri uri) { throw null; }
OnNewUri()283         protected virtual System.UriParser OnNewUri() { throw null; }
OnRegister(string schemeName, int defaultPort)284         protected virtual void OnRegister(string schemeName, int defaultPort) { }
Register(System.UriParser uriParser, string schemeName, int defaultPort)285         public static void Register(System.UriParser uriParser, string schemeName, int defaultPort) { }
Resolve(System.Uri baseUri, System.Uri relativeUri, out System.UriFormatException parsingError)286         protected virtual string Resolve(System.Uri baseUri, System.Uri relativeUri, out System.UriFormatException parsingError) { parsingError = default(System.UriFormatException); throw null; }
287     }
288     public enum UriPartial
289     {
290         Authority = 1,
291         Path = 2,
292         Query = 3,
293         Scheme = 0,
294     }
295     public partial class UriTypeConverter : System.ComponentModel.TypeConverter
296     {
UriTypeConverter()297         public UriTypeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)298         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)299         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)300         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)301         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
302     }
303 }
304 namespace System.CodeDom.Compiler
305 {
306     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), Inherited=false, AllowMultiple=false)]
307     public sealed partial class GeneratedCodeAttribute : System.Attribute
308     {
GeneratedCodeAttribute(string tool, string version)309         public GeneratedCodeAttribute(string tool, string version) { }
310         public string Tool { get { throw null; } }
311         public string Version { get { throw null; } }
312     }
313     public partial class IndentedTextWriter : System.IO.TextWriter
314     {
315         public const string DefaultTabString = "    ";
IndentedTextWriter(System.IO.TextWriter writer)316         public IndentedTextWriter(System.IO.TextWriter writer) { }
IndentedTextWriter(System.IO.TextWriter writer, string tabString)317         public IndentedTextWriter(System.IO.TextWriter writer, string tabString) { }
318         public override System.Text.Encoding Encoding { get { throw null; } }
319         public int Indent { get { throw null; } set { } }
320         public System.IO.TextWriter InnerWriter { get { throw null; } }
321         public override string NewLine { get { throw null; } set { } }
Close()322         public override void Close() { }
Flush()323         public override void Flush() { }
OutputTabs()324         protected virtual void OutputTabs() { }
Write(bool value)325         public override void Write(bool value) { }
Write(char value)326         public override void Write(char value) { }
Write(char[] buffer)327         public override void Write(char[] buffer) { }
Write(char[] buffer, int index, int count)328         public override void Write(char[] buffer, int index, int count) { }
Write(double value)329         public override void Write(double value) { }
Write(int value)330         public override void Write(int value) { }
Write(long value)331         public override void Write(long value) { }
Write(object value)332         public override void Write(object value) { }
Write(float value)333         public override void Write(float value) { }
Write(string s)334         public override void Write(string s) { }
Write(string format, object arg0)335         public override void Write(string format, object arg0) { }
Write(string format, object arg0, object arg1)336         public override void Write(string format, object arg0, object arg1) { }
Write(string format, params object[] arg)337         public override void Write(string format, params object[] arg) { }
WriteLine()338         public override void WriteLine() { }
WriteLine(bool value)339         public override void WriteLine(bool value) { }
WriteLine(char value)340         public override void WriteLine(char value) { }
WriteLine(char[] buffer)341         public override void WriteLine(char[] buffer) { }
WriteLine(char[] buffer, int index, int count)342         public override void WriteLine(char[] buffer, int index, int count) { }
WriteLine(double value)343         public override void WriteLine(double value) { }
WriteLine(int value)344         public override void WriteLine(int value) { }
WriteLine(long value)345         public override void WriteLine(long value) { }
WriteLine(object value)346         public override void WriteLine(object value) { }
WriteLine(float value)347         public override void WriteLine(float value) { }
WriteLine(string s)348         public override void WriteLine(string s) { }
WriteLine(string format, object arg0)349         public override void WriteLine(string format, object arg0) { }
WriteLine(string format, object arg0, object arg1)350         public override void WriteLine(string format, object arg0, object arg1) { }
WriteLine(string format, params object[] arg)351         public override void WriteLine(string format, params object[] arg) { }
352         [System.CLSCompliantAttribute(false)]
WriteLine(uint value)353         public override void WriteLine(uint value) { }
WriteLineNoTabs(string s)354         public void WriteLineNoTabs(string s) { }
355     }
356 }
357 namespace System.Collections.Concurrent
358 {
359     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}, Type = {_collection}")]
360     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.BlockingCollectionDebugView<T>")]
361     public partial class BlockingCollection<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.IDisposable
362     {
BlockingCollection()363         public BlockingCollection() { }
BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection)364         public BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection) { }
BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection, int boundedCapacity)365         public BlockingCollection(System.Collections.Concurrent.IProducerConsumerCollection<T> collection, int boundedCapacity) { }
BlockingCollection(int boundedCapacity)366         public BlockingCollection(int boundedCapacity) { }
367         public int BoundedCapacity { get { throw null; } }
368         public int Count { get { throw null; } }
369         public bool IsAddingCompleted { get { throw null; } }
370         public bool IsCompleted { get { throw null; } }
371         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
372         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)373         public void Add(T item) { }
Add(T item, System.Threading.CancellationToken cancellationToken)374         public void Add(T item, System.Threading.CancellationToken cancellationToken) { }
AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item)375         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)376         public static int AddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.Threading.CancellationToken cancellationToken) { throw null; }
CompleteAdding()377         public void CompleteAdding() { }
CopyTo(T[] array, int index)378         public void CopyTo(T[] array, int index) { }
Dispose()379         public void Dispose() { }
Dispose(bool disposing)380         protected virtual void Dispose(bool disposing) { }
GetConsumingEnumerable()381         public System.Collections.Generic.IEnumerable<T> GetConsumingEnumerable() { throw null; }
GetConsumingEnumerable(System.Threading.CancellationToken cancellationToken)382         public System.Collections.Generic.IEnumerable<T> GetConsumingEnumerable(System.Threading.CancellationToken cancellationToken) { throw null; }
GetEnumerator()383         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)384         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()385         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
Take()386         public T Take() { throw null; }
Take(System.Threading.CancellationToken cancellationToken)387         public T Take(System.Threading.CancellationToken cancellationToken) { throw null; }
TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item)388         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)389         public static int TakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
ToArray()390         public T[] ToArray() { throw null; }
TryAdd(T item)391         public bool TryAdd(T item) { throw null; }
TryAdd(T item, int millisecondsTimeout)392         public bool TryAdd(T item, int millisecondsTimeout) { throw null; }
TryAdd(T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)393         public bool TryAdd(T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
TryAdd(T item, System.TimeSpan timeout)394         public bool TryAdd(T item, System.TimeSpan timeout) { throw null; }
TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item)395         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)396         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)397         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)398         public static int TryAddToAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, T item, System.TimeSpan timeout) { throw null; }
TryTake(out T item)399         public bool TryTake(out T item) { item = default(T); throw null; }
TryTake(out T item, int millisecondsTimeout)400         public bool TryTake(out T item, int millisecondsTimeout) { item = default(T); throw null; }
TryTake(out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)401         public bool TryTake(out T item, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { item = default(T); throw null; }
TryTake(out T item, System.TimeSpan timeout)402         public bool TryTake(out T item, System.TimeSpan timeout) { item = default(T); throw null; }
TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item)403         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)404         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)405         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)406         public static int TryTakeFromAny(System.Collections.Concurrent.BlockingCollection<T>[] collections, out T item, System.TimeSpan timeout) { item = default(T); throw null; }
407     }
408     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
409     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.IProducerConsumerCollectionDebugView<T>")]
410     [System.SerializableAttribute]
411     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
412     {
ConcurrentBag()413         public ConcurrentBag() { }
ConcurrentBag(System.Collections.Generic.IEnumerable<T> collection)414         public ConcurrentBag(System.Collections.Generic.IEnumerable<T> collection) { }
415         public int Count { get { throw null; } }
416         public bool IsEmpty { get { throw null; } }
417         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
418         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)419         public void Add(T item) { }
Clear()420         public void Clear() { }
CopyTo(T[] array, int index)421         public void CopyTo(T[] array, int index) { }
GetEnumerator()422         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
TryAdd(T item)423         bool System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd(T item) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)424         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()425         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()426         public T[] ToArray() { throw null; }
TryPeek(out T result)427         public bool TryPeek(out T result) { result = default(T); throw null; }
TryTake(out T result)428         public bool TryTake(out T result) { result = default(T); throw null; }
429     }
430 }
431 namespace System.Collections.Generic
432 {
433     public partial interface ISet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
434     {
Add(T item)435         new bool Add(T item);
ExceptWith(System.Collections.Generic.IEnumerable<T> other)436         void ExceptWith(System.Collections.Generic.IEnumerable<T> other);
IntersectWith(System.Collections.Generic.IEnumerable<T> other)437         void IntersectWith(System.Collections.Generic.IEnumerable<T> other);
IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)438         bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other);
IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)439         bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other);
IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)440         bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other);
IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)441         bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other);
Overlaps(System.Collections.Generic.IEnumerable<T> other)442         bool Overlaps(System.Collections.Generic.IEnumerable<T> other);
SetEquals(System.Collections.Generic.IEnumerable<T> other)443         bool SetEquals(System.Collections.Generic.IEnumerable<T> other);
SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other)444         void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other);
UnionWith(System.Collections.Generic.IEnumerable<T> other)445         void UnionWith(System.Collections.Generic.IEnumerable<T> other);
446     }
447     public sealed partial class LinkedListNode<T>
448     {
LinkedListNode(T value)449         public LinkedListNode(T value) { }
450         public System.Collections.Generic.LinkedList<T> List { get { throw null; } }
451         public System.Collections.Generic.LinkedListNode<T> Next { get { throw null; } }
452         public System.Collections.Generic.LinkedListNode<T> Previous { get { throw null; } }
453         public T Value { get { throw null; } set { } }
454     }
455     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
456     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView<T>")]
457     [System.SerializableAttribute]
458     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
459     {
LinkedList()460         public LinkedList() { }
LinkedList(System.Collections.Generic.IEnumerable<T> collection)461         public LinkedList(System.Collections.Generic.IEnumerable<T> collection) { }
LinkedList(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)462         protected LinkedList(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
463         public int Count { get { throw null; } }
464         public System.Collections.Generic.LinkedListNode<T> First { get { throw null; } }
465         public System.Collections.Generic.LinkedListNode<T> Last { get { throw null; } }
466         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
467         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
468         object System.Collections.ICollection.SyncRoot { get { throw null; } }
AddAfter(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode)469         public void AddAfter(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode) { }
AddAfter(System.Collections.Generic.LinkedListNode<T> node, T value)470         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)471         public void AddBefore(System.Collections.Generic.LinkedListNode<T> node, System.Collections.Generic.LinkedListNode<T> newNode) { }
AddBefore(System.Collections.Generic.LinkedListNode<T> node, T value)472         public System.Collections.Generic.LinkedListNode<T> AddBefore(System.Collections.Generic.LinkedListNode<T> node, T value) { throw null; }
AddFirst(System.Collections.Generic.LinkedListNode<T> node)473         public void AddFirst(System.Collections.Generic.LinkedListNode<T> node) { }
AddFirst(T value)474         public System.Collections.Generic.LinkedListNode<T> AddFirst(T value) { throw null; }
AddLast(System.Collections.Generic.LinkedListNode<T> node)475         public void AddLast(System.Collections.Generic.LinkedListNode<T> node) { }
AddLast(T value)476         public System.Collections.Generic.LinkedListNode<T> AddLast(T value) { throw null; }
Clear()477         public void Clear() { }
Contains(T value)478         public bool Contains(T value) { throw null; }
CopyTo(T[] array, int index)479         public void CopyTo(T[] array, int index) { }
Find(T value)480         public System.Collections.Generic.LinkedListNode<T> Find(T value) { throw null; }
FindLast(T value)481         public System.Collections.Generic.LinkedListNode<T> FindLast(T value) { throw null; }
GetEnumerator()482         public System.Collections.Generic.LinkedList<T>.Enumerator GetEnumerator() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)483         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
OnDeserialization(object sender)484         public virtual void OnDeserialization(object sender) { }
Remove(System.Collections.Generic.LinkedListNode<T> node)485         public void Remove(System.Collections.Generic.LinkedListNode<T> node) { }
Remove(T value)486         public bool Remove(T value) { throw null; }
RemoveFirst()487         public void RemoveFirst() { }
RemoveLast()488         public void RemoveLast() { }
Add(T value)489         void System.Collections.Generic.ICollection<T>.Add(T value) { }
GetEnumerator()490         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)491         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()492         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
493         [System.SerializableAttribute]
494         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
495         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
496         {
497             public T Current { get { throw null; } }
498             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.LinkedList.Enumerator499             public void Dispose() { }
MoveNextSystem.Collections.Generic.LinkedList.Enumerator500             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.LinkedList.Enumerator501             void System.Collections.IEnumerator.Reset() { }
System.Runtime.Serialization.IDeserializationCallback.OnDeserializationSystem.Collections.Generic.LinkedList.Enumerator502             void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectDataSystem.Collections.Generic.LinkedList.Enumerator503             void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
504         }
505     }
506     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
507     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.QueueDebugView<T>")]
508     [System.SerializableAttribute]
509     public partial class Queue<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
510     {
Queue()511         public Queue() { }
Queue(System.Collections.Generic.IEnumerable<T> collection)512         public Queue(System.Collections.Generic.IEnumerable<T> collection) { }
Queue(int capacity)513         public Queue(int capacity) { }
514         public int Count { get { throw null; } }
515         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
516         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Clear()517         public void Clear() { }
Contains(T item)518         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)519         public void CopyTo(T[] array, int arrayIndex) { }
Dequeue()520         public T Dequeue() { throw null; }
Enqueue(T item)521         public void Enqueue(T item) { }
GetEnumerator()522         public System.Collections.Generic.Queue<T>.Enumerator GetEnumerator() { throw null; }
Peek()523         public T Peek() { throw null; }
GetEnumerator()524         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)525         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()526         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()527         public T[] ToArray() { throw null; }
TrimExcess()528         public void TrimExcess() { }
TryDequeue(out T result)529         public bool TryDequeue(out T result) { result = default(T); throw null; }
TryPeek(out T result)530         public bool TryPeek(out T result) { result = default(T); throw null; }
531         [System.SerializableAttribute]
532         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
533         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
534         {
535             public T Current { get { throw null; } }
536             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.Queue.Enumerator537             public void Dispose() { }
MoveNextSystem.Collections.Generic.Queue.Enumerator538             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.Queue.Enumerator539             void System.Collections.IEnumerator.Reset() { }
540         }
541     }
542     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
543     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.IDictionaryDebugView<K, V>")]
544     [System.SerializableAttribute]
545     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
546     {
SortedDictionary()547         public SortedDictionary() { }
SortedDictionary(System.Collections.Generic.IComparer<TKey> comparer)548         public SortedDictionary(System.Collections.Generic.IComparer<TKey> comparer) { }
SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary)549         public SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary) { }
SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer)550         public SortedDictionary(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer) { }
551         public System.Collections.Generic.IComparer<TKey> Comparer { get { throw null; } }
552         public int Count { get { throw null; } }
553         public TValue this[TKey key] { get { throw null; } set { } }
554         public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection Keys { get { throw null; } }
555         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly { get { throw null; } }
556         System.Collections.Generic.ICollection<TKey> System.Collections.Generic.IDictionary<TKey,TValue>.Keys { get { throw null; } }
557         System.Collections.Generic.ICollection<TValue> System.Collections.Generic.IDictionary<TKey,TValue>.Values { get { throw null; } }
558         System.Collections.Generic.IEnumerable<TKey> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Keys { get { throw null; } }
559         System.Collections.Generic.IEnumerable<TValue> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Values { get { throw null; } }
560         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
561         object System.Collections.ICollection.SyncRoot { get { throw null; } }
562         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
563         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
564         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
565         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
566         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
567         public System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection Values { get { throw null; } }
Add(TKey key, TValue value)568         public void Add(TKey key, TValue value) { }
Clear()569         public void Clear() { }
ContainsKey(TKey key)570         public bool ContainsKey(TKey key) { throw null; }
ContainsValue(TValue value)571         public bool ContainsValue(TValue value) { throw null; }
CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int index)572         public void CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int index) { }
GetEnumerator()573         public System.Collections.Generic.SortedDictionary<TKey, TValue>.Enumerator GetEnumerator() { throw null; }
Remove(TKey key)574         public bool Remove(TKey key) { throw null; }
Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)575         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)576         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)577         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
GetEnumerator()578         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)579         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object key, object value)580         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Contains(object key)581         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()582         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)583         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()584         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TryGetValue(TKey key, out TValue value)585         public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
586         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
587         public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.IDictionaryEnumerator, System.Collections.IEnumerator, System.IDisposable
588         {
589             public System.Collections.Generic.KeyValuePair<TKey, TValue> Current { get { throw null; } }
590             System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator.Entry { get { throw null; } }
591             object System.Collections.IDictionaryEnumerator.Key { get { throw null; } }
592             object System.Collections.IDictionaryEnumerator.Value { get { throw null; } }
593             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.Enumerator594             public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.Enumerator595             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.Enumerator596             void System.Collections.IEnumerator.Reset() { }
597         }
598         [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
599         [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryKeyCollectionDebugView<TKey, TValue>")]
600         [System.SerializableAttribute]
601         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
602         {
KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary)603             public KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { }
604             public int Count { get { throw null; } }
605             bool System.Collections.Generic.ICollection<TKey>.IsReadOnly { get { throw null; } }
606             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
607             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(TKey[] array, int index)608             public void CopyTo(TKey[] array, int index) { }
GetEnumerator()609             public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection.Enumerator GetEnumerator() { throw null; }
Add(TKey item)610             void System.Collections.Generic.ICollection<TKey>.Add(TKey item) { }
Clear()611             void System.Collections.Generic.ICollection<TKey>.Clear() { }
Contains(TKey item)612             bool System.Collections.Generic.ICollection<TKey>.Contains(TKey item) { throw null; }
Remove(TKey item)613             bool System.Collections.Generic.ICollection<TKey>.Remove(TKey item) { throw null; }
GetEnumerator()614             System.Collections.Generic.IEnumerator<TKey> System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)615             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()616             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
617             [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
618             public partial struct Enumerator : System.Collections.Generic.IEnumerator<TKey>, System.Collections.IEnumerator, System.IDisposable
619             {
620                 public TKey Current { get { throw null; } }
621                 object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator622                 public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator623                 public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.KeyCollection.Enumerator624                 void System.Collections.IEnumerator.Reset() { }
625             }
626         }
627         [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
628         [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryValueCollectionDebugView<TKey, TValue>")]
629         [System.SerializableAttribute]
630         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
631         {
ValueCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary)632             public ValueCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { }
633             public int Count { get { throw null; } }
634             bool System.Collections.Generic.ICollection<TValue>.IsReadOnly { get { throw null; } }
635             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
636             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(TValue[] array, int index)637             public void CopyTo(TValue[] array, int index) { }
GetEnumerator()638             public System.Collections.Generic.SortedDictionary<TKey, TValue>.ValueCollection.Enumerator GetEnumerator() { throw null; }
Add(TValue item)639             void System.Collections.Generic.ICollection<TValue>.Add(TValue item) { }
Clear()640             void System.Collections.Generic.ICollection<TValue>.Clear() { }
Contains(TValue item)641             bool System.Collections.Generic.ICollection<TValue>.Contains(TValue item) { throw null; }
Remove(TValue item)642             bool System.Collections.Generic.ICollection<TValue>.Remove(TValue item) { throw null; }
GetEnumerator()643             System.Collections.Generic.IEnumerator<TValue> System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)644             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()645             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
646             [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
647             public partial struct Enumerator : System.Collections.Generic.IEnumerator<TValue>, System.Collections.IEnumerator, System.IDisposable
648             {
649                 public TValue Current { get { throw null; } }
650                 object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator651                 public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator652                 public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedDictionary.ValueCollection.Enumerator653                 void System.Collections.IEnumerator.Reset() { }
654             }
655         }
656     }
657     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
658     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.IDictionaryDebugView<K, V>")]
659     [System.SerializableAttribute]
660     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
661     {
SortedList()662         public SortedList() { }
SortedList(System.Collections.Generic.IComparer<TKey> comparer)663         public SortedList(System.Collections.Generic.IComparer<TKey> comparer) { }
SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary)664         public SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary) { }
SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer)665         public SortedList(System.Collections.Generic.IDictionary<TKey, TValue> dictionary, System.Collections.Generic.IComparer<TKey> comparer) { }
SortedList(int capacity)666         public SortedList(int capacity) { }
SortedList(int capacity, System.Collections.Generic.IComparer<TKey> comparer)667         public SortedList(int capacity, System.Collections.Generic.IComparer<TKey> comparer) { }
668         public int Capacity { get { throw null; } set { } }
669         public System.Collections.Generic.IComparer<TKey> Comparer { get { throw null; } }
670         public int Count { get { throw null; } }
671         public TValue this[TKey key] { get { throw null; } set { } }
672         public System.Collections.Generic.IList<TKey> Keys { get { throw null; } }
673         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.IsReadOnly { get { throw null; } }
674         System.Collections.Generic.ICollection<TKey> System.Collections.Generic.IDictionary<TKey,TValue>.Keys { get { throw null; } }
675         System.Collections.Generic.ICollection<TValue> System.Collections.Generic.IDictionary<TKey,TValue>.Values { get { throw null; } }
676         System.Collections.Generic.IEnumerable<TKey> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Keys { get { throw null; } }
677         System.Collections.Generic.IEnumerable<TValue> System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>.Values { get { throw null; } }
678         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
679         object System.Collections.ICollection.SyncRoot { get { throw null; } }
680         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
681         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
682         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
683         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
684         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
685         public System.Collections.Generic.IList<TValue> Values { get { throw null; } }
Add(TKey key, TValue value)686         public void Add(TKey key, TValue value) { }
Clear()687         public void Clear() { }
ContainsKey(TKey key)688         public bool ContainsKey(TKey key) { throw null; }
ContainsValue(TValue value)689         public bool ContainsValue(TValue value) { throw null; }
GetEnumerator()690         public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> GetEnumerator() { throw null; }
IndexOfKey(TKey key)691         public int IndexOfKey(TKey key) { throw null; }
IndexOfValue(TValue value)692         public int IndexOfValue(TValue value) { throw null; }
Remove(TKey key)693         public bool Remove(TKey key) { throw null; }
RemoveAt(int index)694         public void RemoveAt(int index) { }
Add(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair)695         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)696         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)697         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)698         bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> keyValuePair) { throw null; }
GetEnumerator()699         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)700         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object key, object value)701         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Contains(object key)702         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()703         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)704         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()705         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TrimExcess()706         public void TrimExcess() { }
TryGetValue(TKey key, out TValue value)707         public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
708     }
709     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
710     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView<T>")]
711     [System.SerializableAttribute]
712     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
713     {
SortedSet()714         public SortedSet() { }
SortedSet(System.Collections.Generic.IComparer<T> comparer)715         public SortedSet(System.Collections.Generic.IComparer<T> comparer) { }
SortedSet(System.Collections.Generic.IEnumerable<T> collection)716         public SortedSet(System.Collections.Generic.IEnumerable<T> collection) { }
SortedSet(System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IComparer<T> comparer)717         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)718         protected SortedSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
719         public System.Collections.Generic.IComparer<T> Comparer { get { throw null; } }
720         public int Count { get { throw null; } }
721         public T Max { get { throw null; } }
722         public T Min { get { throw null; } }
723         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
724         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
725         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Add(T item)726         public bool Add(T item) { throw null; }
Clear()727         public virtual void Clear() { }
Contains(T item)728         public virtual bool Contains(T item) { throw null; }
CopyTo(T[] array)729         public void CopyTo(T[] array) { }
CopyTo(T[] array, int index)730         public void CopyTo(T[] array, int index) { }
CopyTo(T[] array, int index, int count)731         public void CopyTo(T[] array, int index, int count) { }
CreateSetComparer()732         public static System.Collections.Generic.IEqualityComparer<System.Collections.Generic.SortedSet<T>> CreateSetComparer() { throw null; }
CreateSetComparer(System.Collections.Generic.IEqualityComparer<T> memberEqualityComparer)733         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)734         public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
GetEnumerator()735         public System.Collections.Generic.SortedSet<T>.Enumerator GetEnumerator() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)736         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetViewBetween(T lowerValue, T upperValue)737         public virtual System.Collections.Generic.SortedSet<T> GetViewBetween(T lowerValue, T upperValue) { throw null; }
IntersectWith(System.Collections.Generic.IEnumerable<T> other)738         public virtual void IntersectWith(System.Collections.Generic.IEnumerable<T> other) { }
IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)739         public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)740         public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)741         public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)742         public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) { throw null; }
OnDeserialization(object sender)743         protected virtual void OnDeserialization(object sender) { }
Overlaps(System.Collections.Generic.IEnumerable<T> other)744         public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) { throw null; }
Remove(T item)745         public bool Remove(T item) { throw null; }
RemoveWhere(System.Predicate<T> match)746         public int RemoveWhere(System.Predicate<T> match) { throw null; }
Reverse()747         public System.Collections.Generic.IEnumerable<T> Reverse() { throw null; }
SetEquals(System.Collections.Generic.IEnumerable<T> other)748         public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) { throw null; }
SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other)749         public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
Add(T item)750         void System.Collections.Generic.ICollection<T>.Add(T item) { }
GetEnumerator()751         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)752         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()753         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)754         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)755         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
TryGetValue(T equalValue, out T actualValue)756         public bool TryGetValue(T equalValue, out T actualValue) { actualValue = default(T); throw null; }
UnionWith(System.Collections.Generic.IEnumerable<T> other)757         public void UnionWith(System.Collections.Generic.IEnumerable<T> other) { }
758         [System.SerializableAttribute]
759         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
760         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
761         {
762             public T Current { get { throw null; } }
763             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.SortedSet.Enumerator764             public void Dispose() { }
MoveNextSystem.Collections.Generic.SortedSet.Enumerator765             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.SortedSet.Enumerator766             void System.Collections.IEnumerator.Reset() { }
System.Runtime.Serialization.IDeserializationCallback.OnDeserializationSystem.Collections.Generic.SortedSet.Enumerator767             void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectDataSystem.Collections.Generic.SortedSet.Enumerator768             void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
769         }
770     }
771     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
772     [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.StackDebugView<T>")]
773     [System.SerializableAttribute]
774     public partial class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
775     {
Stack()776         public Stack() { }
Stack(System.Collections.Generic.IEnumerable<T> collection)777         public Stack(System.Collections.Generic.IEnumerable<T> collection) { }
Stack(int capacity)778         public Stack(int capacity) { }
779         public int Count { get { throw null; } }
780         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
781         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Clear()782         public void Clear() { }
Contains(T item)783         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)784         public void CopyTo(T[] array, int arrayIndex) { }
GetEnumerator()785         public System.Collections.Generic.Stack<T>.Enumerator GetEnumerator() { throw null; }
Peek()786         public T Peek() { throw null; }
Pop()787         public T Pop() { throw null; }
Push(T item)788         public void Push(T item) { }
GetEnumerator()789         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex)790         void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { }
System.Collections.IEnumerable.GetEnumerator()791         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToArray()792         public T[] ToArray() { throw null; }
TrimExcess()793         public void TrimExcess() { }
TryPeek(out T result)794         public bool TryPeek(out T result) { result = default(T); throw null; }
TryPop(out T result)795         public bool TryPop(out T result) { result = default(T); throw null; }
796         [System.SerializableAttribute]
797         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
798         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
799         {
800             public T Current { get { throw null; } }
801             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Collections.Generic.Stack.Enumerator802             public void Dispose() { }
MoveNextSystem.Collections.Generic.Stack.Enumerator803             public bool MoveNext() { throw null; }
System.Collections.IEnumerator.ResetSystem.Collections.Generic.Stack.Enumerator804             void System.Collections.IEnumerator.Reset() { }
805         }
806     }
807 }
808 namespace System.Collections.ObjectModel
809 {
810     [System.SerializableAttribute]
811     public partial class ObservableCollection<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
812     {
ObservableCollection()813         public ObservableCollection() { }
ObservableCollection(System.Collections.Generic.IEnumerable<T> collection)814         public ObservableCollection(System.Collections.Generic.IEnumerable<T> collection) { }
ObservableCollection(System.Collections.Generic.List<T> list)815         public ObservableCollection(System.Collections.Generic.List<T> list) { }
816         public virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
817         protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
818         event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } }
BlockReentrancy()819         protected System.IDisposable BlockReentrancy() { throw null; }
CheckReentrancy()820         protected void CheckReentrancy() { }
ClearItems()821         protected override void ClearItems() { }
InsertItem(int index, T item)822         protected override void InsertItem(int index, T item) { }
Move(int oldIndex, int newIndex)823         public void Move(int oldIndex, int newIndex) { }
MoveItem(int oldIndex, int newIndex)824         protected virtual void MoveItem(int oldIndex, int newIndex) { }
OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)825         protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e)826         protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { }
RemoveItem(int index)827         protected override void RemoveItem(int index) { }
SetItem(int index, T item)828         protected override void SetItem(int index, T item) { }
829     }
830     [System.SerializableAttribute]
831     public partial class ReadOnlyObservableCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
832     {
ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list)833         public ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list) : base (default(System.Collections.Generic.IList<T>)) { }
834         protected virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } }
835         protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
836         event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } }
837         event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } }
OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args)838         protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args)839         protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs args) { }
840     }
841 }
842 namespace System.Collections.Specialized
843 {
844     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
845     public partial struct BitVector32
846     {
BitVector32System.Collections.Specialized.BitVector32847         public BitVector32(System.Collections.Specialized.BitVector32 value) { throw null;}
BitVector32System.Collections.Specialized.BitVector32848         public BitVector32(int data) { throw null;}
849         public int Data { get { throw null; } }
850         public int this[System.Collections.Specialized.BitVector32.Section section] { get { throw null; } set { } }
851         public bool this[int bit] { get { throw null; } set { } }
CreateMaskSystem.Collections.Specialized.BitVector32852         public static int CreateMask() { throw null; }
CreateMaskSystem.Collections.Specialized.BitVector32853         public static int CreateMask(int previous) { throw null; }
CreateSectionSystem.Collections.Specialized.BitVector32854         public static System.Collections.Specialized.BitVector32.Section CreateSection(short maxValue) { throw null; }
CreateSectionSystem.Collections.Specialized.BitVector32855         public static System.Collections.Specialized.BitVector32.Section CreateSection(short maxValue, System.Collections.Specialized.BitVector32.Section previous) { throw null; }
EqualsSystem.Collections.Specialized.BitVector32856         public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Collections.Specialized.BitVector32857         public override int GetHashCode() { throw null; }
ToStringSystem.Collections.Specialized.BitVector32858         public override string ToString() { throw null; }
ToStringSystem.Collections.Specialized.BitVector32859         public static string ToString(System.Collections.Specialized.BitVector32 value) { throw null; }
860         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
861         public partial struct Section
862         {
863             public short Mask { get { throw null; } }
864             public short Offset { get { throw null; } }
EqualsSystem.Collections.Specialized.BitVector32.Section865             public bool Equals(System.Collections.Specialized.BitVector32.Section obj) { throw null; }
EqualsSystem.Collections.Specialized.BitVector32.Section866             public override bool Equals(object o) { throw null; }
GetHashCodeSystem.Collections.Specialized.BitVector32.Section867             public override int GetHashCode() { throw null; }
operator ==System.Collections.Specialized.BitVector32.Section868             public static bool operator ==(System.Collections.Specialized.BitVector32.Section a, System.Collections.Specialized.BitVector32.Section b) { throw null; }
operator !=System.Collections.Specialized.BitVector32.Section869             public static bool operator !=(System.Collections.Specialized.BitVector32.Section a, System.Collections.Specialized.BitVector32.Section b) { throw null; }
ToStringSystem.Collections.Specialized.BitVector32.Section870             public override string ToString() { throw null; }
ToStringSystem.Collections.Specialized.BitVector32.Section871             public static string ToString(System.Collections.Specialized.BitVector32.Section value) { throw null; }
872         }
873     }
874     public partial class CollectionsUtil
875     {
CollectionsUtil()876         public CollectionsUtil() { }
CreateCaseInsensitiveHashtable()877         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable() { throw null; }
CreateCaseInsensitiveHashtable(System.Collections.IDictionary d)878         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(System.Collections.IDictionary d) { throw null; }
CreateCaseInsensitiveHashtable(int capacity)879         public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(int capacity) { throw null; }
CreateCaseInsensitiveSortedList()880         public static System.Collections.SortedList CreateCaseInsensitiveSortedList() { throw null; }
881     }
882     [System.SerializableAttribute]
883     public partial class HybridDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
884     {
HybridDictionary()885         public HybridDictionary() { }
HybridDictionary(bool caseInsensitive)886         public HybridDictionary(bool caseInsensitive) { }
HybridDictionary(int initialSize)887         public HybridDictionary(int initialSize) { }
HybridDictionary(int initialSize, bool caseInsensitive)888         public HybridDictionary(int initialSize, bool caseInsensitive) { }
889         public int Count { get { throw null; } }
890         public bool IsFixedSize { get { throw null; } }
891         public bool IsReadOnly { get { throw null; } }
892         public bool IsSynchronized { get { throw null; } }
893         public object this[object key] { get { throw null; } set { } }
894         public System.Collections.ICollection Keys { get { throw null; } }
895         public object SyncRoot { get { throw null; } }
896         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)897         public void Add(object key, object value) { }
Clear()898         public void Clear() { }
Contains(object key)899         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)900         public void CopyTo(System.Array array, int index) { }
GetEnumerator()901         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
Remove(object key)902         public void Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()903         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
904     }
905     public partial interface INotifyCollectionChanged
906     {
907         event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged;
908     }
909     public partial interface IOrderedDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
910     {
911         object this[int index] { get; set; }
GetEnumerator()912         new System.Collections.IDictionaryEnumerator GetEnumerator();
Insert(int index, object key, object value)913         void Insert(int index, object key, object value);
RemoveAt(int index)914         void RemoveAt(int index);
915     }
916     [System.SerializableAttribute]
917     public partial class ListDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
918     {
ListDictionary()919         public ListDictionary() { }
ListDictionary(System.Collections.IComparer comparer)920         public ListDictionary(System.Collections.IComparer comparer) { }
921         public int Count { get { throw null; } }
922         public bool IsFixedSize { get { throw null; } }
923         public bool IsReadOnly { get { throw null; } }
924         public bool IsSynchronized { get { throw null; } }
925         public object this[object key] { get { throw null; } set { } }
926         public System.Collections.ICollection Keys { get { throw null; } }
927         public object SyncRoot { get { throw null; } }
928         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)929         public void Add(object key, object value) { }
Clear()930         public void Clear() { }
Contains(object key)931         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)932         public void CopyTo(System.Array array, int index) { }
GetEnumerator()933         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
Remove(object key)934         public void Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()935         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
936     }
937     [System.SerializableAttribute]
938     public abstract partial class NameObjectCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
939     {
NameObjectCollectionBase()940         protected NameObjectCollectionBase() { }
NameObjectCollectionBase(System.Collections.IEqualityComparer equalityComparer)941         protected NameObjectCollectionBase(System.Collections.IEqualityComparer equalityComparer) { }
942         [System.ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.")]
NameObjectCollectionBase(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)943         protected NameObjectCollectionBase(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameObjectCollectionBase(int capacity)944         protected NameObjectCollectionBase(int capacity) { }
NameObjectCollectionBase(int capacity, System.Collections.IEqualityComparer equalityComparer)945         protected NameObjectCollectionBase(int capacity, System.Collections.IEqualityComparer equalityComparer) { }
946         [System.ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.")]
NameObjectCollectionBase(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)947         protected NameObjectCollectionBase(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameObjectCollectionBase(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)948         protected NameObjectCollectionBase(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
949         public virtual int Count { get { throw null; } }
950         protected bool IsReadOnly { get { throw null; } set { } }
951         public virtual System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw null; } }
952         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
953         object System.Collections.ICollection.SyncRoot { get { throw null; } }
BaseAdd(string name, object value)954         protected void BaseAdd(string name, object value) { }
BaseClear()955         protected void BaseClear() { }
BaseGet(int index)956         protected object BaseGet(int index) { throw null; }
BaseGet(string name)957         protected object BaseGet(string name) { throw null; }
BaseGetAllKeys()958         protected string[] BaseGetAllKeys() { throw null; }
BaseGetAllValues()959         protected object[] BaseGetAllValues() { throw null; }
BaseGetAllValues(System.Type type)960         protected object[] BaseGetAllValues(System.Type type) { throw null; }
BaseGetKey(int index)961         protected string BaseGetKey(int index) { throw null; }
BaseHasKeys()962         protected bool BaseHasKeys() { throw null; }
BaseRemove(string name)963         protected void BaseRemove(string name) { }
BaseRemoveAt(int index)964         protected void BaseRemoveAt(int index) { }
BaseSet(int index, object value)965         protected void BaseSet(int index, object value) { }
BaseSet(string name, object value)966         protected void BaseSet(string name, object value) { }
GetEnumerator()967         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
968         [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)969         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
OnDeserialization(object sender)970         public virtual void OnDeserialization(object sender) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)971         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
972         [System.SerializableAttribute]
973         public partial class KeysCollection : System.Collections.ICollection, System.Collections.IEnumerable
974         {
KeysCollection()975             internal KeysCollection() { }
976             public int Count { get { throw null; } }
977             public string this[int index] { get { throw null; } }
978             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
979             object System.Collections.ICollection.SyncRoot { get { throw null; } }
Get(int index)980             public virtual string Get(int index) { throw null; }
GetEnumerator()981             public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)982             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
983         }
984     }
985     [System.SerializableAttribute]
986     public partial class NameValueCollection : System.Collections.Specialized.NameObjectCollectionBase
987     {
NameValueCollection()988         public NameValueCollection() { }
NameValueCollection(System.Collections.IEqualityComparer equalityComparer)989         public NameValueCollection(System.Collections.IEqualityComparer equalityComparer) { }
990         [System.ObsoleteAttribute("Please use NameValueCollection(IEqualityComparer) instead.")]
NameValueCollection(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)991         public NameValueCollection(System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameValueCollection(System.Collections.Specialized.NameValueCollection col)992         public NameValueCollection(System.Collections.Specialized.NameValueCollection col) { }
NameValueCollection(int capacity)993         public NameValueCollection(int capacity) { }
NameValueCollection(int capacity, System.Collections.IEqualityComparer equalityComparer)994         public NameValueCollection(int capacity, System.Collections.IEqualityComparer equalityComparer) { }
995         [System.ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")]
NameValueCollection(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer)996         public NameValueCollection(int capacity, System.Collections.IHashCodeProvider hashProvider, System.Collections.IComparer comparer) { }
NameValueCollection(int capacity, System.Collections.Specialized.NameValueCollection col)997         public NameValueCollection(int capacity, System.Collections.Specialized.NameValueCollection col) { }
NameValueCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)998         protected NameValueCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
999         public virtual string[] AllKeys { get { throw null; } }
1000         public string this[int index] { get { throw null; } }
1001         public string this[string name] { get { throw null; } set { } }
Add(System.Collections.Specialized.NameValueCollection c)1002         public void Add(System.Collections.Specialized.NameValueCollection c) { }
Add(string name, string value)1003         public virtual void Add(string name, string value) { }
Clear()1004         public virtual void Clear() { }
CopyTo(System.Array dest, int index)1005         public void CopyTo(System.Array dest, int index) { }
Get(int index)1006         public virtual string Get(int index) { throw null; }
Get(string name)1007         public virtual string Get(string name) { throw null; }
GetKey(int index)1008         public virtual string GetKey(int index) { throw null; }
GetValues(int index)1009         public virtual string[] GetValues(int index) { throw null; }
GetValues(string name)1010         public virtual string[] GetValues(string name) { throw null; }
HasKeys()1011         public bool HasKeys() { throw null; }
InvalidateCachedArrays()1012         protected void InvalidateCachedArrays() { }
Remove(string name)1013         public virtual void Remove(string name) { }
Set(string name, string value)1014         public virtual void Set(string name, string value) { }
1015     }
1016     public enum NotifyCollectionChangedAction
1017     {
1018         Add = 0,
1019         Move = 3,
1020         Remove = 1,
1021         Replace = 2,
1022         Reset = 4,
1023     }
1024     public partial class NotifyCollectionChangedEventArgs : System.EventArgs
1025     {
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action)1026         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems)1027         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)1028         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)1029         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)1030         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)1031         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, System.Collections.IList changedItems, int index, int oldIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem)1032         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index)1033         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex)1034         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem)1035         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem) { }
NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index)1036         public NotifyCollectionChangedEventArgs(System.Collections.Specialized.NotifyCollectionChangedAction action, object newItem, object oldItem, int index) { }
1037         public System.Collections.Specialized.NotifyCollectionChangedAction Action { get { throw null; } }
1038         public System.Collections.IList NewItems { get { throw null; } }
1039         public int NewStartingIndex { get { throw null; } }
1040         public System.Collections.IList OldItems { get { throw null; } }
1041         public int OldStartingIndex { get { throw null; } }
1042     }
NotifyCollectionChangedEventHandler(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)1043     public delegate void NotifyCollectionChangedEventHandler(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e);
1044     [System.SerializableAttribute]
1045     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
1046     {
OrderedDictionary()1047         public OrderedDictionary() { }
OrderedDictionary(System.Collections.IEqualityComparer comparer)1048         public OrderedDictionary(System.Collections.IEqualityComparer comparer) { }
OrderedDictionary(int capacity)1049         public OrderedDictionary(int capacity) { }
OrderedDictionary(int capacity, System.Collections.IEqualityComparer comparer)1050         public OrderedDictionary(int capacity, System.Collections.IEqualityComparer comparer) { }
OrderedDictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1051         protected OrderedDictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1052         public int Count { get { throw null; } }
1053         public bool IsReadOnly { get { throw null; } }
1054         public object this[int index] { get { throw null; } set { } }
1055         public object this[object key] { get { throw null; } set { } }
1056         public System.Collections.ICollection Keys { get { throw null; } }
1057         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1058         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1059         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
1060         public System.Collections.ICollection Values { get { throw null; } }
Add(object key, object value)1061         public void Add(object key, object value) { }
AsReadOnly()1062         public System.Collections.Specialized.OrderedDictionary AsReadOnly() { throw null; }
Clear()1063         public void Clear() { }
Contains(object key)1064         public bool Contains(object key) { throw null; }
CopyTo(System.Array array, int index)1065         public void CopyTo(System.Array array, int index) { }
GetEnumerator()1066         public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
1067         [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)1068         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Insert(int index, object key, object value)1069         public void Insert(int index, object key, object value) { }
OnDeserialization(object sender)1070         protected virtual void OnDeserialization(object sender) { }
Remove(object key)1071         public void Remove(object key) { }
RemoveAt(int index)1072         public void RemoveAt(int index) { }
System.Collections.IEnumerable.GetEnumerator()1073         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)1074         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
1075     }
1076     [System.SerializableAttribute]
1077     public partial class StringCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1078     {
StringCollection()1079         public StringCollection() { }
1080         public int Count { get { throw null; } }
1081         public bool IsReadOnly { get { throw null; } }
1082         public bool IsSynchronized { get { throw null; } }
1083         public string this[int index] { get { throw null; } set { } }
1084         public object SyncRoot { get { throw null; } }
1085         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1086         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1087         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(string value)1088         public int Add(string value) { throw null; }
AddRange(string[] value)1089         public void AddRange(string[] value) { }
Clear()1090         public void Clear() { }
Contains(string value)1091         public bool Contains(string value) { throw null; }
CopyTo(string[] array, int index)1092         public void CopyTo(string[] array, int index) { }
GetEnumerator()1093         public System.Collections.Specialized.StringEnumerator GetEnumerator() { throw null; }
IndexOf(string value)1094         public int IndexOf(string value) { throw null; }
Insert(int index, string value)1095         public void Insert(int index, string value) { }
Remove(string value)1096         public void Remove(string value) { }
RemoveAt(int index)1097         public void RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)1098         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1099         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1100         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Contains(object value)1101         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1102         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1103         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1104         void System.Collections.IList.Remove(object value) { }
1105     }
1106     [System.ComponentModel.Design.Serialization.DesignerSerializerAttribute("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1107     [System.SerializableAttribute]
1108     public partial class StringDictionary : System.Collections.IEnumerable
1109     {
StringDictionary()1110         public StringDictionary() { }
1111         public virtual int Count { get { throw null; } }
1112         public virtual bool IsSynchronized { get { throw null; } }
1113         public virtual string this[string key] { get { throw null; } set { } }
1114         public virtual System.Collections.ICollection Keys { get { throw null; } }
1115         public virtual object SyncRoot { get { throw null; } }
1116         public virtual System.Collections.ICollection Values { get { throw null; } }
Add(string key, string value)1117         public virtual void Add(string key, string value) { }
Clear()1118         public virtual void Clear() { }
ContainsKey(string key)1119         public virtual bool ContainsKey(string key) { throw null; }
ContainsValue(string value)1120         public virtual bool ContainsValue(string value) { throw null; }
CopyTo(System.Array array, int index)1121         public virtual void CopyTo(System.Array array, int index) { }
GetEnumerator()1122         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string key)1123         public virtual void Remove(string key) { }
1124     }
1125     public partial class StringEnumerator
1126     {
StringEnumerator()1127         internal StringEnumerator() { }
1128         public string Current { get { throw null; } }
MoveNext()1129         public bool MoveNext() { throw null; }
Reset()1130         public void Reset() { }
1131     }
1132 }
1133 namespace System.ComponentModel
1134 {
1135     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1136     public partial class AddingNewEventArgs : System.EventArgs
1137     {
AddingNewEventArgs()1138         public AddingNewEventArgs() { }
AddingNewEventArgs(object newObject)1139         public AddingNewEventArgs(object newObject) { }
1140         public object NewObject { get { throw null; } set { } }
1141     }
1142     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
AddingNewEventHandler(object sender, System.ComponentModel.AddingNewEventArgs e)1143     public delegate void AddingNewEventHandler(object sender, System.ComponentModel.AddingNewEventArgs e);
1144     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1145     public sealed partial class AmbientValueAttribute : System.Attribute
1146     {
AmbientValueAttribute(bool value)1147         public AmbientValueAttribute(bool value) { }
AmbientValueAttribute(byte value)1148         public AmbientValueAttribute(byte value) { }
AmbientValueAttribute(char value)1149         public AmbientValueAttribute(char value) { }
AmbientValueAttribute(double value)1150         public AmbientValueAttribute(double value) { }
AmbientValueAttribute(short value)1151         public AmbientValueAttribute(short value) { }
AmbientValueAttribute(int value)1152         public AmbientValueAttribute(int value) { }
AmbientValueAttribute(long value)1153         public AmbientValueAttribute(long value) { }
AmbientValueAttribute(object value)1154         public AmbientValueAttribute(object value) { }
AmbientValueAttribute(float value)1155         public AmbientValueAttribute(float value) { }
AmbientValueAttribute(string value)1156         public AmbientValueAttribute(string value) { }
AmbientValueAttribute(System.Type type, string value)1157         public AmbientValueAttribute(System.Type type, string value) { }
1158         public object Value { get { throw null; } }
Equals(object obj)1159         public override bool Equals(object obj) { throw null; }
GetHashCode()1160         public override int GetHashCode() { throw null; }
1161     }
1162     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1163     public partial class ArrayConverter : System.ComponentModel.CollectionConverter
1164     {
ArrayConverter()1165         public ArrayConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)1166         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)1167         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)1168         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
1169     }
1170     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1171     public partial class AsyncCompletedEventArgs : System.EventArgs
1172     {
1173         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1174         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
AsyncCompletedEventArgs()1175         public AsyncCompletedEventArgs() { }
AsyncCompletedEventArgs(System.Exception error, bool cancelled, object userState)1176         public AsyncCompletedEventArgs(System.Exception error, bool cancelled, object userState) { }
1177         public bool Cancelled { get { throw null; } }
1178         public System.Exception Error { get { throw null; } }
1179         public object UserState { get { throw null; } }
RaiseExceptionIfNecessary()1180         protected void RaiseExceptionIfNecessary() { }
1181     }
1182     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
AsyncCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e)1183     public delegate void AsyncCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
1184     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1185     public sealed partial class AsyncOperation
1186     {
AsyncOperation()1187         internal AsyncOperation() { }
1188         public System.Threading.SynchronizationContext SynchronizationContext { get { throw null; } }
1189         public object UserSuppliedState { get { throw null; } }
~AsyncOperation()1190         ~AsyncOperation() { }
OperationCompleted()1191         public void OperationCompleted() { }
Post(System.Threading.SendOrPostCallback d, object arg)1192         public void Post(System.Threading.SendOrPostCallback d, object arg) { }
PostOperationCompleted(System.Threading.SendOrPostCallback d, object arg)1193         public void PostOperationCompleted(System.Threading.SendOrPostCallback d, object arg) { }
1194     }
1195     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1196     public static partial class AsyncOperationManager
1197     {
1198         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1199         public static System.Threading.SynchronizationContext SynchronizationContext { get { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]set { } }
CreateOperation(object userSuppliedState)1200         public static System.ComponentModel.AsyncOperation CreateOperation(object userSuppliedState) { throw null; }
1201     }
1202     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1203     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
1204     public partial class AttributeCollection : System.Collections.ICollection, System.Collections.IEnumerable
1205     {
1206         public static readonly System.ComponentModel.AttributeCollection Empty;
AttributeCollection()1207         protected AttributeCollection() { }
AttributeCollection(params System.Attribute[] attributes)1208         public AttributeCollection(params System.Attribute[] attributes) { }
1209         protected virtual System.Attribute[] Attributes { get { throw null; } }
1210         public int Count { get { throw null; } }
1211         public virtual System.Attribute this[int index] { get { throw null; } }
1212         public virtual System.Attribute this[System.Type attributeType] { get { throw null; } }
1213         int System.Collections.ICollection.Count { get { throw null; } }
1214         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1215         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Contains(System.Attribute attribute)1216         public bool Contains(System.Attribute attribute) { throw null; }
Contains(System.Attribute[] attributes)1217         public bool Contains(System.Attribute[] attributes) { throw null; }
CopyTo(System.Array array, int index)1218         public void CopyTo(System.Array array, int index) { }
FromExisting(System.ComponentModel.AttributeCollection existing, params System.Attribute[] newAttributes)1219         public static System.ComponentModel.AttributeCollection FromExisting(System.ComponentModel.AttributeCollection existing, params System.Attribute[] newAttributes) { throw null; }
GetDefaultAttribute(System.Type attributeType)1220         protected System.Attribute GetDefaultAttribute(System.Type attributeType) { throw null; }
GetEnumerator()1221         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Matches(System.Attribute attribute)1222         public bool Matches(System.Attribute attribute) { throw null; }
Matches(System.Attribute[] attributes)1223         public bool Matches(System.Attribute[] attributes) { throw null; }
System.Collections.IEnumerable.GetEnumerator()1224         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
1225     }
1226     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
1227     public partial class AttributeProviderAttribute : System.Attribute
1228     {
AttributeProviderAttribute(string typeName)1229         public AttributeProviderAttribute(string typeName) { }
AttributeProviderAttribute(string typeName, string propertyName)1230         public AttributeProviderAttribute(string typeName, string propertyName) { }
AttributeProviderAttribute(System.Type type)1231         public AttributeProviderAttribute(System.Type type) { }
1232         public string PropertyName { get { throw null; } }
1233         public string TypeName { get { throw null; } }
1234     }
1235     [System.ComponentModel.DefaultEventAttribute("DoWork")]
1236     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1237     public partial class BackgroundWorker : System.ComponentModel.Component
1238     {
BackgroundWorker()1239         public BackgroundWorker() { }
1240         [System.ComponentModel.BrowsableAttribute(false)]
1241         public bool CancellationPending { get { throw null; } }
1242         [System.ComponentModel.BrowsableAttribute(false)]
1243         public bool IsBusy { get { throw null; } }
1244         [System.ComponentModel.DefaultValueAttribute(false)]
1245         public bool WorkerReportsProgress { get { throw null; } set { } }
1246         [System.ComponentModel.DefaultValueAttribute(false)]
1247         public bool WorkerSupportsCancellation { get { throw null; } set { } }
1248         public event System.ComponentModel.DoWorkEventHandler DoWork { add { } remove { } }
1249         public event System.ComponentModel.ProgressChangedEventHandler ProgressChanged { add { } remove { } }
1250         public event System.ComponentModel.RunWorkerCompletedEventHandler RunWorkerCompleted { add { } remove { } }
CancelAsync()1251         public void CancelAsync() { }
OnDoWork(System.ComponentModel.DoWorkEventArgs e)1252         protected virtual void OnDoWork(System.ComponentModel.DoWorkEventArgs e) { }
OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs e)1253         protected virtual void OnProgressChanged(System.ComponentModel.ProgressChangedEventArgs e) { }
OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e)1254         protected virtual void OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e) { }
ReportProgress(int percentProgress)1255         public void ReportProgress(int percentProgress) { }
ReportProgress(int percentProgress, object userState)1256         public void ReportProgress(int percentProgress, object userState) { }
RunWorkerAsync()1257         public void RunWorkerAsync() { }
RunWorkerAsync(object argument)1258         public void RunWorkerAsync(object argument) { }
1259     }
1260     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1261     public abstract partial class BaseNumberConverter : System.ComponentModel.TypeConverter
1262     {
BaseNumberConverter()1263         protected BaseNumberConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1264         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type t)1265         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type t) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1266         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)1267         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
1268     }
1269     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1270     public sealed partial class BindableAttribute : System.Attribute
1271     {
1272         public static readonly System.ComponentModel.BindableAttribute Default;
1273         public static readonly System.ComponentModel.BindableAttribute No;
1274         public static readonly System.ComponentModel.BindableAttribute Yes;
BindableAttribute(bool bindable)1275         public BindableAttribute(bool bindable) { }
BindableAttribute(bool bindable, System.ComponentModel.BindingDirection direction)1276         public BindableAttribute(bool bindable, System.ComponentModel.BindingDirection direction) { }
BindableAttribute(System.ComponentModel.BindableSupport flags)1277         public BindableAttribute(System.ComponentModel.BindableSupport flags) { }
BindableAttribute(System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction)1278         public BindableAttribute(System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction) { }
1279         public bool Bindable { get { throw null; } }
1280         public System.ComponentModel.BindingDirection Direction { get { throw null; } }
Equals(object obj)1281         public override bool Equals(object obj) { throw null; }
GetHashCode()1282         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1283         public override bool IsDefaultAttribute() { throw null; }
1284     }
1285     public enum BindableSupport
1286     {
1287         Default = 2,
1288         No = 0,
1289         Yes = 1,
1290     }
1291     public enum BindingDirection
1292     {
1293         OneWay = 0,
1294         TwoWay = 1,
1295     }
1296     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1297     [System.SerializableAttribute]
1298     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
1299     {
BindingList()1300         public BindingList() { }
BindingList(System.Collections.Generic.IList<T> list)1301         public BindingList(System.Collections.Generic.IList<T> list) { }
1302         public bool AllowEdit { get { throw null; } set { } }
1303         public bool AllowNew { get { throw null; } set { } }
1304         public bool AllowRemove { get { throw null; } set { } }
1305         protected virtual bool IsSortedCore { get { throw null; } }
1306         public bool RaiseListChangedEvents { get { throw null; } set { } }
1307         protected virtual System.ComponentModel.ListSortDirection SortDirectionCore { get { throw null; } }
1308         protected virtual System.ComponentModel.PropertyDescriptor SortPropertyCore { get { throw null; } }
1309         protected virtual bool SupportsChangeNotificationCore { get { throw null; } }
1310         protected virtual bool SupportsSearchingCore { get { throw null; } }
1311         protected virtual bool SupportsSortingCore { get { throw null; } }
1312         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1313         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1314         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1315         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1316         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1317         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1318         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1319         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1320         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1321         bool System.ComponentModel.IRaiseItemChangedEvents.RaisesItemChangedEvents { get { throw null; } }
1322         public event System.ComponentModel.AddingNewEventHandler AddingNew { add { } remove { } }
1323         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
AddNew()1324         public T AddNew() { throw null; }
AddNewCore()1325         protected virtual object AddNewCore() { throw null; }
ApplySortCore(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction)1326         protected virtual void ApplySortCore(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction) { }
CancelNew(int itemIndex)1327         public virtual void CancelNew(int itemIndex) { }
ClearItems()1328         protected override void ClearItems() { }
EndNew(int itemIndex)1329         public virtual void EndNew(int itemIndex) { }
FindCore(System.ComponentModel.PropertyDescriptor prop, object key)1330         protected virtual int FindCore(System.ComponentModel.PropertyDescriptor prop, object key) { throw null; }
InsertItem(int index, T item)1331         protected override void InsertItem(int index, T item) { }
OnAddingNew(System.ComponentModel.AddingNewEventArgs e)1332         protected virtual void OnAddingNew(System.ComponentModel.AddingNewEventArgs e) { }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1333         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
RemoveItem(int index)1334         protected override void RemoveItem(int index) { }
RemoveSortCore()1335         protected virtual void RemoveSortCore() { }
ResetBindings()1336         public void ResetBindings() { }
ResetItem(int position)1337         public void ResetItem(int position) { }
SetItem(int index, T item)1338         protected override void SetItem(int index, T item) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop)1339         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop) { }
System.ComponentModel.IBindingList.AddNew()1340         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction)1341         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor prop, object key)1342         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor prop, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop)1343         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop) { }
System.ComponentModel.IBindingList.RemoveSort()1344         void System.ComponentModel.IBindingList.RemoveSort() { }
1345     }
1346     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1347     public partial class BooleanConverter : System.ComponentModel.TypeConverter
1348     {
BooleanConverter()1349         public BooleanConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1350         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1351         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)1352         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)1353         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)1354         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
1355     }
1356     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1357     public sealed partial class BrowsableAttribute : System.Attribute
1358     {
1359         public static readonly System.ComponentModel.BrowsableAttribute Default;
1360         public static readonly System.ComponentModel.BrowsableAttribute No;
1361         public static readonly System.ComponentModel.BrowsableAttribute Yes;
BrowsableAttribute(bool browsable)1362         public BrowsableAttribute(bool browsable) { }
1363         public bool Browsable { get { throw null; } }
Equals(object obj)1364         public override bool Equals(object obj) { throw null; }
GetHashCode()1365         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1366         public override bool IsDefaultAttribute() { throw null; }
1367     }
1368     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1369     public partial class ByteConverter : System.ComponentModel.BaseNumberConverter
1370     {
ByteConverter()1371         public ByteConverter() { }
1372     }
1373     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1374     public partial class CancelEventArgs : System.EventArgs
1375     {
CancelEventArgs()1376         public CancelEventArgs() { }
CancelEventArgs(bool cancel)1377         public CancelEventArgs(bool cancel) { }
1378         public bool Cancel { get { throw null; } set { } }
1379     }
1380     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
CancelEventHandler(object sender, System.ComponentModel.CancelEventArgs e)1381     public delegate void CancelEventHandler(object sender, System.ComponentModel.CancelEventArgs e);
1382     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1383     public partial class CategoryAttribute : System.Attribute
1384     {
CategoryAttribute()1385         public CategoryAttribute() { }
CategoryAttribute(string category)1386         public CategoryAttribute(string category) { }
1387         public static System.ComponentModel.CategoryAttribute Action { get { throw null; } }
1388         public static System.ComponentModel.CategoryAttribute Appearance { get { throw null; } }
1389         public static System.ComponentModel.CategoryAttribute Asynchronous { get { throw null; } }
1390         public static System.ComponentModel.CategoryAttribute Behavior { get { throw null; } }
1391         public string Category { get { throw null; } }
1392         public static System.ComponentModel.CategoryAttribute Data { get { throw null; } }
1393         public static System.ComponentModel.CategoryAttribute Default { get { throw null; } }
1394         public static System.ComponentModel.CategoryAttribute Design { get { throw null; } }
1395         public static System.ComponentModel.CategoryAttribute DragDrop { get { throw null; } }
1396         public static System.ComponentModel.CategoryAttribute Focus { get { throw null; } }
1397         public static System.ComponentModel.CategoryAttribute Format { get { throw null; } }
1398         public static System.ComponentModel.CategoryAttribute Key { get { throw null; } }
1399         public static System.ComponentModel.CategoryAttribute Layout { get { throw null; } }
1400         public static System.ComponentModel.CategoryAttribute Mouse { get { throw null; } }
1401         public static System.ComponentModel.CategoryAttribute WindowStyle { get { throw null; } }
Equals(object obj)1402         public override bool Equals(object obj) { throw null; }
GetHashCode()1403         public override int GetHashCode() { throw null; }
GetLocalizedString(string value)1404         protected virtual string GetLocalizedString(string value) { throw null; }
IsDefaultAttribute()1405         public override bool IsDefaultAttribute() { throw null; }
1406     }
1407     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1408     public partial class CharConverter : System.ComponentModel.TypeConverter
1409     {
CharConverter()1410         public CharConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1411         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1412         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)1413         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
1414     }
1415     public enum CollectionChangeAction
1416     {
1417         Add = 1,
1418         Refresh = 3,
1419         Remove = 2,
1420     }
1421     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1422     public partial class CollectionChangeEventArgs : System.EventArgs
1423     {
CollectionChangeEventArgs(System.ComponentModel.CollectionChangeAction action, object element)1424         public CollectionChangeEventArgs(System.ComponentModel.CollectionChangeAction action, object element) { }
1425         public virtual System.ComponentModel.CollectionChangeAction Action { get { throw null; } }
1426         public virtual object Element { get { throw null; } }
1427     }
1428     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
CollectionChangeEventHandler(object sender, System.ComponentModel.CollectionChangeEventArgs e)1429     public delegate void CollectionChangeEventHandler(object sender, System.ComponentModel.CollectionChangeEventArgs e);
1430     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1431     public partial class CollectionConverter : System.ComponentModel.TypeConverter
1432     {
CollectionConverter()1433         public CollectionConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)1434         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)1435         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)1436         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
1437     }
1438     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
1439     public sealed partial class ComplexBindingPropertiesAttribute : System.Attribute
1440     {
1441         public static readonly System.ComponentModel.ComplexBindingPropertiesAttribute Default;
ComplexBindingPropertiesAttribute()1442         public ComplexBindingPropertiesAttribute() { }
ComplexBindingPropertiesAttribute(string dataSource)1443         public ComplexBindingPropertiesAttribute(string dataSource) { }
ComplexBindingPropertiesAttribute(string dataSource, string dataMember)1444         public ComplexBindingPropertiesAttribute(string dataSource, string dataMember) { }
1445         public string DataMember { get { throw null; } }
1446         public string DataSource { get { throw null; } }
Equals(object obj)1447         public override bool Equals(object obj) { throw null; }
GetHashCode()1448         public override int GetHashCode() { throw null; }
1449     }
1450     [System.ComponentModel.DesignerCategoryAttribute("Component")]
1451     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(1))]
1452     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1453     public partial class Component : System.MarshalByRefObject, System.ComponentModel.IComponent, System.IDisposable
1454     {
Component()1455         public Component() { }
1456         protected virtual bool CanRaiseEvents { get { throw null; } }
1457         [System.ComponentModel.BrowsableAttribute(false)]
1458         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1459         public System.ComponentModel.IContainer Container { get { throw null; } }
1460         [System.ComponentModel.BrowsableAttribute(false)]
1461         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1462         protected bool DesignMode { get { throw null; } }
1463         protected System.ComponentModel.EventHandlerList Events { get { throw null; } }
1464         [System.ComponentModel.BrowsableAttribute(false)]
1465         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1466         public virtual System.ComponentModel.ISite Site { get { throw null; } set { } }
1467         [System.ComponentModel.BrowsableAttribute(false)]
1468         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1469         public event System.EventHandler Disposed { add { } remove { } }
Dispose()1470         public void Dispose() { }
Dispose(bool disposing)1471         protected virtual void Dispose(bool disposing) { }
~Component()1472         ~Component() { }
GetService(System.Type service)1473         protected virtual object GetService(System.Type service) { throw null; }
ToString()1474         public override string ToString() { throw null; }
1475     }
1476     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1477     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
1478     public partial class ComponentCollection : System.Collections.ReadOnlyCollectionBase
1479     {
ComponentCollection(System.ComponentModel.IComponent[] components)1480         public ComponentCollection(System.ComponentModel.IComponent[] components) { }
1481         public virtual System.ComponentModel.IComponent this[int index] { get { throw null; } }
1482         public virtual System.ComponentModel.IComponent this[string name] { get { throw null; } }
CopyTo(System.ComponentModel.IComponent[] array, int index)1483         public void CopyTo(System.ComponentModel.IComponent[] array, int index) { }
1484     }
1485     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1486     public partial class ComponentConverter : System.ComponentModel.ReferenceConverter
1487     {
ComponentConverter(System.Type type)1488         public ComponentConverter(System.Type type) : base (default(System.Type)) { }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)1489         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)1490         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
1491     }
1492     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1493     public abstract partial class ComponentEditor
1494     {
ComponentEditor()1495         protected ComponentEditor() { }
EditComponent(System.ComponentModel.ITypeDescriptorContext context, object component)1496         public abstract bool EditComponent(System.ComponentModel.ITypeDescriptorContext context, object component);
EditComponent(object component)1497         public bool EditComponent(object component) { throw null; }
1498     }
1499     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1500     public partial class ComponentResourceManager : System.Resources.ResourceManager
1501     {
ComponentResourceManager()1502         public ComponentResourceManager() { }
ComponentResourceManager(System.Type t)1503         public ComponentResourceManager(System.Type t) { }
ApplyResources(object value, string objectName)1504         public void ApplyResources(object value, string objectName) { }
ApplyResources(object value, string objectName, System.Globalization.CultureInfo culture)1505         public virtual void ApplyResources(object value, string objectName, System.Globalization.CultureInfo culture) { }
1506     }
1507     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1508     public partial class Container : System.ComponentModel.IContainer, System.IDisposable
1509     {
Container()1510         public Container() { }
1511         public virtual System.ComponentModel.ComponentCollection Components { get { throw null; } }
Add(System.ComponentModel.IComponent component)1512         public virtual void Add(System.ComponentModel.IComponent component) { }
Add(System.ComponentModel.IComponent component, string name)1513         public virtual void Add(System.ComponentModel.IComponent component, string name) { }
CreateSite(System.ComponentModel.IComponent component, string name)1514         protected virtual System.ComponentModel.ISite CreateSite(System.ComponentModel.IComponent component, string name) { throw null; }
Dispose()1515         public void Dispose() { }
Dispose(bool disposing)1516         protected virtual void Dispose(bool disposing) { }
~Container()1517         ~Container() { }
GetService(System.Type service)1518         protected virtual object GetService(System.Type service) { throw null; }
Remove(System.ComponentModel.IComponent component)1519         public virtual void Remove(System.ComponentModel.IComponent component) { }
RemoveWithoutUnsiting(System.ComponentModel.IComponent component)1520         protected void RemoveWithoutUnsiting(System.ComponentModel.IComponent component) { }
ValidateName(System.ComponentModel.IComponent component, string name)1521         protected virtual void ValidateName(System.ComponentModel.IComponent component, string name) { }
1522     }
1523     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1524     public abstract partial class ContainerFilterService
1525     {
ContainerFilterService()1526         protected ContainerFilterService() { }
FilterComponents(System.ComponentModel.ComponentCollection components)1527         public virtual System.ComponentModel.ComponentCollection FilterComponents(System.ComponentModel.ComponentCollection components) { throw null; }
1528     }
1529     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1530     public partial class CultureInfoConverter : System.ComponentModel.TypeConverter
1531     {
CultureInfoConverter()1532         public CultureInfoConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1533         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)1534         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1535         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)1536         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetCultureName(System.Globalization.CultureInfo culture)1537         protected virtual string GetCultureName(System.Globalization.CultureInfo culture) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)1538         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)1539         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)1540         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
1541     }
1542     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1543     public abstract partial class CustomTypeDescriptor : System.ComponentModel.ICustomTypeDescriptor
1544     {
CustomTypeDescriptor()1545         protected CustomTypeDescriptor() { }
CustomTypeDescriptor(System.ComponentModel.ICustomTypeDescriptor parent)1546         protected CustomTypeDescriptor(System.ComponentModel.ICustomTypeDescriptor parent) { }
GetAttributes()1547         public virtual System.ComponentModel.AttributeCollection GetAttributes() { throw null; }
GetClassName()1548         public virtual string GetClassName() { throw null; }
GetComponentName()1549         public virtual string GetComponentName() { throw null; }
GetConverter()1550         public virtual System.ComponentModel.TypeConverter GetConverter() { throw null; }
GetDefaultEvent()1551         public virtual System.ComponentModel.EventDescriptor GetDefaultEvent() { throw null; }
GetDefaultProperty()1552         public virtual System.ComponentModel.PropertyDescriptor GetDefaultProperty() { throw null; }
GetEditor(System.Type editorBaseType)1553         public virtual object GetEditor(System.Type editorBaseType) { throw null; }
GetEvents()1554         public virtual System.ComponentModel.EventDescriptorCollection GetEvents() { throw null; }
GetEvents(System.Attribute[] attributes)1555         public virtual System.ComponentModel.EventDescriptorCollection GetEvents(System.Attribute[] attributes) { throw null; }
GetProperties()1556         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties() { throw null; }
GetProperties(System.Attribute[] attributes)1557         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Attribute[] attributes) { throw null; }
GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)1558         public virtual object GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
1559     }
1560     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1561     public partial class DataErrorsChangedEventArgs : System.EventArgs
1562     {
DataErrorsChangedEventArgs(string propertyName)1563         public DataErrorsChangedEventArgs(string propertyName) { }
1564         public virtual string PropertyName { get { throw null; } }
1565     }
1566     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
1567     public sealed partial class DataObjectAttribute : System.Attribute
1568     {
1569         public static readonly System.ComponentModel.DataObjectAttribute DataObject;
1570         public static readonly System.ComponentModel.DataObjectAttribute Default;
1571         public static readonly System.ComponentModel.DataObjectAttribute NonDataObject;
DataObjectAttribute()1572         public DataObjectAttribute() { }
DataObjectAttribute(bool isDataObject)1573         public DataObjectAttribute(bool isDataObject) { }
1574         public bool IsDataObject { get { throw null; } }
Equals(object obj)1575         public override bool Equals(object obj) { throw null; }
GetHashCode()1576         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1577         public override bool IsDefaultAttribute() { throw null; }
1578     }
1579     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
1580     public sealed partial class DataObjectFieldAttribute : System.Attribute
1581     {
DataObjectFieldAttribute(bool primaryKey)1582         public DataObjectFieldAttribute(bool primaryKey) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity)1583         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable)1584         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable) { }
DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length)1585         public DataObjectFieldAttribute(bool primaryKey, bool isIdentity, bool isNullable, int length) { }
1586         public bool IsIdentity { get { throw null; } }
1587         public bool IsNullable { get { throw null; } }
1588         public int Length { get { throw null; } }
1589         public bool PrimaryKey { get { throw null; } }
Equals(object obj)1590         public override bool Equals(object obj) { throw null; }
GetHashCode()1591         public override int GetHashCode() { throw null; }
1592     }
1593     [System.AttributeUsageAttribute((System.AttributeTargets)(64))]
1594     public sealed partial class DataObjectMethodAttribute : System.Attribute
1595     {
DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType)1596         public DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType) { }
DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType, bool isDefault)1597         public DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType methodType, bool isDefault) { }
1598         public bool IsDefault { get { throw null; } }
1599         public System.ComponentModel.DataObjectMethodType MethodType { get { throw null; } }
Equals(object obj)1600         public override bool Equals(object obj) { throw null; }
GetHashCode()1601         public override int GetHashCode() { throw null; }
Match(object obj)1602         public override bool Match(object obj) { throw null; }
1603     }
1604     public enum DataObjectMethodType
1605     {
1606         Delete = 4,
1607         Fill = 0,
1608         Insert = 3,
1609         Select = 1,
1610         Update = 2,
1611     }
1612     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1613     public partial class DateTimeConverter : System.ComponentModel.TypeConverter
1614     {
DateTimeConverter()1615         public DateTimeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1616         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)1617         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1618         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)1619         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
1620     }
1621     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1622     public partial class DateTimeOffsetConverter : System.ComponentModel.TypeConverter
1623     {
DateTimeOffsetConverter()1624         public DateTimeOffsetConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1625         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)1626         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1627         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)1628         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
1629     }
1630     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1631     public partial class DecimalConverter : System.ComponentModel.BaseNumberConverter
1632     {
DecimalConverter()1633         public DecimalConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)1634         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)1635         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
1636     }
1637     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
1638     public sealed partial class DefaultBindingPropertyAttribute : System.Attribute
1639     {
1640         public static readonly System.ComponentModel.DefaultBindingPropertyAttribute Default;
DefaultBindingPropertyAttribute()1641         public DefaultBindingPropertyAttribute() { }
DefaultBindingPropertyAttribute(string name)1642         public DefaultBindingPropertyAttribute(string name) { }
1643         public string Name { get { throw null; } }
Equals(object obj)1644         public override bool Equals(object obj) { throw null; }
GetHashCode()1645         public override int GetHashCode() { throw null; }
1646     }
1647     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
1648     public sealed partial class DefaultEventAttribute : System.Attribute
1649     {
1650         public static readonly System.ComponentModel.DefaultEventAttribute Default;
DefaultEventAttribute(string name)1651         public DefaultEventAttribute(string name) { }
1652         public string Name { get { throw null; } }
Equals(object obj)1653         public override bool Equals(object obj) { throw null; }
GetHashCode()1654         public override int GetHashCode() { throw null; }
1655     }
1656     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
1657     public sealed partial class DefaultPropertyAttribute : System.Attribute
1658     {
1659         public static readonly System.ComponentModel.DefaultPropertyAttribute Default;
DefaultPropertyAttribute(string name)1660         public DefaultPropertyAttribute(string name) { }
1661         public string Name { get { throw null; } }
Equals(object obj)1662         public override bool Equals(object obj) { throw null; }
GetHashCode()1663         public override int GetHashCode() { throw null; }
1664     }
1665     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1666     public partial class DefaultValueAttribute : System.Attribute
1667     {
DefaultValueAttribute(bool value)1668         public DefaultValueAttribute(bool value) { }
DefaultValueAttribute(byte value)1669         public DefaultValueAttribute(byte value) { }
DefaultValueAttribute(char value)1670         public DefaultValueAttribute(char value) { }
DefaultValueAttribute(double value)1671         public DefaultValueAttribute(double value) { }
DefaultValueAttribute(short value)1672         public DefaultValueAttribute(short value) { }
DefaultValueAttribute(int value)1673         public DefaultValueAttribute(int value) { }
DefaultValueAttribute(long value)1674         public DefaultValueAttribute(long value) { }
DefaultValueAttribute(object value)1675         public DefaultValueAttribute(object value) { }
DefaultValueAttribute(float value)1676         public DefaultValueAttribute(float value) { }
DefaultValueAttribute(string value)1677         public DefaultValueAttribute(string value) { }
DefaultValueAttribute(System.Type type, string value)1678         public DefaultValueAttribute(System.Type type, string value) { }
1679         public virtual object Value { get { throw null; } }
Equals(object obj)1680         public override bool Equals(object obj) { throw null; }
GetHashCode()1681         public override int GetHashCode() { throw null; }
SetValue(object value)1682         protected void SetValue(object value) { }
1683     }
1684     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1685     public partial class DescriptionAttribute : System.Attribute
1686     {
1687         public static readonly System.ComponentModel.DescriptionAttribute Default;
DescriptionAttribute()1688         public DescriptionAttribute() { }
DescriptionAttribute(string description)1689         public DescriptionAttribute(string description) { }
1690         public virtual string Description { get { throw null; } }
1691         protected string DescriptionValue { get { throw null; } set { } }
Equals(object obj)1692         public override bool Equals(object obj) { throw null; }
GetHashCode()1693         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1694         public override bool IsDefaultAttribute() { throw null; }
1695     }
1696     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
1697     public sealed partial class DesignerAttribute : System.Attribute
1698     {
DesignerAttribute(string designerTypeName)1699         public DesignerAttribute(string designerTypeName) { }
DesignerAttribute(string designerTypeName, string designerBaseTypeName)1700         public DesignerAttribute(string designerTypeName, string designerBaseTypeName) { }
DesignerAttribute(string designerTypeName, System.Type designerBaseType)1701         public DesignerAttribute(string designerTypeName, System.Type designerBaseType) { }
DesignerAttribute(System.Type designerType)1702         public DesignerAttribute(System.Type designerType) { }
DesignerAttribute(System.Type designerType, System.Type designerBaseType)1703         public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { }
1704         public string DesignerBaseTypeName { get { throw null; } }
1705         public string DesignerTypeName { get { throw null; } }
1706         public override object TypeId { get { throw null; } }
Equals(object obj)1707         public override bool Equals(object obj) { throw null; }
GetHashCode()1708         public override int GetHashCode() { throw null; }
1709     }
1710     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=true)]
1711     public sealed partial class DesignerCategoryAttribute : System.Attribute
1712     {
1713         public static readonly System.ComponentModel.DesignerCategoryAttribute Component;
1714         public static readonly System.ComponentModel.DesignerCategoryAttribute Default;
1715         public static readonly System.ComponentModel.DesignerCategoryAttribute Form;
1716         public static readonly System.ComponentModel.DesignerCategoryAttribute Generic;
DesignerCategoryAttribute()1717         public DesignerCategoryAttribute() { }
DesignerCategoryAttribute(string category)1718         public DesignerCategoryAttribute(string category) { }
1719         public string Category { get { throw null; } }
1720         public override object TypeId { get { throw null; } }
Equals(object obj)1721         public override bool Equals(object obj) { throw null; }
GetHashCode()1722         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1723         public override bool IsDefaultAttribute() { throw null; }
1724     }
1725     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1726     public enum DesignerSerializationVisibility
1727     {
1728         Content = 2,
1729         Hidden = 0,
1730         Visible = 1,
1731     }
1732     [System.AttributeUsageAttribute((System.AttributeTargets)(960))]
1733     public sealed partial class DesignerSerializationVisibilityAttribute : System.Attribute
1734     {
1735         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Content;
1736         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Default;
1737         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Hidden;
1738         public static readonly System.ComponentModel.DesignerSerializationVisibilityAttribute Visible;
DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility visibility)1739         public DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility visibility) { }
1740         public System.ComponentModel.DesignerSerializationVisibility Visibility { get { throw null; } }
Equals(object obj)1741         public override bool Equals(object obj) { throw null; }
GetHashCode()1742         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1743         public override bool IsDefaultAttribute() { throw null; }
1744     }
1745     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1746     public sealed partial class DesignOnlyAttribute : System.Attribute
1747     {
1748         public static readonly System.ComponentModel.DesignOnlyAttribute Default;
1749         public static readonly System.ComponentModel.DesignOnlyAttribute No;
1750         public static readonly System.ComponentModel.DesignOnlyAttribute Yes;
DesignOnlyAttribute(bool isDesignOnly)1751         public DesignOnlyAttribute(bool isDesignOnly) { }
1752         public bool IsDesignOnly { get { throw null; } }
Equals(object obj)1753         public override bool Equals(object obj) { throw null; }
GetHashCode()1754         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1755         public override bool IsDefaultAttribute() { throw null; }
1756     }
1757     [System.AttributeUsageAttribute((System.AttributeTargets)(1028))]
1758     public sealed partial class DesignTimeVisibleAttribute : System.Attribute
1759     {
1760         public static readonly System.ComponentModel.DesignTimeVisibleAttribute Default;
1761         public static readonly System.ComponentModel.DesignTimeVisibleAttribute No;
1762         public static readonly System.ComponentModel.DesignTimeVisibleAttribute Yes;
DesignTimeVisibleAttribute()1763         public DesignTimeVisibleAttribute() { }
DesignTimeVisibleAttribute(bool visible)1764         public DesignTimeVisibleAttribute(bool visible) { }
1765         public bool Visible { get { throw null; } }
Equals(object obj)1766         public override bool Equals(object obj) { throw null; }
GetHashCode()1767         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1768         public override bool IsDefaultAttribute() { throw null; }
1769     }
1770     [System.AttributeUsageAttribute((System.AttributeTargets)(708))]
1771     public partial class DisplayNameAttribute : System.Attribute
1772     {
1773         public static readonly System.ComponentModel.DisplayNameAttribute Default;
DisplayNameAttribute()1774         public DisplayNameAttribute() { }
DisplayNameAttribute(string displayName)1775         public DisplayNameAttribute(string displayName) { }
1776         public virtual string DisplayName { get { throw null; } }
1777         protected string DisplayNameValue { get { throw null; } set { } }
Equals(object obj)1778         public override bool Equals(object obj) { throw null; }
GetHashCode()1779         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1780         public override bool IsDefaultAttribute() { throw null; }
1781     }
1782     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1783     public partial class DoubleConverter : System.ComponentModel.BaseNumberConverter
1784     {
DoubleConverter()1785         public DoubleConverter() { }
1786     }
1787     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1788     public partial class DoWorkEventArgs : System.ComponentModel.CancelEventArgs
1789     {
DoWorkEventArgs(object argument)1790         public DoWorkEventArgs(object argument) { }
1791         public object Argument { get { throw null; } }
1792         public object Result { get { throw null; } set { } }
1793     }
1794     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DoWorkEventHandler(object sender, System.ComponentModel.DoWorkEventArgs e)1795     public delegate void DoWorkEventHandler(object sender, System.ComponentModel.DoWorkEventArgs e);
1796     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true, Inherited=true)]
1797     public sealed partial class EditorAttribute : System.Attribute
1798     {
EditorAttribute()1799         public EditorAttribute() { }
EditorAttribute(string typeName, string baseTypeName)1800         public EditorAttribute(string typeName, string baseTypeName) { }
EditorAttribute(string typeName, System.Type baseType)1801         public EditorAttribute(string typeName, System.Type baseType) { }
EditorAttribute(System.Type type, System.Type baseType)1802         public EditorAttribute(System.Type type, System.Type baseType) { }
1803         public string EditorBaseTypeName { get { throw null; } }
1804         public string EditorTypeName { get { throw null; } }
1805         public override object TypeId { get { throw null; } }
Equals(object obj)1806         public override bool Equals(object obj) { throw null; }
GetHashCode()1807         public override int GetHashCode() { throw null; }
1808     }
1809     [System.AttributeUsageAttribute((System.AttributeTargets)(6140))]
1810     public sealed partial class EditorBrowsableAttribute : System.Attribute
1811     {
EditorBrowsableAttribute()1812         public EditorBrowsableAttribute() { }
EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState state)1813         public EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState state) { }
1814         public System.ComponentModel.EditorBrowsableState State { get { throw null; } }
Equals(object obj)1815         public override bool Equals(object obj) { throw null; }
GetHashCode()1816         public override int GetHashCode() { throw null; }
1817     }
1818     public enum EditorBrowsableState
1819     {
1820         Advanced = 2,
1821         Always = 0,
1822         Never = 1,
1823     }
1824     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1825     public partial class EnumConverter : System.ComponentModel.TypeConverter
1826     {
EnumConverter(System.Type type)1827         public EnumConverter(System.Type type) { }
1828         protected virtual System.Collections.IComparer Comparer { get { throw null; } }
1829         protected System.Type EnumType { get { throw null; } }
1830         protected System.ComponentModel.TypeConverter.StandardValuesCollection Values { get { throw null; } set { } }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1831         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)1832         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1833         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)1834         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)1835         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)1836         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)1837         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)1838         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
1839     }
1840     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1841     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1842     public abstract partial class EventDescriptor : System.ComponentModel.MemberDescriptor
1843     {
EventDescriptor(System.ComponentModel.MemberDescriptor descr)1844         protected EventDescriptor(System.ComponentModel.MemberDescriptor descr) : base (default(string)) { }
EventDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs)1845         protected EventDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs) : base (default(string)) { }
EventDescriptor(string name, System.Attribute[] attrs)1846         protected EventDescriptor(string name, System.Attribute[] attrs) : base (default(string)) { }
1847         public abstract System.Type ComponentType { get; }
1848         public abstract System.Type EventType { get; }
1849         public abstract bool IsMulticast { get; }
AddEventHandler(object component, System.Delegate value)1850         public abstract void AddEventHandler(object component, System.Delegate value);
RemoveEventHandler(object component, System.Delegate value)1851         public abstract void RemoveEventHandler(object component, System.Delegate value);
1852     }
1853     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1854     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
1855     public partial class EventDescriptorCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1856     {
1857         public static readonly System.ComponentModel.EventDescriptorCollection Empty;
EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events)1858         public EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events) { }
EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events, bool readOnly)1859         public EventDescriptorCollection(System.ComponentModel.EventDescriptor[] events, bool readOnly) { }
1860         public int Count { get { throw null; } }
1861         public virtual System.ComponentModel.EventDescriptor this[int index] { get { throw null; } }
1862         public virtual System.ComponentModel.EventDescriptor this[string name] { get { throw null; } }
1863         int System.Collections.ICollection.Count { get { throw null; } }
1864         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1865         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1866         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1867         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1868         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.EventDescriptor value)1869         public int Add(System.ComponentModel.EventDescriptor value) { throw null; }
Clear()1870         public void Clear() { }
Contains(System.ComponentModel.EventDescriptor value)1871         public bool Contains(System.ComponentModel.EventDescriptor value) { throw null; }
Find(string name, bool ignoreCase)1872         public virtual System.ComponentModel.EventDescriptor Find(string name, bool ignoreCase) { throw null; }
GetEnumerator()1873         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.EventDescriptor value)1874         public int IndexOf(System.ComponentModel.EventDescriptor value) { throw null; }
Insert(int index, System.ComponentModel.EventDescriptor value)1875         public void Insert(int index, System.ComponentModel.EventDescriptor value) { }
InternalSort(System.Collections.IComparer sorter)1876         protected void InternalSort(System.Collections.IComparer sorter) { }
InternalSort(string[] names)1877         protected void InternalSort(string[] names) { }
Remove(System.ComponentModel.EventDescriptor value)1878         public void Remove(System.ComponentModel.EventDescriptor value) { }
RemoveAt(int index)1879         public void RemoveAt(int index) { }
Sort()1880         public virtual System.ComponentModel.EventDescriptorCollection Sort() { throw null; }
Sort(System.Collections.IComparer comparer)1881         public virtual System.ComponentModel.EventDescriptorCollection Sort(System.Collections.IComparer comparer) { throw null; }
Sort(string[] names)1882         public virtual System.ComponentModel.EventDescriptorCollection Sort(string[] names) { throw null; }
Sort(string[] names, System.Collections.IComparer comparer)1883         public virtual System.ComponentModel.EventDescriptorCollection Sort(string[] names, System.Collections.IComparer comparer) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1884         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1885         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1886         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1887         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1888         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1889         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1890         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1891         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1892         void System.Collections.IList.RemoveAt(int index) { }
1893     }
1894     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1895     public sealed partial class EventHandlerList : System.IDisposable
1896     {
EventHandlerList()1897         public EventHandlerList() { }
1898         public System.Delegate this[object key] { get { throw null; } set { } }
AddHandler(object key, System.Delegate value)1899         public void AddHandler(object key, System.Delegate value) { }
AddHandlers(System.ComponentModel.EventHandlerList listToAddFrom)1900         public void AddHandlers(System.ComponentModel.EventHandlerList listToAddFrom) { }
Dispose()1901         public void Dispose() { }
RemoveHandler(object key, System.Delegate value)1902         public void RemoveHandler(object key, System.Delegate value) { }
1903     }
1904     public partial class ExpandableObjectConverter : System.ComponentModel.TypeConverter
1905     {
ExpandableObjectConverter()1906         public ExpandableObjectConverter() { }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)1907         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)1908         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
1909     }
1910     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1911     public sealed partial class ExtenderProvidedPropertyAttribute : System.Attribute
1912     {
ExtenderProvidedPropertyAttribute()1913         public ExtenderProvidedPropertyAttribute() { }
1914         public System.ComponentModel.PropertyDescriptor ExtenderProperty { get { throw null; } }
1915         public System.ComponentModel.IExtenderProvider Provider { get { throw null; } }
1916         public System.Type ReceiverType { get { throw null; } }
Equals(object obj)1917         public override bool Equals(object obj) { throw null; }
GetHashCode()1918         public override int GetHashCode() { throw null; }
IsDefaultAttribute()1919         public override bool IsDefaultAttribute() { throw null; }
1920     }
1921     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1922     public partial class GuidConverter : System.ComponentModel.TypeConverter
1923     {
GuidConverter()1924         public GuidConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)1925         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)1926         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)1927         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)1928         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
1929     }
1930     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
1931     public partial class HandledEventArgs : System.EventArgs
1932     {
HandledEventArgs()1933         public HandledEventArgs() { }
HandledEventArgs(bool defaultHandledValue)1934         public HandledEventArgs(bool defaultHandledValue) { }
1935         public bool Handled { get { throw null; } set { } }
1936     }
1937     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
HandledEventHandler(object sender, System.ComponentModel.HandledEventArgs e)1938     public delegate void HandledEventHandler(object sender, System.ComponentModel.HandledEventArgs e);
1939     public partial interface IBindingList : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1940     {
1941         bool AllowEdit { get; }
1942         bool AllowNew { get; }
1943         bool AllowRemove { get; }
1944         bool IsSorted { get; }
1945         System.ComponentModel.ListSortDirection SortDirection { get; }
1946         System.ComponentModel.PropertyDescriptor SortProperty { get; }
1947         bool SupportsChangeNotification { get; }
1948         bool SupportsSearching { get; }
1949         bool SupportsSorting { get; }
1950         event System.ComponentModel.ListChangedEventHandler ListChanged;
AddIndex(System.ComponentModel.PropertyDescriptor property)1951         void AddIndex(System.ComponentModel.PropertyDescriptor property);
AddNew()1952         object AddNew();
ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1953         void ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction);
Find(System.ComponentModel.PropertyDescriptor property, object key)1954         int Find(System.ComponentModel.PropertyDescriptor property, object key);
RemoveIndex(System.ComponentModel.PropertyDescriptor property)1955         void RemoveIndex(System.ComponentModel.PropertyDescriptor property);
RemoveSort()1956         void RemoveSort();
1957     }
1958     public partial interface IBindingListView : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList
1959     {
1960         string Filter { get; set; }
1961         System.ComponentModel.ListSortDescriptionCollection SortDescriptions { get; }
1962         bool SupportsAdvancedSorting { get; }
1963         bool SupportsFiltering { get; }
ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts)1964         void ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts);
RemoveFilter()1965         void RemoveFilter();
1966     }
1967     public partial interface ICancelAddNew
1968     {
CancelNew(int itemIndex)1969         void CancelNew(int itemIndex);
EndNew(int itemIndex)1970         void EndNew(int itemIndex);
1971     }
1972     public partial interface IChangeTracking
1973     {
1974         bool IsChanged { get; }
AcceptChanges()1975         void AcceptChanges();
1976     }
1977     [System.ObsoleteAttribute("This interface has been deprecated. Add a TypeDescriptionProvider to handle type TypeDescriptor.ComObjectType instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
1978     public partial interface IComNativeDescriptorHandler
1979     {
GetAttributes(object component)1980         System.ComponentModel.AttributeCollection GetAttributes(object component);
GetClassName(object component)1981         string GetClassName(object component);
GetConverter(object component)1982         System.ComponentModel.TypeConverter GetConverter(object component);
GetDefaultEvent(object component)1983         System.ComponentModel.EventDescriptor GetDefaultEvent(object component);
GetDefaultProperty(object component)1984         System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component);
GetEditor(object component, System.Type baseEditorType)1985         object GetEditor(object component, System.Type baseEditorType);
GetEvents(object component)1986         System.ComponentModel.EventDescriptorCollection GetEvents(object component);
GetEvents(object component, System.Attribute[] attributes)1987         System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes);
GetName(object component)1988         string GetName(object component);
GetProperties(object component, System.Attribute[] attributes)1989         System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes);
GetPropertyValue(object component, int dispid, ref bool success)1990         object GetPropertyValue(object component, int dispid, ref bool success);
GetPropertyValue(object component, string propertyName, ref bool success)1991         object GetPropertyValue(object component, string propertyName, ref bool success);
1992     }
1993     [System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute("System.ComponentModel.Design.Serialization.RootCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", true)]
1994     [System.ComponentModel.DesignerAttribute("System.ComponentModel.Design.ComponentDesigner, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IDesigner))]
1995     [System.ComponentModel.DesignerAttribute("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
1996     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ComponentConverter))]
1997     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
1998     public partial interface IComponent : System.IDisposable
1999     {
2000         System.ComponentModel.ISite Site { get; set; }
2001         event System.EventHandler Disposed;
2002     }
2003     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2004     public partial interface IContainer : System.IDisposable
2005     {
2006         System.ComponentModel.ComponentCollection Components { get; }
Add(System.ComponentModel.IComponent component)2007         void Add(System.ComponentModel.IComponent component);
Add(System.ComponentModel.IComponent component, string name)2008         void Add(System.ComponentModel.IComponent component, string name);
Remove(System.ComponentModel.IComponent component)2009         void Remove(System.ComponentModel.IComponent component);
2010     }
2011     public partial interface ICustomTypeDescriptor
2012     {
GetAttributes()2013         System.ComponentModel.AttributeCollection GetAttributes();
GetClassName()2014         string GetClassName();
GetComponentName()2015         string GetComponentName();
GetConverter()2016         System.ComponentModel.TypeConverter GetConverter();
GetDefaultEvent()2017         System.ComponentModel.EventDescriptor GetDefaultEvent();
GetDefaultProperty()2018         System.ComponentModel.PropertyDescriptor GetDefaultProperty();
GetEditor(System.Type editorBaseType)2019         object GetEditor(System.Type editorBaseType);
GetEvents()2020         System.ComponentModel.EventDescriptorCollection GetEvents();
GetEvents(System.Attribute[] attributes)2021         System.ComponentModel.EventDescriptorCollection GetEvents(System.Attribute[] attributes);
GetProperties()2022         System.ComponentModel.PropertyDescriptorCollection GetProperties();
GetProperties(System.Attribute[] attributes)2023         System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Attribute[] attributes);
GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2024         object GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd);
2025     }
2026     public partial interface IDataErrorInfo
2027     {
2028         string Error { get; }
2029         string this[string columnName] { get; }
2030     }
2031     public partial interface IEditableObject
2032     {
BeginEdit()2033         void BeginEdit();
CancelEdit()2034         void CancelEdit();
EndEdit()2035         void EndEdit();
2036     }
2037     public partial interface IExtenderProvider
2038     {
CanExtend(object extendee)2039         bool CanExtend(object extendee);
2040     }
2041     public partial interface IIntellisenseBuilder
2042     {
2043         string Name { get; }
Show(string language, string value, ref string newValue)2044         bool Show(string language, string value, ref string newValue);
2045     }
2046     [System.ComponentModel.EditorAttribute("System.Windows.Forms.Design.DataSourceListEditor, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2047     [System.ComponentModel.MergablePropertyAttribute(false)]
2048     [System.ComponentModel.TypeConverterAttribute("System.Windows.Forms.Design.DataSourceConverter, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2049     public partial interface IListSource
2050     {
2051         bool ContainsListCollection { get; }
GetList()2052         System.Collections.IList GetList();
2053     }
2054     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2055     public sealed partial class ImmutableObjectAttribute : System.Attribute
2056     {
2057         public static readonly System.ComponentModel.ImmutableObjectAttribute Default;
2058         public static readonly System.ComponentModel.ImmutableObjectAttribute No;
2059         public static readonly System.ComponentModel.ImmutableObjectAttribute Yes;
ImmutableObjectAttribute(bool immutable)2060         public ImmutableObjectAttribute(bool immutable) { }
2061         public bool Immutable { get { throw null; } }
Equals(object obj)2062         public override bool Equals(object obj) { throw null; }
GetHashCode()2063         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2064         public override bool IsDefaultAttribute() { throw null; }
2065     }
2066     public partial interface INestedContainer : System.ComponentModel.IContainer, System.IDisposable
2067     {
2068         System.ComponentModel.IComponent Owner { get; }
2069     }
2070     public partial interface INestedSite : System.ComponentModel.ISite, System.IServiceProvider
2071     {
2072         string FullName { get; }
2073     }
2074     [System.AttributeUsageAttribute((System.AttributeTargets)(896))]
2075     public sealed partial class InheritanceAttribute : System.Attribute
2076     {
2077         public static readonly System.ComponentModel.InheritanceAttribute Default;
2078         public static readonly System.ComponentModel.InheritanceAttribute Inherited;
2079         public static readonly System.ComponentModel.InheritanceAttribute InheritedReadOnly;
2080         public static readonly System.ComponentModel.InheritanceAttribute NotInherited;
InheritanceAttribute()2081         public InheritanceAttribute() { }
InheritanceAttribute(System.ComponentModel.InheritanceLevel inheritanceLevel)2082         public InheritanceAttribute(System.ComponentModel.InheritanceLevel inheritanceLevel) { }
2083         public System.ComponentModel.InheritanceLevel InheritanceLevel { get { throw null; } }
Equals(object value)2084         public override bool Equals(object value) { throw null; }
GetHashCode()2085         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2086         public override bool IsDefaultAttribute() { throw null; }
ToString()2087         public override string ToString() { throw null; }
2088     }
2089     public enum InheritanceLevel
2090     {
2091         Inherited = 1,
2092         InheritedReadOnly = 2,
2093         NotInherited = 3,
2094     }
2095     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
2096     public sealed partial class InitializationEventAttribute : System.Attribute
2097     {
InitializationEventAttribute(string eventName)2098         public InitializationEventAttribute(string eventName) { }
2099         public string EventName { get { throw null; } }
2100     }
2101     public partial interface INotifyDataErrorInfo
2102     {
2103         bool HasErrors { get; }
2104         event System.EventHandler<System.ComponentModel.DataErrorsChangedEventArgs> ErrorsChanged;
GetErrors(string propertyName)2105         System.Collections.IEnumerable GetErrors(string propertyName);
2106     }
2107     public partial interface INotifyPropertyChanged
2108     {
2109         event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
2110     }
2111     public partial interface INotifyPropertyChanging
2112     {
2113         event System.ComponentModel.PropertyChangingEventHandler PropertyChanging;
2114     }
2115     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
2116     public partial class InstallerTypeAttribute : System.Attribute
2117     {
InstallerTypeAttribute(string typeName)2118         public InstallerTypeAttribute(string typeName) { }
InstallerTypeAttribute(System.Type installerType)2119         public InstallerTypeAttribute(System.Type installerType) { }
2120         public virtual System.Type InstallerType { get { throw null; } }
Equals(object obj)2121         public override bool Equals(object obj) { throw null; }
GetHashCode()2122         public override int GetHashCode() { throw null; }
2123     }
2124     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2125     public abstract partial class InstanceCreationEditor
2126     {
InstanceCreationEditor()2127         protected InstanceCreationEditor() { }
2128         public virtual string Text { get { throw null; } }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Type instanceType)2129         public abstract object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Type instanceType);
2130     }
2131     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2132     public partial class Int16Converter : System.ComponentModel.BaseNumberConverter
2133     {
Int16Converter()2134         public Int16Converter() { }
2135     }
2136     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2137     public partial class Int32Converter : System.ComponentModel.BaseNumberConverter
2138     {
Int32Converter()2139         public Int32Converter() { }
2140     }
2141     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2142     public partial class Int64Converter : System.ComponentModel.BaseNumberConverter
2143     {
Int64Converter()2144         public Int64Converter() { }
2145     }
2146     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2147     [System.SerializableAttribute]
2148     public partial class InvalidAsynchronousStateException : System.ArgumentException
2149     {
InvalidAsynchronousStateException()2150         public InvalidAsynchronousStateException() { }
InvalidAsynchronousStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2151         protected InvalidAsynchronousStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidAsynchronousStateException(string message)2152         public InvalidAsynchronousStateException(string message) { }
InvalidAsynchronousStateException(string message, System.Exception innerException)2153         public InvalidAsynchronousStateException(string message, System.Exception innerException) { }
2154     }
2155     [System.SerializableAttribute]
2156     public partial class InvalidEnumArgumentException : System.ArgumentException
2157     {
InvalidEnumArgumentException()2158         public InvalidEnumArgumentException() { }
InvalidEnumArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2159         protected InvalidEnumArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidEnumArgumentException(string message)2160         public InvalidEnumArgumentException(string message) { }
InvalidEnumArgumentException(string message, System.Exception innerException)2161         public InvalidEnumArgumentException(string message, System.Exception innerException) { }
InvalidEnumArgumentException(string argumentName, int invalidValue, System.Type enumClass)2162         public InvalidEnumArgumentException(string argumentName, int invalidValue, System.Type enumClass) { }
2163     }
2164     public partial interface IRaiseItemChangedEvents
2165     {
2166         bool RaisesItemChangedEvents { get; }
2167     }
2168     public partial interface IRevertibleChangeTracking : System.ComponentModel.IChangeTracking
2169     {
RejectChanges()2170         void RejectChanges();
2171     }
2172     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2173     public partial interface ISite : System.IServiceProvider
2174     {
2175         System.ComponentModel.IComponent Component { get; }
2176         System.ComponentModel.IContainer Container { get; }
2177         bool DesignMode { get; }
2178         string Name { get; set; }
2179     }
2180     public partial interface ISupportInitialize
2181     {
BeginInit()2182         void BeginInit();
EndInit()2183         void EndInit();
2184     }
2185     public partial interface ISupportInitializeNotification : System.ComponentModel.ISupportInitialize
2186     {
2187         bool IsInitialized { get; }
2188         event System.EventHandler Initialized;
2189     }
2190     public partial interface ISynchronizeInvoke
2191     {
2192         bool InvokeRequired { get; }
2193         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
BeginInvoke(System.Delegate method, object[] args)2194         System.IAsyncResult BeginInvoke(System.Delegate method, object[] args);
EndInvoke(System.IAsyncResult result)2195         object EndInvoke(System.IAsyncResult result);
Invoke(System.Delegate method, object[] args)2196         object Invoke(System.Delegate method, object[] args);
2197     }
2198     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2199     public partial interface ITypeDescriptorContext : System.IServiceProvider
2200     {
2201         System.ComponentModel.IContainer Container { get; }
2202         object Instance { get; }
2203         System.ComponentModel.PropertyDescriptor PropertyDescriptor { get; }
OnComponentChanged()2204         void OnComponentChanged();
OnComponentChanging()2205         bool OnComponentChanging();
2206     }
2207     public partial interface ITypedList
2208     {
GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)2209         System.ComponentModel.PropertyDescriptorCollection GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors);
GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)2210         string GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors);
2211     }
2212     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2213     public abstract partial class License : System.IDisposable
2214     {
License()2215         protected License() { }
2216         public abstract string LicenseKey { get; }
Dispose()2217         public abstract void Dispose();
2218     }
2219     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2220     public partial class LicenseContext : System.IServiceProvider
2221     {
LicenseContext()2222         public LicenseContext() { }
2223         public virtual System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly)2224         public virtual string GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly) { throw null; }
GetService(System.Type type)2225         public virtual object GetService(System.Type type) { throw null; }
SetSavedLicenseKey(System.Type type, string key)2226         public virtual void SetSavedLicenseKey(System.Type type, string key) { }
2227     }
2228     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2229     [System.SerializableAttribute]
2230     public partial class LicenseException : System.SystemException
2231     {
LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2232         protected LicenseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
LicenseException(System.Type type)2233         public LicenseException(System.Type type) { }
LicenseException(System.Type type, object instance)2234         public LicenseException(System.Type type, object instance) { }
LicenseException(System.Type type, object instance, string message)2235         public LicenseException(System.Type type, object instance, string message) { }
LicenseException(System.Type type, object instance, string message, System.Exception innerException)2236         public LicenseException(System.Type type, object instance, string message, System.Exception innerException) { }
2237         public System.Type LicensedType { get { throw null; } }
2238         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2239         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2240     }
2241     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalProcessMgmt=true)]
2242     public sealed partial class LicenseManager
2243     {
LicenseManager()2244         internal LicenseManager() { }
2245         public static System.ComponentModel.LicenseContext CurrentContext { get { throw null; } set { } }
2246         public static System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext)2247         public static object CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext) { throw null; }
CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext, object[] args)2248         public static object CreateWithContext(System.Type type, System.ComponentModel.LicenseContext creationContext, object[] args) { throw null; }
IsLicensed(System.Type type)2249         public static bool IsLicensed(System.Type type) { throw null; }
IsValid(System.Type type)2250         public static bool IsValid(System.Type type) { throw null; }
IsValid(System.Type type, object instance, out System.ComponentModel.License license)2251         public static bool IsValid(System.Type type, object instance, out System.ComponentModel.License license) { license = default(System.ComponentModel.License); throw null; }
LockContext(object contextUser)2252         public static void LockContext(object contextUser) { }
UnlockContext(object contextUser)2253         public static void UnlockContext(object contextUser) { }
Validate(System.Type type)2254         public static void Validate(System.Type type) { }
Validate(System.Type type, object instance)2255         public static System.ComponentModel.License Validate(System.Type type, object instance) { throw null; }
2256     }
2257     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2258     public abstract partial class LicenseProvider
2259     {
LicenseProvider()2260         protected LicenseProvider() { }
GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions)2261         public abstract System.ComponentModel.License GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions);
2262     }
2263     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)]
2264     public sealed partial class LicenseProviderAttribute : System.Attribute
2265     {
2266         public static readonly System.ComponentModel.LicenseProviderAttribute Default;
LicenseProviderAttribute()2267         public LicenseProviderAttribute() { }
LicenseProviderAttribute(string typeName)2268         public LicenseProviderAttribute(string typeName) { }
LicenseProviderAttribute(System.Type type)2269         public LicenseProviderAttribute(System.Type type) { }
2270         public System.Type LicenseProvider { get { throw null; } }
2271         public override object TypeId { get { throw null; } }
Equals(object value)2272         public override bool Equals(object value) { throw null; }
GetHashCode()2273         public override int GetHashCode() { throw null; }
2274     }
2275     public enum LicenseUsageMode
2276     {
2277         Designtime = 1,
2278         Runtime = 0,
2279     }
2280     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2281     public partial class LicFileLicenseProvider : System.ComponentModel.LicenseProvider
2282     {
LicFileLicenseProvider()2283         public LicFileLicenseProvider() { }
GetKey(System.Type type)2284         protected virtual string GetKey(System.Type type) { throw null; }
GetLicense(System.ComponentModel.LicenseContext context, System.Type type, object instance, bool allowExceptions)2285         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)2286         protected virtual bool IsKeyValid(string key, System.Type type) { throw null; }
2287     }
2288     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2289     public sealed partial class ListBindableAttribute : System.Attribute
2290     {
2291         public static readonly System.ComponentModel.ListBindableAttribute Default;
2292         public static readonly System.ComponentModel.ListBindableAttribute No;
2293         public static readonly System.ComponentModel.ListBindableAttribute Yes;
ListBindableAttribute(bool listBindable)2294         public ListBindableAttribute(bool listBindable) { }
ListBindableAttribute(System.ComponentModel.BindableSupport flags)2295         public ListBindableAttribute(System.ComponentModel.BindableSupport flags) { }
2296         public bool ListBindable { get { throw null; } }
Equals(object obj)2297         public override bool Equals(object obj) { throw null; }
GetHashCode()2298         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2299         public override bool IsDefaultAttribute() { throw null; }
2300     }
2301     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2302     public partial class ListChangedEventArgs : System.EventArgs
2303     {
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, System.ComponentModel.PropertyDescriptor propDesc)2304         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, System.ComponentModel.PropertyDescriptor propDesc) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex)2305         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, System.ComponentModel.PropertyDescriptor propDesc)2306         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, System.ComponentModel.PropertyDescriptor propDesc) { }
ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, int oldIndex)2307         public ListChangedEventArgs(System.ComponentModel.ListChangedType listChangedType, int newIndex, int oldIndex) { }
2308         public System.ComponentModel.ListChangedType ListChangedType { get { throw null; } }
2309         public int NewIndex { get { throw null; } }
2310         public int OldIndex { get { throw null; } }
2311         public System.ComponentModel.PropertyDescriptor PropertyDescriptor { get { throw null; } }
2312     }
2313     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ListChangedEventHandler(object sender, System.ComponentModel.ListChangedEventArgs e)2314     public delegate void ListChangedEventHandler(object sender, System.ComponentModel.ListChangedEventArgs e);
2315     public enum ListChangedType
2316     {
2317         ItemAdded = 1,
2318         ItemChanged = 4,
2319         ItemDeleted = 2,
2320         ItemMoved = 3,
2321         PropertyDescriptorAdded = 5,
2322         PropertyDescriptorChanged = 7,
2323         PropertyDescriptorDeleted = 6,
2324         Reset = 0,
2325     }
2326     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2327     public partial class ListSortDescription
2328     {
ListSortDescription(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)2329         public ListSortDescription(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
2330         public System.ComponentModel.PropertyDescriptor PropertyDescriptor { get { throw null; } set { } }
2331         public System.ComponentModel.ListSortDirection SortDirection { get { throw null; } set { } }
2332     }
2333     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2334     public partial class ListSortDescriptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
2335     {
ListSortDescriptionCollection()2336         public ListSortDescriptionCollection() { }
ListSortDescriptionCollection(System.ComponentModel.ListSortDescription[] sorts)2337         public ListSortDescriptionCollection(System.ComponentModel.ListSortDescription[] sorts) { }
2338         public int Count { get { throw null; } }
2339         public System.ComponentModel.ListSortDescription this[int index] { get { throw null; } set { } }
2340         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2341         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2342         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2343         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2344         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Contains(object value)2345         public bool Contains(object value) { throw null; }
CopyTo(System.Array array, int index)2346         public void CopyTo(System.Array array, int index) { }
IndexOf(object value)2347         public int IndexOf(object value) { throw null; }
System.Collections.IEnumerable.GetEnumerator()2348         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)2349         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()2350         void System.Collections.IList.Clear() { }
System.Collections.IList.Insert(int index, object value)2351         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)2352         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)2353         void System.Collections.IList.RemoveAt(int index) { }
2354     }
2355     public enum ListSortDirection
2356     {
2357         Ascending = 0,
2358         Descending = 1,
2359     }
2360     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2361     public sealed partial class LocalizableAttribute : System.Attribute
2362     {
2363         public static readonly System.ComponentModel.LocalizableAttribute Default;
2364         public static readonly System.ComponentModel.LocalizableAttribute No;
2365         public static readonly System.ComponentModel.LocalizableAttribute Yes;
LocalizableAttribute(bool isLocalizable)2366         public LocalizableAttribute(bool isLocalizable) { }
2367         public bool IsLocalizable { get { throw null; } }
Equals(object obj)2368         public override bool Equals(object obj) { throw null; }
GetHashCode()2369         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2370         public override bool IsDefaultAttribute() { throw null; }
2371     }
2372     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
2373     public sealed partial class LookupBindingPropertiesAttribute : System.Attribute
2374     {
2375         public static readonly System.ComponentModel.LookupBindingPropertiesAttribute Default;
LookupBindingPropertiesAttribute()2376         public LookupBindingPropertiesAttribute() { }
LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember)2377         public LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember) { }
2378         public string DataSource { get { throw null; } }
2379         public string DisplayMember { get { throw null; } }
2380         public string LookupMember { get { throw null; } }
2381         public string ValueMember { get { throw null; } }
Equals(object obj)2382         public override bool Equals(object obj) { throw null; }
GetHashCode()2383         public override int GetHashCode() { throw null; }
2384     }
2385     [System.ComponentModel.DesignerAttribute("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
2386     [System.ComponentModel.DesignerCategoryAttribute("Component")]
2387     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ComponentConverter))]
2388     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2389     public partial class MarshalByValueComponent : System.ComponentModel.IComponent, System.IDisposable, System.IServiceProvider
2390     {
MarshalByValueComponent()2391         public MarshalByValueComponent() { }
2392         [System.ComponentModel.BrowsableAttribute(false)]
2393         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2394         public virtual System.ComponentModel.IContainer Container { get { throw null; } }
2395         [System.ComponentModel.BrowsableAttribute(false)]
2396         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2397         public virtual bool DesignMode { get { throw null; } }
2398         protected System.ComponentModel.EventHandlerList Events { get { throw null; } }
2399         [System.ComponentModel.BrowsableAttribute(false)]
2400         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2401         public virtual System.ComponentModel.ISite Site { get { throw null; } set { } }
2402         public event System.EventHandler Disposed { add { } remove { } }
Dispose()2403         public void Dispose() { }
Dispose(bool disposing)2404         protected virtual void Dispose(bool disposing) { }
~MarshalByValueComponent()2405         ~MarshalByValueComponent() { }
GetService(System.Type service)2406         public virtual object GetService(System.Type service) { throw null; }
ToString()2407         public override string ToString() { throw null; }
2408     }
2409     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2410     public partial class MaskedTextProvider : System.ICloneable
2411     {
MaskedTextProvider(string mask)2412         public MaskedTextProvider(string mask) { }
MaskedTextProvider(string mask, bool restrictToAscii)2413         public MaskedTextProvider(string mask, bool restrictToAscii) { }
MaskedTextProvider(string mask, char passwordChar, bool allowPromptAsInput)2414         public MaskedTextProvider(string mask, char passwordChar, bool allowPromptAsInput) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture)2415         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture) { }
MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, bool restrictToAscii)2416         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)2417         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)2418         public MaskedTextProvider(string mask, System.Globalization.CultureInfo culture, char passwordChar, bool allowPromptAsInput) { }
2419         public bool AllowPromptAsInput { get { throw null; } }
2420         public bool AsciiOnly { get { throw null; } }
2421         public int AssignedEditPositionCount { get { throw null; } }
2422         public int AvailableEditPositionCount { get { throw null; } }
2423         public System.Globalization.CultureInfo Culture { get { throw null; } }
2424         public static char DefaultPasswordChar { get { throw null; } }
2425         public int EditPositionCount { get { throw null; } }
2426         public System.Collections.IEnumerator EditPositions { get { throw null; } }
2427         public bool IncludeLiterals { get { throw null; } set { } }
2428         public bool IncludePrompt { get { throw null; } set { } }
2429         public static int InvalidIndex { get { throw null; } }
2430         public bool IsPassword { get { throw null; } set { } }
2431         public char this[int index] { get { throw null; } }
2432         public int LastAssignedPosition { get { throw null; } }
2433         public int Length { get { throw null; } }
2434         public string Mask { get { throw null; } }
2435         public bool MaskCompleted { get { throw null; } }
2436         public bool MaskFull { get { throw null; } }
2437         public char PasswordChar { get { throw null; } set { } }
2438         public char PromptChar { get { throw null; } set { } }
2439         public bool ResetOnPrompt { get { throw null; } set { } }
2440         public bool ResetOnSpace { get { throw null; } set { } }
2441         public bool SkipLiterals { get { throw null; } set { } }
Add(char input)2442         public bool Add(char input) { throw null; }
Add(char input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2443         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)2444         public bool Add(string input) { throw null; }
Add(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2445         public bool Add(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
Clear()2446         public void Clear() { }
Clear(out System.ComponentModel.MaskedTextResultHint resultHint)2447         public void Clear(out System.ComponentModel.MaskedTextResultHint resultHint) { resultHint = default(System.ComponentModel.MaskedTextResultHint); }
Clone()2448         public object Clone() { throw null; }
FindAssignedEditPositionFrom(int position, bool direction)2449         public int FindAssignedEditPositionFrom(int position, bool direction) { throw null; }
FindAssignedEditPositionInRange(int startPosition, int endPosition, bool direction)2450         public int FindAssignedEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindEditPositionFrom(int position, bool direction)2451         public int FindEditPositionFrom(int position, bool direction) { throw null; }
FindEditPositionInRange(int startPosition, int endPosition, bool direction)2452         public int FindEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindNonEditPositionFrom(int position, bool direction)2453         public int FindNonEditPositionFrom(int position, bool direction) { throw null; }
FindNonEditPositionInRange(int startPosition, int endPosition, bool direction)2454         public int FindNonEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
FindUnassignedEditPositionFrom(int position, bool direction)2455         public int FindUnassignedEditPositionFrom(int position, bool direction) { throw null; }
FindUnassignedEditPositionInRange(int startPosition, int endPosition, bool direction)2456         public int FindUnassignedEditPositionInRange(int startPosition, int endPosition, bool direction) { throw null; }
GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint hint)2457         public static bool GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint hint) { throw null; }
InsertAt(char input, int position)2458         public bool InsertAt(char input, int position) { throw null; }
InsertAt(char input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2459         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)2460         public bool InsertAt(string input, int position) { throw null; }
InsertAt(string input, int position, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2461         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)2462         public bool IsAvailablePosition(int position) { throw null; }
IsEditPosition(int position)2463         public bool IsEditPosition(int position) { throw null; }
IsValidInputChar(char c)2464         public static bool IsValidInputChar(char c) { throw null; }
IsValidMaskChar(char c)2465         public static bool IsValidMaskChar(char c) { throw null; }
IsValidPasswordChar(char c)2466         public static bool IsValidPasswordChar(char c) { throw null; }
Remove()2467         public bool Remove() { throw null; }
Remove(out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2468         public bool Remove(out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
RemoveAt(int position)2469         public bool RemoveAt(int position) { throw null; }
RemoveAt(int startPosition, int endPosition)2470         public bool RemoveAt(int startPosition, int endPosition) { throw null; }
RemoveAt(int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2471         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)2472         public bool Replace(char input, int position) { throw null; }
Replace(char input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2473         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)2474         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)2475         public bool Replace(string input, int position) { throw null; }
Replace(string input, int startPosition, int endPosition, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2476         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)2477         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)2478         public bool Set(string input) { throw null; }
Set(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2479         public bool Set(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
ToDisplayString()2480         public string ToDisplayString() { throw null; }
ToString()2481         public override string ToString() { throw null; }
ToString(bool ignorePasswordChar)2482         public string ToString(bool ignorePasswordChar) { throw null; }
ToString(bool includePrompt, bool includeLiterals)2483         public string ToString(bool includePrompt, bool includeLiterals) { throw null; }
ToString(bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int startPosition, int length)2484         public string ToString(bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int startPosition, int length) { throw null; }
ToString(bool includePrompt, bool includeLiterals, int startPosition, int length)2485         public string ToString(bool includePrompt, bool includeLiterals, int startPosition, int length) { throw null; }
ToString(bool ignorePasswordChar, int startPosition, int length)2486         public string ToString(bool ignorePasswordChar, int startPosition, int length) { throw null; }
ToString(int startPosition, int length)2487         public string ToString(int startPosition, int length) { throw null; }
VerifyChar(char input, int position, out System.ComponentModel.MaskedTextResultHint hint)2488         public bool VerifyChar(char input, int position, out System.ComponentModel.MaskedTextResultHint hint) { hint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
VerifyEscapeChar(char input, int position)2489         public bool VerifyEscapeChar(char input, int position) { throw null; }
VerifyString(string input)2490         public bool VerifyString(string input) { throw null; }
VerifyString(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint)2491         public bool VerifyString(string input, out int testPosition, out System.ComponentModel.MaskedTextResultHint resultHint) { testPosition = default(int); resultHint = default(System.ComponentModel.MaskedTextResultHint); throw null; }
2492     }
2493     public enum MaskedTextResultHint
2494     {
2495         AlphanumericCharacterExpected = -2,
2496         AsciiCharacterExpected = -1,
2497         CharacterEscaped = 1,
2498         DigitExpected = -3,
2499         InvalidInput = -51,
2500         LetterExpected = -4,
2501         NoEffect = 2,
2502         NonEditPosition = -54,
2503         PositionOutOfRange = -55,
2504         PromptCharNotAllowed = -52,
2505         SideEffect = 3,
2506         SignedDigitExpected = -5,
2507         Success = 4,
2508         UnavailableEditPosition = -53,
2509         Unknown = 0,
2510     }
2511     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2512     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2513     public abstract partial class MemberDescriptor
2514     {
MemberDescriptor(System.ComponentModel.MemberDescriptor descr)2515         protected MemberDescriptor(System.ComponentModel.MemberDescriptor descr) { }
MemberDescriptor(System.ComponentModel.MemberDescriptor oldMemberDescriptor, System.Attribute[] newAttributes)2516         protected MemberDescriptor(System.ComponentModel.MemberDescriptor oldMemberDescriptor, System.Attribute[] newAttributes) { }
MemberDescriptor(string name)2517         protected MemberDescriptor(string name) { }
MemberDescriptor(string name, System.Attribute[] attributes)2518         protected MemberDescriptor(string name, System.Attribute[] attributes) { }
2519         protected virtual System.Attribute[] AttributeArray { get { throw null; } set { } }
2520         public virtual System.ComponentModel.AttributeCollection Attributes { get { throw null; } }
2521         public virtual string Category { get { throw null; } }
2522         public virtual string Description { get { throw null; } }
2523         public virtual bool DesignTimeOnly { get { throw null; } }
2524         public virtual string DisplayName { get { throw null; } }
2525         public virtual bool IsBrowsable { get { throw null; } }
2526         public virtual string Name { get { throw null; } }
2527         protected virtual int NameHashCode { get { throw null; } }
CreateAttributeCollection()2528         protected virtual System.ComponentModel.AttributeCollection CreateAttributeCollection() { throw null; }
Equals(object obj)2529         public override bool Equals(object obj) { throw null; }
FillAttributes(System.Collections.IList attributeList)2530         protected virtual void FillAttributes(System.Collections.IList attributeList) { }
FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType)2531         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)2532         protected static System.Reflection.MethodInfo FindMethod(System.Type componentClass, string name, System.Type[] args, System.Type returnType, bool publicOnly) { throw null; }
GetHashCode()2533         public override int GetHashCode() { throw null; }
GetInvocationTarget(System.Type type, object instance)2534         protected virtual object GetInvocationTarget(System.Type type, object instance) { throw null; }
2535         [System.ObsoleteAttribute("This method has been deprecated. Use GetInvocationTarget instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
GetInvokee(System.Type componentClass, object component)2536         protected static object GetInvokee(System.Type componentClass, object component) { throw null; }
GetSite(object component)2537         protected static System.ComponentModel.ISite GetSite(object component) { throw null; }
2538     }
2539     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2540     public sealed partial class MergablePropertyAttribute : System.Attribute
2541     {
2542         public static readonly System.ComponentModel.MergablePropertyAttribute Default;
2543         public static readonly System.ComponentModel.MergablePropertyAttribute No;
2544         public static readonly System.ComponentModel.MergablePropertyAttribute Yes;
MergablePropertyAttribute(bool allowMerge)2545         public MergablePropertyAttribute(bool allowMerge) { }
2546         public bool AllowMerge { get { throw null; } }
Equals(object obj)2547         public override bool Equals(object obj) { throw null; }
GetHashCode()2548         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2549         public override bool IsDefaultAttribute() { throw null; }
2550     }
2551     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2552     public partial class MultilineStringConverter : System.ComponentModel.TypeConverter
2553     {
MultilineStringConverter()2554         public MultilineStringConverter() { }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2555         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)2556         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2557         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
2558     }
2559     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2560     public partial class NestedContainer : System.ComponentModel.Container, System.ComponentModel.IContainer, System.ComponentModel.INestedContainer, System.IDisposable
2561     {
NestedContainer(System.ComponentModel.IComponent owner)2562         public NestedContainer(System.ComponentModel.IComponent owner) { }
2563         public System.ComponentModel.IComponent Owner { get { throw null; } }
2564         protected virtual string OwnerName { get { throw null; } }
CreateSite(System.ComponentModel.IComponent component, string name)2565         protected override System.ComponentModel.ISite CreateSite(System.ComponentModel.IComponent component, string name) { throw null; }
Dispose(bool disposing)2566         protected override void Dispose(bool disposing) { }
GetService(System.Type service)2567         protected override object GetService(System.Type service) { throw null; }
2568     }
2569     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
2570     public sealed partial class NotifyParentPropertyAttribute : System.Attribute
2571     {
2572         public static readonly System.ComponentModel.NotifyParentPropertyAttribute Default;
2573         public static readonly System.ComponentModel.NotifyParentPropertyAttribute No;
2574         public static readonly System.ComponentModel.NotifyParentPropertyAttribute Yes;
NotifyParentPropertyAttribute(bool notifyParent)2575         public NotifyParentPropertyAttribute(bool notifyParent) { }
2576         public bool NotifyParent { get { throw null; } }
Equals(object obj)2577         public override bool Equals(object obj) { throw null; }
GetHashCode()2578         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2579         public override bool IsDefaultAttribute() { throw null; }
2580     }
2581     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2582     public partial class NullableConverter : System.ComponentModel.TypeConverter
2583     {
NullableConverter(System.Type type)2584         public NullableConverter(System.Type type) { }
2585         public System.Type NullableType { get { throw null; } }
2586         public System.Type UnderlyingType { get { throw null; } }
2587         public System.ComponentModel.TypeConverter UnderlyingTypeConverter { get { throw null; } }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2588         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)2589         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2590         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)2591         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)2592         public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)2593         public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)2594         public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2595         public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)2596         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)2597         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)2598         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)2599         public override bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
2600     }
2601     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2602     public sealed partial class ParenthesizePropertyNameAttribute : System.Attribute
2603     {
2604         public static readonly System.ComponentModel.ParenthesizePropertyNameAttribute Default;
ParenthesizePropertyNameAttribute()2605         public ParenthesizePropertyNameAttribute() { }
ParenthesizePropertyNameAttribute(bool needParenthesis)2606         public ParenthesizePropertyNameAttribute(bool needParenthesis) { }
2607         public bool NeedParenthesis { get { throw null; } }
Equals(object o)2608         public override bool Equals(object o) { throw null; }
GetHashCode()2609         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2610         public override bool IsDefaultAttribute() { throw null; }
2611     }
2612     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2613     public sealed partial class PasswordPropertyTextAttribute : System.Attribute
2614     {
2615         public static readonly System.ComponentModel.PasswordPropertyTextAttribute Default;
2616         public static readonly System.ComponentModel.PasswordPropertyTextAttribute No;
2617         public static readonly System.ComponentModel.PasswordPropertyTextAttribute Yes;
PasswordPropertyTextAttribute()2618         public PasswordPropertyTextAttribute() { }
PasswordPropertyTextAttribute(bool password)2619         public PasswordPropertyTextAttribute(bool password) { }
2620         public bool Password { get { throw null; } }
Equals(object o)2621         public override bool Equals(object o) { throw null; }
GetHashCode()2622         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2623         public override bool IsDefaultAttribute() { throw null; }
2624     }
2625     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2626     public partial class ProgressChangedEventArgs : System.EventArgs
2627     {
ProgressChangedEventArgs(int progressPercentage, object userState)2628         public ProgressChangedEventArgs(int progressPercentage, object userState) { }
2629         public int ProgressPercentage { get { throw null; } }
2630         public object UserState { get { throw null; } }
2631     }
2632     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ProgressChangedEventHandler(object sender, System.ComponentModel.ProgressChangedEventArgs e)2633     public delegate void ProgressChangedEventHandler(object sender, System.ComponentModel.ProgressChangedEventArgs e);
2634     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2635     public partial class PropertyChangedEventArgs : System.EventArgs
2636     {
PropertyChangedEventArgs(string propertyName)2637         public PropertyChangedEventArgs(string propertyName) { }
2638         public virtual string PropertyName { get { throw null; } }
2639     }
2640     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
PropertyChangedEventHandler(object sender, System.ComponentModel.PropertyChangedEventArgs e)2641     public delegate void PropertyChangedEventHandler(object sender, System.ComponentModel.PropertyChangedEventArgs e);
2642     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2643     public partial class PropertyChangingEventArgs : System.EventArgs
2644     {
PropertyChangingEventArgs(string propertyName)2645         public PropertyChangingEventArgs(string propertyName) { }
2646         public virtual string PropertyName { get { throw null; } }
2647     }
2648     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
PropertyChangingEventHandler(object sender, System.ComponentModel.PropertyChangingEventArgs e)2649     public delegate void PropertyChangingEventHandler(object sender, System.ComponentModel.PropertyChangingEventArgs e);
2650     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2651     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2652     public abstract partial class PropertyDescriptor : System.ComponentModel.MemberDescriptor
2653     {
PropertyDescriptor(System.ComponentModel.MemberDescriptor descr)2654         protected PropertyDescriptor(System.ComponentModel.MemberDescriptor descr) : base (default(string)) { }
PropertyDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs)2655         protected PropertyDescriptor(System.ComponentModel.MemberDescriptor descr, System.Attribute[] attrs) : base (default(string)) { }
PropertyDescriptor(string name, System.Attribute[] attrs)2656         protected PropertyDescriptor(string name, System.Attribute[] attrs) : base (default(string)) { }
2657         public abstract System.Type ComponentType { get; }
2658         public virtual System.ComponentModel.TypeConverter Converter { get { throw null; } }
2659         public virtual bool IsLocalizable { get { throw null; } }
2660         public abstract bool IsReadOnly { get; }
2661         public abstract System.Type PropertyType { get; }
2662         public System.ComponentModel.DesignerSerializationVisibility SerializationVisibility { get { throw null; } }
2663         public virtual bool SupportsChangeEvents { get { throw null; } }
AddValueChanged(object component, System.EventHandler handler)2664         public virtual void AddValueChanged(object component, System.EventHandler handler) { }
CanResetValue(object component)2665         public abstract bool CanResetValue(object component);
CreateInstance(System.Type type)2666         protected object CreateInstance(System.Type type) { throw null; }
Equals(object obj)2667         public override bool Equals(object obj) { throw null; }
FillAttributes(System.Collections.IList attributeList)2668         protected override void FillAttributes(System.Collections.IList attributeList) { }
GetChildProperties()2669         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties() { throw null; }
GetChildProperties(System.Attribute[] filter)2670         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties(System.Attribute[] filter) { throw null; }
GetChildProperties(object instance)2671         public System.ComponentModel.PropertyDescriptorCollection GetChildProperties(object instance) { throw null; }
GetChildProperties(object instance, System.Attribute[] filter)2672         public virtual System.ComponentModel.PropertyDescriptorCollection GetChildProperties(object instance, System.Attribute[] filter) { throw null; }
GetEditor(System.Type editorBaseType)2673         public virtual object GetEditor(System.Type editorBaseType) { throw null; }
GetHashCode()2674         public override int GetHashCode() { throw null; }
GetInvocationTarget(System.Type type, object instance)2675         protected override object GetInvocationTarget(System.Type type, object instance) { throw null; }
GetTypeFromName(string typeName)2676         protected System.Type GetTypeFromName(string typeName) { throw null; }
GetValue(object component)2677         public abstract object GetValue(object component);
GetValueChangedHandler(object component)2678         protected internal System.EventHandler GetValueChangedHandler(object component) { throw null; }
OnValueChanged(object component, System.EventArgs e)2679         protected virtual void OnValueChanged(object component, System.EventArgs e) { }
RemoveValueChanged(object component, System.EventHandler handler)2680         public virtual void RemoveValueChanged(object component, System.EventHandler handler) { }
ResetValue(object component)2681         public abstract void ResetValue(object component);
SetValue(object component, object value)2682         public abstract void SetValue(object component, object value);
ShouldSerializeValue(object component)2683         public abstract bool ShouldSerializeValue(object component);
2684     }
2685     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
2686     public partial class PropertyDescriptorCollection : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.Collections.IList
2687     {
2688         public static readonly System.ComponentModel.PropertyDescriptorCollection Empty;
PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties)2689         public PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties) { }
PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties, bool readOnly)2690         public PropertyDescriptorCollection(System.ComponentModel.PropertyDescriptor[] properties, bool readOnly) { }
2691         public int Count { get { throw null; } }
2692         public virtual System.ComponentModel.PropertyDescriptor this[int index] { get { throw null; } }
2693         public virtual System.ComponentModel.PropertyDescriptor this[string name] { get { throw null; } }
2694         int System.Collections.ICollection.Count { get { throw null; } }
2695         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2696         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2697         bool System.Collections.IDictionary.IsFixedSize { get { throw null; } }
2698         bool System.Collections.IDictionary.IsReadOnly { get { throw null; } }
2699         object System.Collections.IDictionary.this[object key] { get { throw null; } set { } }
2700         System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } }
2701         System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } }
2702         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2703         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2704         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.PropertyDescriptor value)2705         public int Add(System.ComponentModel.PropertyDescriptor value) { throw null; }
Clear()2706         public void Clear() { }
Contains(System.ComponentModel.PropertyDescriptor value)2707         public bool Contains(System.ComponentModel.PropertyDescriptor value) { throw null; }
CopyTo(System.Array array, int index)2708         public void CopyTo(System.Array array, int index) { }
Find(string name, bool ignoreCase)2709         public virtual System.ComponentModel.PropertyDescriptor Find(string name, bool ignoreCase) { throw null; }
GetEnumerator()2710         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.PropertyDescriptor value)2711         public int IndexOf(System.ComponentModel.PropertyDescriptor value) { throw null; }
Insert(int index, System.ComponentModel.PropertyDescriptor value)2712         public void Insert(int index, System.ComponentModel.PropertyDescriptor value) { }
InternalSort(System.Collections.IComparer sorter)2713         protected void InternalSort(System.Collections.IComparer sorter) { }
InternalSort(string[] names)2714         protected void InternalSort(string[] names) { }
Remove(System.ComponentModel.PropertyDescriptor value)2715         public void Remove(System.ComponentModel.PropertyDescriptor value) { }
RemoveAt(int index)2716         public void RemoveAt(int index) { }
Sort()2717         public virtual System.ComponentModel.PropertyDescriptorCollection Sort() { throw null; }
Sort(System.Collections.IComparer comparer)2718         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(System.Collections.IComparer comparer) { throw null; }
Sort(string[] names)2719         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(string[] names) { throw null; }
Sort(string[] names, System.Collections.IComparer comparer)2720         public virtual System.ComponentModel.PropertyDescriptorCollection Sort(string[] names, System.Collections.IComparer comparer) { throw null; }
System.Collections.IDictionary.Add(object key, object value)2721         void System.Collections.IDictionary.Add(object key, object value) { }
System.Collections.IDictionary.Clear()2722         void System.Collections.IDictionary.Clear() { }
System.Collections.IDictionary.Contains(object key)2723         bool System.Collections.IDictionary.Contains(object key) { throw null; }
System.Collections.IDictionary.GetEnumerator()2724         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object key)2725         void System.Collections.IDictionary.Remove(object key) { }
System.Collections.IEnumerable.GetEnumerator()2726         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)2727         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()2728         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)2729         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)2730         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)2731         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)2732         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)2733         void System.Collections.IList.RemoveAt(int index) { }
2734     }
2735     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2736     public partial class PropertyTabAttribute : System.Attribute
2737     {
PropertyTabAttribute()2738         public PropertyTabAttribute() { }
PropertyTabAttribute(string tabClassName)2739         public PropertyTabAttribute(string tabClassName) { }
PropertyTabAttribute(string tabClassName, System.ComponentModel.PropertyTabScope tabScope)2740         public PropertyTabAttribute(string tabClassName, System.ComponentModel.PropertyTabScope tabScope) { }
PropertyTabAttribute(System.Type tabClass)2741         public PropertyTabAttribute(System.Type tabClass) { }
PropertyTabAttribute(System.Type tabClass, System.ComponentModel.PropertyTabScope tabScope)2742         public PropertyTabAttribute(System.Type tabClass, System.ComponentModel.PropertyTabScope tabScope) { }
2743         public System.Type[] TabClasses { get { throw null; } }
2744         protected string[] TabClassNames { get { throw null; } }
2745         public System.ComponentModel.PropertyTabScope[] TabScopes { get { throw null; } }
Equals(System.ComponentModel.PropertyTabAttribute other)2746         public bool Equals(System.ComponentModel.PropertyTabAttribute other) { throw null; }
Equals(object other)2747         public override bool Equals(object other) { throw null; }
GetHashCode()2748         public override int GetHashCode() { throw null; }
InitializeArrays(string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes)2749         protected void InitializeArrays(string[] tabClassNames, System.ComponentModel.PropertyTabScope[] tabScopes) { }
InitializeArrays(System.Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes)2750         protected void InitializeArrays(System.Type[] tabClasses, System.ComponentModel.PropertyTabScope[] tabScopes) { }
2751     }
2752     public enum PropertyTabScope
2753     {
2754         Component = 3,
2755         Document = 2,
2756         Global = 1,
2757         Static = 0,
2758     }
2759     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true)]
2760     public sealed partial class ProvidePropertyAttribute : System.Attribute
2761     {
ProvidePropertyAttribute(string propertyName, string receiverTypeName)2762         public ProvidePropertyAttribute(string propertyName, string receiverTypeName) { }
ProvidePropertyAttribute(string propertyName, System.Type receiverType)2763         public ProvidePropertyAttribute(string propertyName, System.Type receiverType) { }
2764         public string PropertyName { get { throw null; } }
2765         public string ReceiverTypeName { get { throw null; } }
2766         public override object TypeId { get { throw null; } }
Equals(object obj)2767         public override bool Equals(object obj) { throw null; }
GetHashCode()2768         public override int GetHashCode() { throw null; }
2769     }
2770     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2771     public sealed partial class ReadOnlyAttribute : System.Attribute
2772     {
2773         public static readonly System.ComponentModel.ReadOnlyAttribute Default;
2774         public static readonly System.ComponentModel.ReadOnlyAttribute No;
2775         public static readonly System.ComponentModel.ReadOnlyAttribute Yes;
ReadOnlyAttribute(bool isReadOnly)2776         public ReadOnlyAttribute(bool isReadOnly) { }
2777         public bool IsReadOnly { get { throw null; } }
Equals(object value)2778         public override bool Equals(object value) { throw null; }
GetHashCode()2779         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2780         public override bool IsDefaultAttribute() { throw null; }
2781     }
2782     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
2783     [System.ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
2784     public partial class RecommendedAsConfigurableAttribute : System.Attribute
2785     {
2786         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute Default;
2787         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute No;
2788         public static readonly System.ComponentModel.RecommendedAsConfigurableAttribute Yes;
RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable)2789         public RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable) { }
2790         public bool RecommendedAsConfigurable { get { throw null; } }
Equals(object obj)2791         public override bool Equals(object obj) { throw null; }
GetHashCode()2792         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2793         public override bool IsDefaultAttribute() { throw null; }
2794     }
2795     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2796     public partial class ReferenceConverter : System.ComponentModel.TypeConverter
2797     {
ReferenceConverter(System.Type type)2798         public ReferenceConverter(System.Type type) { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2799         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2800         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)2801         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)2802         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)2803         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)2804         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValueAllowed(System.ComponentModel.ITypeDescriptorContext context, object value)2805         protected virtual bool IsValueAllowed(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
2806     }
2807     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2808     public partial class RefreshEventArgs : System.EventArgs
2809     {
RefreshEventArgs(object componentChanged)2810         public RefreshEventArgs(object componentChanged) { }
RefreshEventArgs(System.Type typeChanged)2811         public RefreshEventArgs(System.Type typeChanged) { }
2812         public object ComponentChanged { get { throw null; } }
2813         public System.Type TypeChanged { get { throw null; } }
2814     }
2815     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
RefreshEventHandler(System.ComponentModel.RefreshEventArgs e)2816     public delegate void RefreshEventHandler(System.ComponentModel.RefreshEventArgs e);
2817     public enum RefreshProperties
2818     {
2819         All = 1,
2820         None = 0,
2821         Repaint = 2,
2822     }
2823     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2824     public sealed partial class RefreshPropertiesAttribute : System.Attribute
2825     {
2826         public static readonly System.ComponentModel.RefreshPropertiesAttribute All;
2827         public static readonly System.ComponentModel.RefreshPropertiesAttribute Default;
2828         public static readonly System.ComponentModel.RefreshPropertiesAttribute Repaint;
RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties refresh)2829         public RefreshPropertiesAttribute(System.ComponentModel.RefreshProperties refresh) { }
2830         public System.ComponentModel.RefreshProperties RefreshProperties { get { throw null; } }
Equals(object value)2831         public override bool Equals(object value) { throw null; }
GetHashCode()2832         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2833         public override bool IsDefaultAttribute() { throw null; }
2834     }
2835     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
2836     public partial class RunInstallerAttribute : System.Attribute
2837     {
2838         public static readonly System.ComponentModel.RunInstallerAttribute Default;
2839         public static readonly System.ComponentModel.RunInstallerAttribute No;
2840         public static readonly System.ComponentModel.RunInstallerAttribute Yes;
RunInstallerAttribute(bool runInstaller)2841         public RunInstallerAttribute(bool runInstaller) { }
2842         public bool RunInstaller { get { throw null; } }
Equals(object obj)2843         public override bool Equals(object obj) { throw null; }
GetHashCode()2844         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2845         public override bool IsDefaultAttribute() { throw null; }
2846     }
2847     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2848     public partial class RunWorkerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
2849     {
RunWorkerCompletedEventArgs(object result, System.Exception error, bool cancelled)2850         public RunWorkerCompletedEventArgs(object result, System.Exception error, bool cancelled) : base (default(System.Exception), default(bool), default(object)) { }
2851         public object Result { get { throw null; } }
2852         [System.ComponentModel.BrowsableAttribute(false)]
2853         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2854         public new object UserState { get { throw null; } }
2855     }
2856     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
RunWorkerCompletedEventHandler(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)2857     public delegate void RunWorkerCompletedEventHandler(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e);
2858     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2859     public partial class SByteConverter : System.ComponentModel.BaseNumberConverter
2860     {
SByteConverter()2861         public SByteConverter() { }
2862     }
2863     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
2864     public sealed partial class SettingsBindableAttribute : System.Attribute
2865     {
2866         public static readonly System.ComponentModel.SettingsBindableAttribute No;
2867         public static readonly System.ComponentModel.SettingsBindableAttribute Yes;
SettingsBindableAttribute(bool bindable)2868         public SettingsBindableAttribute(bool bindable) { }
2869         public bool Bindable { get { throw null; } }
Equals(object obj)2870         public override bool Equals(object obj) { throw null; }
GetHashCode()2871         public override int GetHashCode() { throw null; }
2872     }
2873     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2874     public partial class SingleConverter : System.ComponentModel.BaseNumberConverter
2875     {
SingleConverter()2876         public SingleConverter() { }
2877     }
2878     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2879     public partial class StringConverter : System.ComponentModel.TypeConverter
2880     {
StringConverter()2881         public StringConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2882         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2883         public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
2884     }
2885     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2886     public static partial class SyntaxCheck
2887     {
CheckMachineName(string value)2888         public static bool CheckMachineName(string value) { throw null; }
CheckPath(string value)2889         public static bool CheckPath(string value) { throw null; }
CheckRootedPath(string value)2890         public static bool CheckRootedPath(string value) { throw null; }
2891     }
2892     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2893     public partial class TimeSpanConverter : System.ComponentModel.TypeConverter
2894     {
TimeSpanConverter()2895         public TimeSpanConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2896         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)2897         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2898         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)2899         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
2900     }
2901     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
2902     public partial class ToolboxItemAttribute : System.Attribute
2903     {
2904         public static readonly System.ComponentModel.ToolboxItemAttribute Default;
2905         public static readonly System.ComponentModel.ToolboxItemAttribute None;
ToolboxItemAttribute(bool defaultType)2906         public ToolboxItemAttribute(bool defaultType) { }
ToolboxItemAttribute(string toolboxItemTypeName)2907         public ToolboxItemAttribute(string toolboxItemTypeName) { }
ToolboxItemAttribute(System.Type toolboxItemType)2908         public ToolboxItemAttribute(System.Type toolboxItemType) { }
2909         public System.Type ToolboxItemType { get { throw null; } }
2910         public string ToolboxItemTypeName { get { throw null; } }
Equals(object obj)2911         public override bool Equals(object obj) { throw null; }
GetHashCode()2912         public override int GetHashCode() { throw null; }
IsDefaultAttribute()2913         public override bool IsDefaultAttribute() { throw null; }
2914     }
2915     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true, Inherited=true)]
2916     [System.SerializableAttribute]
2917     public sealed partial class ToolboxItemFilterAttribute : System.Attribute
2918     {
ToolboxItemFilterAttribute(string filterString)2919         public ToolboxItemFilterAttribute(string filterString) { }
ToolboxItemFilterAttribute(string filterString, System.ComponentModel.ToolboxItemFilterType filterType)2920         public ToolboxItemFilterAttribute(string filterString, System.ComponentModel.ToolboxItemFilterType filterType) { }
2921         public string FilterString { get { throw null; } }
2922         public System.ComponentModel.ToolboxItemFilterType FilterType { get { throw null; } }
2923         public override object TypeId { get { throw null; } }
Equals(object obj)2924         public override bool Equals(object obj) { throw null; }
GetHashCode()2925         public override int GetHashCode() { throw null; }
Match(object obj)2926         public override bool Match(object obj) { throw null; }
ToString()2927         public override string ToString() { throw null; }
2928     }
2929     public enum ToolboxItemFilterType
2930     {
2931         Allow = 0,
2932         Custom = 1,
2933         Prevent = 2,
2934         Require = 3,
2935     }
2936     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
2937     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
2938     public partial class TypeConverter
2939     {
TypeConverter()2940         public TypeConverter() { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)2941         public virtual bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertFrom(System.Type sourceType)2942         public bool CanConvertFrom(System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)2943         public virtual bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
CanConvertTo(System.Type destinationType)2944         public bool CanConvertTo(System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2945         public virtual object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertFrom(object value)2946         public object ConvertFrom(object value) { throw null; }
ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext context, string text)2947         public object ConvertFromInvariantString(System.ComponentModel.ITypeDescriptorContext context, string text) { throw null; }
ConvertFromInvariantString(string text)2948         public object ConvertFromInvariantString(string text) { throw null; }
ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text)2949         public object ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text) { throw null; }
ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, string text)2950         public object ConvertFromString(System.ComponentModel.ITypeDescriptorContext context, string text) { throw null; }
ConvertFromString(string text)2951         public object ConvertFromString(string text) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)2952         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)2953         public object ConvertTo(object value, System.Type destinationType) { throw null; }
ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext context, object value)2954         public string ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
ConvertToInvariantString(object value)2955         public string ConvertToInvariantString(object value) { throw null; }
ConvertToString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)2956         public string ConvertToString(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
ConvertToString(System.ComponentModel.ITypeDescriptorContext context, object value)2957         public string ConvertToString(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
ConvertToString(object value)2958         public string ConvertToString(object value) { throw null; }
CreateInstance(System.Collections.IDictionary propertyValues)2959         public object CreateInstance(System.Collections.IDictionary propertyValues) { throw null; }
CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues)2960         public virtual object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
GetConvertFromException(object value)2961         protected System.Exception GetConvertFromException(object value) { throw null; }
GetConvertToException(object value, System.Type destinationType)2962         protected System.Exception GetConvertToException(object value, System.Type destinationType) { throw null; }
GetCreateInstanceSupported()2963         public bool GetCreateInstanceSupported() { throw null; }
GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context)2964         public virtual bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value)2965         public System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes)2966         public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
GetProperties(object value)2967         public System.ComponentModel.PropertyDescriptorCollection GetProperties(object value) { throw null; }
GetPropertiesSupported()2968         public bool GetPropertiesSupported() { throw null; }
GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context)2969         public virtual bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValues()2970         public System.Collections.ICollection GetStandardValues() { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)2971         public virtual System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive()2972         public bool GetStandardValuesExclusive() { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)2973         public virtual bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported()2974         public bool GetStandardValuesSupported() { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)2975         public virtual bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
IsValid(System.ComponentModel.ITypeDescriptorContext context, object value)2976         public virtual bool IsValid(System.ComponentModel.ITypeDescriptorContext context, object value) { throw null; }
IsValid(object value)2977         public bool IsValid(object value) { throw null; }
SortProperties(System.ComponentModel.PropertyDescriptorCollection props, string[] names)2978         protected System.ComponentModel.PropertyDescriptorCollection SortProperties(System.ComponentModel.PropertyDescriptorCollection props, string[] names) { throw null; }
2979         protected abstract partial class SimplePropertyDescriptor : System.ComponentModel.PropertyDescriptor
2980         {
SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType)2981             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)2982             protected SimplePropertyDescriptor(System.Type componentType, string name, System.Type propertyType, System.Attribute[] attributes) : base (default(string), default(System.Attribute[])) { }
2983             public override System.Type ComponentType { get { throw null; } }
2984             public override bool IsReadOnly { get { throw null; } }
2985             public override System.Type PropertyType { get { throw null; } }
CanResetValue(object component)2986             public override bool CanResetValue(object component) { throw null; }
ResetValue(object component)2987             public override void ResetValue(object component) { }
ShouldSerializeValue(object component)2988             public override bool ShouldSerializeValue(object component) { throw null; }
2989         }
2990         public partial class StandardValuesCollection : System.Collections.ICollection, System.Collections.IEnumerable
2991         {
StandardValuesCollection(System.Collections.ICollection values)2992             public StandardValuesCollection(System.Collections.ICollection values) { }
2993             public int Count { get { throw null; } }
2994             public object this[int index] { get { throw null; } }
2995             int System.Collections.ICollection.Count { get { throw null; } }
2996             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2997             object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)2998             public void CopyTo(System.Array array, int index) { }
GetEnumerator()2999             public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)3000             void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()3001             System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
3002         }
3003     }
3004     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
3005     public sealed partial class TypeConverterAttribute : System.Attribute
3006     {
3007         public static readonly System.ComponentModel.TypeConverterAttribute Default;
TypeConverterAttribute()3008         public TypeConverterAttribute() { }
TypeConverterAttribute(string typeName)3009         public TypeConverterAttribute(string typeName) { }
TypeConverterAttribute(System.Type type)3010         public TypeConverterAttribute(System.Type type) { }
3011         public string ConverterTypeName { get { throw null; } }
Equals(object obj)3012         public override bool Equals(object obj) { throw null; }
GetHashCode()3013         public override int GetHashCode() { throw null; }
3014     }
3015     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3016     public abstract partial class TypeDescriptionProvider
3017     {
TypeDescriptionProvider()3018         protected TypeDescriptionProvider() { }
TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider parent)3019         protected TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider parent) { }
CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args)3020         public virtual object CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args) { throw null; }
GetCache(object instance)3021         public virtual System.Collections.IDictionary GetCache(object instance) { throw null; }
GetExtendedTypeDescriptor(object instance)3022         public virtual System.ComponentModel.ICustomTypeDescriptor GetExtendedTypeDescriptor(object instance) { throw null; }
GetExtenderProviders(object instance)3023         protected internal virtual System.ComponentModel.IExtenderProvider[] GetExtenderProviders(object instance) { throw null; }
GetFullComponentName(object component)3024         public virtual string GetFullComponentName(object component) { throw null; }
GetReflectionType(object instance)3025         public System.Type GetReflectionType(object instance) { throw null; }
GetReflectionType(System.Type objectType)3026         public System.Type GetReflectionType(System.Type objectType) { throw null; }
GetReflectionType(System.Type objectType, object instance)3027         public virtual System.Type GetReflectionType(System.Type objectType, object instance) { throw null; }
GetRuntimeType(System.Type reflectionType)3028         public virtual System.Type GetRuntimeType(System.Type reflectionType) { throw null; }
GetTypeDescriptor(object instance)3029         public System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(object instance) { throw null; }
GetTypeDescriptor(System.Type objectType)3030         public System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType) { throw null; }
GetTypeDescriptor(System.Type objectType, object instance)3031         public virtual System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType, object instance) { throw null; }
IsSupportedType(System.Type type)3032         public virtual bool IsSupportedType(System.Type type) { throw null; }
3033     }
3034     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=true)]
3035     public sealed partial class TypeDescriptionProviderAttribute : System.Attribute
3036     {
TypeDescriptionProviderAttribute(string typeName)3037         public TypeDescriptionProviderAttribute(string typeName) { }
TypeDescriptionProviderAttribute(System.Type type)3038         public TypeDescriptionProviderAttribute(System.Type type) { }
3039         public string TypeName { get { throw null; } }
3040     }
3041     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3042     public sealed partial class TypeDescriptor
3043     {
TypeDescriptor()3044         internal TypeDescriptor() { }
3045         [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")]
3046         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 { } }
3047         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3048         public static System.Type ComObjectType { get { throw null; } }
3049         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3050         public static System.Type InterfaceType { get { throw null; } }
3051         public static event System.ComponentModel.RefreshEventHandler Refreshed { add { } remove { } }
3052         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3053         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddAttributes(object instance, params System.Attribute[] attributes)3054         public static System.ComponentModel.TypeDescriptionProvider AddAttributes(object instance, params System.Attribute[] attributes) { throw null; }
3055         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3056         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddAttributes(System.Type type, params System.Attribute[] attributes)3057         public static System.ComponentModel.TypeDescriptionProvider AddAttributes(System.Type type, params System.Attribute[] attributes) { throw null; }
3058         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddEditorTable(System.Type editorBaseType, System.Collections.Hashtable table)3059         public static void AddEditorTable(System.Type editorBaseType, System.Collections.Hashtable table) { }
3060         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3061         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance)3062         public static void AddProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
3063         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3064         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
AddProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)3065         public static void AddProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
3066         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance)3067         public static void AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
3068         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)3069         public static void AddProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
3070         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3071         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
CreateAssociation(object primary, object secondary)3072         public static void CreateAssociation(object primary, object secondary) { }
CreateDesigner(System.ComponentModel.IComponent component, System.Type designerBaseType)3073         public static System.ComponentModel.Design.IDesigner CreateDesigner(System.ComponentModel.IComponent component, System.Type designerBaseType) { throw null; }
3074         [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)3075         public static System.ComponentModel.EventDescriptor CreateEvent(System.Type componentType, System.ComponentModel.EventDescriptor oldEventDescriptor, params System.Attribute[] attributes) { throw null; }
3076         [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)3077         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)3078         public static object CreateInstance(System.IServiceProvider provider, System.Type objectType, System.Type[] argTypes, object[] args) { throw null; }
3079         [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)3080         public static System.ComponentModel.PropertyDescriptor CreateProperty(System.Type componentType, System.ComponentModel.PropertyDescriptor oldPropertyDescriptor, params System.Attribute[] attributes) { throw null; }
3081         [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)3082         public static System.ComponentModel.PropertyDescriptor CreateProperty(System.Type componentType, string name, System.Type type, params System.Attribute[] attributes) { throw null; }
3083         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetAssociation(System.Type type, object primary)3084         public static object GetAssociation(System.Type type, object primary) { throw null; }
GetAttributes(object component)3085         public static System.ComponentModel.AttributeCollection GetAttributes(object component) { throw null; }
3086         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetAttributes(object component, bool noCustomTypeDesc)3087         public static System.ComponentModel.AttributeCollection GetAttributes(object component, bool noCustomTypeDesc) { throw null; }
GetAttributes(System.Type componentType)3088         public static System.ComponentModel.AttributeCollection GetAttributes(System.Type componentType) { throw null; }
GetClassName(object component)3089         public static string GetClassName(object component) { throw null; }
3090         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetClassName(object component, bool noCustomTypeDesc)3091         public static string GetClassName(object component, bool noCustomTypeDesc) { throw null; }
GetClassName(System.Type componentType)3092         public static string GetClassName(System.Type componentType) { throw null; }
GetComponentName(object component)3093         public static string GetComponentName(object component) { throw null; }
3094         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetComponentName(object component, bool noCustomTypeDesc)3095         public static string GetComponentName(object component, bool noCustomTypeDesc) { throw null; }
GetConverter(object component)3096         public static System.ComponentModel.TypeConverter GetConverter(object component) { throw null; }
3097         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetConverter(object component, bool noCustomTypeDesc)3098         public static System.ComponentModel.TypeConverter GetConverter(object component, bool noCustomTypeDesc) { throw null; }
GetConverter(System.Type type)3099         public static System.ComponentModel.TypeConverter GetConverter(System.Type type) { throw null; }
GetDefaultEvent(object component)3100         public static System.ComponentModel.EventDescriptor GetDefaultEvent(object component) { throw null; }
3101         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDefaultEvent(object component, bool noCustomTypeDesc)3102         public static System.ComponentModel.EventDescriptor GetDefaultEvent(object component, bool noCustomTypeDesc) { throw null; }
GetDefaultEvent(System.Type componentType)3103         public static System.ComponentModel.EventDescriptor GetDefaultEvent(System.Type componentType) { throw null; }
GetDefaultProperty(object component)3104         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component) { throw null; }
3105         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDefaultProperty(object component, bool noCustomTypeDesc)3106         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(object component, bool noCustomTypeDesc) { throw null; }
GetDefaultProperty(System.Type componentType)3107         public static System.ComponentModel.PropertyDescriptor GetDefaultProperty(System.Type componentType) { throw null; }
GetEditor(object component, System.Type editorBaseType)3108         public static object GetEditor(object component, System.Type editorBaseType) { throw null; }
3109         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEditor(object component, System.Type editorBaseType, bool noCustomTypeDesc)3110         public static object GetEditor(object component, System.Type editorBaseType, bool noCustomTypeDesc) { throw null; }
GetEditor(System.Type type, System.Type editorBaseType)3111         public static object GetEditor(System.Type type, System.Type editorBaseType) { throw null; }
GetEvents(object component)3112         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component) { throw null; }
GetEvents(object component, System.Attribute[] attributes)3113         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes) { throw null; }
3114         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEvents(object component, System.Attribute[] attributes, bool noCustomTypeDesc)3115         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, System.Attribute[] attributes, bool noCustomTypeDesc) { throw null; }
3116         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetEvents(object component, bool noCustomTypeDesc)3117         public static System.ComponentModel.EventDescriptorCollection GetEvents(object component, bool noCustomTypeDesc) { throw null; }
GetEvents(System.Type componentType)3118         public static System.ComponentModel.EventDescriptorCollection GetEvents(System.Type componentType) { throw null; }
GetEvents(System.Type componentType, System.Attribute[] attributes)3119         public static System.ComponentModel.EventDescriptorCollection GetEvents(System.Type componentType, System.Attribute[] attributes) { throw null; }
GetFullComponentName(object component)3120         public static string GetFullComponentName(object component) { throw null; }
GetProperties(object component)3121         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component) { throw null; }
GetProperties(object component, System.Attribute[] attributes)3122         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes) { throw null; }
GetProperties(object component, System.Attribute[] attributes, bool noCustomTypeDesc)3123         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, System.Attribute[] attributes, bool noCustomTypeDesc) { throw null; }
3124         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProperties(object component, bool noCustomTypeDesc)3125         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(object component, bool noCustomTypeDesc) { throw null; }
GetProperties(System.Type componentType)3126         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Type componentType) { throw null; }
GetProperties(System.Type componentType, System.Attribute[] attributes)3127         public static System.ComponentModel.PropertyDescriptorCollection GetProperties(System.Type componentType, System.Attribute[] attributes) { throw null; }
3128         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProvider(object instance)3129         public static System.ComponentModel.TypeDescriptionProvider GetProvider(object instance) { throw null; }
3130         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetProvider(System.Type type)3131         public static System.ComponentModel.TypeDescriptionProvider GetProvider(System.Type type) { throw null; }
3132         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetReflectionType(object instance)3133         public static System.Type GetReflectionType(object instance) { throw null; }
3134         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetReflectionType(System.Type type)3135         public static System.Type GetReflectionType(System.Type type) { throw null; }
Refresh(object component)3136         public static void Refresh(object component) { }
Refresh(System.Reflection.Assembly assembly)3137         public static void Refresh(System.Reflection.Assembly assembly) { }
Refresh(System.Reflection.Module module)3138         public static void Refresh(System.Reflection.Module module) { }
Refresh(System.Type type)3139         public static void Refresh(System.Type type) { }
3140         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3141         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveAssociation(object primary, object secondary)3142         public static void RemoveAssociation(object primary, object secondary) { }
3143         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3144         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveAssociations(object primary)3145         public static void RemoveAssociations(object primary) { }
3146         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3147         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance)3148         public static void RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
3149         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
3150         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)3151         public static void RemoveProvider(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
3152         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance)3153         public static void RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, object instance) { }
3154         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type)3155         public static void RemoveProviderTransparent(System.ComponentModel.TypeDescriptionProvider provider, System.Type type) { }
SortDescriptorArray(System.Collections.IList infos)3156         public static void SortDescriptorArray(System.Collections.IList infos) { }
3157     }
3158     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3159     public abstract partial class TypeListConverter : System.ComponentModel.TypeConverter
3160     {
TypeListConverter(System.Type[] types)3161         protected TypeListConverter(System.Type[] types) { }
CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType)3162         public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)3163         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)3164         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)3165         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)3166         public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context)3167         public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)3168         public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
3169     }
3170     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3171     public partial class UInt16Converter : System.ComponentModel.BaseNumberConverter
3172     {
UInt16Converter()3173         public UInt16Converter() { }
3174     }
3175     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3176     public partial class UInt32Converter : System.ComponentModel.BaseNumberConverter
3177     {
UInt32Converter()3178         public UInt32Converter() { }
3179     }
3180     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3181     public partial class UInt64Converter : System.ComponentModel.BaseNumberConverter
3182     {
UInt64Converter()3183         public UInt64Converter() { }
3184     }
3185     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3186     [System.SerializableAttribute]
3187     public partial class WarningException : System.SystemException
3188     {
WarningException()3189         public WarningException() { }
WarningException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3190         protected WarningException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
WarningException(string message)3191         public WarningException(string message) { }
WarningException(string message, System.Exception innerException)3192         public WarningException(string message, System.Exception innerException) { }
WarningException(string message, string helpUrl)3193         public WarningException(string message, string helpUrl) { }
WarningException(string message, string helpUrl, string helpTopic)3194         public WarningException(string message, string helpUrl, string helpTopic) { }
3195         public string HelpTopic { get { throw null; } }
3196         public string HelpUrl { get { throw null; } }
3197         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3198         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3199     }
3200     [System.Security.SuppressUnmanagedCodeSecurityAttribute]
3201     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3202     [System.SerializableAttribute]
3203     public partial class Win32Exception : System.Runtime.InteropServices.ExternalException, System.Runtime.Serialization.ISerializable
3204     {
3205         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception()3206         public Win32Exception() { }
3207         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(int error)3208         public Win32Exception(int error) { }
3209         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(int error, string message)3210         public Win32Exception(int error, string message) { }
Win32Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3211         protected Win32Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3212         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(string message)3213         public Win32Exception(string message) { }
3214         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Win32Exception(string message, System.Exception innerException)3215         public Win32Exception(string message, System.Exception innerException) { }
3216         public int NativeErrorCode { get { throw null; } }
3217         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3218         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3219     }
3220 }
3221 namespace System.ComponentModel.Design
3222 {
3223     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3224     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3225     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3226     public partial class ActiveDesignerEventArgs : System.EventArgs
3227     {
ActiveDesignerEventArgs(System.ComponentModel.Design.IDesignerHost oldDesigner, System.ComponentModel.Design.IDesignerHost newDesigner)3228         public ActiveDesignerEventArgs(System.ComponentModel.Design.IDesignerHost oldDesigner, System.ComponentModel.Design.IDesignerHost newDesigner) { }
3229         public System.ComponentModel.Design.IDesignerHost NewDesigner { get { throw null; } }
3230         public System.ComponentModel.Design.IDesignerHost OldDesigner { get { throw null; } }
3231     }
3232     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ActiveDesignerEventHandler(object sender, System.ComponentModel.Design.ActiveDesignerEventArgs e)3233     public delegate void ActiveDesignerEventHandler(object sender, System.ComponentModel.Design.ActiveDesignerEventArgs e);
3234     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3235     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3236     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3237     [System.SerializableAttribute]
3238     public partial class CheckoutException : System.Runtime.InteropServices.ExternalException
3239     {
3240         public static readonly System.ComponentModel.Design.CheckoutException Canceled;
CheckoutException()3241         public CheckoutException() { }
CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3242         protected CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
CheckoutException(string message)3243         public CheckoutException(string message) { }
CheckoutException(string message, System.Exception innerException)3244         public CheckoutException(string message, System.Exception innerException) { }
CheckoutException(string message, int errorCode)3245         public CheckoutException(string message, int errorCode) { }
3246     }
3247     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3248     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3249     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3250     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3251     public partial class CommandID
3252     {
CommandID(System.Guid menuGroup, int commandID)3253         public CommandID(System.Guid menuGroup, int commandID) { }
3254         public virtual System.Guid Guid { get { throw null; } }
3255         public virtual int ID { get { throw null; } }
Equals(object obj)3256         public override bool Equals(object obj) { throw null; }
GetHashCode()3257         public override int GetHashCode() { throw null; }
ToString()3258         public override string ToString() { throw null; }
3259     }
3260     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3261     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3262     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3263     public sealed partial class ComponentChangedEventArgs : System.EventArgs
3264     {
ComponentChangedEventArgs(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue)3265         public ComponentChangedEventArgs(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue) { }
3266         public object Component { get { throw null; } }
3267         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
3268         public object NewValue { get { throw null; } }
3269         public object OldValue { get { throw null; } }
3270     }
3271     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3272     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentChangedEventHandler(object sender, System.ComponentModel.Design.ComponentChangedEventArgs e)3273     public delegate void ComponentChangedEventHandler(object sender, System.ComponentModel.Design.ComponentChangedEventArgs e);
3274     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3275     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3276     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3277     public sealed partial class ComponentChangingEventArgs : System.EventArgs
3278     {
ComponentChangingEventArgs(object component, System.ComponentModel.MemberDescriptor member)3279         public ComponentChangingEventArgs(object component, System.ComponentModel.MemberDescriptor member) { }
3280         public object Component { get { throw null; } }
3281         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
3282     }
3283     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3284     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentChangingEventHandler(object sender, System.ComponentModel.Design.ComponentChangingEventArgs e)3285     public delegate void ComponentChangingEventHandler(object sender, System.ComponentModel.Design.ComponentChangingEventArgs e);
3286     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3287     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3288     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3289     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3290     public partial class ComponentEventArgs : System.EventArgs
3291     {
ComponentEventArgs(System.ComponentModel.IComponent component)3292         public ComponentEventArgs(System.ComponentModel.IComponent component) { }
3293         public virtual System.ComponentModel.IComponent Component { get { throw null; } }
3294     }
3295     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3296     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentEventHandler(object sender, System.ComponentModel.Design.ComponentEventArgs e)3297     public delegate void ComponentEventHandler(object sender, System.ComponentModel.Design.ComponentEventArgs e);
3298     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3299     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3300     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3301     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3302     public partial class ComponentRenameEventArgs : System.EventArgs
3303     {
ComponentRenameEventArgs(object component, string oldName, string newName)3304         public ComponentRenameEventArgs(object component, string oldName, string newName) { }
3305         public object Component { get { throw null; } }
3306         public virtual string NewName { get { throw null; } }
3307         public virtual string OldName { get { throw null; } }
3308     }
3309     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3310     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ComponentRenameEventHandler(object sender, System.ComponentModel.Design.ComponentRenameEventArgs e)3311     public delegate void ComponentRenameEventHandler(object sender, System.ComponentModel.Design.ComponentRenameEventArgs e);
3312     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3313     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3314     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3315     public partial class DesignerCollection : System.Collections.ICollection, System.Collections.IEnumerable
3316     {
DesignerCollection(System.Collections.IList designers)3317         public DesignerCollection(System.Collections.IList designers) { }
DesignerCollection(System.ComponentModel.Design.IDesignerHost[] designers)3318         public DesignerCollection(System.ComponentModel.Design.IDesignerHost[] designers) { }
3319         public int Count { get { throw null; } }
3320         public virtual System.ComponentModel.Design.IDesignerHost this[int index] { get { throw null; } }
3321         int System.Collections.ICollection.Count { get { throw null; } }
3322         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3323         object System.Collections.ICollection.SyncRoot { get { throw null; } }
GetEnumerator()3324         public System.Collections.IEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)3325         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()3326         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
3327     }
3328     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3329     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3330     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3331     public partial class DesignerEventArgs : System.EventArgs
3332     {
DesignerEventArgs(System.ComponentModel.Design.IDesignerHost host)3333         public DesignerEventArgs(System.ComponentModel.Design.IDesignerHost host) { }
3334         public System.ComponentModel.Design.IDesignerHost Designer { get { throw null; } }
3335     }
3336     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DesignerEventHandler(object sender, System.ComponentModel.Design.DesignerEventArgs e)3337     public delegate void DesignerEventHandler(object sender, System.ComponentModel.Design.DesignerEventArgs e);
3338     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3339     public abstract partial class DesignerOptionService : System.ComponentModel.Design.IDesignerOptionService
3340     {
DesignerOptionService()3341         protected DesignerOptionService() { }
3342         public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection Options { get { throw null; } }
CreateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection parent, string name, object value)3343         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)3344         protected virtual void PopulateOptionCollection(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options) { }
ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject)3345         protected virtual bool ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject) { throw null; }
System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName)3346         object System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName) { throw null; }
System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value)3347         void System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value) { }
3348         [System.ComponentModel.EditorAttribute("", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3349         [System.ComponentModel.TypeConverterAttribute("System.ComponentModel.Design.DesignerOptionService.DesignerOptionConverter")]
3350         public sealed partial class DesignerOptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
3351         {
DesignerOptionCollection()3352             internal DesignerOptionCollection() { }
3353             public int Count { get { throw null; } }
3354             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[int index] { get { throw null; } }
3355             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[string name] { get { throw null; } }
3356             public string Name { get { throw null; } }
3357             public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection Parent { get { throw null; } }
3358             public System.ComponentModel.PropertyDescriptorCollection Properties { get { throw null; } }
3359             bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3360             object System.Collections.ICollection.SyncRoot { get { throw null; } }
3361             bool System.Collections.IList.IsFixedSize { get { throw null; } }
3362             bool System.Collections.IList.IsReadOnly { get { throw null; } }
3363             object System.Collections.IList.this[int index] { get { throw null; } set { } }
CopyTo(System.Array array, int index)3364             public void CopyTo(System.Array array, int index) { }
GetEnumerator()3365             public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection value)3366             public int IndexOf(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection value) { throw null; }
ShowDialog()3367             public bool ShowDialog() { throw null; }
System.Collections.IList.Add(object value)3368             int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()3369             void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)3370             bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)3371             int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)3372             void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)3373             void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)3374             void System.Collections.IList.RemoveAt(int index) { }
3375         }
3376     }
3377     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3378     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3379     public abstract partial class DesignerTransaction : System.IDisposable
3380     {
DesignerTransaction()3381         protected DesignerTransaction() { }
DesignerTransaction(string description)3382         protected DesignerTransaction(string description) { }
3383         public bool Canceled { get { throw null; } }
3384         public bool Committed { get { throw null; } }
3385         public string Description { get { throw null; } }
Cancel()3386         public void Cancel() { }
Commit()3387         public void Commit() { }
Dispose(bool disposing)3388         protected virtual void Dispose(bool disposing) { }
~DesignerTransaction()3389         ~DesignerTransaction() { }
OnCancel()3390         protected abstract void OnCancel();
OnCommit()3391         protected abstract void OnCommit();
System.IDisposable.Dispose()3392         void System.IDisposable.Dispose() { }
3393     }
3394     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3395     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3396     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3397     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3398     public partial class DesignerTransactionCloseEventArgs : System.EventArgs
3399     {
3400         [System.ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool, bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
DesignerTransactionCloseEventArgs(bool commit)3401         public DesignerTransactionCloseEventArgs(bool commit) { }
DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction)3402         public DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction) { }
3403         public bool LastTransaction { get { throw null; } }
3404         public bool TransactionCommitted { get { throw null; } }
3405     }
3406     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3407     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
DesignerTransactionCloseEventHandler(object sender, System.ComponentModel.Design.DesignerTransactionCloseEventArgs e)3408     public delegate void DesignerTransactionCloseEventHandler(object sender, System.ComponentModel.Design.DesignerTransactionCloseEventArgs e);
3409     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3410     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3411     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3412     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3413     public partial class DesignerVerb : System.ComponentModel.Design.MenuCommand
3414     {
DesignerVerb(string text, System.EventHandler handler)3415         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)3416         public DesignerVerb(string text, System.EventHandler handler, System.ComponentModel.Design.CommandID startCommandID) : base (default(System.EventHandler), default(System.ComponentModel.Design.CommandID)) { }
3417         public string Description { get { throw null; } set { } }
3418         public string Text { get { throw null; } }
ToString()3419         public override string ToString() { throw null; }
3420     }
3421     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3422     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3423     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3424     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3425     public partial class DesignerVerbCollection : System.Collections.CollectionBase
3426     {
DesignerVerbCollection()3427         public DesignerVerbCollection() { }
DesignerVerbCollection(System.ComponentModel.Design.DesignerVerb[] value)3428         public DesignerVerbCollection(System.ComponentModel.Design.DesignerVerb[] value) { }
3429         public System.ComponentModel.Design.DesignerVerb this[int index] { get { throw null; } set { } }
Add(System.ComponentModel.Design.DesignerVerb value)3430         public int Add(System.ComponentModel.Design.DesignerVerb value) { throw null; }
AddRange(System.ComponentModel.Design.DesignerVerbCollection value)3431         public void AddRange(System.ComponentModel.Design.DesignerVerbCollection value) { }
AddRange(System.ComponentModel.Design.DesignerVerb[] value)3432         public void AddRange(System.ComponentModel.Design.DesignerVerb[] value) { }
Contains(System.ComponentModel.Design.DesignerVerb value)3433         public bool Contains(System.ComponentModel.Design.DesignerVerb value) { throw null; }
CopyTo(System.ComponentModel.Design.DesignerVerb[] array, int index)3434         public void CopyTo(System.ComponentModel.Design.DesignerVerb[] array, int index) { }
IndexOf(System.ComponentModel.Design.DesignerVerb value)3435         public int IndexOf(System.ComponentModel.Design.DesignerVerb value) { throw null; }
Insert(int index, System.ComponentModel.Design.DesignerVerb value)3436         public void Insert(int index, System.ComponentModel.Design.DesignerVerb value) { }
OnClear()3437         protected override void OnClear() { }
OnInsert(int index, object value)3438         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)3439         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)3440         protected override void OnSet(int index, object oldValue, object newValue) { }
OnValidate(object value)3441         protected override void OnValidate(object value) { }
Remove(System.ComponentModel.Design.DesignerVerb value)3442         public void Remove(System.ComponentModel.Design.DesignerVerb value) { }
3443     }
3444     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3445     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3446     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3447     public partial class DesigntimeLicenseContext : System.ComponentModel.LicenseContext
3448     {
DesigntimeLicenseContext()3449         public DesigntimeLicenseContext() { }
3450         public override System.ComponentModel.LicenseUsageMode UsageMode { get { throw null; } }
GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly)3451         public override string GetSavedLicenseKey(System.Type type, System.Reflection.Assembly resourceAssembly) { throw null; }
SetSavedLicenseKey(System.Type type, string key)3452         public override void SetSavedLicenseKey(System.Type type, string key) { }
3453     }
3454     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3455     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3456     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3457     public partial class DesigntimeLicenseContextSerializer
3458     {
DesigntimeLicenseContextSerializer()3459         internal DesigntimeLicenseContextSerializer() { }
Serialize(System.IO.Stream o, string cryptoKey, System.ComponentModel.Design.DesigntimeLicenseContext context)3460         public static void Serialize(System.IO.Stream o, string cryptoKey, System.ComponentModel.Design.DesigntimeLicenseContext context) { }
3461     }
3462     public enum HelpContextType
3463     {
3464         Ambient = 0,
3465         Selection = 2,
3466         ToolWindowSelection = 3,
3467         Window = 1,
3468     }
3469     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=false, Inherited=false)]
3470     [System.SerializableAttribute]
3471     public sealed partial class HelpKeywordAttribute : System.Attribute
3472     {
3473         public static readonly System.ComponentModel.Design.HelpKeywordAttribute Default;
HelpKeywordAttribute()3474         public HelpKeywordAttribute() { }
HelpKeywordAttribute(string keyword)3475         public HelpKeywordAttribute(string keyword) { }
HelpKeywordAttribute(System.Type t)3476         public HelpKeywordAttribute(System.Type t) { }
3477         public string HelpKeyword { 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     public enum HelpKeywordType
3483     {
3484         F1Keyword = 0,
3485         FilterKeyword = 2,
3486         GeneralKeyword = 1,
3487     }
3488     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3489     public partial interface IComponentChangeService
3490     {
3491         event System.ComponentModel.Design.ComponentEventHandler ComponentAdded;
3492         event System.ComponentModel.Design.ComponentEventHandler ComponentAdding;
3493         event System.ComponentModel.Design.ComponentChangedEventHandler ComponentChanged;
3494         event System.ComponentModel.Design.ComponentChangingEventHandler ComponentChanging;
3495         event System.ComponentModel.Design.ComponentEventHandler ComponentRemoved;
3496         event System.ComponentModel.Design.ComponentEventHandler ComponentRemoving;
3497         event System.ComponentModel.Design.ComponentRenameEventHandler ComponentRename;
OnComponentChanged(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue)3498         void OnComponentChanged(object component, System.ComponentModel.MemberDescriptor member, object oldValue, object newValue);
OnComponentChanging(object component, System.ComponentModel.MemberDescriptor member)3499         void OnComponentChanging(object component, System.ComponentModel.MemberDescriptor member);
3500     }
3501     public partial interface IComponentDiscoveryService
3502     {
GetComponentTypes(System.ComponentModel.Design.IDesignerHost designerHost, System.Type baseType)3503         System.Collections.ICollection GetComponentTypes(System.ComponentModel.Design.IDesignerHost designerHost, System.Type baseType);
3504     }
3505     public partial interface IComponentInitializer
3506     {
InitializeExistingComponent(System.Collections.IDictionary defaultValues)3507         void InitializeExistingComponent(System.Collections.IDictionary defaultValues);
InitializeNewComponent(System.Collections.IDictionary defaultValues)3508         void InitializeNewComponent(System.Collections.IDictionary defaultValues);
3509     }
3510     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3511     public partial interface IDesigner : System.IDisposable
3512     {
3513         System.ComponentModel.IComponent Component { get; }
3514         System.ComponentModel.Design.DesignerVerbCollection Verbs { get; }
DoDefaultAction()3515         void DoDefaultAction();
Initialize(System.ComponentModel.IComponent component)3516         void Initialize(System.ComponentModel.IComponent component);
3517     }
3518     public partial interface IDesignerEventService
3519     {
3520         System.ComponentModel.Design.IDesignerHost ActiveDesigner { get; }
3521         System.ComponentModel.Design.DesignerCollection Designers { get; }
3522         event System.ComponentModel.Design.ActiveDesignerEventHandler ActiveDesignerChanged;
3523         event System.ComponentModel.Design.DesignerEventHandler DesignerCreated;
3524         event System.ComponentModel.Design.DesignerEventHandler DesignerDisposed;
3525         event System.EventHandler SelectionChanged;
3526     }
3527     public partial interface IDesignerFilter
3528     {
PostFilterAttributes(System.Collections.IDictionary attributes)3529         void PostFilterAttributes(System.Collections.IDictionary attributes);
PostFilterEvents(System.Collections.IDictionary events)3530         void PostFilterEvents(System.Collections.IDictionary events);
PostFilterProperties(System.Collections.IDictionary properties)3531         void PostFilterProperties(System.Collections.IDictionary properties);
PreFilterAttributes(System.Collections.IDictionary attributes)3532         void PreFilterAttributes(System.Collections.IDictionary attributes);
PreFilterEvents(System.Collections.IDictionary events)3533         void PreFilterEvents(System.Collections.IDictionary events);
PreFilterProperties(System.Collections.IDictionary properties)3534         void PreFilterProperties(System.Collections.IDictionary properties);
3535     }
3536     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3537     public partial interface IDesignerHost : System.ComponentModel.Design.IServiceContainer, System.IServiceProvider
3538     {
3539         System.ComponentModel.IContainer Container { get; }
3540         bool InTransaction { get; }
3541         bool Loading { get; }
3542         System.ComponentModel.IComponent RootComponent { get; }
3543         string RootComponentClassName { get; }
3544         string TransactionDescription { get; }
3545         event System.EventHandler Activated;
3546         event System.EventHandler Deactivated;
3547         event System.EventHandler LoadComplete;
3548         event System.ComponentModel.Design.DesignerTransactionCloseEventHandler TransactionClosed;
3549         event System.ComponentModel.Design.DesignerTransactionCloseEventHandler TransactionClosing;
3550         event System.EventHandler TransactionOpened;
3551         event System.EventHandler TransactionOpening;
Activate()3552         void Activate();
CreateComponent(System.Type componentClass)3553         System.ComponentModel.IComponent CreateComponent(System.Type componentClass);
CreateComponent(System.Type componentClass, string name)3554         System.ComponentModel.IComponent CreateComponent(System.Type componentClass, string name);
CreateTransaction()3555         System.ComponentModel.Design.DesignerTransaction CreateTransaction();
CreateTransaction(string description)3556         System.ComponentModel.Design.DesignerTransaction CreateTransaction(string description);
DestroyComponent(System.ComponentModel.IComponent component)3557         void DestroyComponent(System.ComponentModel.IComponent component);
GetDesigner(System.ComponentModel.IComponent component)3558         System.ComponentModel.Design.IDesigner GetDesigner(System.ComponentModel.IComponent component);
GetType(string typeName)3559         System.Type GetType(string typeName);
3560     }
3561     public partial interface IDesignerHostTransactionState
3562     {
3563         bool IsClosingTransaction { get; }
3564     }
3565     public partial interface IDesignerOptionService
3566     {
GetOptionValue(string pageName, string valueName)3567         object GetOptionValue(string pageName, string valueName);
SetOptionValue(string pageName, string valueName, object value)3568         void SetOptionValue(string pageName, string valueName, object value);
3569     }
3570     public partial interface IDictionaryService
3571     {
GetKey(object value)3572         object GetKey(object value);
GetValue(object key)3573         object GetValue(object key);
SetValue(object key, object value)3574         void SetValue(object key, object value);
3575     }
3576     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3577     public partial interface IEventBindingService
3578     {
CreateUniqueMethodName(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e)3579         string CreateUniqueMethodName(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
GetCompatibleMethods(System.ComponentModel.EventDescriptor e)3580         System.Collections.ICollection GetCompatibleMethods(System.ComponentModel.EventDescriptor e);
GetEvent(System.ComponentModel.PropertyDescriptor property)3581         System.ComponentModel.EventDescriptor GetEvent(System.ComponentModel.PropertyDescriptor property);
GetEventProperties(System.ComponentModel.EventDescriptorCollection events)3582         System.ComponentModel.PropertyDescriptorCollection GetEventProperties(System.ComponentModel.EventDescriptorCollection events);
GetEventProperty(System.ComponentModel.EventDescriptor e)3583         System.ComponentModel.PropertyDescriptor GetEventProperty(System.ComponentModel.EventDescriptor e);
ShowCode()3584         bool ShowCode();
ShowCode(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e)3585         bool ShowCode(System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
ShowCode(int lineNumber)3586         bool ShowCode(int lineNumber);
3587     }
3588     public partial interface IExtenderListService
3589     {
GetExtenderProviders()3590         System.ComponentModel.IExtenderProvider[] GetExtenderProviders();
3591     }
3592     public partial interface IExtenderProviderService
3593     {
AddExtenderProvider(System.ComponentModel.IExtenderProvider provider)3594         void AddExtenderProvider(System.ComponentModel.IExtenderProvider provider);
RemoveExtenderProvider(System.ComponentModel.IExtenderProvider provider)3595         void RemoveExtenderProvider(System.ComponentModel.IExtenderProvider provider);
3596     }
3597     public partial interface IHelpService
3598     {
AddContextAttribute(string name, string value, System.ComponentModel.Design.HelpKeywordType keywordType)3599         void AddContextAttribute(string name, string value, System.ComponentModel.Design.HelpKeywordType keywordType);
ClearContextAttributes()3600         void ClearContextAttributes();
CreateLocalContext(System.ComponentModel.Design.HelpContextType contextType)3601         System.ComponentModel.Design.IHelpService CreateLocalContext(System.ComponentModel.Design.HelpContextType contextType);
RemoveContextAttribute(string name, string value)3602         void RemoveContextAttribute(string name, string value);
RemoveLocalContext(System.ComponentModel.Design.IHelpService localContext)3603         void RemoveLocalContext(System.ComponentModel.Design.IHelpService localContext);
ShowHelpFromKeyword(string helpKeyword)3604         void ShowHelpFromKeyword(string helpKeyword);
ShowHelpFromUrl(string helpUrl)3605         void ShowHelpFromUrl(string helpUrl);
3606     }
3607     public partial interface IInheritanceService
3608     {
AddInheritedComponents(System.ComponentModel.IComponent component, System.ComponentModel.IContainer container)3609         void AddInheritedComponents(System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
GetInheritanceAttribute(System.ComponentModel.IComponent component)3610         System.ComponentModel.InheritanceAttribute GetInheritanceAttribute(System.ComponentModel.IComponent component);
3611     }
3612     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3613     public partial interface IMenuCommandService
3614     {
3615         System.ComponentModel.Design.DesignerVerbCollection Verbs { get; }
AddCommand(System.ComponentModel.Design.MenuCommand command)3616         void AddCommand(System.ComponentModel.Design.MenuCommand command);
AddVerb(System.ComponentModel.Design.DesignerVerb verb)3617         void AddVerb(System.ComponentModel.Design.DesignerVerb verb);
FindCommand(System.ComponentModel.Design.CommandID commandID)3618         System.ComponentModel.Design.MenuCommand FindCommand(System.ComponentModel.Design.CommandID commandID);
GlobalInvoke(System.ComponentModel.Design.CommandID commandID)3619         bool GlobalInvoke(System.ComponentModel.Design.CommandID commandID);
RemoveCommand(System.ComponentModel.Design.MenuCommand command)3620         void RemoveCommand(System.ComponentModel.Design.MenuCommand command);
RemoveVerb(System.ComponentModel.Design.DesignerVerb verb)3621         void RemoveVerb(System.ComponentModel.Design.DesignerVerb verb);
ShowContextMenu(System.ComponentModel.Design.CommandID menuID, int x, int y)3622         void ShowContextMenu(System.ComponentModel.Design.CommandID menuID, int x, int y);
3623     }
3624     public partial interface IReferenceService
3625     {
GetComponent(object reference)3626         System.ComponentModel.IComponent GetComponent(object reference);
GetName(object reference)3627         string GetName(object reference);
GetReference(string name)3628         object GetReference(string name);
GetReferences()3629         object[] GetReferences();
GetReferences(System.Type baseType)3630         object[] GetReferences(System.Type baseType);
3631     }
3632     public partial interface IResourceService
3633     {
GetResourceReader(System.Globalization.CultureInfo info)3634         System.Resources.IResourceReader GetResourceReader(System.Globalization.CultureInfo info);
GetResourceWriter(System.Globalization.CultureInfo info)3635         System.Resources.IResourceWriter GetResourceWriter(System.Globalization.CultureInfo info);
3636     }
3637     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3638     public partial interface IRootDesigner : System.ComponentModel.Design.IDesigner, System.IDisposable
3639     {
3640         System.ComponentModel.Design.ViewTechnology[] SupportedTechnologies { get; }
GetView(System.ComponentModel.Design.ViewTechnology technology)3641         object GetView(System.ComponentModel.Design.ViewTechnology technology);
3642     }
3643     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3644     public partial interface ISelectionService
3645     {
3646         object PrimarySelection { get; }
3647         int SelectionCount { get; }
3648         event System.EventHandler SelectionChanged;
3649         event System.EventHandler SelectionChanging;
GetComponentSelected(object component)3650         bool GetComponentSelected(object component);
GetSelectedComponents()3651         System.Collections.ICollection GetSelectedComponents();
SetSelectedComponents(System.Collections.ICollection components)3652         void SetSelectedComponents(System.Collections.ICollection components);
SetSelectedComponents(System.Collections.ICollection components, System.ComponentModel.Design.SelectionTypes selectionType)3653         void SetSelectedComponents(System.Collections.ICollection components, System.ComponentModel.Design.SelectionTypes selectionType);
3654     }
3655     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3656     public partial interface IServiceContainer : System.IServiceProvider
3657     {
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback)3658         void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback);
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote)3659         void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote);
AddService(System.Type serviceType, object serviceInstance)3660         void AddService(System.Type serviceType, object serviceInstance);
AddService(System.Type serviceType, object serviceInstance, bool promote)3661         void AddService(System.Type serviceType, object serviceInstance, bool promote);
RemoveService(System.Type serviceType)3662         void RemoveService(System.Type serviceType);
RemoveService(System.Type serviceType, bool promote)3663         void RemoveService(System.Type serviceType, bool promote);
3664     }
3665     public partial interface ITreeDesigner : System.ComponentModel.Design.IDesigner, System.IDisposable
3666     {
3667         System.Collections.ICollection Children { get; }
3668         System.ComponentModel.Design.IDesigner Parent { get; }
3669     }
3670     public partial interface ITypeDescriptorFilterService
3671     {
FilterAttributes(System.ComponentModel.IComponent component, System.Collections.IDictionary attributes)3672         bool FilterAttributes(System.ComponentModel.IComponent component, System.Collections.IDictionary attributes);
FilterEvents(System.ComponentModel.IComponent component, System.Collections.IDictionary events)3673         bool FilterEvents(System.ComponentModel.IComponent component, System.Collections.IDictionary events);
FilterProperties(System.ComponentModel.IComponent component, System.Collections.IDictionary properties)3674         bool FilterProperties(System.ComponentModel.IComponent component, System.Collections.IDictionary properties);
3675     }
3676     public partial interface ITypeDiscoveryService
3677     {
GetTypes(System.Type baseType, bool excludeGlobalTypes)3678         System.Collections.ICollection GetTypes(System.Type baseType, bool excludeGlobalTypes);
3679     }
3680     public partial interface ITypeResolutionService
3681     {
GetAssembly(System.Reflection.AssemblyName name)3682         System.Reflection.Assembly GetAssembly(System.Reflection.AssemblyName name);
GetAssembly(System.Reflection.AssemblyName name, bool throwOnError)3683         System.Reflection.Assembly GetAssembly(System.Reflection.AssemblyName name, bool throwOnError);
GetPathOfAssembly(System.Reflection.AssemblyName name)3684         string GetPathOfAssembly(System.Reflection.AssemblyName name);
GetType(string name)3685         System.Type GetType(string name);
GetType(string name, bool throwOnError)3686         System.Type GetType(string name, bool throwOnError);
GetType(string name, bool throwOnError, bool ignoreCase)3687         System.Type GetType(string name, bool throwOnError, bool ignoreCase);
ReferenceAssembly(System.Reflection.AssemblyName name)3688         void ReferenceAssembly(System.Reflection.AssemblyName name);
3689     }
3690     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3691     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3692     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3693     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3694     public partial class MenuCommand
3695     {
MenuCommand(System.EventHandler handler, System.ComponentModel.Design.CommandID command)3696         public MenuCommand(System.EventHandler handler, System.ComponentModel.Design.CommandID command) { }
3697         public virtual bool Checked { get { throw null; } set { } }
3698         public virtual System.ComponentModel.Design.CommandID CommandID { get { throw null; } }
3699         public virtual bool Enabled { get { throw null; } set { } }
3700         public virtual int OleStatus { get { throw null; } }
3701         public virtual System.Collections.IDictionary Properties { get { throw null; } }
3702         public virtual bool Supported { get { throw null; } set { } }
3703         public virtual bool Visible { get { throw null; } set { } }
3704         public event System.EventHandler CommandChanged { add { } remove { } }
Invoke()3705         public virtual void Invoke() { }
Invoke(object arg)3706         public virtual void Invoke(object arg) { }
OnCommandChanged(System.EventArgs e)3707         protected virtual void OnCommandChanged(System.EventArgs e) { }
ToString()3708         public override string ToString() { throw null; }
3709     }
3710     [System.FlagsAttribute]
3711     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3712     public enum SelectionTypes
3713     {
3714         Add = 64,
3715         Auto = 1,
3716         [System.ObsoleteAttribute("This value has been deprecated. Use SelectionTypes.Primary instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
3717         Click = 16,
3718         [System.ObsoleteAttribute("This value has been deprecated.  It is no longer supported. http://go.microsoft.com/fwlink/?linkid=14202")]
3719         MouseDown = 4,
3720         [System.ObsoleteAttribute("This value has been deprecated.  It is no longer supported. http://go.microsoft.com/fwlink/?linkid=14202")]
3721         MouseUp = 8,
3722         [System.ObsoleteAttribute("This value has been deprecated. Use SelectionTypes.Auto instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
3723         Normal = 1,
3724         Primary = 16,
3725         Remove = 128,
3726         Replace = 2,
3727         Toggle = 32,
3728         [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")]
3729         Valid = 31,
3730     }
3731     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3732     public partial class ServiceContainer : System.ComponentModel.Design.IServiceContainer, System.IDisposable, System.IServiceProvider
3733     {
ServiceContainer()3734         public ServiceContainer() { }
ServiceContainer(System.IServiceProvider parentProvider)3735         public ServiceContainer(System.IServiceProvider parentProvider) { }
3736         protected virtual System.Type[] DefaultServices { get { throw null; } }
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback)3737         public void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback) { }
AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote)3738         public virtual void AddService(System.Type serviceType, System.ComponentModel.Design.ServiceCreatorCallback callback, bool promote) { }
AddService(System.Type serviceType, object serviceInstance)3739         public void AddService(System.Type serviceType, object serviceInstance) { }
AddService(System.Type serviceType, object serviceInstance, bool promote)3740         public virtual void AddService(System.Type serviceType, object serviceInstance, bool promote) { }
Dispose()3741         public void Dispose() { }
Dispose(bool disposing)3742         protected virtual void Dispose(bool disposing) { }
GetService(System.Type serviceType)3743         public virtual object GetService(System.Type serviceType) { throw null; }
RemoveService(System.Type serviceType)3744         public void RemoveService(System.Type serviceType) { }
RemoveService(System.Type serviceType, bool promote)3745         public virtual void RemoveService(System.Type serviceType, bool promote) { }
3746     }
3747     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3748     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ServiceCreatorCallback(System.ComponentModel.Design.IServiceContainer container, System.Type serviceType)3749     public delegate object ServiceCreatorCallback(System.ComponentModel.Design.IServiceContainer container, System.Type serviceType);
3750     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3751     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3752     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3753     public partial class StandardCommands
3754     {
3755         public static readonly System.ComponentModel.Design.CommandID AlignBottom;
3756         public static readonly System.ComponentModel.Design.CommandID AlignHorizontalCenters;
3757         public static readonly System.ComponentModel.Design.CommandID AlignLeft;
3758         public static readonly System.ComponentModel.Design.CommandID AlignRight;
3759         public static readonly System.ComponentModel.Design.CommandID AlignToGrid;
3760         public static readonly System.ComponentModel.Design.CommandID AlignTop;
3761         public static readonly System.ComponentModel.Design.CommandID AlignVerticalCenters;
3762         public static readonly System.ComponentModel.Design.CommandID ArrangeBottom;
3763         public static readonly System.ComponentModel.Design.CommandID ArrangeIcons;
3764         public static readonly System.ComponentModel.Design.CommandID ArrangeRight;
3765         public static readonly System.ComponentModel.Design.CommandID BringForward;
3766         public static readonly System.ComponentModel.Design.CommandID BringToFront;
3767         public static readonly System.ComponentModel.Design.CommandID CenterHorizontally;
3768         public static readonly System.ComponentModel.Design.CommandID CenterVertically;
3769         public static readonly System.ComponentModel.Design.CommandID Copy;
3770         public static readonly System.ComponentModel.Design.CommandID Cut;
3771         public static readonly System.ComponentModel.Design.CommandID Delete;
3772         public static readonly System.ComponentModel.Design.CommandID DocumentOutline;
3773         public static readonly System.ComponentModel.Design.CommandID F1Help;
3774         public static readonly System.ComponentModel.Design.CommandID Group;
3775         public static readonly System.ComponentModel.Design.CommandID HorizSpaceConcatenate;
3776         public static readonly System.ComponentModel.Design.CommandID HorizSpaceDecrease;
3777         public static readonly System.ComponentModel.Design.CommandID HorizSpaceIncrease;
3778         public static readonly System.ComponentModel.Design.CommandID HorizSpaceMakeEqual;
3779         public static readonly System.ComponentModel.Design.CommandID LineupIcons;
3780         public static readonly System.ComponentModel.Design.CommandID LockControls;
3781         public static readonly System.ComponentModel.Design.CommandID MultiLevelRedo;
3782         public static readonly System.ComponentModel.Design.CommandID MultiLevelUndo;
3783         public static readonly System.ComponentModel.Design.CommandID Paste;
3784         public static readonly System.ComponentModel.Design.CommandID Properties;
3785         public static readonly System.ComponentModel.Design.CommandID PropertiesWindow;
3786         public static readonly System.ComponentModel.Design.CommandID Redo;
3787         public static readonly System.ComponentModel.Design.CommandID Replace;
3788         public static readonly System.ComponentModel.Design.CommandID SelectAll;
3789         public static readonly System.ComponentModel.Design.CommandID SendBackward;
3790         public static readonly System.ComponentModel.Design.CommandID SendToBack;
3791         public static readonly System.ComponentModel.Design.CommandID ShowGrid;
3792         public static readonly System.ComponentModel.Design.CommandID ShowLargeIcons;
3793         public static readonly System.ComponentModel.Design.CommandID SizeToControl;
3794         public static readonly System.ComponentModel.Design.CommandID SizeToControlHeight;
3795         public static readonly System.ComponentModel.Design.CommandID SizeToControlWidth;
3796         public static readonly System.ComponentModel.Design.CommandID SizeToFit;
3797         public static readonly System.ComponentModel.Design.CommandID SizeToGrid;
3798         public static readonly System.ComponentModel.Design.CommandID SnapToGrid;
3799         public static readonly System.ComponentModel.Design.CommandID TabOrder;
3800         public static readonly System.ComponentModel.Design.CommandID Undo;
3801         public static readonly System.ComponentModel.Design.CommandID Ungroup;
3802         public static readonly System.ComponentModel.Design.CommandID VerbFirst;
3803         public static readonly System.ComponentModel.Design.CommandID VerbLast;
3804         public static readonly System.ComponentModel.Design.CommandID VertSpaceConcatenate;
3805         public static readonly System.ComponentModel.Design.CommandID VertSpaceDecrease;
3806         public static readonly System.ComponentModel.Design.CommandID VertSpaceIncrease;
3807         public static readonly System.ComponentModel.Design.CommandID VertSpaceMakeEqual;
3808         public static readonly System.ComponentModel.Design.CommandID ViewCode;
3809         public static readonly System.ComponentModel.Design.CommandID ViewGrid;
StandardCommands()3810         public StandardCommands() { }
3811     }
3812     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3813     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3814     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3815     public partial class StandardToolWindows
3816     {
3817         public static readonly System.Guid ObjectBrowser;
3818         public static readonly System.Guid OutputWindow;
3819         public static readonly System.Guid ProjectExplorer;
3820         public static readonly System.Guid PropertyBrowser;
3821         public static readonly System.Guid RelatedLinks;
3822         public static readonly System.Guid ServerExplorer;
3823         public static readonly System.Guid TaskList;
3824         public static readonly System.Guid Toolbox;
StandardToolWindows()3825         public StandardToolWindows() { }
3826     }
3827     public abstract partial class TypeDescriptionProviderService
3828     {
TypeDescriptionProviderService()3829         protected TypeDescriptionProviderService() { }
GetProvider(object instance)3830         public abstract System.ComponentModel.TypeDescriptionProvider GetProvider(object instance);
GetProvider(System.Type type)3831         public abstract System.ComponentModel.TypeDescriptionProvider GetProvider(System.Type type);
3832     }
3833     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3834     public enum ViewTechnology
3835     {
3836         Default = 2,
3837         [System.ObsoleteAttribute("This value has been deprecated. Use ViewTechnology.Default instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
3838         Passthrough = 0,
3839         [System.ObsoleteAttribute("This value has been deprecated. Use ViewTechnology.Default instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
3840         WindowsForms = 1,
3841     }
3842 }
3843 namespace System.ComponentModel.Design.Serialization
3844 {
3845     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3846     public abstract partial class ComponentSerializationService
3847     {
ComponentSerializationService()3848         protected ComponentSerializationService() { }
CreateStore()3849         public abstract System.ComponentModel.Design.Serialization.SerializationStore CreateStore();
Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store)3850         public abstract System.Collections.ICollection Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store);
Deserialize(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container)3851         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)3852         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)3853         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)3854         public abstract void DeserializeTo(System.ComponentModel.Design.Serialization.SerializationStore store, System.ComponentModel.IContainer container, bool validateRecycledTypes, bool applyDefaults);
LoadStore(System.IO.Stream stream)3855         public abstract System.ComponentModel.Design.Serialization.SerializationStore LoadStore(System.IO.Stream stream);
Serialize(System.ComponentModel.Design.Serialization.SerializationStore store, object value)3856         public abstract void Serialize(System.ComponentModel.Design.Serialization.SerializationStore store, object value);
SerializeAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object value)3857         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)3858         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)3859         public abstract void SerializeMemberAbsolute(System.ComponentModel.Design.Serialization.SerializationStore store, object owningObject, System.ComponentModel.MemberDescriptor member);
3860     }
3861     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3862     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3863     public sealed partial class ContextStack
3864     {
ContextStack()3865         public ContextStack() { }
3866         public object Current { get { throw null; } }
3867         public object this[int level] { get { throw null; } }
3868         public object this[System.Type type] { get { throw null; } }
Append(object context)3869         public void Append(object context) { }
Pop()3870         public object Pop() { throw null; }
Push(object context)3871         public void Push(object context) { }
3872     }
3873     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=false)]
3874     public sealed partial class DefaultSerializationProviderAttribute : System.Attribute
3875     {
DefaultSerializationProviderAttribute(string providerTypeName)3876         public DefaultSerializationProviderAttribute(string providerTypeName) { }
DefaultSerializationProviderAttribute(System.Type providerType)3877         public DefaultSerializationProviderAttribute(System.Type providerType) { }
3878         public string ProviderTypeName { get { throw null; } }
3879     }
3880     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3881     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3882     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3883     public abstract partial class DesignerLoader
3884     {
DesignerLoader()3885         protected DesignerLoader() { }
3886         public virtual bool Loading { get { throw null; } }
BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost host)3887         public abstract void BeginLoad(System.ComponentModel.Design.Serialization.IDesignerLoaderHost host);
Dispose()3888         public abstract void Dispose();
Flush()3889         public virtual void Flush() { }
3890     }
3891     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
3892     public sealed partial class DesignerSerializerAttribute : System.Attribute
3893     {
DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName)3894         public DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName) { }
DesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType)3895         public DesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType) { }
DesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType)3896         public DesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType) { }
3897         public string SerializerBaseTypeName { get { throw null; } }
3898         public string SerializerTypeName { get { throw null; } }
3899         public override object TypeId { get { throw null; } }
3900     }
3901     public partial interface IDesignerLoaderHost : System.ComponentModel.Design.IDesignerHost, System.ComponentModel.Design.IServiceContainer, System.IServiceProvider
3902     {
EndLoad(string baseClassName, bool successful, System.Collections.ICollection errorCollection)3903         void EndLoad(string baseClassName, bool successful, System.Collections.ICollection errorCollection);
Reload()3904         void Reload();
3905     }
3906     public partial interface IDesignerLoaderHost2 : System.ComponentModel.Design.IDesignerHost, System.ComponentModel.Design.IServiceContainer, System.ComponentModel.Design.Serialization.IDesignerLoaderHost, System.IServiceProvider
3907     {
3908         bool CanReloadWithErrors { get; set; }
3909         bool IgnoreErrorsDuringReload { get; set; }
3910     }
3911     public partial interface IDesignerLoaderService
3912     {
AddLoadDependency()3913         void AddLoadDependency();
DependentLoadComplete(bool successful, System.Collections.ICollection errorCollection)3914         void DependentLoadComplete(bool successful, System.Collections.ICollection errorCollection);
Reload()3915         bool Reload();
3916     }
3917     public partial interface IDesignerSerializationManager : System.IServiceProvider
3918     {
3919         System.ComponentModel.Design.Serialization.ContextStack Context { get; }
3920         System.ComponentModel.PropertyDescriptorCollection Properties { get; }
3921         event System.ComponentModel.Design.Serialization.ResolveNameEventHandler ResolveName;
3922         event System.EventHandler SerializationComplete;
AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider)3923         void AddSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider);
CreateInstance(System.Type type, System.Collections.ICollection arguments, string name, bool addToContainer)3924         object CreateInstance(System.Type type, System.Collections.ICollection arguments, string name, bool addToContainer);
GetInstance(string name)3925         object GetInstance(string name);
GetName(object value)3926         string GetName(object value);
GetSerializer(System.Type objectType, System.Type serializerType)3927         object GetSerializer(System.Type objectType, System.Type serializerType);
GetType(string typeName)3928         System.Type GetType(string typeName);
RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider)3929         void RemoveSerializationProvider(System.ComponentModel.Design.Serialization.IDesignerSerializationProvider provider);
ReportError(object errorInformation)3930         void ReportError(object errorInformation);
SetName(object instance, string name)3931         void SetName(object instance, string name);
3932     }
3933     public partial interface IDesignerSerializationProvider
3934     {
GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager manager, object currentSerializer, System.Type objectType, System.Type serializerType)3935         object GetSerializer(System.ComponentModel.Design.Serialization.IDesignerSerializationManager manager, object currentSerializer, System.Type objectType, System.Type serializerType);
3936     }
3937     public partial interface IDesignerSerializationService
3938     {
Deserialize(object serializationData)3939         System.Collections.ICollection Deserialize(object serializationData);
Serialize(System.Collections.ICollection objects)3940         object Serialize(System.Collections.ICollection objects);
3941     }
3942     public partial interface INameCreationService
3943     {
CreateName(System.ComponentModel.IContainer container, System.Type dataType)3944         string CreateName(System.ComponentModel.IContainer container, System.Type dataType);
IsValidName(string name)3945         bool IsValidName(string name);
ValidateName(string name)3946         void ValidateName(string name);
3947     }
3948     public sealed partial class InstanceDescriptor
3949     {
InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments)3950         public InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments) { }
InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments, bool isComplete)3951         public InstanceDescriptor(System.Reflection.MemberInfo member, System.Collections.ICollection arguments, bool isComplete) { }
3952         public System.Collections.ICollection Arguments { get { throw null; } }
3953         public bool IsComplete { get { throw null; } }
3954         public System.Reflection.MemberInfo MemberInfo { get { throw null; } }
Invoke()3955         public object Invoke() { throw null; }
3956     }
3957     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3958     public partial struct MemberRelationship
3959     {
3960         public static readonly System.ComponentModel.Design.Serialization.MemberRelationship Empty;
MemberRelationshipSystem.ComponentModel.Design.Serialization.MemberRelationship3961         public MemberRelationship(object owner, System.ComponentModel.MemberDescriptor member) { throw null;}
3962         public bool IsEmpty { get { throw null; } }
3963         public System.ComponentModel.MemberDescriptor Member { get { throw null; } }
3964         public object Owner { get { throw null; } }
EqualsSystem.ComponentModel.Design.Serialization.MemberRelationship3965         public override bool Equals(object obj) { throw null; }
GetHashCodeSystem.ComponentModel.Design.Serialization.MemberRelationship3966         public override int GetHashCode() { throw null; }
operator ==System.ComponentModel.Design.Serialization.MemberRelationship3967         public static bool operator ==(System.ComponentModel.Design.Serialization.MemberRelationship left, System.ComponentModel.Design.Serialization.MemberRelationship right) { throw null; }
operator !=System.ComponentModel.Design.Serialization.MemberRelationship3968         public static bool operator !=(System.ComponentModel.Design.Serialization.MemberRelationship left, System.ComponentModel.Design.Serialization.MemberRelationship right) { throw null; }
3969     }
3970     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3971     public abstract partial class MemberRelationshipService
3972     {
MemberRelationshipService()3973         protected MemberRelationshipService() { }
3974         public System.ComponentModel.Design.Serialization.MemberRelationship this[System.ComponentModel.Design.Serialization.MemberRelationship source] { get { throw null; } set { } }
3975         public System.ComponentModel.Design.Serialization.MemberRelationship this[object sourceOwner, System.ComponentModel.MemberDescriptor sourceMember] { get { throw null; } set { } }
GetRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source)3976         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)3977         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)3978         public abstract bool SupportsRelationship(System.ComponentModel.Design.Serialization.MemberRelationship source, System.ComponentModel.Design.Serialization.MemberRelationship relationship);
3979     }
3980     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
3981     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
3982     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
3983     public partial class ResolveNameEventArgs : System.EventArgs
3984     {
ResolveNameEventArgs(string name)3985         public ResolveNameEventArgs(string name) { }
3986         public string Name { get { throw null; } }
3987         public object Value { get { throw null; } set { } }
3988     }
3989     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
ResolveNameEventHandler(object sender, System.ComponentModel.Design.Serialization.ResolveNameEventArgs e)3990     public delegate void ResolveNameEventHandler(object sender, System.ComponentModel.Design.Serialization.ResolveNameEventArgs e);
3991     [System.AttributeUsageAttribute((System.AttributeTargets)(1028), AllowMultiple=true, Inherited=true)]
3992     [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")]
3993     public sealed partial class RootDesignerSerializerAttribute : System.Attribute
3994     {
RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable)3995         public RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable) { }
RootDesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType, bool reloadable)3996         public RootDesignerSerializerAttribute(string serializerTypeName, System.Type baseSerializerType, bool reloadable) { }
RootDesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType, bool reloadable)3997         public RootDesignerSerializerAttribute(System.Type serializerType, System.Type baseSerializerType, bool reloadable) { }
3998         public bool Reloadable { get { throw null; } }
3999         public string SerializerBaseTypeName { get { throw null; } }
4000         public string SerializerTypeName { get { throw null; } }
4001         public override object TypeId { get { throw null; } }
4002     }
4003     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]
4004     public abstract partial class SerializationStore : System.IDisposable
4005     {
SerializationStore()4006         protected SerializationStore() { }
4007         public abstract System.Collections.ICollection Errors { get; }
Close()4008         public abstract void Close();
Dispose(bool disposing)4009         protected virtual void Dispose(bool disposing) { }
Save(System.IO.Stream stream)4010         public abstract void Save(System.IO.Stream stream);
System.IDisposable.Dispose()4011         void System.IDisposable.Dispose() { }
4012     }
4013 }
4014 namespace System.Diagnostics
4015 {
4016     [System.Diagnostics.SwitchLevelAttribute(typeof(bool))]
4017     public partial class BooleanSwitch : System.Diagnostics.Switch
4018     {
BooleanSwitch(string displayName, string description)4019         public BooleanSwitch(string displayName, string description) : base (default(string), default(string)) { }
BooleanSwitch(string displayName, string description, string defaultSwitchValue)4020         public BooleanSwitch(string displayName, string description, string defaultSwitchValue) : base (default(string), default(string)) { }
4021         public bool Enabled { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
OnValueChanged()4022         protected override void OnValueChanged() { }
4023     }
4024     public partial class CorrelationManager
4025     {
CorrelationManager()4026         internal CorrelationManager() { }
4027         public System.Guid ActivityId { get { throw null; } set { } }
4028         public System.Collections.Stack LogicalOperationStack { get { throw null; } }
StartLogicalOperation()4029         public void StartLogicalOperation() { }
StartLogicalOperation(object operationId)4030         public void StartLogicalOperation(object operationId) { }
StopLogicalOperation()4031         public void StopLogicalOperation() { }
4032     }
4033     public partial class DataReceivedEventArgs : System.EventArgs
4034     {
DataReceivedEventArgs()4035         internal DataReceivedEventArgs() { }
4036         public string Data { get { throw null; } }
4037     }
DataReceivedEventHandler(object sender, System.Diagnostics.DataReceivedEventArgs e)4038     public delegate void DataReceivedEventHandler(object sender, System.Diagnostics.DataReceivedEventArgs e);
4039     public static partial class Debug
4040     {
4041         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 { } }
4042         public static int IndentLevel { get { throw null; } set { } }
4043         public static int IndentSize { get { throw null; } set { } }
4044         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; } }
4045         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition)4046         public static void Assert(bool condition) { }
4047         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message)4048         public static void Assert(bool condition, string message) { }
4049         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message, string detailMessage)4050         public static void Assert(bool condition, string message, string detailMessage) { }
4051         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Assert(bool condition, string message, string detailMessageFormat, params object[] args)4052         public static void Assert(bool condition, string message, string detailMessageFormat, params object[] args) { }
4053         [System.Diagnostics.ConditionalAttribute("DEBUG")]
4054         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Close()4055         public static void Close() { }
4056         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Fail(string message)4057         public static void Fail(string message) { }
4058         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Fail(string message, string detailMessage)4059         public static void Fail(string message, string detailMessage) { }
4060         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Flush()4061         public static void Flush() { }
4062         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Indent()4063         public static void Indent() { }
4064         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Print(string message)4065         public static void Print(string message) { }
4066         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Print(string format, params object[] args)4067         public static void Print(string format, params object[] args) { }
4068         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Unindent()4069         public static void Unindent() { }
4070         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(object value)4071         public static void Write(object value) { }
4072         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(object value, string category)4073         public static void Write(object value, string category) { }
4074         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(string message)4075         public static void Write(string message) { }
4076         [System.Diagnostics.ConditionalAttribute("DEBUG")]
Write(string message, string category)4077         public static void Write(string message, string category) { }
4078         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, object value)4079         public static void WriteIf(bool condition, object value) { }
4080         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, object value, string category)4081         public static void WriteIf(bool condition, object value, string category) { }
4082         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, string message)4083         public static void WriteIf(bool condition, string message) { }
4084         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteIf(bool condition, string message, string category)4085         public static void WriteIf(bool condition, string message, string category) { }
4086         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(object value)4087         public static void WriteLine(object value) { }
4088         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(object value, string category)4089         public static void WriteLine(object value, string category) { }
4090         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string message)4091         public static void WriteLine(string message) { }
4092         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string format, params object[] args)4093         public static void WriteLine(string format, params object[] args) { }
4094         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLine(string message, string category)4095         public static void WriteLine(string message, string category) { }
4096         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, object value)4097         public static void WriteLineIf(bool condition, object value) { }
4098         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, object value, string category)4099         public static void WriteLineIf(bool condition, object value, string category) { }
4100         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, string message)4101         public static void WriteLineIf(bool condition, string message) { }
4102         [System.Diagnostics.ConditionalAttribute("DEBUG")]
WriteLineIf(bool condition, string message, string category)4103         public static void WriteLineIf(bool condition, string message, string category) { }
4104     }
4105     public partial class DefaultTraceListener : System.Diagnostics.TraceListener
4106     {
DefaultTraceListener()4107         public DefaultTraceListener() { }
4108         [System.MonoTODOAttribute("AssertUiEnabled defaults to False; should follow Environment.UserInteractive.")]
4109         public bool AssertUiEnabled { get { throw null; } set { } }
4110         [System.MonoTODOAttribute]
4111         public string LogFileName { get { throw null; } set { } }
Fail(string message)4112         public override void Fail(string message) { }
Fail(string message, string detailMessage)4113         public override void Fail(string message, string detailMessage) { }
Write(string message)4114         public override void Write(string message) { }
WriteLine(string message)4115         public override void WriteLine(string message) { }
4116     }
4117     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
4118     public partial class DelimitedListTraceListener : System.Diagnostics.TextWriterTraceListener
4119     {
DelimitedListTraceListener(System.IO.Stream stream)4120         public DelimitedListTraceListener(System.IO.Stream stream) { }
DelimitedListTraceListener(System.IO.Stream stream, string name)4121         public DelimitedListTraceListener(System.IO.Stream stream, string name) { }
DelimitedListTraceListener(System.IO.TextWriter writer)4122         public DelimitedListTraceListener(System.IO.TextWriter writer) { }
DelimitedListTraceListener(System.IO.TextWriter writer, string name)4123         public DelimitedListTraceListener(System.IO.TextWriter writer, string name) { }
DelimitedListTraceListener(string fileName)4124         public DelimitedListTraceListener(string fileName) { }
DelimitedListTraceListener(string fileName, string name)4125         public DelimitedListTraceListener(string fileName, string name) { }
4126         public string Delimiter { get { throw null; } set { } }
GetSupportedAttributes()4127         protected internal override string[] GetSupportedAttributes() { throw null; }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)4128         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)4129         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)4130         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)4131         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
4132     }
4133     public partial class EventTypeFilter : System.Diagnostics.TraceFilter
4134     {
EventTypeFilter(System.Diagnostics.SourceLevels level)4135         public EventTypeFilter(System.Diagnostics.SourceLevels level) { }
4136         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)4137         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; }
4138     }
4139     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
4140     public sealed partial class FileVersionInfo
4141     {
FileVersionInfo()4142         internal FileVersionInfo() { }
4143         public string Comments { get { throw null; } }
4144         public string CompanyName { get { throw null; } }
4145         public int FileBuildPart { get { throw null; } }
4146         public string FileDescription { get { throw null; } }
4147         public int FileMajorPart { get { throw null; } }
4148         public int FileMinorPart { get { throw null; } }
4149         public string FileName { get { throw null; } }
4150         public int FilePrivatePart { get { throw null; } }
4151         public string FileVersion { get { throw null; } }
4152         public string InternalName { get { throw null; } }
4153         public bool IsDebug { get { throw null; } }
4154         public bool IsPatched { get { throw null; } }
4155         public bool IsPreRelease { get { throw null; } }
4156         public bool IsPrivateBuild { get { throw null; } }
4157         public bool IsSpecialBuild { get { throw null; } }
4158         public string Language { get { throw null; } }
4159         public string LegalCopyright { get { throw null; } }
4160         public string LegalTrademarks { get { throw null; } }
4161         public string OriginalFilename { get { throw null; } }
4162         public string PrivateBuild { get { throw null; } }
4163         public int ProductBuildPart { get { throw null; } }
4164         public int ProductMajorPart { get { throw null; } }
4165         public int ProductMinorPart { get { throw null; } }
4166         public string ProductName { get { throw null; } }
4167         public int ProductPrivatePart { get { throw null; } }
4168         public string ProductVersion { get { throw null; } }
4169         public string SpecialBuild { get { throw null; } }
GetVersionInfo(string fileName)4170         public static System.Diagnostics.FileVersionInfo GetVersionInfo(string fileName) { throw null; }
ToString()4171         public override string ToString() { throw null; }
4172     }
4173     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
4174     public partial class MonitoringDescriptionAttribute : System.ComponentModel.DescriptionAttribute
4175     {
MonitoringDescriptionAttribute(string description)4176         public MonitoringDescriptionAttribute(string description) { }
4177         public override string Description { get { throw null; } }
4178     }
4179     [System.ComponentModel.DefaultEventAttribute("Exited")]
4180     [System.ComponentModel.DefaultPropertyAttribute("StartInfo")]
4181     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessDesigner, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4182     [System.Diagnostics.MonitoringDescriptionAttribute("Provides access to local and remote processes, enabling starting and stopping of local processes.")]
4183     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
4184     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4185     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, Synchronization=true, ExternalProcessMgmt=true, SelfAffectingProcessMgmt=true)]
4186     public partial class Process : System.ComponentModel.Component
4187     {
Process()4188         public Process() { }
4189         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4190         [System.Diagnostics.MonitoringDescriptionAttribute("Base process priority.")]
4191         [System.MonoTODOAttribute]
4192         public int BasePriority { get { throw null; } }
4193         [System.ComponentModel.BrowsableAttribute(false)]
4194         [System.ComponentModel.DefaultValueAttribute(false)]
4195         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process component should watch for the associated process to exit, and raise the Exited event.")]
4196         public bool EnableRaisingEvents { get { throw null; } set { } }
4197         [System.ComponentModel.BrowsableAttribute(false)]
4198         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4199         [System.Diagnostics.MonitoringDescriptionAttribute("The value returned from the associated process when it terminated.")]
4200         public int ExitCode { get { throw null; } }
4201         [System.ComponentModel.BrowsableAttribute(false)]
4202         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4203         [System.Diagnostics.MonitoringDescriptionAttribute("The time that the associated process exited.")]
4204         public System.DateTime ExitTime { get { throw null; } }
4205         [System.ComponentModel.BrowsableAttribute(false)]
4206         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4207         [System.Diagnostics.MonitoringDescriptionAttribute("Returns the native handle for this process.   The handle is only available if the process was started using this component.")]
4208         public System.IntPtr Handle { get { throw null; } }
4209         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4210         [System.Diagnostics.MonitoringDescriptionAttribute("Handles for this process.")]
4211         [System.MonoTODOAttribute]
4212         public int HandleCount { get { throw null; } }
4213         [System.ComponentModel.BrowsableAttribute(false)]
4214         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4215         [System.Diagnostics.MonitoringDescriptionAttribute("Indicates if the associated process has been terminated.")]
4216         public bool HasExited { get { throw null; } }
4217         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4218         [System.Diagnostics.MonitoringDescriptionAttribute("The unique identifier for the process.")]
4219         public int Id { get { throw null; } }
4220         [System.ComponentModel.BrowsableAttribute(false)]
4221         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4222         [System.Diagnostics.MonitoringDescriptionAttribute("The name of the machine the running the process.")]
4223         public string MachineName { get { throw null; } }
4224         [System.ComponentModel.BrowsableAttribute(false)]
4225         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4226         [System.Diagnostics.MonitoringDescriptionAttribute("The main module of the process.")]
4227         public System.Diagnostics.ProcessModule MainModule { get { throw null; } }
4228         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4229         [System.Diagnostics.MonitoringDescriptionAttribute("The handle of the main window of the process.")]
4230         [System.MonoTODOAttribute]
4231         public System.IntPtr MainWindowHandle { get { throw null; } }
4232         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4233         [System.Diagnostics.MonitoringDescriptionAttribute("The title of the main window of the process.")]
4234         [System.MonoTODOAttribute]
4235         public string MainWindowTitle { get { throw null; } }
4236         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4237         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of physical memory the process has required since it was started.")]
4238         public System.IntPtr MaxWorkingSet { get { throw null; } set { } }
4239         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4240         [System.Diagnostics.MonitoringDescriptionAttribute("The minimum amount of physical memory the process has required since it was started.")]
4241         public System.IntPtr MinWorkingSet { get { throw null; } set { } }
4242         [System.ComponentModel.BrowsableAttribute(false)]
4243         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4244         [System.Diagnostics.MonitoringDescriptionAttribute("The modules that are loaded as part of this process.")]
4245         public System.Diagnostics.ProcessModuleCollection Modules { get { throw null; } }
4246         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4247         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are not pageable.")]
4248         [System.MonoTODOAttribute]
4249         [System.ObsoleteAttribute("Use NonpagedSystemMemorySize64")]
4250         public int NonpagedSystemMemorySize { get { throw null; } }
4251         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4252         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are not pageable.")]
4253         [System.MonoTODOAttribute]
4254         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4255         public long NonpagedSystemMemorySize64 { get { throw null; } }
4256         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4257         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are paged.")]
4258         [System.ObsoleteAttribute("Use PagedMemorySize64")]
4259         public int PagedMemorySize { get { throw null; } }
4260         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4261         [System.Diagnostics.MonitoringDescriptionAttribute("The number of bytes that are paged.")]
4262         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4263         public long PagedMemorySize64 { get { throw null; } }
4264         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4265         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of paged system memory in bytes.")]
4266         [System.ObsoleteAttribute("Use PagedSystemMemorySize64")]
4267         public int PagedSystemMemorySize { get { throw null; } }
4268         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4269         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of paged system memory in bytes.")]
4270         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4271         public long PagedSystemMemorySize64 { get { throw null; } }
4272         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4273         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of paged memory used by this process.")]
4274         [System.MonoTODOAttribute]
4275         [System.ObsoleteAttribute("Use PeakPagedMemorySize64")]
4276         public int PeakPagedMemorySize { get { throw null; } }
4277         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4278         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of paged memory used by this process.")]
4279         [System.MonoTODOAttribute]
4280         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4281         public long PeakPagedMemorySize64 { get { throw null; } }
4282         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4283         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of virtual memory used by this process.")]
4284         [System.ObsoleteAttribute("Use PeakVirtualMemorySize64")]
4285         public int PeakVirtualMemorySize { get { throw null; } }
4286         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4287         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of virtual memory used by this process.")]
4288         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4289         public long PeakVirtualMemorySize64 { get { throw null; } }
4290         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4291         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of system memory used by this process.")]
4292         [System.ObsoleteAttribute("Use PeakWorkingSet64")]
4293         public int PeakWorkingSet { get { throw null; } }
4294         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4295         [System.Diagnostics.MonitoringDescriptionAttribute("The maximum amount of system memory used by this process.")]
4296         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4297         public long PeakWorkingSet64 { get { throw null; } }
4298         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4299         [System.Diagnostics.MonitoringDescriptionAttribute("Process will be of higher priority while it is actively used.")]
4300         [System.MonoTODOAttribute]
4301         public bool PriorityBoostEnabled { get { throw null; } set { } }
4302         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4303         [System.Diagnostics.MonitoringDescriptionAttribute("The priority that the threads in the process run relative to.")]
4304         public System.Diagnostics.ProcessPriorityClass PriorityClass { get { throw null; } set { } }
4305         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4306         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of memory exclusively used by this process.")]
4307         [System.ObsoleteAttribute("Use PrivateMemorySize64")]
4308         public int PrivateMemorySize { get { throw null; } }
4309         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4310         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of memory exclusively used by this process.")]
4311         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4312         public long PrivateMemorySize64 { get { throw null; } }
4313         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4314         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time the process spent inside the operating system core.")]
4315         public System.TimeSpan PrivilegedProcessorTime { get { throw null; } }
4316         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4317         [System.Diagnostics.MonitoringDescriptionAttribute("The name of this process.")]
4318         public string ProcessName { get { throw null; } }
4319         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4320         [System.Diagnostics.MonitoringDescriptionAttribute("Allowed processor that can be used by this process.")]
4321         [System.MonoTODOAttribute]
4322         public System.IntPtr ProcessorAffinity { get { throw null; } set { } }
4323         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4324         [System.Diagnostics.MonitoringDescriptionAttribute("Is this process responsive.")]
4325         [System.MonoTODOAttribute]
4326         public bool Responding { get { throw null; } }
4327         [System.ComponentModel.BrowsableAttribute(false)]
4328         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4329         public Microsoft.Win32.SafeHandles.SafeProcessHandle SafeHandle { get { throw null; } }
4330         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4331         [System.Diagnostics.MonitoringDescriptionAttribute("The session ID for this process.")]
4332         [System.MonoNotSupportedAttribute("")]
4333         public int SessionId { get { throw null; } }
4334         [System.ComponentModel.BrowsableAttribute(false)]
4335         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4336         [System.Diagnostics.MonitoringDescriptionAttribute("Standard error stream of the process.")]
4337         public System.IO.StreamReader StandardError { get { throw null; } }
4338         [System.ComponentModel.BrowsableAttribute(false)]
4339         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4340         [System.Diagnostics.MonitoringDescriptionAttribute("Standard input stream of the process.")]
4341         public System.IO.StreamWriter StandardInput { get { throw null; } }
4342         [System.ComponentModel.BrowsableAttribute(false)]
4343         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4344         [System.Diagnostics.MonitoringDescriptionAttribute("Standard output stream of the process.")]
4345         public System.IO.StreamReader StandardOutput { get { throw null; } }
4346         [System.ComponentModel.BrowsableAttribute(false)]
4347         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
4348         [System.Diagnostics.MonitoringDescriptionAttribute("Specifies information used to start a process.")]
4349         public System.Diagnostics.ProcessStartInfo StartInfo { get { throw null; } set { } }
4350         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4351         [System.Diagnostics.MonitoringDescriptionAttribute("The time at which the process was started.")]
4352         public System.DateTime StartTime { get { throw null; } }
4353         [System.ComponentModel.BrowsableAttribute(false)]
4354         [System.ComponentModel.DefaultValueAttribute(null)]
4355         [System.Diagnostics.MonitoringDescriptionAttribute("The object used to marshal the event handler calls issued as a result of a Process exit.")]
4356         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
4357         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4358         [System.Diagnostics.MonitoringDescriptionAttribute("The number of threads of this process.")]
4359         [System.MonoTODOAttribute]
4360         public System.Diagnostics.ProcessThreadCollection Threads { get { throw null; } }
4361         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4362         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time the process has used.")]
4363         public System.TimeSpan TotalProcessorTime { get { throw null; } }
4364         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4365         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time the process spent outside the operating system core.")]
4366         public System.TimeSpan UserProcessorTime { get { throw null; } }
4367         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4368         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of virtual memory currently used for this process.")]
4369         [System.ObsoleteAttribute("Use VirtualMemorySize64")]
4370         public int VirtualMemorySize { get { throw null; } }
4371         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4372         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of virtual memory currently used for this process.")]
4373         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4374         public long VirtualMemorySize64 { get { throw null; } }
4375         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4376         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of physical memory currently used for this process.")]
4377         [System.ObsoleteAttribute("Use WorkingSet64")]
4378         public int WorkingSet { get { throw null; } }
4379         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4380         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of physical memory currently used for this process.")]
4381         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
4382         public long WorkingSet64 { get { throw null; } }
4383         [System.ComponentModel.BrowsableAttribute(true)]
4384         [System.Diagnostics.MonitoringDescriptionAttribute("Indicates if the process component is associated with a real process.")]
4385         public event System.Diagnostics.DataReceivedEventHandler ErrorDataReceived { add { } remove { } }
4386         [System.ComponentModel.CategoryAttribute("Behavior")]
4387         [System.Diagnostics.MonitoringDescriptionAttribute("If the WatchForExit property is set to true, then this event is raised when the associated process exits.")]
4388         public event System.EventHandler Exited { add { } remove { } }
4389         [System.ComponentModel.BrowsableAttribute(true)]
4390         [System.Diagnostics.MonitoringDescriptionAttribute("Indicates if the process component is associated with a real process.")]
4391         public event System.Diagnostics.DataReceivedEventHandler OutputDataReceived { add { } remove { } }
4392         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
BeginErrorReadLine()4393         public void BeginErrorReadLine() { }
4394         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
BeginOutputReadLine()4395         public void BeginOutputReadLine() { }
4396         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CancelErrorRead()4397         public void CancelErrorRead() { }
4398         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
CancelOutputRead()4399         public void CancelOutputRead() { }
Close()4400         public void Close() { }
CloseMainWindow()4401         public bool CloseMainWindow() { throw null; }
Dispose(bool disposing)4402         protected override void Dispose(bool disposing) { }
EnterDebugMode()4403         public static void EnterDebugMode() { }
GetCurrentProcess()4404         public static System.Diagnostics.Process GetCurrentProcess() { throw null; }
GetProcessById(int processId)4405         public static System.Diagnostics.Process GetProcessById(int processId) { throw null; }
4406         [System.MonoTODOAttribute("There is no support for retrieving process information from a remote machine")]
GetProcessById(int processId, string machineName)4407         public static System.Diagnostics.Process GetProcessById(int processId, string machineName) { throw null; }
GetProcesses()4408         public static System.Diagnostics.Process[] GetProcesses() { throw null; }
4409         [System.MonoTODOAttribute("There is no support for retrieving process information from a remote machine")]
GetProcesses(string machineName)4410         public static System.Diagnostics.Process[] GetProcesses(string machineName) { throw null; }
GetProcessesByName(string processName)4411         public static System.Diagnostics.Process[] GetProcessesByName(string processName) { throw null; }
GetProcessesByName(string processName, string machineName)4412         public static System.Diagnostics.Process[] GetProcessesByName(string processName, string machineName) { throw null; }
Kill()4413         public void Kill() { }
LeaveDebugMode()4414         public static void LeaveDebugMode() { }
OnExited()4415         protected void OnExited() { }
Refresh()4416         public void Refresh() { }
Start()4417         public bool Start() { throw null; }
Start(System.Diagnostics.ProcessStartInfo startInfo)4418         public static System.Diagnostics.Process Start(System.Diagnostics.ProcessStartInfo startInfo) { throw null; }
Start(string fileName)4419         public static System.Diagnostics.Process Start(string fileName) { throw null; }
Start(string fileName, string arguments)4420         public static System.Diagnostics.Process Start(string fileName, string arguments) { throw null; }
Start(string fileName, string userName, System.Security.SecureString password, string domain)4421         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)4422         public static System.Diagnostics.Process Start(string fileName, string arguments, string userName, System.Security.SecureString password, string domain) { throw null; }
ToString()4423         public override string ToString() { throw null; }
WaitForExit()4424         public void WaitForExit() { }
WaitForExit(int milliseconds)4425         public bool WaitForExit(int milliseconds) { throw null; }
WaitForInputIdle()4426         public bool WaitForInputIdle() { throw null; }
WaitForInputIdle(int milliseconds)4427         public bool WaitForInputIdle(int milliseconds) { throw null; }
4428     }
4429     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessModuleDesigner, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4430     public partial class ProcessModule : System.ComponentModel.Component
4431     {
ProcessModule()4432         internal ProcessModule() { }
4433         [System.Diagnostics.MonitoringDescriptionAttribute("The base memory address of this module")]
4434         public System.IntPtr BaseAddress { get { throw null; } }
4435         [System.Diagnostics.MonitoringDescriptionAttribute("The base memory address of the entry point of this module")]
4436         public System.IntPtr EntryPointAddress { get { throw null; } }
4437         [System.Diagnostics.MonitoringDescriptionAttribute("The file name of this module")]
4438         public string FileName { get { throw null; } }
4439         [System.ComponentModel.BrowsableAttribute(false)]
4440         public System.Diagnostics.FileVersionInfo FileVersionInfo { get { throw null; } }
4441         [System.Diagnostics.MonitoringDescriptionAttribute("The memory needed by this module")]
4442         public int ModuleMemorySize { get { throw null; } }
4443         [System.Diagnostics.MonitoringDescriptionAttribute("The name of this module")]
4444         public string ModuleName { get { throw null; } }
ToString()4445         public override string ToString() { throw null; }
4446     }
4447     public partial class ProcessModuleCollection : System.Collections.ReadOnlyCollectionBase
4448     {
ProcessModuleCollection()4449         protected ProcessModuleCollection() { }
ProcessModuleCollection(System.Diagnostics.ProcessModule[] processModules)4450         public ProcessModuleCollection(System.Diagnostics.ProcessModule[] processModules) { }
4451         [System.ObsoleteAttribute("This API is no longer available", true)]
4452         public int Capacity { get { throw null; } set { } }
4453         public System.Diagnostics.ProcessModule this[int index] { get { throw null; } }
4454         [System.ObsoleteAttribute("This API is no longer available", true)]
Add(System.Diagnostics.ProcessModule item)4455         public void Add(System.Diagnostics.ProcessModule item) { }
4456         [System.ObsoleteAttribute("This API is no longer available", true)]
AddRange(System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessModule> collection)4457         public void AddRange(System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessModule> collection) { }
4458         [System.ObsoleteAttribute("This API is no longer available", true)]
AsReadOnly()4459         public System.Collections.ObjectModel.ReadOnlyCollection<System.Diagnostics.ProcessModule> AsReadOnly() { throw null; }
4460         [System.ObsoleteAttribute("This API is no longer available", true)]
BinarySearch(System.Diagnostics.ProcessModule item)4461         public int BinarySearch(System.Diagnostics.ProcessModule item) { throw null; }
4462         [System.ObsoleteAttribute("This API is no longer available", true)]
BinarySearch(System.Diagnostics.ProcessModule item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer)4463         public int BinarySearch(System.Diagnostics.ProcessModule item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer) { throw null; }
4464         [System.ObsoleteAttribute("This API is no longer available", true)]
BinarySearch(int index, int count, System.Diagnostics.ProcessModule item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer)4465         public int BinarySearch(int index, int count, System.Diagnostics.ProcessModule item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer) { throw null; }
4466         [System.ObsoleteAttribute("This API is no longer available", true)]
Clear()4467         public void Clear() { }
Contains(System.Diagnostics.ProcessModule module)4468         public bool Contains(System.Diagnostics.ProcessModule module) { throw null; }
4469         [System.ObsoleteAttribute("This API is no longer available", true)]
ConvertAll(System.Converter<System.Diagnostics.ProcessModule, TOutput> converter)4470         public System.Collections.Generic.List<TOutput> ConvertAll<TOutput>(System.Converter<System.Diagnostics.ProcessModule, TOutput> converter) { throw null; }
4471         [System.ObsoleteAttribute("This API is no longer available", true)]
CopyTo(System.Diagnostics.ProcessModule[] array)4472         public void CopyTo(System.Diagnostics.ProcessModule[] array) { }
CopyTo(System.Diagnostics.ProcessModule[] array, int index)4473         public void CopyTo(System.Diagnostics.ProcessModule[] array, int index) { }
4474         [System.ObsoleteAttribute("This API is no longer available", true)]
CopyTo(int index, System.Diagnostics.ProcessModule[] array, int arrayIndex, int count)4475         public void CopyTo(int index, System.Diagnostics.ProcessModule[] array, int arrayIndex, int count) { }
4476         [System.ObsoleteAttribute("This API is no longer available", true)]
Exists(System.Predicate<System.Diagnostics.ProcessModule> match)4477         public bool Exists(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4478         [System.ObsoleteAttribute("This API is no longer available", true)]
Find(System.Predicate<System.Diagnostics.ProcessModule> match)4479         public System.Diagnostics.ProcessModule Find(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4480         [System.ObsoleteAttribute("This API is no longer available", true)]
FindAll(System.Predicate<System.Diagnostics.ProcessModule> match)4481         public System.Collections.Generic.List<System.Diagnostics.ProcessModule> FindAll(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4482         [System.ObsoleteAttribute("This API is no longer available", true)]
FindIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessModule> match)4483         public int FindIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4484         [System.ObsoleteAttribute("This API is no longer available", true)]
FindIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessModule> match)4485         public int FindIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4486         [System.ObsoleteAttribute("This API is no longer available", true)]
FindIndex(System.Predicate<System.Diagnostics.ProcessModule> match)4487         public int FindIndex(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4488         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLast(System.Predicate<System.Diagnostics.ProcessModule> match)4489         public System.Diagnostics.ProcessModule FindLast(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4490         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLastIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessModule> match)4491         public int FindLastIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4492         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLastIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessModule> match)4493         public int FindLastIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4494         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLastIndex(System.Predicate<System.Diagnostics.ProcessModule> match)4495         public int FindLastIndex(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4496         [System.ObsoleteAttribute("This API is no longer available", true)]
ForEach(System.Action<System.Diagnostics.ProcessModule> action)4497         public void ForEach(System.Action<System.Diagnostics.ProcessModule> action) { }
4498         [System.ObsoleteAttribute("This API is no longer available", true)]
GetRange(int index, int count)4499         public System.Collections.Generic.List<System.Diagnostics.ProcessModule> GetRange(int index, int count) { throw null; }
IndexOf(System.Diagnostics.ProcessModule module)4500         public int IndexOf(System.Diagnostics.ProcessModule module) { throw null; }
4501         [System.ObsoleteAttribute("This API is no longer available", true)]
IndexOf(System.Diagnostics.ProcessModule item, int index)4502         public int IndexOf(System.Diagnostics.ProcessModule item, int index) { throw null; }
4503         [System.ObsoleteAttribute("This API is no longer available", true)]
IndexOf(System.Diagnostics.ProcessModule item, int index, int count)4504         public int IndexOf(System.Diagnostics.ProcessModule item, int index, int count) { throw null; }
4505         [System.ObsoleteAttribute("This API is no longer available", true)]
Insert(int index, System.Diagnostics.ProcessModule item)4506         public void Insert(int index, System.Diagnostics.ProcessModule item) { }
4507         [System.ObsoleteAttribute("This API is no longer available", true)]
InsertRange(int index, System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessModule> collection)4508         public void InsertRange(int index, System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessModule> collection) { }
4509         [System.ObsoleteAttribute("This API is no longer available", true)]
LastIndexOf(System.Diagnostics.ProcessModule item)4510         public int LastIndexOf(System.Diagnostics.ProcessModule item) { throw null; }
4511         [System.ObsoleteAttribute("This API is no longer available", true)]
LastIndexOf(System.Diagnostics.ProcessModule item, int index)4512         public int LastIndexOf(System.Diagnostics.ProcessModule item, int index) { throw null; }
4513         [System.ObsoleteAttribute("This API is no longer available", true)]
LastIndexOf(System.Diagnostics.ProcessModule item, int index, int count)4514         public int LastIndexOf(System.Diagnostics.ProcessModule item, int index, int count) { throw null; }
4515         [System.ObsoleteAttribute("This API is no longer available", true)]
Remove(System.Diagnostics.ProcessModule item)4516         public bool Remove(System.Diagnostics.ProcessModule item) { throw null; }
4517         [System.ObsoleteAttribute("This API is no longer available", true)]
RemoveAll(System.Predicate<System.Diagnostics.ProcessModule> match)4518         public int RemoveAll(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4519         [System.ObsoleteAttribute("This API is no longer available", true)]
RemoveAt(int index)4520         public void RemoveAt(int index) { }
4521         [System.ObsoleteAttribute("This API is no longer available", true)]
RemoveRange(int index, int count)4522         public void RemoveRange(int index, int count) { }
4523         [System.ObsoleteAttribute("This API is no longer available", true)]
Reverse()4524         public void Reverse() { }
4525         [System.ObsoleteAttribute("This API is no longer available", true)]
Reverse(int index, int count)4526         public void Reverse(int index, int count) { }
4527         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort()4528         public void Sort() { }
4529         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort(System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer)4530         public void Sort(System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer) { }
4531         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort(System.Comparison<System.Diagnostics.ProcessModule> comparison)4532         public void Sort(System.Comparison<System.Diagnostics.ProcessModule> comparison) { }
4533         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort(int index, int count, System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer)4534         public void Sort(int index, int count, System.Collections.Generic.IComparer<System.Diagnostics.ProcessModule> comparer) { }
4535         [System.ObsoleteAttribute("This API is no longer available", true)]
ToArray()4536         public System.Diagnostics.ProcessModule[] ToArray() { throw null; }
4537         [System.ObsoleteAttribute("This API is no longer available", true)]
TrimExcess()4538         public void TrimExcess() { }
4539         [System.ObsoleteAttribute("This API is no longer available", true)]
TrueForAll(System.Predicate<System.Diagnostics.ProcessModule> match)4540         public bool TrueForAll(System.Predicate<System.Diagnostics.ProcessModule> match) { throw null; }
4541     }
4542     public enum ProcessPriorityClass
4543     {
4544         AboveNormal = 32768,
4545         BelowNormal = 16384,
4546         High = 128,
4547         Idle = 64,
4548         Normal = 32,
4549         RealTime = 256,
4550     }
4551     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
4552     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4553     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, SelfAffectingProcessMgmt=true)]
4554     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4555     public sealed partial class ProcessStartInfo
4556     {
ProcessStartInfo()4557         public ProcessStartInfo() { }
ProcessStartInfo(string fileName)4558         public ProcessStartInfo(string fileName) { }
ProcessStartInfo(string fileName, string arguments)4559         public ProcessStartInfo(string fileName, string arguments) { }
4560         [System.ComponentModel.DefaultValueAttribute("")]
4561         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4562         [System.ComponentModel.SettingsBindableAttribute(true)]
4563         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4564         [System.Diagnostics.MonitoringDescriptionAttribute("Command line arguments that will be passed to the application specified by the FileName property.")]
4565         public string Arguments { get { throw null; } set { } }
4566         [System.ComponentModel.DefaultValueAttribute(false)]
4567         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4568         [System.Diagnostics.MonitoringDescriptionAttribute("Whether to start the process without creating a new window to contain it.")]
4569         public bool CreateNoWindow { get { throw null; } set { } }
4570         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4571         public string Domain { get { throw null; } set { } }
4572         [System.ComponentModel.DefaultValueAttribute(null)]
4573         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4574         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4575         public System.Collections.Generic.IDictionary<string, string> Environment { get { throw null; } }
4576         [System.ComponentModel.DefaultValueAttribute(null)]
4577         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
4578         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.StringDictionaryEditor, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4579         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4580         [System.Diagnostics.MonitoringDescriptionAttribute("Set of environment variables that apply to this process and child processes.")]
4581         public System.Collections.Specialized.StringDictionary EnvironmentVariables { get { throw null; } }
4582         [System.ComponentModel.DefaultValueAttribute(false)]
4583         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4584         [System.Diagnostics.MonitoringDescriptionAttribute("Whether to show an error dialog to the user if there is an error.")]
4585         public bool ErrorDialog { get { throw null; } set { } }
4586         [System.ComponentModel.BrowsableAttribute(false)]
4587         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4588         public System.IntPtr ErrorDialogParentHandle { get { throw null; } set { } }
4589         [System.ComponentModel.DefaultValueAttribute("")]
4590         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.StartFileNameEditor, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4591         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4592         [System.ComponentModel.SettingsBindableAttribute(true)]
4593         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4594         [System.Diagnostics.MonitoringDescriptionAttribute("The name of the application, document or URL to start.")]
4595         public string FileName { get { throw null; } set { } }
4596         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4597         public bool LoadUserProfile { get { throw null; } set { } }
4598         public System.Security.SecureString Password { get { throw null; } set { } }
4599         [System.ComponentModel.BrowsableAttribute(false)]
4600         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4601         public string PasswordInClearText { get { throw null; } set { } }
4602         [System.ComponentModel.DefaultValueAttribute(false)]
4603         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4604         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process's error output is written to the Process instance's StandardError member.")]
4605         public bool RedirectStandardError { get { throw null; } set { } }
4606         [System.ComponentModel.DefaultValueAttribute(false)]
4607         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4608         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process command input is read from the Process instance's StandardInput member.")]
4609         public bool RedirectStandardInput { get { throw null; } set { } }
4610         [System.ComponentModel.DefaultValueAttribute(false)]
4611         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4612         [System.Diagnostics.MonitoringDescriptionAttribute("Whether the process output is written to the Process instance's StandardOutput member.")]
4613         public bool RedirectStandardOutput { get { throw null; } set { } }
4614         public System.Text.Encoding StandardErrorEncoding { get { throw null; } set { } }
4615         public System.Text.Encoding StandardOutputEncoding { get { throw null; } set { } }
4616         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4617         public string UserName { get { throw null; } set { } }
4618         [System.ComponentModel.DefaultValueAttribute(true)]
4619         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4620         [System.Diagnostics.MonitoringDescriptionAttribute("Whether to use the operating system shell to start the process.")]
4621         public bool UseShellExecute { get { throw null; } set { } }
4622         [System.ComponentModel.DefaultValueAttribute("")]
4623         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4624         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.VerbConverter, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4625         [System.Diagnostics.MonitoringDescriptionAttribute("The verb to apply to the document specified by the FileName property.")]
4626         public string Verb { get { throw null; } set { } }
4627         [System.ComponentModel.BrowsableAttribute(false)]
4628         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4629         public string[] Verbs { get { throw null; } }
4630         [System.ComponentModel.DefaultValueAttribute((System.Diagnostics.ProcessWindowStyle)(0))]
4631         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4632         [System.Diagnostics.MonitoringDescriptionAttribute("How the main window should be created when the process starts.")]
4633         public System.Diagnostics.ProcessWindowStyle WindowStyle { get { throw null; } set { } }
4634         [System.ComponentModel.DefaultValueAttribute("")]
4635         [System.ComponentModel.EditorAttribute("System.Diagnostics.Design.WorkingDirectoryEditor, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4636         [System.ComponentModel.NotifyParentPropertyAttribute(true)]
4637         [System.ComponentModel.SettingsBindableAttribute(true)]
4638         [System.ComponentModel.TypeConverterAttribute("System.Diagnostics.Design.StringValueConverter, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4639         [System.Diagnostics.MonitoringDescriptionAttribute("The initial working directory for the process.")]
4640         public string WorkingDirectory { get { throw null; } set { } }
4641     }
4642     [System.ComponentModel.DesignerAttribute("System.Diagnostics.Design.ProcessThreadDesigner, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4643     public partial class ProcessThread : System.ComponentModel.Component
4644     {
ProcessThread()4645         internal ProcessThread() { }
4646         [System.Diagnostics.MonitoringDescriptionAttribute("The base priority of this thread.")]
4647         [System.MonoTODOAttribute]
4648         public int BasePriority { get { throw null; } }
4649         [System.Diagnostics.MonitoringDescriptionAttribute("The current priority of this thread.")]
4650         [System.MonoTODOAttribute]
4651         public int CurrentPriority { get { throw null; } }
4652         [System.Diagnostics.MonitoringDescriptionAttribute("The ID of this thread.")]
4653         [System.MonoTODOAttribute]
4654         public int Id { get { throw null; } }
4655         [System.ComponentModel.BrowsableAttribute(false)]
4656         [System.MonoTODOAttribute]
4657         public int IdealProcessor { set { } }
4658         [System.Diagnostics.MonitoringDescriptionAttribute("Thread gets a priority boot when interactively used by a user.")]
4659         [System.MonoTODOAttribute]
4660         public bool PriorityBoostEnabled { get { throw null; } set { } }
4661         [System.Diagnostics.MonitoringDescriptionAttribute("The priority level of this thread.")]
4662         [System.MonoTODOAttribute]
4663         public System.Diagnostics.ThreadPriorityLevel PriorityLevel { get { throw null; } set { } }
4664         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time used in privileged mode.")]
4665         [System.MonoTODOAttribute]
4666         public System.TimeSpan PrivilegedProcessorTime { get { throw null; } }
4667         [System.ComponentModel.BrowsableAttribute(false)]
4668         [System.MonoTODOAttribute]
4669         public System.IntPtr ProcessorAffinity { set { } }
4670         [System.Diagnostics.MonitoringDescriptionAttribute("The start address in memory of this thread.")]
4671         [System.MonoTODOAttribute]
4672         public System.IntPtr StartAddress { get { throw null; } }
4673         [System.Diagnostics.MonitoringDescriptionAttribute("The time this thread was started.")]
4674         [System.MonoTODOAttribute]
4675         public System.DateTime StartTime { get { throw null; } }
4676         [System.Diagnostics.MonitoringDescriptionAttribute("The current state of this thread.")]
4677         [System.MonoTODOAttribute]
4678         public System.Diagnostics.ThreadState ThreadState { get { throw null; } }
4679         [System.Diagnostics.MonitoringDescriptionAttribute("The total amount of CPU time used.")]
4680         [System.MonoTODOAttribute]
4681         public System.TimeSpan TotalProcessorTime { get { throw null; } }
4682         [System.Diagnostics.MonitoringDescriptionAttribute("The amount of CPU time used in user mode.")]
4683         [System.MonoTODOAttribute]
4684         public System.TimeSpan UserProcessorTime { get { throw null; } }
4685         [System.Diagnostics.MonitoringDescriptionAttribute("The reason why this thread is waiting.")]
4686         [System.MonoTODOAttribute]
4687         public System.Diagnostics.ThreadWaitReason WaitReason { get { throw null; } }
4688         [System.MonoTODOAttribute]
ResetIdealProcessor()4689         public void ResetIdealProcessor() { }
4690     }
4691     public partial class ProcessThreadCollection : System.Collections.ReadOnlyCollectionBase
4692     {
ProcessThreadCollection()4693         protected ProcessThreadCollection() { }
ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads)4694         public ProcessThreadCollection(System.Diagnostics.ProcessThread[] processThreads) { }
4695         [System.ObsoleteAttribute("This API is no longer available", true)]
4696         public int Capacity { get { throw null; } set { } }
4697         public System.Diagnostics.ProcessThread this[int index] { get { throw null; } }
Add(System.Diagnostics.ProcessThread thread)4698         public int Add(System.Diagnostics.ProcessThread thread) { throw null; }
4699         [System.ObsoleteAttribute("This API is no longer available", true)]
AddRange(System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessThread> collection)4700         public void AddRange(System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessThread> collection) { }
4701         [System.ObsoleteAttribute("This API is no longer available", true)]
AsReadOnly()4702         public System.Collections.ObjectModel.ReadOnlyCollection<System.Diagnostics.ProcessThread> AsReadOnly() { throw null; }
4703         [System.ObsoleteAttribute("This API is no longer available", true)]
BinarySearch(System.Diagnostics.ProcessThread item)4704         public int BinarySearch(System.Diagnostics.ProcessThread item) { throw null; }
4705         [System.ObsoleteAttribute("This API is no longer available", true)]
BinarySearch(System.Diagnostics.ProcessThread item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer)4706         public int BinarySearch(System.Diagnostics.ProcessThread item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer) { throw null; }
4707         [System.ObsoleteAttribute("This API is no longer available", true)]
BinarySearch(int index, int count, System.Diagnostics.ProcessThread item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer)4708         public int BinarySearch(int index, int count, System.Diagnostics.ProcessThread item, System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer) { throw null; }
4709         [System.ObsoleteAttribute("This API is no longer available", true)]
Clear()4710         public void Clear() { }
Contains(System.Diagnostics.ProcessThread thread)4711         public bool Contains(System.Diagnostics.ProcessThread thread) { throw null; }
4712         [System.ObsoleteAttribute("This API is no longer available", true)]
ConvertAll(System.Converter<System.Diagnostics.ProcessThread, TOutput> converter)4713         public System.Collections.Generic.List<TOutput> ConvertAll<TOutput>(System.Converter<System.Diagnostics.ProcessThread, TOutput> converter) { throw null; }
4714         [System.ObsoleteAttribute("This API is no longer available", true)]
CopyTo(System.Diagnostics.ProcessThread[] array)4715         public void CopyTo(System.Diagnostics.ProcessThread[] array) { }
CopyTo(System.Diagnostics.ProcessThread[] array, int index)4716         public void CopyTo(System.Diagnostics.ProcessThread[] array, int index) { }
4717         [System.ObsoleteAttribute("This API is no longer available", true)]
CopyTo(int index, System.Diagnostics.ProcessThread[] array, int arrayIndex, int count)4718         public void CopyTo(int index, System.Diagnostics.ProcessThread[] array, int arrayIndex, int count) { }
4719         [System.ObsoleteAttribute("This API is no longer available", true)]
Exists(System.Predicate<System.Diagnostics.ProcessThread> match)4720         public bool Exists(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4721         [System.ObsoleteAttribute("This API is no longer available", true)]
Find(System.Predicate<System.Diagnostics.ProcessThread> match)4722         public System.Diagnostics.ProcessThread Find(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4723         [System.ObsoleteAttribute("This API is no longer available", true)]
FindAll(System.Predicate<System.Diagnostics.ProcessThread> match)4724         public System.Collections.Generic.List<System.Diagnostics.ProcessThread> FindAll(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4725         [System.ObsoleteAttribute("This API is no longer available", true)]
FindIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessThread> match)4726         public int FindIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4727         [System.ObsoleteAttribute("This API is no longer available", true)]
FindIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessThread> match)4728         public int FindIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4729         [System.ObsoleteAttribute("This API is no longer available", true)]
FindIndex(System.Predicate<System.Diagnostics.ProcessThread> match)4730         public int FindIndex(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4731         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLast(System.Predicate<System.Diagnostics.ProcessThread> match)4732         public System.Diagnostics.ProcessThread FindLast(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4733         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLastIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessThread> match)4734         public int FindLastIndex(int startIndex, int count, System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4735         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLastIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessThread> match)4736         public int FindLastIndex(int startIndex, System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4737         [System.ObsoleteAttribute("This API is no longer available", true)]
FindLastIndex(System.Predicate<System.Diagnostics.ProcessThread> match)4738         public int FindLastIndex(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4739         [System.ObsoleteAttribute("This API is no longer available", true)]
ForEach(System.Action<System.Diagnostics.ProcessThread> action)4740         public void ForEach(System.Action<System.Diagnostics.ProcessThread> action) { }
4741         [System.ObsoleteAttribute("This API is no longer available", true)]
GetRange(int index, int count)4742         public System.Collections.Generic.List<System.Diagnostics.ProcessThread> GetRange(int index, int count) { throw null; }
IndexOf(System.Diagnostics.ProcessThread thread)4743         public int IndexOf(System.Diagnostics.ProcessThread thread) { throw null; }
4744         [System.ObsoleteAttribute("This API is no longer available", true)]
IndexOf(System.Diagnostics.ProcessThread item, int index)4745         public int IndexOf(System.Diagnostics.ProcessThread item, int index) { throw null; }
4746         [System.ObsoleteAttribute("This API is no longer available", true)]
IndexOf(System.Diagnostics.ProcessThread item, int index, int count)4747         public int IndexOf(System.Diagnostics.ProcessThread item, int index, int count) { throw null; }
Insert(int index, System.Diagnostics.ProcessThread thread)4748         public void Insert(int index, System.Diagnostics.ProcessThread thread) { }
4749         [System.ObsoleteAttribute("This API is no longer available", true)]
InsertRange(int index, System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessThread> collection)4750         public void InsertRange(int index, System.Collections.Generic.IEnumerable<System.Diagnostics.ProcessThread> collection) { }
4751         [System.ObsoleteAttribute("This API is no longer available", true)]
LastIndexOf(System.Diagnostics.ProcessThread item)4752         public int LastIndexOf(System.Diagnostics.ProcessThread item) { throw null; }
4753         [System.ObsoleteAttribute("This API is no longer available", true)]
LastIndexOf(System.Diagnostics.ProcessThread item, int index)4754         public int LastIndexOf(System.Diagnostics.ProcessThread item, int index) { throw null; }
4755         [System.ObsoleteAttribute("This API is no longer available", true)]
LastIndexOf(System.Diagnostics.ProcessThread item, int index, int count)4756         public int LastIndexOf(System.Diagnostics.ProcessThread item, int index, int count) { throw null; }
Remove(System.Diagnostics.ProcessThread thread)4757         public void Remove(System.Diagnostics.ProcessThread thread) { }
4758         [System.ObsoleteAttribute("This API is no longer available", true)]
RemoveAll(System.Predicate<System.Diagnostics.ProcessThread> match)4759         public int RemoveAll(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4760         [System.ObsoleteAttribute("This API is no longer available", true)]
RemoveAt(int index)4761         public void RemoveAt(int index) { }
4762         [System.ObsoleteAttribute("This API is no longer available", true)]
RemoveRange(int index, int count)4763         public void RemoveRange(int index, int count) { }
4764         [System.ObsoleteAttribute("This API is no longer available", true)]
Reverse()4765         public void Reverse() { }
4766         [System.ObsoleteAttribute("This API is no longer available", true)]
Reverse(int index, int count)4767         public void Reverse(int index, int count) { }
4768         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort()4769         public void Sort() { }
4770         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort(System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer)4771         public void Sort(System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer) { }
4772         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort(System.Comparison<System.Diagnostics.ProcessThread> comparison)4773         public void Sort(System.Comparison<System.Diagnostics.ProcessThread> comparison) { }
4774         [System.ObsoleteAttribute("This API is no longer available", true)]
Sort(int index, int count, System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer)4775         public void Sort(int index, int count, System.Collections.Generic.IComparer<System.Diagnostics.ProcessThread> comparer) { }
4776         [System.ObsoleteAttribute("This API is no longer available", true)]
ToArray()4777         public System.Diagnostics.ProcessThread[] ToArray() { throw null; }
4778         [System.ObsoleteAttribute("This API is no longer available", true)]
TrimExcess()4779         public void TrimExcess() { }
4780         [System.ObsoleteAttribute("This API is no longer available", true)]
TrueForAll(System.Predicate<System.Diagnostics.ProcessThread> match)4781         public bool TrueForAll(System.Predicate<System.Diagnostics.ProcessThread> match) { throw null; }
4782     }
4783     public enum ProcessWindowStyle
4784     {
4785         Hidden = 1,
4786         Maximized = 3,
4787         Minimized = 2,
4788         Normal = 0,
4789     }
4790     public partial class SourceFilter : System.Diagnostics.TraceFilter
4791     {
SourceFilter(string source)4792         public SourceFilter(string source) { }
4793         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)4794         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; }
4795     }
4796     [System.FlagsAttribute]
4797     public enum SourceLevels
4798     {
4799         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4800         ActivityTracing = 65280,
4801         All = -1,
4802         Critical = 1,
4803         Error = 3,
4804         Information = 15,
4805         Off = 0,
4806         Verbose = 31,
4807         Warning = 7,
4808     }
4809     public partial class SourceSwitch : System.Diagnostics.Switch
4810     {
SourceSwitch(string name)4811         public SourceSwitch(string name) : base (default(string), default(string)) { }
SourceSwitch(string displayName, string defaultSwitchValue)4812         public SourceSwitch(string displayName, string defaultSwitchValue) : base (default(string), default(string)) { }
4813         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()4814         protected override void OnValueChanged() { }
ShouldTrace(System.Diagnostics.TraceEventType eventType)4815         public bool ShouldTrace(System.Diagnostics.TraceEventType eventType) { throw null; }
4816     }
4817     public partial class Stopwatch
4818     {
4819         public static readonly long Frequency;
4820         public static readonly bool IsHighResolution;
Stopwatch()4821         public Stopwatch() { }
4822         public System.TimeSpan Elapsed { get { throw null; } }
4823         public long ElapsedMilliseconds { get { throw null; } }
4824         public long ElapsedTicks { get { throw null; } }
4825         public bool IsRunning { get { throw null; } }
GetTimestamp()4826         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long GetTimestamp() { throw null; }
Reset()4827         public void Reset() { }
Restart()4828         public void Restart() { }
Start()4829         public void Start() { }
StartNew()4830         public static System.Diagnostics.Stopwatch StartNew() { throw null; }
Stop()4831         public void Stop() { }
4832     }
4833     public abstract partial class Switch
4834     {
Switch(string displayName, string description)4835         protected Switch(string displayName, string description) { }
Switch(string displayName, string description, string defaultSwitchValue)4836         protected Switch(string displayName, string description, string defaultSwitchValue) { }
4837         [System.Xml.Serialization.XmlIgnoreAttribute]
4838         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
4839         public string Description { get { throw null; } }
4840         public string DisplayName { get { throw null; } }
4841         protected int SwitchSetting { get { throw null; } set { } }
4842         protected string Value { get { throw null; } set { } }
GetSupportedAttributes()4843         protected internal virtual string[] GetSupportedAttributes() { throw null; }
OnSwitchSettingChanged()4844         protected virtual void OnSwitchSettingChanged() { }
OnValueChanged()4845         protected virtual void OnValueChanged() { }
4846     }
4847     [System.AttributeUsageAttribute((System.AttributeTargets)(741))]
4848     public sealed partial class SwitchAttribute : System.Attribute
4849     {
SwitchAttribute(string switchName, System.Type switchType)4850         public SwitchAttribute(string switchName, System.Type switchType) { }
4851         public string SwitchDescription { get { throw null; } set { } }
4852         public string SwitchName { get { throw null; } set { } }
4853         public System.Type SwitchType { get { throw null; } set { } }
GetAll(System.Reflection.Assembly assembly)4854         public static System.Diagnostics.SwitchAttribute[] GetAll(System.Reflection.Assembly assembly) { throw null; }
4855     }
4856     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
4857     public sealed partial class SwitchLevelAttribute : System.Attribute
4858     {
SwitchLevelAttribute(System.Type switchLevelType)4859         public SwitchLevelAttribute(System.Type switchLevelType) { }
4860         public System.Type SwitchLevelType { get { throw null; } set { } }
4861     }
4862     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
4863     public partial class TextWriterTraceListener : System.Diagnostics.TraceListener
4864     {
TextWriterTraceListener()4865         public TextWriterTraceListener() { }
TextWriterTraceListener(System.IO.Stream stream)4866         public TextWriterTraceListener(System.IO.Stream stream) { }
TextWriterTraceListener(System.IO.Stream stream, string name)4867         public TextWriterTraceListener(System.IO.Stream stream, string name) { }
TextWriterTraceListener(System.IO.TextWriter writer)4868         public TextWriterTraceListener(System.IO.TextWriter writer) { }
TextWriterTraceListener(System.IO.TextWriter writer, string name)4869         public TextWriterTraceListener(System.IO.TextWriter writer, string name) { }
TextWriterTraceListener(string fileName)4870         public TextWriterTraceListener(string fileName) { }
TextWriterTraceListener(string fileName, string name)4871         public TextWriterTraceListener(string fileName, string name) { }
4872         public System.IO.TextWriter Writer { get { throw null; } set { } }
Close()4873         public override void Close() { }
Dispose(bool disposing)4874         protected override void Dispose(bool disposing) { }
Flush()4875         public override void Flush() { }
Write(string message)4876         public override void Write(string message) { }
WriteLine(string message)4877         public override void WriteLine(string message) { }
4878     }
4879     public enum ThreadPriorityLevel
4880     {
4881         AboveNormal = 1,
4882         BelowNormal = -1,
4883         Highest = 2,
4884         Idle = -15,
4885         Lowest = -2,
4886         Normal = 0,
4887         TimeCritical = 15,
4888     }
4889     public enum ThreadState
4890     {
4891         Initialized = 0,
4892         Ready = 1,
4893         Running = 2,
4894         Standby = 3,
4895         Terminated = 4,
4896         Transition = 6,
4897         Unknown = 7,
4898         Wait = 5,
4899     }
4900     public enum ThreadWaitReason
4901     {
4902         EventPairHigh = 7,
4903         EventPairLow = 8,
4904         ExecutionDelay = 4,
4905         Executive = 0,
4906         FreePage = 1,
4907         LpcReceive = 9,
4908         LpcReply = 10,
4909         PageIn = 2,
4910         PageOut = 12,
4911         Suspended = 5,
4912         SystemAllocation = 3,
4913         Unknown = 13,
4914         UserRequest = 6,
4915         VirtualMemory = 11,
4916     }
4917     public sealed partial class Trace
4918     {
Trace()4919         internal Trace() { }
4920         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 { } }
4921         public static System.Diagnostics.CorrelationManager CorrelationManager { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
4922         public static int IndentLevel { get { throw null; } set { } }
4923         public static int IndentSize { get { throw null; } set { } }
4924         public static System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true)]get { throw null; } }
4925         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 { } }
4926         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition)4927         public static void Assert(bool condition) { }
4928         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition, string message)4929         public static void Assert(bool condition, string message) { }
4930         [System.Diagnostics.ConditionalAttribute("TRACE")]
Assert(bool condition, string message, string detailMessage)4931         public static void Assert(bool condition, string message, string detailMessage) { }
4932         [System.Diagnostics.ConditionalAttribute("TRACE")]
Close()4933         public static void Close() { }
4934         [System.Diagnostics.ConditionalAttribute("TRACE")]
Fail(string message)4935         public static void Fail(string message) { }
4936         [System.Diagnostics.ConditionalAttribute("TRACE")]
Fail(string message, string detailMessage)4937         public static void Fail(string message, string detailMessage) { }
4938         [System.Diagnostics.ConditionalAttribute("TRACE")]
Flush()4939         public static void Flush() { }
4940         [System.Diagnostics.ConditionalAttribute("TRACE")]
Indent()4941         public static void Indent() { }
Refresh()4942         public static void Refresh() { }
4943         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceError(string message)4944         public static void TraceError(string message) { }
4945         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceError(string format, params object[] args)4946         public static void TraceError(string format, params object[] args) { }
4947         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string message)4948         public static void TraceInformation(string message) { }
4949         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string format, params object[] args)4950         public static void TraceInformation(string format, params object[] args) { }
4951         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceWarning(string message)4952         public static void TraceWarning(string message) { }
4953         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceWarning(string format, params object[] args)4954         public static void TraceWarning(string format, params object[] args) { }
4955         [System.Diagnostics.ConditionalAttribute("TRACE")]
Unindent()4956         public static void Unindent() { }
4957         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(object value)4958         public static void Write(object value) { }
4959         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(object value, string category)4960         public static void Write(object value, string category) { }
4961         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(string message)4962         public static void Write(string message) { }
4963         [System.Diagnostics.ConditionalAttribute("TRACE")]
Write(string message, string category)4964         public static void Write(string message, string category) { }
4965         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, object value)4966         public static void WriteIf(bool condition, object value) { }
4967         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, object value, string category)4968         public static void WriteIf(bool condition, object value, string category) { }
4969         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, string message)4970         public static void WriteIf(bool condition, string message) { }
4971         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteIf(bool condition, string message, string category)4972         public static void WriteIf(bool condition, string message, string category) { }
4973         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(object value)4974         public static void WriteLine(object value) { }
4975         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(object value, string category)4976         public static void WriteLine(object value, string category) { }
4977         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(string message)4978         public static void WriteLine(string message) { }
4979         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLine(string message, string category)4980         public static void WriteLine(string message, string category) { }
4981         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, object value)4982         public static void WriteLineIf(bool condition, object value) { }
4983         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, object value, string category)4984         public static void WriteLineIf(bool condition, object value, string category) { }
4985         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, string message)4986         public static void WriteLineIf(bool condition, string message) { }
4987         [System.Diagnostics.ConditionalAttribute("TRACE")]
WriteLineIf(bool condition, string message, string category)4988         public static void WriteLineIf(bool condition, string message, string category) { }
4989     }
4990     public partial class TraceEventCache
4991     {
TraceEventCache()4992         public TraceEventCache() { }
4993         public string Callstack { get { throw null; } }
4994         public System.DateTime DateTime { get { throw null; } }
4995         public System.Collections.Stack LogicalOperationStack { get { throw null; } }
4996         public int ProcessId { get { throw null; } }
4997         public string ThreadId { get { throw null; } }
4998         public long Timestamp { get { throw null; } }
4999     }
5000     public enum TraceEventType
5001     {
5002         Critical = 1,
5003         Error = 2,
5004         Information = 8,
5005         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
5006         Resume = 2048,
5007         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
5008         Start = 256,
5009         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
5010         Stop = 512,
5011         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
5012         Suspend = 1024,
5013         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
5014         Transfer = 4096,
5015         Verbose = 16,
5016         Warning = 4,
5017     }
5018     public abstract partial class TraceFilter
5019     {
TraceFilter()5020         protected TraceFilter() { }
ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data)5021         public abstract bool ShouldTrace(System.Diagnostics.TraceEventCache cache, string source, System.Diagnostics.TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data);
5022     }
5023     public enum TraceLevel
5024     {
5025         Error = 1,
5026         Info = 3,
5027         Off = 0,
5028         Verbose = 4,
5029         Warning = 2,
5030     }
5031     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
5032     public abstract partial class TraceListener : System.MarshalByRefObject, System.IDisposable
5033     {
TraceListener()5034         protected TraceListener() { }
TraceListener(string name)5035         protected TraceListener(string name) { }
5036         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
5037         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5038         public System.Diagnostics.TraceFilter Filter { get { throw null; } set { } }
5039         public int IndentLevel { get { throw null; } set { } }
5040         public int IndentSize { get { throw null; } set { } }
5041         public virtual bool IsThreadSafe { get { throw null; } }
5042         public virtual string Name { get { throw null; } set { } }
5043         protected bool NeedIndent { get { throw null; } set { } }
5044         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5045         public System.Diagnostics.TraceOptions TraceOutputOptions { get { throw null; } set { } }
Close()5046         public virtual void Close() { }
Dispose()5047         public void Dispose() { }
Dispose(bool disposing)5048         protected virtual void Dispose(bool disposing) { }
Fail(string message)5049         public virtual void Fail(string message) { }
Fail(string message, string detailMessage)5050         public virtual void Fail(string message, string detailMessage) { }
Flush()5051         public virtual void Flush() { }
GetSupportedAttributes()5052         protected internal virtual string[] GetSupportedAttributes() { throw null; }
5053         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)5054         public virtual void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
5055         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data)5056         public virtual void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
5057         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id)5058         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id) { }
5059         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message)5060         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
5061         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)5062         public virtual void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
5063         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId)5064         public virtual void TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId) { }
Write(object o)5065         public virtual void Write(object o) { }
Write(object o, string category)5066         public virtual void Write(object o, string category) { }
Write(string message)5067         public abstract void Write(string message);
Write(string message, string category)5068         public virtual void Write(string message, string category) { }
WriteIndent()5069         protected virtual void WriteIndent() { }
WriteLine(object o)5070         public virtual void WriteLine(object o) { }
WriteLine(object o, string category)5071         public virtual void WriteLine(object o, string category) { }
WriteLine(string message)5072         public abstract void WriteLine(string message);
WriteLine(string message, string category)5073         public virtual void WriteLine(string message, string category) { }
5074     }
5075     public partial class TraceListenerCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
5076     {
TraceListenerCollection()5077         internal TraceListenerCollection() { }
5078         public int Count { get { throw null; } }
5079         public System.Diagnostics.TraceListener this[int i] { get { throw null; } set { } }
5080         public System.Diagnostics.TraceListener this[string name] { get { throw null; } }
5081         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
5082         object System.Collections.ICollection.SyncRoot { get { throw null; } }
5083         bool System.Collections.IList.IsFixedSize { get { throw null; } }
5084         bool System.Collections.IList.IsReadOnly { get { throw null; } }
5085         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(System.Diagnostics.TraceListener listener)5086         public int Add(System.Diagnostics.TraceListener listener) { throw null; }
AddRange(System.Diagnostics.TraceListenerCollection value)5087         public void AddRange(System.Diagnostics.TraceListenerCollection value) { }
AddRange(System.Diagnostics.TraceListener[] value)5088         public void AddRange(System.Diagnostics.TraceListener[] value) { }
Clear()5089         public void Clear() { }
Contains(System.Diagnostics.TraceListener listener)5090         public bool Contains(System.Diagnostics.TraceListener listener) { throw null; }
CopyTo(System.Diagnostics.TraceListener[] listeners, int index)5091         public void CopyTo(System.Diagnostics.TraceListener[] listeners, int index) { }
GetEnumerator()5092         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.Diagnostics.TraceListener listener)5093         public int IndexOf(System.Diagnostics.TraceListener listener) { throw null; }
Insert(int index, System.Diagnostics.TraceListener listener)5094         public void Insert(int index, System.Diagnostics.TraceListener listener) { }
Remove(System.Diagnostics.TraceListener listener)5095         public void Remove(System.Diagnostics.TraceListener listener) { }
Remove(string name)5096         public void Remove(string name) { }
RemoveAt(int index)5097         public void RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)5098         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IList.Add(object value)5099         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Contains(object value)5100         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)5101         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)5102         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)5103         void System.Collections.IList.Remove(object value) { }
5104     }
5105     [System.FlagsAttribute]
5106     public enum TraceOptions
5107     {
5108         Callstack = 32,
5109         DateTime = 2,
5110         LogicalOperationStack = 1,
5111         None = 0,
5112         ProcessId = 8,
5113         ThreadId = 16,
5114         Timestamp = 4,
5115     }
5116     public partial class TraceSource
5117     {
TraceSource(string name)5118         public TraceSource(string name) { }
TraceSource(string name, System.Diagnostics.SourceLevels defaultLevel)5119         public TraceSource(string name, System.Diagnostics.SourceLevels defaultLevel) { }
5120         public System.Collections.Specialized.StringDictionary Attributes { get { throw null; } }
5121         public System.Diagnostics.TraceListenerCollection Listeners { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]get { throw null; } }
5122         public string Name { get { throw null; } }
5123         public System.Diagnostics.SourceSwitch Switch { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
5124         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Close()5125         public void Close() { }
Flush()5126         public void Flush() { }
GetSupportedAttributes()5127         protected internal virtual string[] GetSupportedAttributes() { throw null; }
5128         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceData(System.Diagnostics.TraceEventType eventType, int id, object data)5129         public void TraceData(System.Diagnostics.TraceEventType eventType, int id, object data) { }
5130         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceData(System.Diagnostics.TraceEventType eventType, int id, params object[] data)5131         public void TraceData(System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
5132         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id)5133         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id) { }
5134         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string message)5135         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string message) { }
5136         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)5137         public void TraceEvent(System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
5138         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string message)5139         public void TraceInformation(string message) { }
5140         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceInformation(string format, params object[] args)5141         public void TraceInformation(string format, params object[] args) { }
5142         [System.Diagnostics.ConditionalAttribute("TRACE")]
TraceTransfer(int id, string message, System.Guid relatedActivityId)5143         public void TraceTransfer(int id, string message, System.Guid relatedActivityId) { }
5144     }
5145     [System.Diagnostics.SwitchLevelAttribute(typeof(System.Diagnostics.TraceLevel))]
5146     public partial class TraceSwitch : System.Diagnostics.Switch
5147     {
TraceSwitch(string displayName, string description)5148         public TraceSwitch(string displayName, string description) : base (default(string), default(string)) { }
TraceSwitch(string displayName, string description, string defaultSwitchValue)5149         public TraceSwitch(string displayName, string description, string defaultSwitchValue) : base (default(string), default(string)) { }
5150         public System.Diagnostics.TraceLevel Level { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]set { } }
5151         public bool TraceError { get { throw null; } }
5152         public bool TraceInfo { get { throw null; } }
5153         public bool TraceVerbose { get { throw null; } }
5154         public bool TraceWarning { get { throw null; } }
OnSwitchSettingChanged()5155         protected override void OnSwitchSettingChanged() { }
OnValueChanged()5156         protected override void OnValueChanged() { }
5157     }
5158 }
5159 namespace System.Diagnostics.CodeAnalysis
5160 {
5161     [System.AttributeUsageAttribute((System.AttributeTargets)(748), Inherited=false, AllowMultiple=false)]
5162     public sealed partial class ExcludeFromCodeCoverageAttribute : System.Attribute
5163     {
ExcludeFromCodeCoverageAttribute()5164         public ExcludeFromCodeCoverageAttribute() { }
5165     }
5166 }
5167 namespace System.IO
5168 {
5169     public partial class ErrorEventArgs : System.EventArgs
5170     {
ErrorEventArgs(System.Exception exception)5171         public ErrorEventArgs(System.Exception exception) { }
GetException()5172         public virtual System.Exception GetException() { throw null; }
5173     }
ErrorEventHandler(object sender, System.IO.ErrorEventArgs e)5174     public delegate void ErrorEventHandler(object sender, System.IO.ErrorEventArgs e);
5175     public partial class FileSystemEventArgs : System.EventArgs
5176     {
FileSystemEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name)5177         public FileSystemEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name) { }
5178         public System.IO.WatcherChangeTypes ChangeType { get { throw null; } }
5179         public string FullPath { get { throw null; } }
5180         public string Name { get { throw null; } }
5181     }
FileSystemEventHandler(object sender, System.IO.FileSystemEventArgs e)5182     public delegate void FileSystemEventHandler(object sender, System.IO.FileSystemEventArgs e);
5183     public partial class FileSystemWatcher : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize, System.IDisposable
5184     {
FileSystemWatcher()5185         public FileSystemWatcher() { }
FileSystemWatcher(string path)5186         public FileSystemWatcher(string path) { }
FileSystemWatcher(string path, string filter)5187         public FileSystemWatcher(string path, string filter) { }
5188         public bool EnableRaisingEvents { get { throw null; } set { } }
5189         public string Filter { get { throw null; } set { } }
5190         public bool IncludeSubdirectories { get { throw null; } set { } }
5191         public int InternalBufferSize { get { throw null; } set { } }
5192         public System.IO.NotifyFilters NotifyFilter { get { throw null; } set { } }
5193         public string Path { get { throw null; } set { } }
5194         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
5195         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
5196         public event System.IO.FileSystemEventHandler Changed { add { } remove { } }
5197         public event System.IO.FileSystemEventHandler Created { add { } remove { } }
5198         public event System.IO.FileSystemEventHandler Deleted { add { } remove { } }
5199         public event System.IO.ErrorEventHandler Error { add { } remove { } }
5200         public event System.IO.RenamedEventHandler Renamed { add { } remove { } }
BeginInit()5201         public void BeginInit() { }
Dispose(bool disposing)5202         protected override void Dispose(bool disposing) { }
EndInit()5203         public void EndInit() { }
OnChanged(System.IO.FileSystemEventArgs e)5204         protected void OnChanged(System.IO.FileSystemEventArgs e) { }
OnCreated(System.IO.FileSystemEventArgs e)5205         protected void OnCreated(System.IO.FileSystemEventArgs e) { }
OnDeleted(System.IO.FileSystemEventArgs e)5206         protected void OnDeleted(System.IO.FileSystemEventArgs e) { }
OnError(System.IO.ErrorEventArgs e)5207         protected void OnError(System.IO.ErrorEventArgs e) { }
OnRenamed(System.IO.RenamedEventArgs e)5208         protected void OnRenamed(System.IO.RenamedEventArgs e) { }
WaitForChanged(System.IO.WatcherChangeTypes changeType)5209         public System.IO.WaitForChangedResult WaitForChanged(System.IO.WatcherChangeTypes changeType) { throw null; }
WaitForChanged(System.IO.WatcherChangeTypes changeType, int timeout)5210         public System.IO.WaitForChangedResult WaitForChanged(System.IO.WatcherChangeTypes changeType, int timeout) { throw null; }
5211     }
5212     [System.SerializableAttribute]
5213     public partial class InternalBufferOverflowException : System.SystemException
5214     {
InternalBufferOverflowException()5215         public InternalBufferOverflowException() { }
InternalBufferOverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5216         protected InternalBufferOverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InternalBufferOverflowException(string message)5217         public InternalBufferOverflowException(string message) { }
InternalBufferOverflowException(string message, System.Exception inner)5218         public InternalBufferOverflowException(string message, System.Exception inner) { }
5219     }
5220     [System.SerializableAttribute]
5221     public sealed partial class InvalidDataException : System.SystemException
5222     {
InvalidDataException()5223         public InvalidDataException() { }
InvalidDataException(string message)5224         public InvalidDataException(string message) { }
InvalidDataException(string message, System.Exception innerException)5225         public InvalidDataException(string message, System.Exception innerException) { }
5226     }
5227     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
5228     public partial class IODescriptionAttribute : System.ComponentModel.DescriptionAttribute
5229     {
IODescriptionAttribute(string description)5230         public IODescriptionAttribute(string description) { }
5231         public override string Description { get { throw null; } }
5232     }
5233     [System.FlagsAttribute]
5234     public enum NotifyFilters
5235     {
5236         Attributes = 4,
5237         CreationTime = 64,
5238         DirectoryName = 2,
5239         FileName = 1,
5240         LastAccess = 32,
5241         LastWrite = 16,
5242         Security = 256,
5243         Size = 8,
5244     }
5245     public partial class RenamedEventArgs : System.IO.FileSystemEventArgs
5246     {
RenamedEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name, string oldName)5247         public RenamedEventArgs(System.IO.WatcherChangeTypes changeType, string directory, string name, string oldName) : base (default(System.IO.WatcherChangeTypes), default(string), default(string)) { }
5248         public string OldFullPath { get { throw null; } }
5249         public string OldName { get { throw null; } }
5250     }
RenamedEventHandler(object sender, System.IO.RenamedEventArgs e)5251     public delegate void RenamedEventHandler(object sender, System.IO.RenamedEventArgs e);
5252     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5253     public partial struct WaitForChangedResult
5254     {
5255         public System.IO.WatcherChangeTypes ChangeType { get { throw null; } set { } }
5256         public string Name { get { throw null; } set { } }
5257         public string OldName { get { throw null; } set { } }
5258         public bool TimedOut { get { throw null; } set { } }
5259     }
5260     [System.FlagsAttribute]
5261     public enum WatcherChangeTypes
5262     {
5263         All = 15,
5264         Changed = 4,
5265         Created = 1,
5266         Deleted = 2,
5267         Renamed = 8,
5268     }
5269 }
5270 namespace System.IO.Compression
5271 {
5272     public enum CompressionLevel
5273     {
5274         Fastest = 1,
5275         NoCompression = 2,
5276         Optimal = 0,
5277     }
5278     public enum CompressionMode
5279     {
5280         Compress = 1,
5281         Decompress = 0,
5282     }
5283     public partial class DeflateStream : System.IO.Stream
5284     {
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel)5285         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen)5286         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode)5287         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen)5288         public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
5289         public System.IO.Stream BaseStream { get { throw null; } }
5290         public override bool CanRead { get { throw null; } }
5291         public override bool CanSeek { get { throw null; } }
5292         public override bool CanWrite { get { throw null; } }
5293         public override long Length { get { throw null; } }
5294         public override long Position { get { throw null; } set { } }
BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)5295         public override System.IAsyncResult BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)5296         public override System.IAsyncResult BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)5297         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)5298         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)5299         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()5300         public override void Flush() { }
Read(byte[] array, int offset, int count)5301         public override int Read(byte[] array, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)5302         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)5303         public override void SetLength(long value) { }
Write(byte[] array, int offset, int count)5304         public override void Write(byte[] array, int offset, int count) { }
5305     }
5306     public partial class GZipStream : System.IO.Stream
5307     {
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel)5308         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen)5309         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode)5310         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen)5311         public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
5312         public System.IO.Stream BaseStream { get { throw null; } }
5313         public override bool CanRead { get { throw null; } }
5314         public override bool CanSeek { get { throw null; } }
5315         public override bool CanWrite { get { throw null; } }
5316         public override long Length { get { throw null; } }
5317         public override long Position { get { throw null; } set { } }
BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)5318         public override System.IAsyncResult BeginRead(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)5319         public override System.IAsyncResult BeginWrite(byte[] array, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
CopyTo(System.IO.Stream destination, int bufferSize)5320         public override void CopyTo(System.IO.Stream destination, int bufferSize) { }
CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken)5321         public override System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken) { throw null; }
Dispose(bool disposing)5322         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)5323         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)5324         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()5325         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)5326         public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read(byte[] array, int offset, int count)5327         public override int Read(byte[] array, int offset, int count) { throw null; }
Read(System.Span<byte> destination)5328         public override int Read(System.Span<byte> destination) { throw null; }
ReadAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken)5329         public override System.Threading.Tasks.Task<int> ReadAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
ReadAsync(System.Memory<byte> destination, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))5330         public override System.Threading.Tasks.ValueTask<int> ReadAsync(System.Memory<byte> destination, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
ReadByte()5331         public override int ReadByte() { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)5332         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)5333         public override void SetLength(long value) { }
Write(byte[] array, int offset, int count)5334         public override void Write(byte[] array, int offset, int count) { }
Write(System.ReadOnlySpan<byte> source)5335         public override void Write(System.ReadOnlySpan<byte> source) { }
WriteAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken)5336         public override System.Threading.Tasks.Task WriteAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
5337     }
5338 }
5339 namespace System.Net
5340 {
5341     public partial class AuthenticationManager
5342     {
AuthenticationManager()5343         internal AuthenticationManager() { }
5344         public static System.Net.ICredentialPolicy CredentialPolicy { get { throw null; } set { } }
5345         [System.MonoTODOAttribute]
5346         public static System.Collections.Specialized.StringDictionary CustomTargetNameDictionary { get { throw null; } }
5347         public static System.Collections.IEnumerator RegisteredModules { get { throw null; } }
Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials)5348         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)5349         public static System.Net.Authorization PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials) { throw null; }
Register(System.Net.IAuthenticationModule authenticationModule)5350         public static void Register(System.Net.IAuthenticationModule authenticationModule) { }
Unregister(System.Net.IAuthenticationModule authenticationModule)5351         public static void Unregister(System.Net.IAuthenticationModule authenticationModule) { }
Unregister(string authenticationScheme)5352         public static void Unregister(string authenticationScheme) { }
5353     }
5354     [System.FlagsAttribute]
5355     public enum AuthenticationSchemes
5356     {
5357         Anonymous = 32768,
5358         Basic = 8,
5359         Digest = 1,
5360         IntegratedWindowsAuthentication = 6,
5361         Negotiate = 2,
5362         None = 0,
5363         Ntlm = 4,
5364     }
AuthenticationSchemeSelector(System.Net.HttpListenerRequest httpRequest)5365     public delegate System.Net.AuthenticationSchemes AuthenticationSchemeSelector(System.Net.HttpListenerRequest httpRequest);
5366     public partial class Authorization
5367     {
Authorization(string token)5368         public Authorization(string token) { }
Authorization(string token, bool finished)5369         public Authorization(string token, bool finished) { }
Authorization(string token, bool finished, string connectionGroupId)5370         public Authorization(string token, bool finished, string connectionGroupId) { }
5371         public bool Complete { get { throw null; } }
5372         public string ConnectionGroupId { get { throw null; } }
5373         public string Message { get { throw null; } }
5374         public bool MutuallyAuthenticated { get { throw null; } set { } }
5375         public string[] ProtectionRealm { get { throw null; } set { } }
5376     }
BindIPEndPoint(System.Net.ServicePoint servicePoint, System.Net.IPEndPoint remoteEndPoint, int retryCount)5377     public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.Net.IPEndPoint remoteEndPoint, int retryCount);
5378     [System.ObsoleteAttribute("This API is no longer supported.")]
CipherSuitesCallback(System.Net.SecurityProtocolType protocol, System.Collections.Generic.IEnumerable<string> allCiphers)5379     public delegate System.Collections.Generic.IEnumerable<string> CipherSuitesCallback(System.Net.SecurityProtocolType protocol, System.Collections.Generic.IEnumerable<string> allCiphers);
5380     [System.SerializableAttribute]
5381     public sealed partial class Cookie
5382     {
Cookie()5383         public Cookie() { }
Cookie(string name, string value)5384         public Cookie(string name, string value) { }
Cookie(string name, string value, string path)5385         public Cookie(string name, string value, string path) { }
Cookie(string name, string value, string path, string domain)5386         public Cookie(string name, string value, string path, string domain) { }
5387         public string Comment { get { throw null; } set { } }
5388         public System.Uri CommentUri { get { throw null; } set { } }
5389         public bool Discard { get { throw null; } set { } }
5390         public string Domain { get { throw null; } set { } }
5391         public bool Expired { get { throw null; } set { } }
5392         public System.DateTime Expires { get { throw null; } set { } }
5393         public bool HttpOnly { get { throw null; } set { } }
5394         public string Name { get { throw null; } set { } }
5395         public string Path { get { throw null; } set { } }
5396         public string Port { get { throw null; } set { } }
5397         public bool Secure { get { throw null; } set { } }
5398         public System.DateTime TimeStamp { get { throw null; } }
5399         public string Value { get { throw null; } set { } }
5400         public int Version { get { throw null; } set { } }
Equals(object comparand)5401         public override bool Equals(object comparand) { throw null; }
GetHashCode()5402         public override int GetHashCode() { throw null; }
ToString()5403         public override string ToString() { throw null; }
5404     }
5405     [System.SerializableAttribute]
5406     public partial class CookieCollection : System.Collections.ICollection, System.Collections.IEnumerable
5407     {
CookieCollection()5408         public CookieCollection() { }
5409         public int Count { get { throw null; } }
5410         public bool IsReadOnly { get { throw null; } }
5411         public bool IsSynchronized { get { throw null; } }
5412         public System.Net.Cookie this[int index] { get { throw null; } }
5413         public System.Net.Cookie this[string name] { get { throw null; } }
5414         public object SyncRoot { get { throw null; } }
Add(System.Net.Cookie cookie)5415         public void Add(System.Net.Cookie cookie) { }
Add(System.Net.CookieCollection cookies)5416         public void Add(System.Net.CookieCollection cookies) { }
CopyTo(System.Array array, int index)5417         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Net.Cookie[] array, int index)5418         public void CopyTo(System.Net.Cookie[] array, int index) { }
GetEnumerator()5419         public System.Collections.IEnumerator GetEnumerator() { throw null; }
5420     }
5421     [System.SerializableAttribute]
5422     public partial class CookieContainer
5423     {
5424         public const int DefaultCookieLengthLimit = 4096;
5425         public const int DefaultCookieLimit = 300;
5426         public const int DefaultPerDomainCookieLimit = 20;
CookieContainer()5427         public CookieContainer() { }
CookieContainer(int capacity)5428         public CookieContainer(int capacity) { }
CookieContainer(int capacity, int perDomainCapacity, int maxCookieSize)5429         public CookieContainer(int capacity, int perDomainCapacity, int maxCookieSize) { }
5430         public int Capacity { get { throw null; } set { } }
5431         public int Count { get { throw null; } }
5432         public int MaxCookieSize { get { throw null; } set { } }
5433         public int PerDomainCapacity { get { throw null; } set { } }
Add(System.Net.Cookie cookie)5434         public void Add(System.Net.Cookie cookie) { }
Add(System.Net.CookieCollection cookies)5435         public void Add(System.Net.CookieCollection cookies) { }
Add(System.Uri uri, System.Net.Cookie cookie)5436         public void Add(System.Uri uri, System.Net.Cookie cookie) { }
Add(System.Uri uri, System.Net.CookieCollection cookies)5437         public void Add(System.Uri uri, System.Net.CookieCollection cookies) { }
GetCookieHeader(System.Uri uri)5438         public string GetCookieHeader(System.Uri uri) { throw null; }
GetCookies(System.Uri uri)5439         public System.Net.CookieCollection GetCookies(System.Uri uri) { throw null; }
SetCookies(System.Uri uri, string cookieHeader)5440         public void SetCookies(System.Uri uri, string cookieHeader) { }
5441     }
5442     [System.SerializableAttribute]
5443     public partial class CookieException : System.FormatException, System.Runtime.Serialization.ISerializable
5444     {
CookieException()5445         public CookieException() { }
CookieException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)5446         protected CookieException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5447         [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)5448         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5449         [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)5450         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5451     }
5452     public partial class CredentialCache : System.Collections.IEnumerable, System.Net.ICredentials, System.Net.ICredentialsByHost
5453     {
CredentialCache()5454         public CredentialCache() { }
5455         public static System.Net.ICredentials DefaultCredentials { get { throw null; } }
5456         public static System.Net.NetworkCredential DefaultNetworkCredentials { get { throw null; } }
Add(string host, int port, string authenticationType, System.Net.NetworkCredential credential)5457         public void Add(string host, int port, string authenticationType, System.Net.NetworkCredential credential) { }
Add(System.Uri uriPrefix, string authType, System.Net.NetworkCredential cred)5458         public void Add(System.Uri uriPrefix, string authType, System.Net.NetworkCredential cred) { }
GetCredential(string host, int port, string authenticationType)5459         public System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType) { throw null; }
GetCredential(System.Uri uriPrefix, string authType)5460         public System.Net.NetworkCredential GetCredential(System.Uri uriPrefix, string authType) { throw null; }
GetEnumerator()5461         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(string host, int port, string authenticationType)5462         public void Remove(string host, int port, string authenticationType) { }
Remove(System.Uri uriPrefix, string authType)5463         public void Remove(System.Uri uriPrefix, string authType) { }
5464     }
5465     [System.FlagsAttribute]
5466     public enum DecompressionMethods
5467     {
5468         Deflate = 2,
5469         GZip = 1,
5470         None = 0,
5471     }
5472     public static partial class Dns
5473     {
BeginGetHostAddresses(string hostNameOrAddress, System.AsyncCallback requestCallback, object state)5474         public static System.IAsyncResult BeginGetHostAddresses(string hostNameOrAddress, System.AsyncCallback requestCallback, object state) { throw null; }
5475         [System.ObsoleteAttribute("Use BeginGetHostEntry instead")]
BeginGetHostByName(string hostName, System.AsyncCallback requestCallback, object stateObject)5476         public static System.IAsyncResult BeginGetHostByName(string hostName, System.AsyncCallback requestCallback, object stateObject) { throw null; }
BeginGetHostEntry(System.Net.IPAddress address, System.AsyncCallback requestCallback, object stateObject)5477         public static System.IAsyncResult BeginGetHostEntry(System.Net.IPAddress address, System.AsyncCallback requestCallback, object stateObject) { throw null; }
BeginGetHostEntry(string hostNameOrAddress, System.AsyncCallback requestCallback, object stateObject)5478         public static System.IAsyncResult BeginGetHostEntry(string hostNameOrAddress, System.AsyncCallback requestCallback, object stateObject) { throw null; }
5479         [System.ObsoleteAttribute("Use BeginGetHostEntry instead")]
BeginResolve(string hostName, System.AsyncCallback requestCallback, object stateObject)5480         public static System.IAsyncResult BeginResolve(string hostName, System.AsyncCallback requestCallback, object stateObject) { throw null; }
EndGetHostAddresses(System.IAsyncResult asyncResult)5481         public static System.Net.IPAddress[] EndGetHostAddresses(System.IAsyncResult asyncResult) { throw null; }
5482         [System.ObsoleteAttribute("Use EndGetHostEntry instead")]
EndGetHostByName(System.IAsyncResult asyncResult)5483         public static System.Net.IPHostEntry EndGetHostByName(System.IAsyncResult asyncResult) { throw null; }
EndGetHostEntry(System.IAsyncResult asyncResult)5484         public static System.Net.IPHostEntry EndGetHostEntry(System.IAsyncResult asyncResult) { throw null; }
5485         [System.ObsoleteAttribute("Use EndGetHostEntry instead")]
EndResolve(System.IAsyncResult asyncResult)5486         public static System.Net.IPHostEntry EndResolve(System.IAsyncResult asyncResult) { throw null; }
GetHostAddresses(string hostNameOrAddress)5487         public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; }
GetHostAddressesAsync(string hostNameOrAddress)5488         public static System.Threading.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw null; }
5489         [System.ObsoleteAttribute("Use GetHostEntry instead")]
GetHostByAddress(System.Net.IPAddress address)5490         public static System.Net.IPHostEntry GetHostByAddress(System.Net.IPAddress address) { throw null; }
5491         [System.ObsoleteAttribute("Use GetHostEntry instead")]
GetHostByAddress(string address)5492         public static System.Net.IPHostEntry GetHostByAddress(string address) { throw null; }
5493         [System.ObsoleteAttribute("Use GetHostEntry instead")]
GetHostByName(string hostName)5494         public static System.Net.IPHostEntry GetHostByName(string hostName) { throw null; }
GetHostEntry(System.Net.IPAddress address)5495         public static System.Net.IPHostEntry GetHostEntry(System.Net.IPAddress address) { throw null; }
GetHostEntry(string hostNameOrAddress)5496         public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; }
GetHostEntryAsync(System.Net.IPAddress address)5497         public static System.Threading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(System.Net.IPAddress address) { throw null; }
GetHostEntryAsync(string hostNameOrAddress)5498         public static System.Threading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw null; }
GetHostName()5499         public static string GetHostName() { throw null; }
5500         [System.ObsoleteAttribute("Use GetHostEntry instead")]
Resolve(string hostName)5501         public static System.Net.IPHostEntry Resolve(string hostName) { throw null; }
5502     }
5503     public partial class DnsEndPoint : System.Net.EndPoint
5504     {
DnsEndPoint(string host, int port)5505         public DnsEndPoint(string host, int port) { }
DnsEndPoint(string host, int port, System.Net.Sockets.AddressFamily addressFamily)5506         public DnsEndPoint(string host, int port, System.Net.Sockets.AddressFamily addressFamily) { }
5507         public override System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
5508         public string Host { get { throw null; } }
5509         public int Port { get { throw null; } }
Equals(object comparand)5510         public override bool Equals(object comparand) { throw null; }
GetHashCode()5511         public override int GetHashCode() { throw null; }
ToString()5512         public override string ToString() { throw null; }
5513     }
5514     public partial class DownloadDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
5515     {
DownloadDataCompletedEventArgs()5516         internal DownloadDataCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
5517         public byte[] Result { get { throw null; } }
5518     }
DownloadDataCompletedEventHandler(object sender, System.Net.DownloadDataCompletedEventArgs e)5519     public delegate void DownloadDataCompletedEventHandler(object sender, System.Net.DownloadDataCompletedEventArgs e);
5520     public partial class DownloadProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs
5521     {
DownloadProgressChangedEventArgs()5522         internal DownloadProgressChangedEventArgs() : base (default(int), default(object)) { }
5523         public long BytesReceived { get { throw null; } }
5524         public long TotalBytesToReceive { get { throw null; } }
5525     }
DownloadProgressChangedEventHandler(object sender, System.Net.DownloadProgressChangedEventArgs e)5526     public delegate void DownloadProgressChangedEventHandler(object sender, System.Net.DownloadProgressChangedEventArgs e);
5527     public partial class DownloadStringCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
5528     {
DownloadStringCompletedEventArgs()5529         internal DownloadStringCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
5530         public string Result { get { throw null; } }
5531     }
DownloadStringCompletedEventHandler(object sender, System.Net.DownloadStringCompletedEventArgs e)5532     public delegate void DownloadStringCompletedEventHandler(object sender, System.Net.DownloadStringCompletedEventArgs e);
5533     [System.SerializableAttribute]
5534     public abstract partial class EndPoint
5535     {
EndPoint()5536         protected EndPoint() { }
5537         public virtual System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
Create(System.Net.SocketAddress socketAddress)5538         public virtual System.Net.EndPoint Create(System.Net.SocketAddress socketAddress) { throw null; }
Serialize()5539         public virtual System.Net.SocketAddress Serialize() { throw null; }
5540     }
5541     [System.SerializableAttribute]
5542     public partial class EndpointPermission
5543     {
EndpointPermission()5544         internal EndpointPermission() { }
5545         public string Hostname { get { throw null; } }
5546         public int Port { get { throw null; } }
5547         public System.Net.TransportType Transport { get { throw null; } }
Equals(object obj)5548         public override bool Equals(object obj) { throw null; }
GetHashCode()5549         public override int GetHashCode() { throw null; }
ToString()5550         public override string ToString() { throw null; }
5551     }
5552     [System.SerializableAttribute]
5553     public partial class FileWebRequest : System.Net.WebRequest, System.Runtime.Serialization.ISerializable
5554     {
5555         [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)5556         protected FileWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5557         public override string ConnectionGroupName { get { throw null; } set { } }
5558         public override long ContentLength { get { throw null; } set { } }
5559         public override string ContentType { get { throw null; } set { } }
5560         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
5561         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
5562         public override string Method { get { throw null; } set { } }
5563         public override bool PreAuthenticate { get { throw null; } set { } }
5564         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
5565         public override System.Uri RequestUri { get { throw null; } }
5566         public override int Timeout { get { throw null; } set { } }
5567         public override bool UseDefaultCredentials { get { throw null; } set { } }
Abort()5568         public override void Abort() { }
5569         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)5570         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
5571         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)5572         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)5573         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)5574         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
5575         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)5576         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()5577         public override System.IO.Stream GetRequestStream() { throw null; }
GetResponse()5578         public override System.Net.WebResponse GetResponse() { throw null; }
5579         [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)5580         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5581     }
5582     [System.SerializableAttribute]
5583     public partial class FileWebResponse : System.Net.WebResponse, System.Runtime.Serialization.ISerializable
5584     {
5585         [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)5586         protected FileWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5587         public override long ContentLength { get { throw null; } }
5588         public override string ContentType { get { throw null; } }
5589         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
5590         public override System.Uri ResponseUri { get { throw null; } }
5591         public override bool SupportsHeaders { get { throw null; } }
Close()5592         public override void Close() { }
5593         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)5594         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseStream()5595         public override System.IO.Stream GetResponseStream() { throw null; }
5596         [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)5597         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5598     }
5599     public enum FtpStatusCode
5600     {
5601         AccountNeeded = 532,
5602         ActionAbortedLocalProcessingError = 451,
5603         ActionAbortedUnknownPageType = 551,
5604         ActionNotTakenFilenameNotAllowed = 553,
5605         ActionNotTakenFileUnavailable = 550,
5606         ActionNotTakenFileUnavailableOrBusy = 450,
5607         ActionNotTakenInsufficientSpace = 452,
5608         ArgumentSyntaxError = 501,
5609         BadCommandSequence = 503,
5610         CantOpenData = 425,
5611         ClosingControl = 221,
5612         ClosingData = 226,
5613         CommandExtraneous = 202,
5614         CommandNotImplemented = 502,
5615         CommandOK = 200,
5616         CommandSyntaxError = 500,
5617         ConnectionClosed = 426,
5618         DataAlreadyOpen = 125,
5619         DirectoryStatus = 212,
5620         EnteringPassive = 227,
5621         FileActionAborted = 552,
5622         FileActionOK = 250,
5623         FileCommandPending = 350,
5624         FileStatus = 213,
5625         LoggedInProceed = 230,
5626         NeedLoginAccount = 332,
5627         NotLoggedIn = 530,
5628         OpeningData = 150,
5629         PathnameCreated = 257,
5630         RestartMarker = 110,
5631         SendPasswordCommand = 331,
5632         SendUserCommand = 220,
5633         ServerWantsSecureSession = 234,
5634         ServiceNotAvailable = 421,
5635         ServiceTemporarilyNotAvailable = 120,
5636         SystemType = 215,
5637         Undefined = 0,
5638     }
5639     public sealed partial class FtpWebRequest : System.Net.WebRequest
5640     {
FtpWebRequest()5641         internal FtpWebRequest() { }
5642         [System.MonoTODOAttribute]
5643         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
5644         [System.MonoTODOAttribute]
5645         public override string ConnectionGroupName { get { throw null; } set { } }
5646         public override long ContentLength { get { throw null; } set { } }
5647         public long ContentOffset { get { throw null; } set { } }
5648         public override string ContentType { get { throw null; } set { } }
5649         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
5650         public bool EnableSsl { get { throw null; } set { } }
5651         [System.MonoTODOAttribute]
5652         public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
5653         [System.MonoTODOAttribute("We don't support KeepAlive = true")]
5654         public bool KeepAlive { get { throw null; } set { } }
5655         public override string Method { get { throw null; } set { } }
5656         public override bool PreAuthenticate { get { throw null; } set { } }
5657         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
5658         public int ReadWriteTimeout { get { throw null; } set { } }
5659         public string RenameTo { get { throw null; } set { } }
5660         public override System.Uri RequestUri { get { throw null; } }
5661         public System.Net.ServicePoint ServicePoint { get { throw null; } }
5662         public override int Timeout { get { throw null; } set { } }
5663         public bool UseBinary { get { throw null; } set { } }
5664         [System.MonoTODOAttribute]
5665         public override bool UseDefaultCredentials { get { throw null; } set { } }
5666         public bool UsePassive { get { throw null; } set { } }
Abort()5667         public override void Abort() { }
BeginGetRequestStream(System.AsyncCallback callback, object state)5668         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
BeginGetResponse(System.AsyncCallback callback, object state)5669         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)5670         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)5671         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
GetRequestStream()5672         public override System.IO.Stream GetRequestStream() { throw null; }
GetResponse()5673         public override System.Net.WebResponse GetResponse() { throw null; }
5674     }
5675     public partial class FtpWebResponse : System.Net.WebResponse
5676     {
FtpWebResponse()5677         internal FtpWebResponse() { }
5678         public string BannerMessage { get { throw null; } }
5679         public override long ContentLength { get { throw null; } }
5680         public string ExitMessage { get { throw null; } }
5681         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
5682         public System.DateTime LastModified { get { throw null; } }
5683         public override System.Uri ResponseUri { get { throw null; } }
5684         public System.Net.FtpStatusCode StatusCode { get { throw null; } }
5685         public string StatusDescription { get { throw null; } }
5686         public override bool SupportsHeaders { get { throw null; } }
5687         public string WelcomeMessage { get { throw null; } }
Close()5688         public override void Close() { }
GetResponseStream()5689         public override System.IO.Stream GetResponseStream() { throw null; }
5690     }
5691     [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")]
5692     public partial class GlobalProxySelection
5693     {
GlobalProxySelection()5694         public GlobalProxySelection() { }
5695         public static System.Net.IWebProxy Select { get { throw null; } set { } }
GetEmptyWebProxy()5696         public static System.Net.IWebProxy GetEmptyWebProxy() { throw null; }
5697     }
HttpContinueDelegate(int StatusCode, System.Net.WebHeaderCollection httpHeaders)5698     public delegate void HttpContinueDelegate(int StatusCode, System.Net.WebHeaderCollection httpHeaders);
5699     public sealed partial class HttpListener : System.IDisposable
5700     {
HttpListener()5701         public HttpListener() { }
5702         public System.Net.AuthenticationSchemes AuthenticationSchemes { get { throw null; } set { } }
5703         public System.Net.AuthenticationSchemeSelector AuthenticationSchemeSelectorDelegate { get { throw null; } set { } }
5704         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection DefaultServiceNames { get { throw null; } }
5705         [System.MonoTODOAttribute("not used anywhere in the implementation")]
5706         public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionPolicy { get { throw null; } set { } }
5707         public System.Net.HttpListener.ExtendedProtectionSelector ExtendedProtectionSelectorDelegate { get { throw null; } set { } }
5708         public bool IgnoreWriteExceptions { get { throw null; } set { } }
5709         public bool IsListening { get { throw null; } }
5710         public static bool IsSupported { get { throw null; } }
5711         public System.Net.HttpListenerPrefixCollection Prefixes { get { throw null; } }
5712         public string Realm { get { throw null; } set { } }
5713         [System.MonoTODOAttribute]
5714         public System.Net.HttpListenerTimeoutManager TimeoutManager { get { throw null; } }
5715         [System.MonoTODOAttribute("Support for NTLM needs some loving.")]
5716         public bool UnsafeConnectionNtlmAuthentication { get { throw null; } set { } }
Abort()5717         public void Abort() { }
BeginGetContext(System.AsyncCallback callback, object state)5718         public System.IAsyncResult BeginGetContext(System.AsyncCallback callback, object state) { throw null; }
Close()5719         public void Close() { }
EndGetContext(System.IAsyncResult asyncResult)5720         public System.Net.HttpListenerContext EndGetContext(System.IAsyncResult asyncResult) { throw null; }
GetContext()5721         public System.Net.HttpListenerContext GetContext() { throw null; }
GetContextAsync()5722         public System.Threading.Tasks.Task<System.Net.HttpListenerContext> GetContextAsync() { throw null; }
Start()5723         public void Start() { }
Stop()5724         public void Stop() { }
System.IDisposable.Dispose()5725         void System.IDisposable.Dispose() { }
ExtendedProtectionSelector(System.Net.HttpListenerRequest request)5726         public delegate System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionSelector(System.Net.HttpListenerRequest request);
5727     }
5728     public partial class HttpListenerBasicIdentity : System.Security.Principal.GenericIdentity
5729     {
HttpListenerBasicIdentity(string username, string password)5730         public HttpListenerBasicIdentity(string username, string password) : base (default(string)) { }
5731         public virtual string Password { get { throw null; } }
5732     }
5733     public sealed partial class HttpListenerContext
5734     {
HttpListenerContext()5735         internal HttpListenerContext() { }
5736         public System.Net.HttpListenerRequest Request { get { throw null; } }
5737         public System.Net.HttpListenerResponse Response { get { throw null; } }
5738         public System.Security.Principal.IPrincipal User { get { throw null; } }
5739         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol)5740         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol) { throw null; }
5741         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval)5742         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval) { throw null; }
5743         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval, System.ArraySegment<byte> internalBuffer)5744         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, int receiveBufferSize, System.TimeSpan keepAliveInterval, System.ArraySegment<byte> internalBuffer) { throw null; }
5745         [System.MonoTODOAttribute]
AcceptWebSocketAsync(string subProtocol, System.TimeSpan keepAliveInterval)5746         public System.Threading.Tasks.Task<System.Net.WebSockets.HttpListenerWebSocketContext> AcceptWebSocketAsync(string subProtocol, System.TimeSpan keepAliveInterval) { throw null; }
5747     }
5748     [System.SerializableAttribute]
5749     public partial class HttpListenerException : System.ComponentModel.Win32Exception
5750     {
HttpListenerException()5751         public HttpListenerException() { }
HttpListenerException(int errorCode)5752         public HttpListenerException(int errorCode) { }
HttpListenerException(int errorCode, string message)5753         public HttpListenerException(int errorCode, string message) { }
HttpListenerException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)5754         protected HttpListenerException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
5755         public override int ErrorCode { get { throw null; } }
5756     }
5757     public partial class HttpListenerPrefixCollection : System.Collections.Generic.ICollection<string>, System.Collections.Generic.IEnumerable<string>, System.Collections.IEnumerable
5758     {
HttpListenerPrefixCollection()5759         internal HttpListenerPrefixCollection() { }
5760         public int Count { get { throw null; } }
5761         public bool IsReadOnly { get { throw null; } }
5762         public bool IsSynchronized { get { throw null; } }
Add(string uriPrefix)5763         public void Add(string uriPrefix) { }
Clear()5764         public void Clear() { }
Contains(string uriPrefix)5765         public bool Contains(string uriPrefix) { throw null; }
CopyTo(System.Array array, int offset)5766         public void CopyTo(System.Array array, int offset) { }
CopyTo(string[] array, int offset)5767         public void CopyTo(string[] array, int offset) { }
GetEnumerator()5768         public System.Collections.Generic.IEnumerator<string> GetEnumerator() { throw null; }
Remove(string uriPrefix)5769         public bool Remove(string uriPrefix) { throw null; }
System.Collections.IEnumerable.GetEnumerator()5770         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
5771     }
5772     public sealed partial class HttpListenerRequest
5773     {
HttpListenerRequest()5774         internal HttpListenerRequest() { }
5775         public string[] AcceptTypes { get { throw null; } }
5776         public int ClientCertificateError { get { throw null; } }
5777         public System.Text.Encoding ContentEncoding { get { throw null; } }
5778         public long ContentLength64 { get { throw null; } }
5779         public string ContentType { get { throw null; } }
5780         public System.Net.CookieCollection Cookies { get { throw null; } }
5781         public bool HasEntityBody { get { throw null; } }
5782         public System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
5783         public string HttpMethod { get { throw null; } }
5784         public System.IO.Stream InputStream { get { throw null; } }
5785         [System.MonoTODOAttribute("Always returns false")]
5786         public bool IsAuthenticated { get { throw null; } }
5787         public bool IsLocal { get { throw null; } }
5788         public bool IsSecureConnection { get { throw null; } }
5789         [System.MonoTODOAttribute]
5790         public bool IsWebSocketRequest { get { throw null; } }
5791         public bool KeepAlive { get { throw null; } }
5792         public System.Net.IPEndPoint LocalEndPoint { get { throw null; } }
5793         public System.Version ProtocolVersion { get { throw null; } }
5794         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } }
5795         public string RawUrl { get { throw null; } }
5796         public System.Net.IPEndPoint RemoteEndPoint { get { throw null; } }
5797         [System.MonoTODOAttribute("Always returns Guid.Empty")]
5798         public System.Guid RequestTraceIdentifier { get { throw null; } }
5799         [System.MonoTODOAttribute]
5800         public string ServiceName { get { throw null; } }
5801         public System.Net.TransportContext TransportContext { get { throw null; } }
5802         public System.Uri Url { get { throw null; } }
5803         public System.Uri UrlReferrer { get { throw null; } }
5804         public string UserAgent { get { throw null; } }
5805         public string UserHostAddress { get { throw null; } }
5806         public string UserHostName { get { throw null; } }
5807         public string[] UserLanguages { get { throw null; } }
BeginGetClientCertificate(System.AsyncCallback requestCallback, object state)5808         public System.IAsyncResult BeginGetClientCertificate(System.AsyncCallback requestCallback, object state) { throw null; }
EndGetClientCertificate(System.IAsyncResult asyncResult)5809         public System.Security.Cryptography.X509Certificates.X509Certificate2 EndGetClientCertificate(System.IAsyncResult asyncResult) { throw null; }
GetClientCertificate()5810         public System.Security.Cryptography.X509Certificates.X509Certificate2 GetClientCertificate() { throw null; }
GetClientCertificateAsync()5811         public System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync() { throw null; }
5812     }
5813     public sealed partial class HttpListenerResponse : System.IDisposable
5814     {
HttpListenerResponse()5815         internal HttpListenerResponse() { }
5816         public System.Text.Encoding ContentEncoding { get { throw null; } set { } }
5817         public long ContentLength64 { get { throw null; } set { } }
5818         public string ContentType { get { throw null; } set { } }
5819         public System.Net.CookieCollection Cookies { get { throw null; } set { } }
5820         public System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
5821         public bool KeepAlive { get { throw null; } set { } }
5822         public System.IO.Stream OutputStream { get { throw null; } }
5823         public System.Version ProtocolVersion { get { throw null; } set { } }
5824         public string RedirectLocation { get { throw null; } set { } }
5825         public bool SendChunked { get { throw null; } set { } }
5826         public int StatusCode { get { throw null; } set { } }
5827         public string StatusDescription { get { throw null; } set { } }
Abort()5828         public void Abort() { }
AddHeader(string name, string value)5829         public void AddHeader(string name, string value) { }
AppendCookie(System.Net.Cookie cookie)5830         public void AppendCookie(System.Net.Cookie cookie) { }
AppendHeader(string name, string value)5831         public void AppendHeader(string name, string value) { }
Close()5832         public void Close() { }
Close(byte[] responseEntity, bool willBlock)5833         public void Close(byte[] responseEntity, bool willBlock) { }
CopyFrom(System.Net.HttpListenerResponse templateResponse)5834         public void CopyFrom(System.Net.HttpListenerResponse templateResponse) { }
Redirect(string url)5835         public void Redirect(string url) { }
SetCookie(System.Net.Cookie cookie)5836         public void SetCookie(System.Net.Cookie cookie) { }
System.IDisposable.Dispose()5837         void System.IDisposable.Dispose() { }
5838     }
5839     public partial class HttpListenerTimeoutManager
5840     {
HttpListenerTimeoutManager()5841         public HttpListenerTimeoutManager() { }
5842         [System.MonoTODOAttribute]
5843         public System.TimeSpan DrainEntityBody { get { throw null; } set { } }
5844         [System.MonoTODOAttribute]
5845         public System.TimeSpan EntityBody { get { throw null; } set { } }
5846         [System.MonoTODOAttribute]
5847         public System.TimeSpan HeaderWait { get { throw null; } set { } }
5848         [System.MonoTODOAttribute]
5849         public System.TimeSpan IdleConnection { get { throw null; } set { } }
5850         [System.MonoTODOAttribute]
5851         public long MinSendBytesPerSecond { get { throw null; } set { } }
5852         [System.MonoTODOAttribute]
5853         public System.TimeSpan RequestQueue { get { throw null; } set { } }
5854     }
5855     public enum HttpRequestHeader
5856     {
5857         Accept = 20,
5858         AcceptCharset = 21,
5859         AcceptEncoding = 22,
5860         AcceptLanguage = 23,
5861         Allow = 10,
5862         Authorization = 24,
5863         CacheControl = 0,
5864         Connection = 1,
5865         ContentEncoding = 13,
5866         ContentLanguage = 14,
5867         ContentLength = 11,
5868         ContentLocation = 15,
5869         ContentMd5 = 16,
5870         ContentRange = 17,
5871         ContentType = 12,
5872         Cookie = 25,
5873         Date = 2,
5874         Expect = 26,
5875         Expires = 18,
5876         From = 27,
5877         Host = 28,
5878         IfMatch = 29,
5879         IfModifiedSince = 30,
5880         IfNoneMatch = 31,
5881         IfRange = 32,
5882         IfUnmodifiedSince = 33,
5883         KeepAlive = 3,
5884         LastModified = 19,
5885         MaxForwards = 34,
5886         Pragma = 4,
5887         ProxyAuthorization = 35,
5888         Range = 37,
5889         Referer = 36,
5890         Te = 38,
5891         Trailer = 5,
5892         TransferEncoding = 6,
5893         Translate = 39,
5894         Upgrade = 7,
5895         UserAgent = 40,
5896         Via = 8,
5897         Warning = 9,
5898     }
5899     public enum HttpResponseHeader
5900     {
5901         AcceptRanges = 20,
5902         Age = 21,
5903         Allow = 10,
5904         CacheControl = 0,
5905         Connection = 1,
5906         ContentEncoding = 13,
5907         ContentLanguage = 14,
5908         ContentLength = 11,
5909         ContentLocation = 15,
5910         ContentMd5 = 16,
5911         ContentRange = 17,
5912         ContentType = 12,
5913         Date = 2,
5914         ETag = 22,
5915         Expires = 18,
5916         KeepAlive = 3,
5917         LastModified = 19,
5918         Location = 23,
5919         Pragma = 4,
5920         ProxyAuthenticate = 24,
5921         RetryAfter = 25,
5922         Server = 26,
5923         SetCookie = 27,
5924         Trailer = 5,
5925         TransferEncoding = 6,
5926         Upgrade = 7,
5927         Vary = 28,
5928         Via = 8,
5929         Warning = 9,
5930         WwwAuthenticate = 29,
5931     }
5932     public enum HttpStatusCode
5933     {
5934         Accepted = 202,
5935         Ambiguous = 300,
5936         BadGateway = 502,
5937         BadRequest = 400,
5938         Conflict = 409,
5939         Continue = 100,
5940         Created = 201,
5941         ExpectationFailed = 417,
5942         Forbidden = 403,
5943         Found = 302,
5944         GatewayTimeout = 504,
5945         Gone = 410,
5946         HttpVersionNotSupported = 505,
5947         InternalServerError = 500,
5948         LengthRequired = 411,
5949         MethodNotAllowed = 405,
5950         Moved = 301,
5951         MovedPermanently = 301,
5952         MultipleChoices = 300,
5953         NoContent = 204,
5954         NonAuthoritativeInformation = 203,
5955         NotAcceptable = 406,
5956         NotFound = 404,
5957         NotImplemented = 501,
5958         NotModified = 304,
5959         OK = 200,
5960         PartialContent = 206,
5961         PaymentRequired = 402,
5962         PreconditionFailed = 412,
5963         ProxyAuthenticationRequired = 407,
5964         Redirect = 302,
5965         RedirectKeepVerb = 307,
5966         RedirectMethod = 303,
5967         RequestedRangeNotSatisfiable = 416,
5968         RequestEntityTooLarge = 413,
5969         RequestTimeout = 408,
5970         RequestUriTooLong = 414,
5971         ResetContent = 205,
5972         SeeOther = 303,
5973         ServiceUnavailable = 503,
5974         SwitchingProtocols = 101,
5975         TemporaryRedirect = 307,
5976         Unauthorized = 401,
5977         UnsupportedMediaType = 415,
5978         Unused = 306,
5979         UpgradeRequired = 426,
5980         UseProxy = 305,
5981     }
5982     public partial class HttpVersion
5983     {
5984         public static readonly System.Version Version10;
5985         public static readonly System.Version Version11;
HttpVersion()5986         public HttpVersion() { }
5987     }
5988     [System.SerializableAttribute]
5989     public partial class HttpWebRequest : System.Net.WebRequest, System.Runtime.Serialization.ISerializable
5990     {
5991         [System.ObsoleteAttribute("Serialization is obsoleted for this type", false)]
HttpWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)5992         protected HttpWebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
HttpWebRequest(System.Uri uri)5993         public HttpWebRequest(System.Uri uri) { }
5994         public string Accept { get { throw null; } set { } }
5995         public System.Uri Address { get { throw null; } }
5996         public virtual bool AllowAutoRedirect { get { throw null; } set { } }
5997         public virtual bool AllowReadStreamBuffering { get { throw null; } set { } }
5998         public virtual bool AllowWriteStreamBuffering { get { throw null; } set { } }
5999         public System.Net.DecompressionMethods AutomaticDecompression { get { throw null; } set { } }
6000         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
6001         public string Connection { get { throw null; } set { } }
6002         public override string ConnectionGroupName { get { throw null; } set { } }
6003         public override long ContentLength { get { throw null; } set { } }
6004         public override string ContentType { get { throw null; } set { } }
6005         public System.Net.HttpContinueDelegate ContinueDelegate { get { throw null; } set { } }
6006         [System.MonoTODOAttribute]
6007         public int ContinueTimeout { get { throw null; } set { } }
6008         public virtual System.Net.CookieContainer CookieContainer { get { throw null; } set { } }
6009         public override System.Net.ICredentials Credentials { get { throw null; } set { } }
6010         public System.DateTime Date { get { throw null; } set { } }
6011         [System.MonoTODOAttribute]
6012         public static int DefaultMaximumErrorResponseLength { get { throw null; } set { } }
6013         [System.MonoTODOAttribute("Use this")]
6014         public static int DefaultMaximumResponseHeadersLength { get { throw null; } set { } }
6015         public string Expect { get { throw null; } set { } }
6016         public virtual bool HaveResponse { get { throw null; } }
6017         public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
6018         public string Host { get { throw null; } set { } }
6019         public System.DateTime IfModifiedSince { get { throw null; } set { } }
6020         public bool KeepAlive { get { throw null; } set { } }
6021         public int MaximumAutomaticRedirections { get { throw null; } set { } }
6022         [System.MonoTODOAttribute("Use this")]
6023         public int MaximumResponseHeadersLength { get { throw null; } set { } }
6024         public string MediaType { get { throw null; } set { } }
6025         public override string Method { get { throw null; } set { } }
6026         public bool Pipelined { get { throw null; } set { } }
6027         public override bool PreAuthenticate { get { throw null; } set { } }
6028         public System.Version ProtocolVersion { get { throw null; } set { } }
6029         public override System.Net.IWebProxy Proxy { get { throw null; } set { } }
6030         public int ReadWriteTimeout { get { throw null; } set { } }
6031         public string Referer { get { throw null; } set { } }
6032         public override System.Uri RequestUri { get { throw null; } }
6033         public bool SendChunked { get { throw null; } set { } }
6034         public System.Net.Security.RemoteCertificateValidationCallback ServerCertificateValidationCallback { get { throw null; } set { } }
6035         public System.Net.ServicePoint ServicePoint { get { throw null; } }
6036         public virtual bool SupportsCookieContainer { get { throw null; } }
6037         public override int Timeout { get { throw null; } set { } }
6038         public string TransferEncoding { get { throw null; } set { } }
6039         public bool UnsafeAuthenticatedConnectionSharing { get { throw null; } set { } }
6040         public override bool UseDefaultCredentials { get { throw null; } set { } }
6041         public string UserAgent { get { throw null; } set { } }
Abort()6042         public override void Abort() { }
AddRange(int range)6043         public void AddRange(int range) { }
AddRange(int from, int to)6044         public void AddRange(int from, int to) { }
AddRange(long range)6045         public void AddRange(long range) { }
AddRange(long from, long to)6046         public void AddRange(long from, long to) { }
AddRange(string rangeSpecifier, int range)6047         public void AddRange(string rangeSpecifier, int range) { }
AddRange(string rangeSpecifier, int from, int to)6048         public void AddRange(string rangeSpecifier, int from, int to) { }
AddRange(string rangeSpecifier, long range)6049         public void AddRange(string rangeSpecifier, long range) { }
AddRange(string rangeSpecifier, long from, long to)6050         public void AddRange(string rangeSpecifier, long from, long to) { }
BeginGetRequestStream(System.AsyncCallback callback, object state)6051         public override System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
BeginGetResponse(System.AsyncCallback callback, object state)6052         public override System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)6053         public override System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult, out System.Net.TransportContext context)6054         public System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult, out System.Net.TransportContext context) { context = default(System.Net.TransportContext); throw null; }
EndGetResponse(System.IAsyncResult asyncResult)6055         public override System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6056         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()6057         public override System.IO.Stream GetRequestStream() { throw null; }
6058         [System.MonoTODOAttribute]
GetRequestStream(out System.Net.TransportContext context)6059         public System.IO.Stream GetRequestStream(out System.Net.TransportContext context) { context = default(System.Net.TransportContext); throw null; }
GetResponse()6060         public override System.Net.WebResponse GetResponse() { throw null; }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6061         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6062     }
6063     [System.SerializableAttribute]
6064     public partial class HttpWebResponse : System.Net.WebResponse, System.IDisposable, System.Runtime.Serialization.ISerializable
6065     {
6066         [System.ObsoleteAttribute("Serialization is obsoleted for this type", false)]
HttpWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6067         protected HttpWebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6068         public string CharacterSet { get { throw null; } }
6069         public string ContentEncoding { get { throw null; } }
6070         public override long ContentLength { get { throw null; } }
6071         public override string ContentType { get { throw null; } }
6072         public virtual System.Net.CookieCollection Cookies { get { throw null; } set { } }
6073         public override System.Net.WebHeaderCollection Headers { get { throw null; } }
6074         [System.MonoTODOAttribute]
6075         public override bool IsMutuallyAuthenticated { get { throw null; } }
6076         public System.DateTime LastModified { get { throw null; } }
6077         public virtual string Method { get { throw null; } }
6078         public System.Version ProtocolVersion { get { throw null; } }
6079         public override System.Uri ResponseUri { get { throw null; } }
6080         public string Server { get { throw null; } }
6081         public virtual System.Net.HttpStatusCode StatusCode { get { throw null; } }
6082         public virtual string StatusDescription { get { throw null; } }
6083         public override bool SupportsHeaders { get { throw null; } }
Close()6084         public override void Close() { }
Dispose(bool disposing)6085         protected override void Dispose(bool disposing) { }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6086         protected override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseHeader(string headerName)6087         public string GetResponseHeader(string headerName) { throw null; }
GetResponseStream()6088         public override System.IO.Stream GetResponseStream() { throw null; }
System.IDisposable.Dispose()6089         void System.IDisposable.Dispose() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6090         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6091     }
6092     public partial interface IAuthenticationModule
6093     {
6094         string AuthenticationType { get; }
6095         bool CanPreAuthenticate { get; }
Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials)6096         System.Net.Authorization Authenticate(string challenge, System.Net.WebRequest request, System.Net.ICredentials credentials);
PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials)6097         System.Net.Authorization PreAuthenticate(System.Net.WebRequest request, System.Net.ICredentials credentials);
6098     }
6099     public partial interface ICertificatePolicy
6100     {
CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem)6101         bool CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem);
6102     }
6103     public partial interface ICredentialPolicy
6104     {
ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authenticationModule)6105         bool ShouldSendCredential(System.Uri challengeUri, System.Net.WebRequest request, System.Net.NetworkCredential credential, System.Net.IAuthenticationModule authenticationModule);
6106     }
6107     public partial interface ICredentials
6108     {
GetCredential(System.Uri uri, string authType)6109         System.Net.NetworkCredential GetCredential(System.Uri uri, string authType);
6110     }
6111     public partial interface ICredentialsByHost
6112     {
GetCredential(string host, int port, string authenticationType)6113         System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType);
6114     }
6115     [System.SerializableAttribute]
6116     public partial class IPAddress
6117     {
6118         public static readonly System.Net.IPAddress Any;
6119         public static readonly System.Net.IPAddress Broadcast;
6120         public static readonly System.Net.IPAddress IPv6Any;
6121         public static readonly System.Net.IPAddress IPv6Loopback;
6122         public static readonly System.Net.IPAddress IPv6None;
6123         public static readonly System.Net.IPAddress Loopback;
6124         public static readonly System.Net.IPAddress None;
IPAddress(byte[] address)6125         public IPAddress(byte[] address) { }
IPAddress(byte[] address, long scopeid)6126         public IPAddress(byte[] address, long scopeid) { }
IPAddress(long newAddress)6127         public IPAddress(long newAddress) { }
6128         [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")]
6129         public long Address { get { throw null; } set { } }
6130         public System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
6131         public bool IsIPv4MappedToIPv6 { get { throw null; } }
6132         public bool IsIPv6LinkLocal { get { throw null; } }
6133         public bool IsIPv6Multicast { get { throw null; } }
6134         public bool IsIPv6SiteLocal { get { throw null; } }
6135         public bool IsIPv6Teredo { get { throw null; } }
6136         public long ScopeId { get { throw null; } set { } }
Equals(object comparand)6137         public override bool Equals(object comparand) { throw null; }
GetAddressBytes()6138         public byte[] GetAddressBytes() { throw null; }
GetHashCode()6139         public override int GetHashCode() { throw null; }
HostToNetworkOrder(short host)6140         public static short HostToNetworkOrder(short host) { throw null; }
HostToNetworkOrder(int host)6141         public static int HostToNetworkOrder(int host) { throw null; }
HostToNetworkOrder(long host)6142         public static long HostToNetworkOrder(long host) { throw null; }
IsLoopback(System.Net.IPAddress address)6143         public static bool IsLoopback(System.Net.IPAddress address) { throw null; }
MapToIPv4()6144         public System.Net.IPAddress MapToIPv4() { throw null; }
MapToIPv6()6145         public System.Net.IPAddress MapToIPv6() { throw null; }
NetworkToHostOrder(short network)6146         public static short NetworkToHostOrder(short network) { throw null; }
NetworkToHostOrder(int network)6147         public static int NetworkToHostOrder(int network) { throw null; }
NetworkToHostOrder(long network)6148         public static long NetworkToHostOrder(long network) { throw null; }
Parse(string ipString)6149         public static System.Net.IPAddress Parse(string ipString) { throw null; }
ToString()6150         public override string ToString() { throw null; }
TryParse(string ipString, out System.Net.IPAddress address)6151         public static bool TryParse(string ipString, out System.Net.IPAddress address) { address = default(System.Net.IPAddress); throw null; }
6152     }
6153     [System.SerializableAttribute]
6154     public partial class IPEndPoint : System.Net.EndPoint
6155     {
6156         public const int MaxPort = 65535;
6157         public const int MinPort = 0;
IPEndPoint(long address, int port)6158         public IPEndPoint(long address, int port) { }
IPEndPoint(System.Net.IPAddress address, int port)6159         public IPEndPoint(System.Net.IPAddress address, int port) { }
6160         public System.Net.IPAddress Address { get { throw null; } set { } }
6161         public override System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
6162         public int Port { get { throw null; } set { } }
Create(System.Net.SocketAddress socketAddress)6163         public override System.Net.EndPoint Create(System.Net.SocketAddress socketAddress) { throw null; }
Equals(object comparand)6164         public override bool Equals(object comparand) { throw null; }
GetHashCode()6165         public override int GetHashCode() { throw null; }
Serialize()6166         public override System.Net.SocketAddress Serialize() { throw null; }
ToString()6167         public override string ToString() { throw null; }
6168     }
6169     public partial class IPHostEntry
6170     {
IPHostEntry()6171         public IPHostEntry() { }
6172         public System.Net.IPAddress[] AddressList { get { throw null; } set { } }
6173         public string[] Aliases { get { throw null; } set { } }
6174         public string HostName { get { throw null; } set { } }
6175     }
6176     public partial interface IWebProxy
6177     {
6178         System.Net.ICredentials Credentials { get; set; }
GetProxy(System.Uri destination)6179         System.Uri GetProxy(System.Uri destination);
IsBypassed(System.Uri host)6180         bool IsBypassed(System.Uri host);
6181     }
6182     public partial interface IWebProxyScript
6183     {
Close()6184         void Close();
Load(System.Uri scriptLocation, string script, System.Type helperType)6185         bool Load(System.Uri scriptLocation, string script, System.Type helperType);
Run(string url, string host)6186         string Run(string url, string host);
6187     }
6188     public partial interface IWebRequestCreate
6189     {
Create(System.Uri uri)6190         System.Net.WebRequest Create(System.Uri uri);
6191     }
6192     [System.FlagsAttribute]
6193     public enum NetworkAccess
6194     {
6195         Accept = 128,
6196         Connect = 64,
6197     }
6198     public partial class NetworkCredential : System.Net.ICredentials, System.Net.ICredentialsByHost
6199     {
NetworkCredential()6200         public NetworkCredential() { }
NetworkCredential(string userName, System.Security.SecureString password)6201         public NetworkCredential(string userName, System.Security.SecureString password) { }
NetworkCredential(string userName, System.Security.SecureString password, string domain)6202         public NetworkCredential(string userName, System.Security.SecureString password, string domain) { }
NetworkCredential(string userName, string password)6203         public NetworkCredential(string userName, string password) { }
NetworkCredential(string userName, string password, string domain)6204         public NetworkCredential(string userName, string password, string domain) { }
6205         public string Domain { get { throw null; } set { } }
6206         public string Password { get { throw null; } set { } }
6207         public System.Security.SecureString SecurePassword { get { throw null; } set { } }
6208         public string UserName { get { throw null; } set { } }
GetCredential(string host, int port, string authenticationType)6209         public System.Net.NetworkCredential GetCredential(string host, int port, string authenticationType) { throw null; }
GetCredential(System.Uri uri, string authType)6210         public System.Net.NetworkCredential GetCredential(System.Uri uri, string authType) { throw null; }
6211     }
6212     public partial class OpenReadCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
6213     {
OpenReadCompletedEventArgs()6214         internal OpenReadCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
6215         public System.IO.Stream Result { get { throw null; } }
6216     }
OpenReadCompletedEventHandler(object sender, System.Net.OpenReadCompletedEventArgs e)6217     public delegate void OpenReadCompletedEventHandler(object sender, System.Net.OpenReadCompletedEventArgs e);
6218     public partial class OpenWriteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
6219     {
OpenWriteCompletedEventArgs()6220         internal OpenWriteCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
6221         public System.IO.Stream Result { get { throw null; } }
6222     }
OpenWriteCompletedEventHandler(object sender, System.Net.OpenWriteCompletedEventArgs e)6223     public delegate void OpenWriteCompletedEventHandler(object sender, System.Net.OpenWriteCompletedEventArgs e);
6224     [System.SerializableAttribute]
6225     public partial class ProtocolViolationException : System.InvalidOperationException, System.Runtime.Serialization.ISerializable
6226     {
ProtocolViolationException()6227         public ProtocolViolationException() { }
ProtocolViolationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6228         protected ProtocolViolationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
ProtocolViolationException(string message)6229         public ProtocolViolationException(string message) { }
6230         [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)6231         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6232         [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)6233         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6234     }
6235     [System.FlagsAttribute]
6236     public enum SecurityProtocolType
6237     {
6238         Ssl3 = 48,
6239         SystemDefault = 0,
6240         Tls = 192,
6241         Tls11 = 768,
6242         Tls12 = 3072,
6243     }
6244     public partial class ServicePoint
6245     {
ServicePoint()6246         internal ServicePoint() { }
6247         public System.Uri Address { get { throw null; } }
6248         public System.Net.BindIPEndPoint BindIPEndPointDelegate { get { throw null; } set { } }
6249         public System.Security.Cryptography.X509Certificates.X509Certificate Certificate { get { throw null; } }
6250         public System.Security.Cryptography.X509Certificates.X509Certificate ClientCertificate { get { throw null; } }
6251         [System.MonoTODOAttribute]
6252         public int ConnectionLeaseTimeout { get { throw null; } set { } }
6253         public int ConnectionLimit { get { throw null; } set { } }
6254         public string ConnectionName { get { throw null; } }
6255         public int CurrentConnections { get { throw null; } }
6256         public bool Expect100Continue { get { throw null; } set { } }
6257         public System.DateTime IdleSince { get { throw null; } }
6258         public int MaxIdleTime { get { throw null; } set { } }
6259         public virtual System.Version ProtocolVersion { get { throw null; } }
6260         [System.MonoTODOAttribute]
6261         public int ReceiveBufferSize { get { throw null; } set { } }
6262         public bool SupportsPipelining { get { throw null; } }
6263         public bool UseNagleAlgorithm { get { throw null; } set { } }
CloseConnectionGroup(string connectionGroupName)6264         public bool CloseConnectionGroup(string connectionGroupName) { throw null; }
SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval)6265         public void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval) { }
6266     }
6267     public partial class ServicePointManager
6268     {
ServicePointManager()6269         internal ServicePointManager() { }
6270         public const int DefaultNonPersistentConnectionLimit = 4;
6271         public const int DefaultPersistentConnectionLimit = 10;
6272         [System.ObsoleteAttribute("Use ServerCertificateValidationCallback instead", false)]
6273         public static System.Net.ICertificatePolicy CertificatePolicy { get { throw null; } set { } }
6274         [System.MonoTODOAttribute("CRL checks not implemented")]
6275         public static bool CheckCertificateRevocationList { get { throw null; } set { } }
6276         [System.ObsoleteAttribute("This API is no longer supported.", true)]
6277         public static System.Net.CipherSuitesCallback ClientCipherSuitesCallback { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
6278         public static int DefaultConnectionLimit { get { throw null; } set { } }
6279         public static int DnsRefreshTimeout { get { throw null; } set { } }
6280         [System.MonoTODOAttribute]
6281         public static bool EnableDnsRoundRobin { get { throw null; } set { } }
6282         [System.MonoTODOAttribute("Always returns EncryptionPolicy.RequireEncryption.")]
6283         public static System.Net.Security.EncryptionPolicy EncryptionPolicy { get { throw null; } }
6284         public static bool Expect100Continue { get { throw null; } set { } }
6285         public static int MaxServicePointIdleTime { get { throw null; } set { } }
6286         public static int MaxServicePoints { get { throw null; } set { } }
6287         [System.MonoTODOAttribute]
6288         public static bool ReusePort { get { throw null; } set { } }
6289         public static System.Net.SecurityProtocolType SecurityProtocol { get { throw null; } set { } }
6290         public static System.Net.Security.RemoteCertificateValidationCallback ServerCertificateValidationCallback { get { throw null; } set { } }
6291         [System.ObsoleteAttribute("This API is no longer supported.", true)]
6292         public static System.Net.CipherSuitesCallback ServerCipherSuitesCallback { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
6293         public static bool UseNagleAlgorithm { get { throw null; } set { } }
FindServicePoint(string uriString, System.Net.IWebProxy proxy)6294         public static System.Net.ServicePoint FindServicePoint(string uriString, System.Net.IWebProxy proxy) { throw null; }
FindServicePoint(System.Uri address)6295         public static System.Net.ServicePoint FindServicePoint(System.Uri address) { throw null; }
FindServicePoint(System.Uri address, System.Net.IWebProxy proxy)6296         public static System.Net.ServicePoint FindServicePoint(System.Uri address, System.Net.IWebProxy proxy) { throw null; }
SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval)6297         public static void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval) { }
6298     }
6299     public partial class SocketAddress
6300     {
SocketAddress(System.Net.Sockets.AddressFamily family)6301         public SocketAddress(System.Net.Sockets.AddressFamily family) { }
SocketAddress(System.Net.Sockets.AddressFamily family, int size)6302         public SocketAddress(System.Net.Sockets.AddressFamily family, int size) { }
6303         public System.Net.Sockets.AddressFamily Family { get { throw null; } }
6304         public byte this[int offset] { get { throw null; } set { } }
6305         public int Size { get { throw null; } }
Equals(object comparand)6306         public override bool Equals(object comparand) { throw null; }
GetHashCode()6307         public override int GetHashCode() { throw null; }
ToString()6308         public override string ToString() { throw null; }
6309     }
6310     [System.SerializableAttribute]
6311     public sealed partial class SocketPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
6312     {
6313         public const int AllPorts = -1;
SocketPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber)6314         public SocketPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber) { }
SocketPermission(System.Security.Permissions.PermissionState state)6315         public SocketPermission(System.Security.Permissions.PermissionState state) { }
6316         public System.Collections.IEnumerator AcceptList { get { throw null; } }
6317         public System.Collections.IEnumerator ConnectList { get { throw null; } }
AddPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber)6318         public void AddPermission(System.Net.NetworkAccess access, System.Net.TransportType transport, string hostName, int portNumber) { }
Copy()6319         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)6320         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)6321         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)6322         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()6323         public bool IsUnrestricted() { throw null; }
ToXml()6324         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)6325         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
6326     }
6327     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
6328     [System.SerializableAttribute]
6329     public sealed partial class SocketPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
6330     {
SocketPermissionAttribute(System.Security.Permissions.SecurityAction action)6331         public SocketPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
6332         public string Access { get { throw null; } set { } }
6333         public string Host { get { throw null; } set { } }
6334         public string Port { get { throw null; } set { } }
6335         public string Transport { get { throw null; } set { } }
CreatePermission()6336         public override System.Security.IPermission CreatePermission() { throw null; }
6337     }
6338     public abstract partial class TransportContext
6339     {
TransportContext()6340         protected TransportContext() { }
GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind kind)6341         public abstract System.Security.Authentication.ExtendedProtection.ChannelBinding GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind kind);
GetTlsTokenBindings()6342         public virtual System.Collections.Generic.IEnumerable<System.Security.Authentication.ExtendedProtection.TokenBinding> GetTlsTokenBindings() { throw null; }
6343     }
6344     public enum TransportType
6345     {
6346         All = 3,
6347         Connectionless = 1,
6348         ConnectionOriented = 2,
6349         Tcp = 2,
6350         Udp = 1,
6351     }
6352     public partial class UploadDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
6353     {
UploadDataCompletedEventArgs()6354         internal UploadDataCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
6355         public byte[] Result { get { throw null; } }
6356     }
UploadDataCompletedEventHandler(object sender, System.Net.UploadDataCompletedEventArgs e)6357     public delegate void UploadDataCompletedEventHandler(object sender, System.Net.UploadDataCompletedEventArgs e);
6358     public partial class UploadFileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
6359     {
UploadFileCompletedEventArgs()6360         internal UploadFileCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
6361         public byte[] Result { get { throw null; } }
6362     }
UploadFileCompletedEventHandler(object sender, System.Net.UploadFileCompletedEventArgs e)6363     public delegate void UploadFileCompletedEventHandler(object sender, System.Net.UploadFileCompletedEventArgs e);
6364     public partial class UploadProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs
6365     {
UploadProgressChangedEventArgs()6366         internal UploadProgressChangedEventArgs() : base (default(int), default(object)) { }
6367         public long BytesReceived { get { throw null; } }
6368         public long BytesSent { get { throw null; } }
6369         public long TotalBytesToReceive { get { throw null; } }
6370         public long TotalBytesToSend { get { throw null; } }
6371     }
UploadProgressChangedEventHandler(object sender, System.Net.UploadProgressChangedEventArgs e)6372     public delegate void UploadProgressChangedEventHandler(object sender, System.Net.UploadProgressChangedEventArgs e);
6373     public partial class UploadStringCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
6374     {
UploadStringCompletedEventArgs()6375         internal UploadStringCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
6376         public string Result { get { throw null; } }
6377     }
UploadStringCompletedEventHandler(object sender, System.Net.UploadStringCompletedEventArgs e)6378     public delegate void UploadStringCompletedEventHandler(object sender, System.Net.UploadStringCompletedEventArgs e);
6379     public partial class UploadValuesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
6380     {
UploadValuesCompletedEventArgs()6381         internal UploadValuesCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
6382         public byte[] Result { get { throw null; } }
6383     }
UploadValuesCompletedEventHandler(object sender, System.Net.UploadValuesCompletedEventArgs e)6384     public delegate void UploadValuesCompletedEventHandler(object sender, System.Net.UploadValuesCompletedEventArgs e);
6385     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
6386     public partial class WebClient : System.ComponentModel.Component
6387     {
WebClient()6388         public WebClient() { }
6389         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6390         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
6391         public bool AllowReadStreamBuffering { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
6392         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6393         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
6394         public bool AllowWriteStreamBuffering { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
6395         public string BaseAddress { get { throw null; } set { } }
6396         public System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } }
6397         public System.Net.ICredentials Credentials { get { throw null; } set { } }
6398         public System.Text.Encoding Encoding { get { throw null; } set { } }
6399         public System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
6400         public bool IsBusy { get { throw null; } }
6401         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
6402         public System.Collections.Specialized.NameValueCollection QueryString { get { throw null; } set { } }
6403         public System.Net.WebHeaderCollection ResponseHeaders { get { throw null; } }
6404         public bool UseDefaultCredentials { get { throw null; } set { } }
6405         public event System.Net.DownloadDataCompletedEventHandler DownloadDataCompleted { add { } remove { } }
6406         public event System.ComponentModel.AsyncCompletedEventHandler DownloadFileCompleted { add { } remove { } }
6407         public event System.Net.DownloadProgressChangedEventHandler DownloadProgressChanged { add { } remove { } }
6408         public event System.Net.DownloadStringCompletedEventHandler DownloadStringCompleted { add { } remove { } }
6409         public event System.Net.OpenReadCompletedEventHandler OpenReadCompleted { add { } remove { } }
6410         public event System.Net.OpenWriteCompletedEventHandler OpenWriteCompleted { add { } remove { } }
6411         public event System.Net.UploadDataCompletedEventHandler UploadDataCompleted { add { } remove { } }
6412         public event System.Net.UploadFileCompletedEventHandler UploadFileCompleted { add { } remove { } }
6413         public event System.Net.UploadProgressChangedEventHandler UploadProgressChanged { add { } remove { } }
6414         public event System.Net.UploadStringCompletedEventHandler UploadStringCompleted { add { } remove { } }
6415         public event System.Net.UploadValuesCompletedEventHandler UploadValuesCompleted { add { } remove { } }
6416         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6417         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
6418         public event System.Net.WriteStreamClosedEventHandler WriteStreamClosed { add { } remove { } }
CancelAsync()6419         public void CancelAsync() { }
DownloadData(string address)6420         public byte[] DownloadData(string address) { throw null; }
DownloadData(System.Uri address)6421         public byte[] DownloadData(System.Uri address) { throw null; }
6422         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataAsync(System.Uri address)6423         public void DownloadDataAsync(System.Uri address) { }
6424         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataAsync(System.Uri address, object userToken)6425         public void DownloadDataAsync(System.Uri address, object userToken) { }
6426         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6427         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataTaskAsync(string address)6428         public System.Threading.Tasks.Task<byte[]> DownloadDataTaskAsync(string address) { throw null; }
6429         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6430         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadDataTaskAsync(System.Uri address)6431         public System.Threading.Tasks.Task<byte[]> DownloadDataTaskAsync(System.Uri address) { throw null; }
DownloadFile(string address, string fileName)6432         public void DownloadFile(string address, string fileName) { }
DownloadFile(System.Uri address, string fileName)6433         public void DownloadFile(System.Uri address, string fileName) { }
6434         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileAsync(System.Uri address, string fileName)6435         public void DownloadFileAsync(System.Uri address, string fileName) { }
6436         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileAsync(System.Uri address, string fileName, object userToken)6437         public void DownloadFileAsync(System.Uri address, string fileName, object userToken) { }
6438         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6439         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileTaskAsync(string address, string fileName)6440         public System.Threading.Tasks.Task DownloadFileTaskAsync(string address, string fileName) { throw null; }
6441         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6442         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadFileTaskAsync(System.Uri address, string fileName)6443         public System.Threading.Tasks.Task DownloadFileTaskAsync(System.Uri address, string fileName) { throw null; }
DownloadString(string address)6444         public string DownloadString(string address) { throw null; }
DownloadString(System.Uri address)6445         public string DownloadString(System.Uri address) { throw null; }
6446         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringAsync(System.Uri address)6447         public void DownloadStringAsync(System.Uri address) { }
6448         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringAsync(System.Uri address, object userToken)6449         public void DownloadStringAsync(System.Uri address, object userToken) { }
6450         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6451         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringTaskAsync(string address)6452         public System.Threading.Tasks.Task<string> DownloadStringTaskAsync(string address) { throw null; }
6453         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6454         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
DownloadStringTaskAsync(System.Uri address)6455         public System.Threading.Tasks.Task<string> DownloadStringTaskAsync(System.Uri address) { throw null; }
GetWebRequest(System.Uri address)6456         protected virtual System.Net.WebRequest GetWebRequest(System.Uri address) { throw null; }
GetWebResponse(System.Net.WebRequest request)6457         protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request) { throw null; }
GetWebResponse(System.Net.WebRequest request, System.IAsyncResult result)6458         protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request, System.IAsyncResult result) { throw null; }
OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs e)6459         protected virtual void OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs e) { }
OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs e)6460         protected virtual void OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs e)6461         protected virtual void OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs e) { }
OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs e)6462         protected virtual void OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs e) { }
OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs e)6463         protected virtual void OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs e) { }
OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs e)6464         protected virtual void OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs e) { }
OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs e)6465         protected virtual void OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs e) { }
OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs e)6466         protected virtual void OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs e) { }
OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs e)6467         protected virtual void OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs e) { }
OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs e)6468         protected virtual void OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs e) { }
OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs e)6469         protected virtual void OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs e) { }
6470         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6471         [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)6472         protected virtual void OnWriteStreamClosed(System.Net.WriteStreamClosedEventArgs e) { }
OpenRead(string address)6473         public System.IO.Stream OpenRead(string address) { throw null; }
OpenRead(System.Uri address)6474         public System.IO.Stream OpenRead(System.Uri address) { throw null; }
6475         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadAsync(System.Uri address)6476         public void OpenReadAsync(System.Uri address) { }
6477         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadAsync(System.Uri address, object userToken)6478         public void OpenReadAsync(System.Uri address, object userToken) { }
6479         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6480         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadTaskAsync(string address)6481         public System.Threading.Tasks.Task<System.IO.Stream> OpenReadTaskAsync(string address) { throw null; }
6482         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6483         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenReadTaskAsync(System.Uri address)6484         public System.Threading.Tasks.Task<System.IO.Stream> OpenReadTaskAsync(System.Uri address) { throw null; }
OpenWrite(string address)6485         public System.IO.Stream OpenWrite(string address) { throw null; }
OpenWrite(string address, string method)6486         public System.IO.Stream OpenWrite(string address, string method) { throw null; }
OpenWrite(System.Uri address)6487         public System.IO.Stream OpenWrite(System.Uri address) { throw null; }
OpenWrite(System.Uri address, string method)6488         public System.IO.Stream OpenWrite(System.Uri address, string method) { throw null; }
6489         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address)6490         public void OpenWriteAsync(System.Uri address) { }
6491         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address, string method)6492         public void OpenWriteAsync(System.Uri address, string method) { }
6493         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteAsync(System.Uri address, string method, object userToken)6494         public void OpenWriteAsync(System.Uri address, string method, object userToken) { }
6495         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6496         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(string address)6497         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(string address) { throw null; }
6498         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6499         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(string address, string method)6500         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(string address, string method) { throw null; }
6501         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6502         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(System.Uri address)6503         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(System.Uri address) { throw null; }
6504         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6505         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
OpenWriteTaskAsync(System.Uri address, string method)6506         public System.Threading.Tasks.Task<System.IO.Stream> OpenWriteTaskAsync(System.Uri address, string method) { throw null; }
UploadData(string address, byte[] data)6507         public byte[] UploadData(string address, byte[] data) { throw null; }
UploadData(string address, string method, byte[] data)6508         public byte[] UploadData(string address, string method, byte[] data) { throw null; }
UploadData(System.Uri address, byte[] data)6509         public byte[] UploadData(System.Uri address, byte[] data) { throw null; }
UploadData(System.Uri address, string method, byte[] data)6510         public byte[] UploadData(System.Uri address, string method, byte[] data) { throw null; }
6511         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, byte[] data)6512         public void UploadDataAsync(System.Uri address, byte[] data) { }
6513         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, string method, byte[] data)6514         public void UploadDataAsync(System.Uri address, string method, byte[] data) { }
6515         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataAsync(System.Uri address, string method, byte[] data, object userToken)6516         public void UploadDataAsync(System.Uri address, string method, byte[] data, object userToken) { }
6517         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6518         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(string address, byte[] data)6519         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(string address, byte[] data) { throw null; }
6520         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6521         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(string address, string method, byte[] data)6522         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(string address, string method, byte[] data) { throw null; }
6523         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6524         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(System.Uri address, byte[] data)6525         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(System.Uri address, byte[] data) { throw null; }
6526         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6527         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadDataTaskAsync(System.Uri address, string method, byte[] data)6528         public System.Threading.Tasks.Task<byte[]> UploadDataTaskAsync(System.Uri address, string method, byte[] data) { throw null; }
UploadFile(string address, string fileName)6529         public byte[] UploadFile(string address, string fileName) { throw null; }
UploadFile(string address, string method, string fileName)6530         public byte[] UploadFile(string address, string method, string fileName) { throw null; }
UploadFile(System.Uri address, string fileName)6531         public byte[] UploadFile(System.Uri address, string fileName) { throw null; }
UploadFile(System.Uri address, string method, string fileName)6532         public byte[] UploadFile(System.Uri address, string method, string fileName) { throw null; }
6533         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string fileName)6534         public void UploadFileAsync(System.Uri address, string fileName) { }
6535         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string method, string fileName)6536         public void UploadFileAsync(System.Uri address, string method, string fileName) { }
6537         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileAsync(System.Uri address, string method, string fileName, object userToken)6538         public void UploadFileAsync(System.Uri address, string method, string fileName, object userToken) { }
6539         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6540         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(string address, string fileName)6541         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(string address, string fileName) { throw null; }
6542         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6543         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(string address, string method, string fileName)6544         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(string address, string method, string fileName) { throw null; }
6545         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6546         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(System.Uri address, string fileName)6547         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(System.Uri address, string fileName) { throw null; }
6548         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6549         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadFileTaskAsync(System.Uri address, string method, string fileName)6550         public System.Threading.Tasks.Task<byte[]> UploadFileTaskAsync(System.Uri address, string method, string fileName) { throw null; }
UploadString(string address, string data)6551         public string UploadString(string address, string data) { throw null; }
UploadString(string address, string method, string data)6552         public string UploadString(string address, string method, string data) { throw null; }
UploadString(System.Uri address, string data)6553         public string UploadString(System.Uri address, string data) { throw null; }
UploadString(System.Uri address, string method, string data)6554         public string UploadString(System.Uri address, string method, string data) { throw null; }
6555         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string data)6556         public void UploadStringAsync(System.Uri address, string data) { }
6557         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string method, string data)6558         public void UploadStringAsync(System.Uri address, string method, string data) { }
6559         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringAsync(System.Uri address, string method, string data, object userToken)6560         public void UploadStringAsync(System.Uri address, string method, string data, object userToken) { }
6561         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6562         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(string address, string data)6563         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(string address, string data) { throw null; }
6564         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6565         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(string address, string method, string data)6566         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(string address, string method, string data) { throw null; }
6567         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6568         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(System.Uri address, string data)6569         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(System.Uri address, string data) { throw null; }
6570         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6571         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadStringTaskAsync(System.Uri address, string method, string data)6572         public System.Threading.Tasks.Task<string> UploadStringTaskAsync(System.Uri address, string method, string data) { throw null; }
UploadValues(string address, System.Collections.Specialized.NameValueCollection data)6573         public byte[] UploadValues(string address, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(string address, string method, System.Collections.Specialized.NameValueCollection data)6574         public byte[] UploadValues(string address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(System.Uri address, System.Collections.Specialized.NameValueCollection data)6575         public byte[] UploadValues(System.Uri address, System.Collections.Specialized.NameValueCollection data) { throw null; }
UploadValues(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)6576         public byte[] UploadValues(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
6577         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data)6578         public void UploadValuesAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data) { }
6579         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)6580         public void UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { }
6581         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data, object userToken)6582         public void UploadValuesAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data, object userToken) { }
6583         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6584         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(string address, System.Collections.Specialized.NameValueCollection data)6585         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(string address, System.Collections.Specialized.NameValueCollection data) { throw null; }
6586         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6587         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(string address, string method, System.Collections.Specialized.NameValueCollection data)6588         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(string address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
6589         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6590         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data)6591         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(System.Uri address, System.Collections.Specialized.NameValueCollection data) { throw null; }
6592         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
6593         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
UploadValuesTaskAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data)6594         public System.Threading.Tasks.Task<byte[]> UploadValuesTaskAsync(System.Uri address, string method, System.Collections.Specialized.NameValueCollection data) { throw null; }
6595     }
6596     [System.SerializableAttribute]
6597     public partial class WebException : System.InvalidOperationException, System.Runtime.Serialization.ISerializable
6598     {
WebException()6599         public WebException() { }
WebException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6600         protected WebException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
WebException(string message)6601         public WebException(string message) { }
WebException(string message, System.Exception innerException)6602         public WebException(string message, System.Exception innerException) { }
WebException(string message, System.Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response)6603         public WebException(string message, System.Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response) { }
WebException(string message, System.Net.WebExceptionStatus status)6604         public WebException(string message, System.Net.WebExceptionStatus status) { }
6605         public System.Net.WebResponse Response { get { throw null; } }
6606         public System.Net.WebExceptionStatus Status { get { throw null; } }
6607         [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)6608         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6609         [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)6610         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6611     }
6612     public enum WebExceptionStatus
6613     {
6614         CacheEntryNotFound = 18,
6615         ConnectFailure = 2,
6616         ConnectionClosed = 8,
6617         KeepAliveFailure = 12,
6618         MessageLengthLimitExceeded = 17,
6619         NameResolutionFailure = 1,
6620         Pending = 13,
6621         PipelineFailure = 5,
6622         ProtocolError = 7,
6623         ProxyNameResolutionFailure = 15,
6624         ReceiveFailure = 3,
6625         RequestCanceled = 6,
6626         RequestProhibitedByCachePolicy = 19,
6627         RequestProhibitedByProxy = 20,
6628         SecureChannelFailure = 10,
6629         SendFailure = 4,
6630         ServerProtocolViolation = 11,
6631         Success = 0,
6632         Timeout = 14,
6633         TrustFailure = 9,
6634         UnknownError = 16,
6635     }
6636     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
6637     [System.SerializableAttribute]
6638     public partial class WebHeaderCollection : System.Collections.Specialized.NameValueCollection, System.Runtime.Serialization.ISerializable
6639     {
WebHeaderCollection()6640         public WebHeaderCollection() { }
WebHeaderCollection(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6641         protected WebHeaderCollection(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6642         public override string[] AllKeys { get { throw null; } }
6643         public override int Count { get { throw null; } }
6644         public string this[System.Net.HttpRequestHeader header] { get { throw null; } set { } }
6645         public string this[System.Net.HttpResponseHeader header] { get { throw null; } set { } }
6646         public override System.Collections.Specialized.NameObjectCollectionBase.KeysCollection Keys { get { throw null; } }
Add(System.Net.HttpRequestHeader header, string value)6647         public void Add(System.Net.HttpRequestHeader header, string value) { }
Add(System.Net.HttpResponseHeader header, string value)6648         public void Add(System.Net.HttpResponseHeader header, string value) { }
Add(string header)6649         public void Add(string header) { }
Add(string name, string value)6650         public override void Add(string name, string value) { }
AddWithoutValidate(string headerName, string headerValue)6651         protected void AddWithoutValidate(string headerName, string headerValue) { }
Clear()6652         public override void Clear() { }
Get(int index)6653         public override string Get(int index) { throw null; }
Get(string name)6654         public override string Get(string name) { throw null; }
GetEnumerator()6655         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetKey(int index)6656         public override string GetKey(int index) { throw null; }
6657         [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)6658         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetValues(int index)6659         public override string[] GetValues(int index) { throw null; }
GetValues(string header)6660         public override string[] GetValues(string header) { throw null; }
IsRestricted(string headerName)6661         public static bool IsRestricted(string headerName) { throw null; }
IsRestricted(string headerName, bool response)6662         public static bool IsRestricted(string headerName, bool response) { throw null; }
OnDeserialization(object sender)6663         public override void OnDeserialization(object sender) { }
Remove(System.Net.HttpRequestHeader header)6664         public void Remove(System.Net.HttpRequestHeader header) { }
Remove(System.Net.HttpResponseHeader header)6665         public void Remove(System.Net.HttpResponseHeader header) { }
Remove(string name)6666         public override void Remove(string name) { }
Set(System.Net.HttpRequestHeader header, string value)6667         public void Set(System.Net.HttpRequestHeader header, string value) { }
Set(System.Net.HttpResponseHeader header, string value)6668         public void Set(System.Net.HttpResponseHeader header, string value) { }
Set(string name, string value)6669         public override void Set(string name, string value) { }
6670         [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)6671         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
ToByteArray()6672         public byte[] ToByteArray() { throw null; }
ToString()6673         public override string ToString() { throw null; }
6674     }
6675     [System.SerializableAttribute]
6676     public sealed partial class WebPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
6677     {
WebPermission()6678         public WebPermission() { }
WebPermission(System.Net.NetworkAccess access, string uriString)6679         public WebPermission(System.Net.NetworkAccess access, string uriString) { }
WebPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex)6680         public WebPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex) { }
WebPermission(System.Security.Permissions.PermissionState state)6681         public WebPermission(System.Security.Permissions.PermissionState state) { }
6682         public System.Collections.IEnumerator AcceptList { get { throw null; } }
6683         public System.Collections.IEnumerator ConnectList { get { throw null; } }
AddPermission(System.Net.NetworkAccess access, string uriString)6684         public void AddPermission(System.Net.NetworkAccess access, string uriString) { }
AddPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex)6685         public void AddPermission(System.Net.NetworkAccess access, System.Text.RegularExpressions.Regex uriRegex) { }
Copy()6686         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)6687         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)6688         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)6689         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()6690         public bool IsUnrestricted() { throw null; }
ToXml()6691         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)6692         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
6693     }
6694     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
6695     [System.SerializableAttribute]
6696     public sealed partial class WebPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
6697     {
WebPermissionAttribute(System.Security.Permissions.SecurityAction action)6698         public WebPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
6699         public string Accept { get { throw null; } set { } }
6700         public string AcceptPattern { get { throw null; } set { } }
6701         public string Connect { get { throw null; } set { } }
6702         public string ConnectPattern { get { throw null; } set { } }
CreatePermission()6703         public override System.Security.IPermission CreatePermission() { throw null; }
6704     }
6705     [System.SerializableAttribute]
6706     public partial class WebProxy : System.Net.IWebProxy, System.Runtime.Serialization.ISerializable
6707     {
WebProxy()6708         public WebProxy() { }
WebProxy(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6709         protected WebProxy(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
WebProxy(string Address)6710         public WebProxy(string Address) { }
WebProxy(string Address, bool BypassOnLocal)6711         public WebProxy(string Address, bool BypassOnLocal) { }
WebProxy(string Address, bool BypassOnLocal, string[] BypassList)6712         public WebProxy(string Address, bool BypassOnLocal, string[] BypassList) { }
WebProxy(string Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials)6713         public WebProxy(string Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials) { }
WebProxy(string Host, int Port)6714         public WebProxy(string Host, int Port) { }
WebProxy(System.Uri Address)6715         public WebProxy(System.Uri Address) { }
WebProxy(System.Uri Address, bool BypassOnLocal)6716         public WebProxy(System.Uri Address, bool BypassOnLocal) { }
WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList)6717         public WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList) { }
WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials)6718         public WebProxy(System.Uri Address, bool BypassOnLocal, string[] BypassList, System.Net.ICredentials Credentials) { }
6719         public System.Uri Address { get { throw null; } set { } }
6720         public System.Collections.ArrayList BypassArrayList { get { throw null; } }
6721         public string[] BypassList { get { throw null; } set { } }
6722         public bool BypassProxyOnLocal { get { throw null; } set { } }
6723         public System.Net.ICredentials Credentials { get { throw null; } set { } }
6724         public bool UseDefaultCredentials { get { throw null; } set { } }
CreateDefaultProxy()6725         public static System.Net.IWebProxy CreateDefaultProxy() { throw null; }
6726         [System.ObsoleteAttribute("This method has been deprecated. Please use the proxy selected for you by default. http://go.microsoft.com/fwlink/?linkid=14202")]
GetDefaultProxy()6727         public static System.Net.WebProxy GetDefaultProxy() { throw null; }
6728         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6729         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetProxy(System.Uri destination)6730         public System.Uri GetProxy(System.Uri destination) { throw null; }
IsBypassed(System.Uri host)6731         public bool IsBypassed(System.Uri host) { throw null; }
6732         [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)6733         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6734     }
6735     [System.SerializableAttribute]
6736     public abstract partial class WebRequest : System.MarshalByRefObject, System.Runtime.Serialization.ISerializable
6737     {
WebRequest()6738         protected WebRequest() { }
WebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6739         protected WebRequest(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6740         public System.Net.Security.AuthenticationLevel AuthenticationLevel { get { throw null; } set { } }
6741         public virtual System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } }
6742         public virtual string ConnectionGroupName { get { throw null; } set { } }
6743         public virtual long ContentLength { get { throw null; } set { } }
6744         public virtual string ContentType { get { throw null; } set { } }
6745         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6746         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
6747         public virtual System.Net.IWebRequestCreate CreatorInstance { get { throw null; } }
6748         public virtual System.Net.ICredentials Credentials { get { throw null; } set { } }
6749         public static System.Net.Cache.RequestCachePolicy DefaultCachePolicy { get { throw null; } set { } }
6750         public static System.Net.IWebProxy DefaultWebProxy { get { throw null; } set { } }
6751         public virtual System.Net.WebHeaderCollection Headers { get { throw null; } set { } }
6752         public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } set { } }
6753         public virtual string Method { get { throw null; } set { } }
6754         public virtual bool PreAuthenticate { get { throw null; } set { } }
6755         public virtual System.Net.IWebProxy Proxy { get { throw null; } set { } }
6756         public virtual System.Uri RequestUri { get { throw null; } }
6757         public virtual int Timeout { get { throw null; } set { } }
6758         public virtual bool UseDefaultCredentials { get { throw null; } set { } }
Abort()6759         public virtual void Abort() { }
6760         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetRequestStream(System.AsyncCallback callback, object state)6761         public virtual System.IAsyncResult BeginGetRequestStream(System.AsyncCallback callback, object state) { throw null; }
6762         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginGetResponse(System.AsyncCallback callback, object state)6763         public virtual System.IAsyncResult BeginGetResponse(System.AsyncCallback callback, object state) { throw null; }
Create(string requestUriString)6764         public static System.Net.WebRequest Create(string requestUriString) { throw null; }
Create(System.Uri requestUri)6765         public static System.Net.WebRequest Create(System.Uri requestUri) { throw null; }
CreateDefault(System.Uri requestUri)6766         public static System.Net.WebRequest CreateDefault(System.Uri requestUri) { throw null; }
CreateHttp(string requestUriString)6767         public static System.Net.HttpWebRequest CreateHttp(string requestUriString) { throw null; }
CreateHttp(System.Uri requestUri)6768         public static System.Net.HttpWebRequest CreateHttp(System.Uri requestUri) { throw null; }
EndGetRequestStream(System.IAsyncResult asyncResult)6769         public virtual System.IO.Stream EndGetRequestStream(System.IAsyncResult asyncResult) { throw null; }
EndGetResponse(System.IAsyncResult asyncResult)6770         public virtual System.Net.WebResponse EndGetResponse(System.IAsyncResult asyncResult) { throw null; }
6771         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6772         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetRequestStream()6773         public virtual System.IO.Stream GetRequestStream() { throw null; }
6774         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetRequestStreamAsync()6775         public virtual System.Threading.Tasks.Task<System.IO.Stream> GetRequestStreamAsync() { throw null; }
GetResponse()6776         public virtual System.Net.WebResponse GetResponse() { throw null; }
6777         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetResponseAsync()6778         public virtual System.Threading.Tasks.Task<System.Net.WebResponse> GetResponseAsync() { throw null; }
GetSystemWebProxy()6779         public static System.Net.IWebProxy GetSystemWebProxy() { throw null; }
6780         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6781         [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)6782         public static void RegisterPortableWebRequestCreator(System.Net.IWebRequestCreate creator) { }
RegisterPrefix(string prefix, System.Net.IWebRequestCreate creator)6783         public static bool RegisterPrefix(string prefix, System.Net.IWebRequestCreate creator) { throw null; }
6784         [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)6785         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6786     }
6787     public static partial class WebRequestMethods
6788     {
6789         public static partial class File
6790         {
6791             public const string DownloadFile = "GET";
6792             public const string UploadFile = "PUT";
6793         }
6794         public static partial class Ftp
6795         {
6796             public const string AppendFile = "APPE";
6797             public const string DeleteFile = "DELE";
6798             public const string DownloadFile = "RETR";
6799             public const string GetDateTimestamp = "MDTM";
6800             public const string GetFileSize = "SIZE";
6801             public const string ListDirectory = "NLST";
6802             public const string ListDirectoryDetails = "LIST";
6803             public const string MakeDirectory = "MKD";
6804             public const string PrintWorkingDirectory = "PWD";
6805             public const string RemoveDirectory = "RMD";
6806             public const string Rename = "RENAME";
6807             public const string UploadFile = "STOR";
6808             public const string UploadFileWithUniqueName = "STOU";
6809         }
6810         public static partial class Http
6811         {
6812             public const string Connect = "CONNECT";
6813             public const string Get = "GET";
6814             public const string Head = "HEAD";
6815             public const string MkCol = "MKCOL";
6816             public const string Post = "POST";
6817             public const string Put = "PUT";
6818         }
6819     }
6820     [System.SerializableAttribute]
6821     public abstract partial class WebResponse : System.MarshalByRefObject, System.IDisposable, System.Runtime.Serialization.ISerializable
6822     {
WebResponse()6823         protected WebResponse() { }
WebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6824         protected WebResponse(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6825         public virtual long ContentLength { get { throw null; } set { } }
6826         public virtual string ContentType { get { throw null; } set { } }
6827         public virtual System.Net.WebHeaderCollection Headers { get { throw null; } }
6828         public virtual bool IsFromCache { get { throw null; } }
6829         public virtual bool IsMutuallyAuthenticated { get { throw null; } }
6830         public virtual System.Uri ResponseUri { get { throw null; } }
6831         public virtual bool SupportsHeaders { get { throw null; } }
Close()6832         public virtual void Close() { }
Dispose()6833         public void Dispose() { }
Dispose(bool disposing)6834         protected virtual void Dispose(bool disposing) { }
6835         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)6836         protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
GetResponseStream()6837         public virtual System.IO.Stream GetResponseStream() { throw null; }
6838         [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)6839         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
6840     }
6841     public static partial class WebUtility
6842     {
HtmlDecode(string value)6843         public static string HtmlDecode(string value) { throw null; }
HtmlDecode(string value, System.IO.TextWriter output)6844         public static void HtmlDecode(string value, System.IO.TextWriter output) { }
HtmlEncode(string value)6845         public static string HtmlEncode(string value) { throw null; }
HtmlEncode(string value, System.IO.TextWriter output)6846         public static void HtmlEncode(string value, System.IO.TextWriter output) { }
UrlDecode(string encodedValue)6847         public static string UrlDecode(string encodedValue) { throw null; }
UrlDecodeToBytes(byte[] encodedValue, int offset, int count)6848         public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count) { throw null; }
UrlEncode(string value)6849         public static string UrlEncode(string value) { throw null; }
UrlEncodeToBytes(byte[] value, int offset, int count)6850         public static byte[] UrlEncodeToBytes(byte[] value, int offset, int count) { throw null; }
6851     }
6852     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6853     public partial class WriteStreamClosedEventArgs : System.EventArgs
6854     {
6855         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6856         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
WriteStreamClosedEventArgs()6857         public WriteStreamClosedEventArgs() { }
6858         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
6859         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
6860         public System.Exception Error { get { throw null; } }
6861     }
6862     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
WriteStreamClosedEventHandler(object sender, System.Net.WriteStreamClosedEventArgs e)6863     public delegate void WriteStreamClosedEventHandler(object sender, System.Net.WriteStreamClosedEventArgs e);
6864 }
6865 namespace System.Net.Cache
6866 {
6867     public enum HttpCacheAgeControl
6868     {
6869         MaxAge = 2,
6870         MaxAgeAndMaxStale = 6,
6871         MaxAgeAndMinFresh = 3,
6872         MaxStale = 4,
6873         MinFresh = 1,
6874         None = 0,
6875     }
6876     public enum HttpRequestCacheLevel
6877     {
6878         BypassCache = 1,
6879         CacheIfAvailable = 3,
6880         CacheOnly = 2,
6881         CacheOrNextCacheOnly = 7,
6882         Default = 0,
6883         NoCacheNoStore = 6,
6884         Refresh = 8,
6885         Reload = 5,
6886         Revalidate = 4,
6887     }
6888     public partial class HttpRequestCachePolicy : System.Net.Cache.RequestCachePolicy
6889     {
HttpRequestCachePolicy()6890         public HttpRequestCachePolicy() { }
HttpRequestCachePolicy(System.DateTime cacheSyncDate)6891         public HttpRequestCachePolicy(System.DateTime cacheSyncDate) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan ageOrFreshOrStale)6892         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan ageOrFreshOrStale) { }
HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale)6893         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)6894         public HttpRequestCachePolicy(System.Net.Cache.HttpCacheAgeControl cacheAgeControl, System.TimeSpan maxAge, System.TimeSpan freshOrStale, System.DateTime cacheSyncDate) { }
HttpRequestCachePolicy(System.Net.Cache.HttpRequestCacheLevel level)6895         public HttpRequestCachePolicy(System.Net.Cache.HttpRequestCacheLevel level) { }
6896         public System.DateTime CacheSyncDate { get { throw null; } }
6897         public new System.Net.Cache.HttpRequestCacheLevel Level { get { throw null; } }
6898         public System.TimeSpan MaxAge { get { throw null; } }
6899         public System.TimeSpan MaxStale { get { throw null; } }
6900         public System.TimeSpan MinFresh { get { throw null; } }
ToString()6901         public override string ToString() { throw null; }
6902     }
6903     public enum RequestCacheLevel
6904     {
6905         BypassCache = 1,
6906         CacheIfAvailable = 3,
6907         CacheOnly = 2,
6908         Default = 0,
6909         NoCacheNoStore = 6,
6910         Reload = 5,
6911         Revalidate = 4,
6912     }
6913     public partial class RequestCachePolicy
6914     {
RequestCachePolicy()6915         public RequestCachePolicy() { }
RequestCachePolicy(System.Net.Cache.RequestCacheLevel level)6916         public RequestCachePolicy(System.Net.Cache.RequestCacheLevel level) { }
6917         public System.Net.Cache.RequestCacheLevel Level { get { throw null; } }
ToString()6918         public override string ToString() { throw null; }
6919     }
6920 }
6921 namespace System.Net.Mail
6922 {
6923     public partial class AlternateView : System.Net.Mail.AttachmentBase
6924     {
AlternateView(System.IO.Stream contentStream)6925         public AlternateView(System.IO.Stream contentStream) : base (default(System.IO.Stream)) { }
AlternateView(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)6926         public AlternateView(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
AlternateView(System.IO.Stream contentStream, string mediaType)6927         public AlternateView(System.IO.Stream contentStream, string mediaType) : base (default(System.IO.Stream)) { }
AlternateView(string fileName)6928         public AlternateView(string fileName) : base (default(System.IO.Stream)) { }
AlternateView(string fileName, System.Net.Mime.ContentType contentType)6929         public AlternateView(string fileName, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
AlternateView(string fileName, string mediaType)6930         public AlternateView(string fileName, string mediaType) : base (default(System.IO.Stream)) { }
6931         public System.Uri BaseUri { get { throw null; } set { } }
6932         public System.Net.Mail.LinkedResourceCollection LinkedResources { get { throw null; } }
CreateAlternateViewFromString(string content)6933         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content) { throw null; }
CreateAlternateViewFromString(string content, System.Net.Mime.ContentType contentType)6934         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)6935         public static System.Net.Mail.AlternateView CreateAlternateViewFromString(string content, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
Dispose(bool disposing)6936         protected override void Dispose(bool disposing) { }
6937     }
6938     public sealed partial class AlternateViewCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.AlternateView>, System.IDisposable
6939     {
AlternateViewCollection()6940         internal AlternateViewCollection() { }
ClearItems()6941         protected override void ClearItems() { }
Dispose()6942         public void Dispose() { }
InsertItem(int index, System.Net.Mail.AlternateView item)6943         protected override void InsertItem(int index, System.Net.Mail.AlternateView item) { }
RemoveItem(int index)6944         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.AlternateView item)6945         protected override void SetItem(int index, System.Net.Mail.AlternateView item) { }
6946     }
6947     public partial class Attachment : System.Net.Mail.AttachmentBase
6948     {
Attachment(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)6949         public Attachment(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
Attachment(System.IO.Stream contentStream, string name)6950         public Attachment(System.IO.Stream contentStream, string name) : base (default(System.IO.Stream)) { }
Attachment(System.IO.Stream contentStream, string name, string mediaType)6951         public Attachment(System.IO.Stream contentStream, string name, string mediaType) : base (default(System.IO.Stream)) { }
Attachment(string fileName)6952         public Attachment(string fileName) : base (default(System.IO.Stream)) { }
Attachment(string fileName, System.Net.Mime.ContentType contentType)6953         public Attachment(string fileName, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
Attachment(string fileName, string mediaType)6954         public Attachment(string fileName, string mediaType) : base (default(System.IO.Stream)) { }
6955         public System.Net.Mime.ContentDisposition ContentDisposition { get { throw null; } }
6956         public string Name { get { throw null; } set { } }
6957         public System.Text.Encoding NameEncoding { get { throw null; } set { } }
CreateAttachmentFromString(string content, System.Net.Mime.ContentType contentType)6958         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, System.Net.Mime.ContentType contentType) { throw null; }
CreateAttachmentFromString(string content, string name)6959         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, string name) { throw null; }
CreateAttachmentFromString(string content, string name, System.Text.Encoding contentEncoding, string mediaType)6960         public static System.Net.Mail.Attachment CreateAttachmentFromString(string content, string name, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
6961     }
6962     public abstract partial class AttachmentBase : System.IDisposable
6963     {
AttachmentBase(System.IO.Stream contentStream)6964         protected AttachmentBase(System.IO.Stream contentStream) { }
AttachmentBase(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)6965         protected AttachmentBase(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) { }
AttachmentBase(System.IO.Stream contentStream, string mediaType)6966         protected AttachmentBase(System.IO.Stream contentStream, string mediaType) { }
AttachmentBase(string fileName)6967         protected AttachmentBase(string fileName) { }
AttachmentBase(string fileName, System.Net.Mime.ContentType contentType)6968         protected AttachmentBase(string fileName, System.Net.Mime.ContentType contentType) { }
AttachmentBase(string fileName, string mediaType)6969         protected AttachmentBase(string fileName, string mediaType) { }
6970         public string ContentId { get { throw null; } set { } }
6971         public System.IO.Stream ContentStream { get { throw null; } }
6972         public System.Net.Mime.ContentType ContentType { get { throw null; } set { } }
6973         public System.Net.Mime.TransferEncoding TransferEncoding { get { throw null; } set { } }
Dispose()6974         public void Dispose() { }
Dispose(bool disposing)6975         protected virtual void Dispose(bool disposing) { }
6976     }
6977     public sealed partial class AttachmentCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.Attachment>, System.IDisposable
6978     {
AttachmentCollection()6979         internal AttachmentCollection() { }
ClearItems()6980         protected override void ClearItems() { }
Dispose()6981         public void Dispose() { }
InsertItem(int index, System.Net.Mail.Attachment item)6982         protected override void InsertItem(int index, System.Net.Mail.Attachment item) { }
RemoveItem(int index)6983         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.Attachment item)6984         protected override void SetItem(int index, System.Net.Mail.Attachment item) { }
6985     }
6986     [System.FlagsAttribute]
6987     public enum DeliveryNotificationOptions
6988     {
6989         Delay = 4,
6990         Never = 134217728,
6991         None = 0,
6992         OnFailure = 2,
6993         OnSuccess = 1,
6994     }
6995     public partial class LinkedResource : System.Net.Mail.AttachmentBase
6996     {
LinkedResource(System.IO.Stream contentStream)6997         public LinkedResource(System.IO.Stream contentStream) : base (default(System.IO.Stream)) { }
LinkedResource(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType)6998         public LinkedResource(System.IO.Stream contentStream, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
LinkedResource(System.IO.Stream contentStream, string mediaType)6999         public LinkedResource(System.IO.Stream contentStream, string mediaType) : base (default(System.IO.Stream)) { }
LinkedResource(string fileName)7000         public LinkedResource(string fileName) : base (default(System.IO.Stream)) { }
LinkedResource(string fileName, System.Net.Mime.ContentType contentType)7001         public LinkedResource(string fileName, System.Net.Mime.ContentType contentType) : base (default(System.IO.Stream)) { }
LinkedResource(string fileName, string mediaType)7002         public LinkedResource(string fileName, string mediaType) : base (default(System.IO.Stream)) { }
7003         public System.Uri ContentLink { get { throw null; } set { } }
CreateLinkedResourceFromString(string content)7004         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content) { throw null; }
CreateLinkedResourceFromString(string content, System.Net.Mime.ContentType contentType)7005         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)7006         public static System.Net.Mail.LinkedResource CreateLinkedResourceFromString(string content, System.Text.Encoding contentEncoding, string mediaType) { throw null; }
7007     }
7008     public sealed partial class LinkedResourceCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.LinkedResource>, System.IDisposable
7009     {
LinkedResourceCollection()7010         internal LinkedResourceCollection() { }
ClearItems()7011         protected override void ClearItems() { }
Dispose()7012         public void Dispose() { }
InsertItem(int index, System.Net.Mail.LinkedResource item)7013         protected override void InsertItem(int index, System.Net.Mail.LinkedResource item) { }
RemoveItem(int index)7014         protected override void RemoveItem(int index) { }
SetItem(int index, System.Net.Mail.LinkedResource item)7015         protected override void SetItem(int index, System.Net.Mail.LinkedResource item) { }
7016     }
7017     public partial class MailAddress
7018     {
MailAddress(string address)7019         public MailAddress(string address) { }
MailAddress(string address, string displayName)7020         public MailAddress(string address, string displayName) { }
7021         [System.MonoTODOAttribute("We don't do anything with displayNameEncoding")]
MailAddress(string address, string displayName, System.Text.Encoding displayNameEncoding)7022         public MailAddress(string address, string displayName, System.Text.Encoding displayNameEncoding) { }
7023         public string Address { get { throw null; } }
7024         public string DisplayName { get { throw null; } }
7025         public string Host { get { throw null; } }
7026         public string User { get { throw null; } }
Equals(object value)7027         public override bool Equals(object value) { throw null; }
GetHashCode()7028         public override int GetHashCode() { throw null; }
ToString()7029         public override string ToString() { throw null; }
7030     }
7031     public partial class MailAddressCollection : System.Collections.ObjectModel.Collection<System.Net.Mail.MailAddress>
7032     {
MailAddressCollection()7033         public MailAddressCollection() { }
Add(string addresses)7034         public void Add(string addresses) { }
InsertItem(int index, System.Net.Mail.MailAddress item)7035         protected override void InsertItem(int index, System.Net.Mail.MailAddress item) { }
SetItem(int index, System.Net.Mail.MailAddress item)7036         protected override void SetItem(int index, System.Net.Mail.MailAddress item) { }
ToString()7037         public override string ToString() { throw null; }
7038     }
7039     public partial class MailMessage : System.IDisposable
7040     {
MailMessage()7041         public MailMessage() { }
MailMessage(System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to)7042         public MailMessage(System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to) { }
MailMessage(string from, string to)7043         public MailMessage(string from, string to) { }
MailMessage(string from, string to, string subject, string body)7044         public MailMessage(string from, string to, string subject, string body) { }
7045         public System.Net.Mail.AlternateViewCollection AlternateViews { get { throw null; } }
7046         public System.Net.Mail.AttachmentCollection Attachments { get { throw null; } }
7047         public System.Net.Mail.MailAddressCollection Bcc { get { throw null; } }
7048         public string Body { get { throw null; } set { } }
7049         public System.Text.Encoding BodyEncoding { get { throw null; } set { } }
7050         public System.Net.Mime.TransferEncoding BodyTransferEncoding { get { throw null; } set { } }
7051         public System.Net.Mail.MailAddressCollection CC { get { throw null; } }
7052         public System.Net.Mail.DeliveryNotificationOptions DeliveryNotificationOptions { get { throw null; } set { } }
7053         public System.Net.Mail.MailAddress From { get { throw null; } set { } }
7054         public System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
7055         public System.Text.Encoding HeadersEncoding { get { throw null; } set { } }
7056         public bool IsBodyHtml { get { throw null; } set { } }
7057         public System.Net.Mail.MailPriority Priority { get { throw null; } set { } }
7058         [System.ObsoleteAttribute("Use ReplyToList instead")]
7059         public System.Net.Mail.MailAddress ReplyTo { get { throw null; } set { } }
7060         public System.Net.Mail.MailAddressCollection ReplyToList { get { throw null; } }
7061         public System.Net.Mail.MailAddress Sender { get { throw null; } set { } }
7062         public string Subject { get { throw null; } set { } }
7063         public System.Text.Encoding SubjectEncoding { get { throw null; } set { } }
7064         public System.Net.Mail.MailAddressCollection To { get { throw null; } }
Dispose()7065         public void Dispose() { }
Dispose(bool disposing)7066         protected virtual void Dispose(bool disposing) { }
7067     }
7068     public enum MailPriority
7069     {
7070         High = 2,
7071         Low = 1,
7072         Normal = 0,
7073     }
SendCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e)7074     public delegate void SendCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
7075     public enum SmtpAccess
7076     {
7077         Connect = 1,
7078         ConnectToUnrestrictedPort = 2,
7079         None = 0,
7080     }
7081     [System.ObsoleteAttribute("SmtpClient and its network of types are poorly designed, we strongly recommend you use https://github.com/jstedfast/MailKit and https://github.com/jstedfast/MimeKit instead")]
7082     public partial class SmtpClient : System.IDisposable
7083     {
SmtpClient()7084         public SmtpClient() { }
SmtpClient(string host)7085         public SmtpClient(string host) { }
SmtpClient(string host, int port)7086         public SmtpClient(string host, int port) { }
7087         [System.MonoTODOAttribute("Client certificates not used")]
7088         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } }
7089         public System.Net.ICredentialsByHost Credentials { get { throw null; } set { } }
7090         public System.Net.Mail.SmtpDeliveryFormat DeliveryFormat { get { throw null; } set { } }
7091         public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get { throw null; } set { } }
7092         public bool EnableSsl { get { throw null; } set { } }
7093         public string Host { get { throw null; } set { } }
7094         public string PickupDirectoryLocation { get { throw null; } set { } }
7095         public int Port { get { throw null; } set { } }
7096         [System.MonoTODOAttribute]
7097         public System.Net.ServicePoint ServicePoint { get { throw null; } }
7098         public string TargetName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
7099         public int Timeout { get { throw null; } set { } }
7100         public bool UseDefaultCredentials { get { throw null; } [System.MonoNotSupportedAttribute("no DefaultCredential support in Mono")]set { } }
7101         public event System.Net.Mail.SendCompletedEventHandler SendCompleted { add { } remove { } }
Dispose()7102         public void Dispose() { }
7103         [System.MonoTODOAttribute("Does nothing at the moment.")]
Dispose(bool disposing)7104         protected virtual void Dispose(bool disposing) { }
OnSendCompleted(System.ComponentModel.AsyncCompletedEventArgs e)7105         protected void OnSendCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { }
Send(System.Net.Mail.MailMessage message)7106         public void Send(System.Net.Mail.MailMessage message) { }
Send(string from, string recipients, string subject, string body)7107         public void Send(string from, string recipients, string subject, string body) { }
SendAsync(System.Net.Mail.MailMessage message, object userToken)7108         public void SendAsync(System.Net.Mail.MailMessage message, object userToken) { }
SendAsync(string from, string recipients, string subject, string body, object userToken)7109         public void SendAsync(string from, string recipients, string subject, string body, object userToken) { }
SendAsyncCancel()7110         public void SendAsyncCancel() { }
SendMailAsync(System.Net.Mail.MailMessage message)7111         public System.Threading.Tasks.Task SendMailAsync(System.Net.Mail.MailMessage message) { throw null; }
SendMailAsync(string from, string recipients, string subject, string body)7112         public System.Threading.Tasks.Task SendMailAsync(string from, string recipients, string subject, string body) { throw null; }
7113     }
7114     public enum SmtpDeliveryFormat
7115     {
7116         International = 1,
7117         SevenBit = 0,
7118     }
7119     public enum SmtpDeliveryMethod
7120     {
7121         Network = 0,
7122         PickupDirectoryFromIis = 2,
7123         SpecifiedPickupDirectory = 1,
7124     }
7125     [System.SerializableAttribute]
7126     public partial class SmtpException : System.Exception, System.Runtime.Serialization.ISerializable
7127     {
SmtpException()7128         public SmtpException() { }
SmtpException(System.Net.Mail.SmtpStatusCode statusCode)7129         public SmtpException(System.Net.Mail.SmtpStatusCode statusCode) { }
SmtpException(System.Net.Mail.SmtpStatusCode statusCode, string message)7130         public SmtpException(System.Net.Mail.SmtpStatusCode statusCode, string message) { }
SmtpException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7131         protected SmtpException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
SmtpException(string message)7132         public SmtpException(string message) { }
SmtpException(string message, System.Exception innerException)7133         public SmtpException(string message, System.Exception innerException) { }
7134         public System.Net.Mail.SmtpStatusCode StatusCode { get { throw null; } set { } }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7135         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7136         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
7137     }
7138     [System.SerializableAttribute]
7139     public partial class SmtpFailedRecipientException : System.Net.Mail.SmtpException, System.Runtime.Serialization.ISerializable
7140     {
SmtpFailedRecipientException()7141         public SmtpFailedRecipientException() { }
SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient)7142         public SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient) { }
SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient, string serverResponse)7143         public SmtpFailedRecipientException(System.Net.Mail.SmtpStatusCode statusCode, string failedRecipient, string serverResponse) { }
SmtpFailedRecipientException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7144         protected SmtpFailedRecipientException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SmtpFailedRecipientException(string message)7145         public SmtpFailedRecipientException(string message) { }
SmtpFailedRecipientException(string message, System.Exception innerException)7146         public SmtpFailedRecipientException(string message, System.Exception innerException) { }
SmtpFailedRecipientException(string message, string failedRecipient, System.Exception innerException)7147         public SmtpFailedRecipientException(string message, string failedRecipient, System.Exception innerException) { }
7148         public string FailedRecipient { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7149         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7150         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
7151     }
7152     [System.SerializableAttribute]
7153     public partial class SmtpFailedRecipientsException : System.Net.Mail.SmtpFailedRecipientException, System.Runtime.Serialization.ISerializable
7154     {
SmtpFailedRecipientsException()7155         public SmtpFailedRecipientsException() { }
SmtpFailedRecipientsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7156         protected SmtpFailedRecipientsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SmtpFailedRecipientsException(string message)7157         public SmtpFailedRecipientsException(string message) { }
SmtpFailedRecipientsException(string message, System.Exception innerException)7158         public SmtpFailedRecipientsException(string message, System.Exception innerException) { }
SmtpFailedRecipientsException(string message, System.Net.Mail.SmtpFailedRecipientException[] innerExceptions)7159         public SmtpFailedRecipientsException(string message, System.Net.Mail.SmtpFailedRecipientException[] innerExceptions) { }
7160         public System.Net.Mail.SmtpFailedRecipientException[] InnerExceptions { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7161         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)7162         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
7163     }
7164     public enum SmtpStatusCode
7165     {
7166         BadCommandSequence = 503,
7167         CannotVerifyUserWillAttemptDelivery = 252,
7168         ClientNotPermitted = 454,
7169         CommandNotImplemented = 502,
7170         CommandParameterNotImplemented = 504,
7171         CommandUnrecognized = 500,
7172         ExceededStorageAllocation = 552,
7173         GeneralFailure = -1,
7174         HelpMessage = 214,
7175         InsufficientStorage = 452,
7176         LocalErrorInProcessing = 451,
7177         MailboxBusy = 450,
7178         MailboxNameNotAllowed = 553,
7179         MailboxUnavailable = 550,
7180         MustIssueStartTlsFirst = 530,
7181         Ok = 250,
7182         ServiceClosingTransmissionChannel = 221,
7183         ServiceNotAvailable = 421,
7184         ServiceReady = 220,
7185         StartMailInput = 354,
7186         SyntaxError = 501,
7187         SystemStatus = 211,
7188         TransactionFailed = 554,
7189         UserNotLocalTryAlternatePath = 551,
7190         UserNotLocalWillForward = 251,
7191     }
7192 }
7193 namespace System.Net.Mime
7194 {
7195     public partial class ContentDisposition
7196     {
ContentDisposition()7197         public ContentDisposition() { }
ContentDisposition(string disposition)7198         public ContentDisposition(string disposition) { }
7199         public System.DateTime CreationDate { get { throw null; } set { } }
7200         public string DispositionType { get { throw null; } set { } }
7201         public string FileName { get { throw null; } set { } }
7202         public bool Inline { get { throw null; } set { } }
7203         public System.DateTime ModificationDate { get { throw null; } set { } }
7204         public System.Collections.Specialized.StringDictionary Parameters { get { throw null; } }
7205         public System.DateTime ReadDate { get { throw null; } set { } }
7206         public long Size { get { throw null; } set { } }
Equals(object rparam)7207         public override bool Equals(object rparam) { throw null; }
GetHashCode()7208         public override int GetHashCode() { throw null; }
ToString()7209         public override string ToString() { throw null; }
7210     }
7211     public partial class ContentType
7212     {
ContentType()7213         public ContentType() { }
ContentType(string contentType)7214         public ContentType(string contentType) { }
7215         public string Boundary { get { throw null; } set { } }
7216         public string CharSet { get { throw null; } set { } }
7217         public string MediaType { get { throw null; } set { } }
7218         public string Name { get { throw null; } set { } }
7219         public System.Collections.Specialized.StringDictionary Parameters { get { throw null; } }
Equals(object rparam)7220         public override bool Equals(object rparam) { throw null; }
GetHashCode()7221         public override int GetHashCode() { throw null; }
ToString()7222         public override string ToString() { throw null; }
7223     }
7224     public static partial class DispositionTypeNames
7225     {
7226         public const string Attachment = "attachment";
7227         public const string Inline = "inline";
7228     }
7229     public static partial class MediaTypeNames
7230     {
7231         public static partial class Application
7232         {
7233             public const string Octet = "application/octet-stream";
7234             public const string Pdf = "application/pdf";
7235             public const string Rtf = "application/rtf";
7236             public const string Soap = "application/soap+xml";
7237             public const string Zip = "application/zip";
7238         }
7239         public static partial class Image
7240         {
7241             public const string Gif = "image/gif";
7242             public const string Jpeg = "image/jpeg";
7243             public const string Tiff = "image/tiff";
7244         }
7245         public static partial class Text
7246         {
7247             public const string Html = "text/html";
7248             public const string Plain = "text/plain";
7249             public const string RichText = "text/richtext";
7250             public const string Xml = "text/xml";
7251         }
7252     }
7253     public enum TransferEncoding
7254     {
7255         Base64 = 1,
7256         EightBit = 3,
7257         QuotedPrintable = 0,
7258         SevenBit = 2,
7259         Unknown = -1,
7260     }
7261 }
7262 namespace System.Net.NetworkInformation
7263 {
7264     public enum DuplicateAddressDetectionState
7265     {
7266         Deprecated = 3,
7267         Duplicate = 2,
7268         Invalid = 0,
7269         Preferred = 4,
7270         Tentative = 1,
7271     }
7272     public abstract partial class GatewayIPAddressInformation
7273     {
GatewayIPAddressInformation()7274         protected GatewayIPAddressInformation() { }
7275         public abstract System.Net.IPAddress Address { get; }
7276     }
7277     public partial class GatewayIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.GatewayIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.GatewayIPAddressInformation>, System.Collections.IEnumerable
7278     {
GatewayIPAddressInformationCollection()7279         protected internal GatewayIPAddressInformationCollection() { }
7280         public virtual int Count { get { throw null; } }
7281         public virtual bool IsReadOnly { get { throw null; } }
7282         public virtual System.Net.NetworkInformation.GatewayIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.GatewayIPAddressInformation address)7283         public virtual void Add(System.Net.NetworkInformation.GatewayIPAddressInformation address) { }
Clear()7284         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.GatewayIPAddressInformation address)7285         public virtual bool Contains(System.Net.NetworkInformation.GatewayIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.GatewayIPAddressInformation[] array, int offset)7286         public virtual void CopyTo(System.Net.NetworkInformation.GatewayIPAddressInformation[] array, int offset) { }
GetEnumerator()7287         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.GatewayIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.GatewayIPAddressInformation address)7288         public virtual bool Remove(System.Net.NetworkInformation.GatewayIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()7289         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
7290     }
7291     public abstract partial class IcmpV4Statistics
7292     {
IcmpV4Statistics()7293         protected IcmpV4Statistics() { }
7294         public abstract long AddressMaskRepliesReceived { get; }
7295         public abstract long AddressMaskRepliesSent { get; }
7296         public abstract long AddressMaskRequestsReceived { get; }
7297         public abstract long AddressMaskRequestsSent { get; }
7298         public abstract long DestinationUnreachableMessagesReceived { get; }
7299         public abstract long DestinationUnreachableMessagesSent { get; }
7300         public abstract long EchoRepliesReceived { get; }
7301         public abstract long EchoRepliesSent { get; }
7302         public abstract long EchoRequestsReceived { get; }
7303         public abstract long EchoRequestsSent { get; }
7304         public abstract long ErrorsReceived { get; }
7305         public abstract long ErrorsSent { get; }
7306         public abstract long MessagesReceived { get; }
7307         public abstract long MessagesSent { get; }
7308         public abstract long ParameterProblemsReceived { get; }
7309         public abstract long ParameterProblemsSent { get; }
7310         public abstract long RedirectsReceived { get; }
7311         public abstract long RedirectsSent { get; }
7312         public abstract long SourceQuenchesReceived { get; }
7313         public abstract long SourceQuenchesSent { get; }
7314         public abstract long TimeExceededMessagesReceived { get; }
7315         public abstract long TimeExceededMessagesSent { get; }
7316         public abstract long TimestampRepliesReceived { get; }
7317         public abstract long TimestampRepliesSent { get; }
7318         public abstract long TimestampRequestsReceived { get; }
7319         public abstract long TimestampRequestsSent { get; }
7320     }
7321     public abstract partial class IcmpV6Statistics
7322     {
IcmpV6Statistics()7323         protected IcmpV6Statistics() { }
7324         public abstract long DestinationUnreachableMessagesReceived { get; }
7325         public abstract long DestinationUnreachableMessagesSent { get; }
7326         public abstract long EchoRepliesReceived { get; }
7327         public abstract long EchoRepliesSent { get; }
7328         public abstract long EchoRequestsReceived { get; }
7329         public abstract long EchoRequestsSent { get; }
7330         public abstract long ErrorsReceived { get; }
7331         public abstract long ErrorsSent { get; }
7332         public abstract long MembershipQueriesReceived { get; }
7333         public abstract long MembershipQueriesSent { get; }
7334         public abstract long MembershipReductionsReceived { get; }
7335         public abstract long MembershipReductionsSent { get; }
7336         public abstract long MembershipReportsReceived { get; }
7337         public abstract long MembershipReportsSent { get; }
7338         public abstract long MessagesReceived { get; }
7339         public abstract long MessagesSent { get; }
7340         public abstract long NeighborAdvertisementsReceived { get; }
7341         public abstract long NeighborAdvertisementsSent { get; }
7342         public abstract long NeighborSolicitsReceived { get; }
7343         public abstract long NeighborSolicitsSent { get; }
7344         public abstract long PacketTooBigMessagesReceived { get; }
7345         public abstract long PacketTooBigMessagesSent { get; }
7346         public abstract long ParameterProblemsReceived { get; }
7347         public abstract long ParameterProblemsSent { get; }
7348         public abstract long RedirectsReceived { get; }
7349         public abstract long RedirectsSent { get; }
7350         public abstract long RouterAdvertisementsReceived { get; }
7351         public abstract long RouterAdvertisementsSent { get; }
7352         public abstract long RouterSolicitsReceived { get; }
7353         public abstract long RouterSolicitsSent { get; }
7354         public abstract long TimeExceededMessagesReceived { get; }
7355         public abstract long TimeExceededMessagesSent { get; }
7356     }
7357     public partial class IPAddressCollection : System.Collections.Generic.ICollection<System.Net.IPAddress>, System.Collections.Generic.IEnumerable<System.Net.IPAddress>, System.Collections.IEnumerable
7358     {
IPAddressCollection()7359         protected internal IPAddressCollection() { }
7360         public virtual int Count { get { throw null; } }
7361         public virtual bool IsReadOnly { get { throw null; } }
7362         public virtual System.Net.IPAddress this[int index] { get { throw null; } }
Add(System.Net.IPAddress address)7363         public virtual void Add(System.Net.IPAddress address) { }
Clear()7364         public virtual void Clear() { }
Contains(System.Net.IPAddress address)7365         public virtual bool Contains(System.Net.IPAddress address) { throw null; }
CopyTo(System.Net.IPAddress[] array, int offset)7366         public virtual void CopyTo(System.Net.IPAddress[] array, int offset) { }
GetEnumerator()7367         public virtual System.Collections.Generic.IEnumerator<System.Net.IPAddress> GetEnumerator() { throw null; }
Remove(System.Net.IPAddress address)7368         public virtual bool Remove(System.Net.IPAddress address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()7369         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
7370     }
7371     public abstract partial class IPAddressInformation
7372     {
IPAddressInformation()7373         protected IPAddressInformation() { }
7374         public abstract System.Net.IPAddress Address { get; }
7375         public abstract bool IsDnsEligible { get; }
7376         public abstract bool IsTransient { get; }
7377     }
7378     public partial class IPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.IPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.IPAddressInformation>, System.Collections.IEnumerable
7379     {
IPAddressInformationCollection()7380         internal IPAddressInformationCollection() { }
7381         public virtual int Count { get { throw null; } }
7382         public virtual bool IsReadOnly { get { throw null; } }
7383         public virtual System.Net.NetworkInformation.IPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.IPAddressInformation address)7384         public virtual void Add(System.Net.NetworkInformation.IPAddressInformation address) { }
Clear()7385         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.IPAddressInformation address)7386         public virtual bool Contains(System.Net.NetworkInformation.IPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.IPAddressInformation[] array, int offset)7387         public virtual void CopyTo(System.Net.NetworkInformation.IPAddressInformation[] array, int offset) { }
GetEnumerator()7388         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.IPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.IPAddressInformation address)7389         public virtual bool Remove(System.Net.NetworkInformation.IPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()7390         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
7391     }
7392     public abstract partial class IPGlobalProperties
7393     {
IPGlobalProperties()7394         protected IPGlobalProperties() { }
7395         public abstract string DhcpScopeName { get; }
7396         public abstract string DomainName { get; }
7397         public abstract string HostName { get; }
7398         public abstract bool IsWinsProxy { get; }
7399         public abstract System.Net.NetworkInformation.NetBiosNodeType NodeType { get; }
BeginGetUnicastAddresses(System.AsyncCallback callback, object state)7400         public virtual System.IAsyncResult BeginGetUnicastAddresses(System.AsyncCallback callback, object state) { throw null; }
EndGetUnicastAddresses(System.IAsyncResult asyncResult)7401         public virtual System.Net.NetworkInformation.UnicastIPAddressInformationCollection EndGetUnicastAddresses(System.IAsyncResult asyncResult) { throw null; }
GetActiveTcpConnections()7402         public abstract System.Net.NetworkInformation.TcpConnectionInformation[] GetActiveTcpConnections();
GetActiveTcpListeners()7403         public abstract System.Net.IPEndPoint[] GetActiveTcpListeners();
GetActiveUdpListeners()7404         public abstract System.Net.IPEndPoint[] GetActiveUdpListeners();
GetIcmpV4Statistics()7405         public abstract System.Net.NetworkInformation.IcmpV4Statistics GetIcmpV4Statistics();
GetIcmpV6Statistics()7406         public abstract System.Net.NetworkInformation.IcmpV6Statistics GetIcmpV6Statistics();
GetIPGlobalProperties()7407         public static System.Net.NetworkInformation.IPGlobalProperties GetIPGlobalProperties() { throw null; }
GetIPv4GlobalStatistics()7408         public abstract System.Net.NetworkInformation.IPGlobalStatistics GetIPv4GlobalStatistics();
GetIPv6GlobalStatistics()7409         public abstract System.Net.NetworkInformation.IPGlobalStatistics GetIPv6GlobalStatistics();
GetTcpIPv4Statistics()7410         public abstract System.Net.NetworkInformation.TcpStatistics GetTcpIPv4Statistics();
GetTcpIPv6Statistics()7411         public abstract System.Net.NetworkInformation.TcpStatistics GetTcpIPv6Statistics();
GetUdpIPv4Statistics()7412         public abstract System.Net.NetworkInformation.UdpStatistics GetUdpIPv4Statistics();
GetUdpIPv6Statistics()7413         public abstract System.Net.NetworkInformation.UdpStatistics GetUdpIPv6Statistics();
GetUnicastAddresses()7414         public virtual System.Net.NetworkInformation.UnicastIPAddressInformationCollection GetUnicastAddresses() { throw null; }
7415         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
GetUnicastAddressesAsync()7416         public virtual System.Threading.Tasks.Task<System.Net.NetworkInformation.UnicastIPAddressInformationCollection> GetUnicastAddressesAsync() { throw null; }
7417     }
7418     public abstract partial class IPGlobalStatistics
7419     {
IPGlobalStatistics()7420         protected IPGlobalStatistics() { }
7421         public abstract int DefaultTtl { get; }
7422         public abstract bool ForwardingEnabled { get; }
7423         public abstract int NumberOfInterfaces { get; }
7424         public abstract int NumberOfIPAddresses { get; }
7425         public abstract int NumberOfRoutes { get; }
7426         public abstract long OutputPacketRequests { get; }
7427         public abstract long OutputPacketRoutingDiscards { get; }
7428         public abstract long OutputPacketsDiscarded { get; }
7429         public abstract long OutputPacketsWithNoRoute { get; }
7430         public abstract long PacketFragmentFailures { get; }
7431         public abstract long PacketReassembliesRequired { get; }
7432         public abstract long PacketReassemblyFailures { get; }
7433         public abstract long PacketReassemblyTimeout { get; }
7434         public abstract long PacketsFragmented { get; }
7435         public abstract long PacketsReassembled { get; }
7436         public abstract long ReceivedPackets { get; }
7437         public abstract long ReceivedPacketsDelivered { get; }
7438         public abstract long ReceivedPacketsDiscarded { get; }
7439         public abstract long ReceivedPacketsForwarded { get; }
7440         public abstract long ReceivedPacketsWithAddressErrors { get; }
7441         public abstract long ReceivedPacketsWithHeadersErrors { get; }
7442         public abstract long ReceivedPacketsWithUnknownProtocol { get; }
7443     }
7444     public abstract partial class IPInterfaceProperties
7445     {
IPInterfaceProperties()7446         protected IPInterfaceProperties() { }
7447         public abstract System.Net.NetworkInformation.IPAddressInformationCollection AnycastAddresses { get; }
7448         public abstract System.Net.NetworkInformation.IPAddressCollection DhcpServerAddresses { get; }
7449         public abstract System.Net.NetworkInformation.IPAddressCollection DnsAddresses { get; }
7450         public abstract string DnsSuffix { get; }
7451         public abstract System.Net.NetworkInformation.GatewayIPAddressInformationCollection GatewayAddresses { get; }
7452         public abstract bool IsDnsEnabled { get; }
7453         public abstract bool IsDynamicDnsEnabled { get; }
7454         public abstract System.Net.NetworkInformation.MulticastIPAddressInformationCollection MulticastAddresses { get; }
7455         public abstract System.Net.NetworkInformation.UnicastIPAddressInformationCollection UnicastAddresses { get; }
7456         public abstract System.Net.NetworkInformation.IPAddressCollection WinsServersAddresses { get; }
GetIPv4Properties()7457         public abstract System.Net.NetworkInformation.IPv4InterfaceProperties GetIPv4Properties();
GetIPv6Properties()7458         public abstract System.Net.NetworkInformation.IPv6InterfaceProperties GetIPv6Properties();
7459     }
7460     public abstract partial class IPInterfaceStatistics
7461     {
IPInterfaceStatistics()7462         protected IPInterfaceStatistics() { }
7463         public abstract long BytesReceived { get; }
7464         public abstract long BytesSent { get; }
7465         public abstract long IncomingPacketsDiscarded { get; }
7466         public abstract long IncomingPacketsWithErrors { get; }
7467         public abstract long IncomingUnknownProtocolPackets { get; }
7468         public abstract long NonUnicastPacketsReceived { get; }
7469         public abstract long NonUnicastPacketsSent { get; }
7470         public abstract long OutgoingPacketsDiscarded { get; }
7471         public abstract long OutgoingPacketsWithErrors { get; }
7472         public abstract long OutputQueueLength { get; }
7473         public abstract long UnicastPacketsReceived { get; }
7474         public abstract long UnicastPacketsSent { get; }
7475     }
7476     public enum IPStatus
7477     {
7478         BadDestination = 11018,
7479         BadHeader = 11042,
7480         BadOption = 11007,
7481         BadRoute = 11012,
7482         DestinationHostUnreachable = 11003,
7483         DestinationNetworkUnreachable = 11002,
7484         DestinationPortUnreachable = 11005,
7485         DestinationProhibited = 11004,
7486         DestinationProtocolUnreachable = 11004,
7487         DestinationScopeMismatch = 11045,
7488         DestinationUnreachable = 11040,
7489         HardwareError = 11008,
7490         IcmpError = 11044,
7491         NoResources = 11006,
7492         PacketTooBig = 11009,
7493         ParameterProblem = 11015,
7494         SourceQuench = 11016,
7495         Success = 0,
7496         TimedOut = 11010,
7497         TimeExceeded = 11041,
7498         TtlExpired = 11013,
7499         TtlReassemblyTimeExceeded = 11014,
7500         Unknown = -1,
7501         UnrecognizedNextHeader = 11043,
7502     }
7503     public abstract partial class IPv4InterfaceProperties
7504     {
IPv4InterfaceProperties()7505         protected IPv4InterfaceProperties() { }
7506         public abstract int Index { get; }
7507         public abstract bool IsAutomaticPrivateAddressingActive { get; }
7508         public abstract bool IsAutomaticPrivateAddressingEnabled { get; }
7509         public abstract bool IsDhcpEnabled { get; }
7510         public abstract bool IsForwardingEnabled { get; }
7511         public abstract int Mtu { get; }
7512         public abstract bool UsesWins { get; }
7513     }
7514     public abstract partial class IPv4InterfaceStatistics
7515     {
IPv4InterfaceStatistics()7516         protected IPv4InterfaceStatistics() { }
7517         public abstract long BytesReceived { get; }
7518         public abstract long BytesSent { get; }
7519         public abstract long IncomingPacketsDiscarded { get; }
7520         public abstract long IncomingPacketsWithErrors { get; }
7521         public abstract long IncomingUnknownProtocolPackets { get; }
7522         public abstract long NonUnicastPacketsReceived { get; }
7523         public abstract long NonUnicastPacketsSent { get; }
7524         public abstract long OutgoingPacketsDiscarded { get; }
7525         public abstract long OutgoingPacketsWithErrors { get; }
7526         public abstract long OutputQueueLength { get; }
7527         public abstract long UnicastPacketsReceived { get; }
7528         public abstract long UnicastPacketsSent { get; }
7529     }
7530     public abstract partial class IPv6InterfaceProperties
7531     {
IPv6InterfaceProperties()7532         protected IPv6InterfaceProperties() { }
7533         public abstract int Index { get; }
7534         public abstract int Mtu { get; }
GetScopeId(System.Net.NetworkInformation.ScopeLevel scopeLevel)7535         public virtual long GetScopeId(System.Net.NetworkInformation.ScopeLevel scopeLevel) { throw null; }
7536     }
7537     public abstract partial class MulticastIPAddressInformation : System.Net.NetworkInformation.IPAddressInformation
7538     {
MulticastIPAddressInformation()7539         protected MulticastIPAddressInformation() { }
7540         public abstract long AddressPreferredLifetime { get; }
7541         public abstract long AddressValidLifetime { get; }
7542         public abstract long DhcpLeaseLifetime { get; }
7543         public abstract System.Net.NetworkInformation.DuplicateAddressDetectionState DuplicateAddressDetectionState { get; }
7544         public abstract System.Net.NetworkInformation.PrefixOrigin PrefixOrigin { get; }
7545         public abstract System.Net.NetworkInformation.SuffixOrigin SuffixOrigin { get; }
7546     }
7547     public partial class MulticastIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.MulticastIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.MulticastIPAddressInformation>, System.Collections.IEnumerable
7548     {
MulticastIPAddressInformationCollection()7549         protected internal MulticastIPAddressInformationCollection() { }
7550         public virtual int Count { get { throw null; } }
7551         public virtual bool IsReadOnly { get { throw null; } }
7552         public virtual System.Net.NetworkInformation.MulticastIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.MulticastIPAddressInformation address)7553         public virtual void Add(System.Net.NetworkInformation.MulticastIPAddressInformation address) { }
Clear()7554         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.MulticastIPAddressInformation address)7555         public virtual bool Contains(System.Net.NetworkInformation.MulticastIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.MulticastIPAddressInformation[] array, int offset)7556         public virtual void CopyTo(System.Net.NetworkInformation.MulticastIPAddressInformation[] array, int offset) { }
GetEnumerator()7557         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.MulticastIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.MulticastIPAddressInformation address)7558         public virtual bool Remove(System.Net.NetworkInformation.MulticastIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()7559         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
7560     }
7561     public enum NetBiosNodeType
7562     {
7563         Broadcast = 1,
7564         Hybrid = 8,
7565         Mixed = 4,
7566         Peer2Peer = 2,
7567         Unknown = 0,
7568     }
NetworkAddressChangedEventHandler(object sender, System.EventArgs e)7569     public delegate void NetworkAddressChangedEventHandler(object sender, System.EventArgs e);
NetworkAvailabilityChangedEventHandler(object sender, System.Net.NetworkInformation.NetworkAvailabilityEventArgs e)7570     public delegate void NetworkAvailabilityChangedEventHandler(object sender, System.Net.NetworkInformation.NetworkAvailabilityEventArgs e);
7571     public partial class NetworkAvailabilityEventArgs : System.EventArgs
7572     {
NetworkAvailabilityEventArgs()7573         internal NetworkAvailabilityEventArgs() { }
7574         public bool IsAvailable { get { throw null; } }
7575     }
7576     public sealed partial class NetworkChange
7577     {
NetworkChange()7578         public NetworkChange() { }
7579         public static event System.Net.NetworkInformation.NetworkAddressChangedEventHandler NetworkAddressChanged { add { } remove { } }
7580         public static event System.Net.NetworkInformation.NetworkAvailabilityChangedEventHandler NetworkAvailabilityChanged { add { } remove { } }
7581     }
7582     [System.FlagsAttribute]
7583     public enum NetworkInformationAccess
7584     {
7585         None = 0,
7586         Ping = 4,
7587         Read = 1,
7588     }
7589     [System.SerializableAttribute]
7590     public partial class NetworkInformationException : System.ComponentModel.Win32Exception
7591     {
NetworkInformationException()7592         public NetworkInformationException() { }
NetworkInformationException(int errorCode)7593         public NetworkInformationException(int errorCode) { }
NetworkInformationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7594         protected NetworkInformationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
7595         public override int ErrorCode { get { throw null; } }
7596     }
7597     [System.SerializableAttribute]
7598     public sealed partial class NetworkInformationPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
7599     {
NetworkInformationPermission(System.Net.NetworkInformation.NetworkInformationAccess access)7600         public NetworkInformationPermission(System.Net.NetworkInformation.NetworkInformationAccess access) { }
NetworkInformationPermission(System.Security.Permissions.PermissionState state)7601         public NetworkInformationPermission(System.Security.Permissions.PermissionState state) { }
7602         public System.Net.NetworkInformation.NetworkInformationAccess Access { get { throw null; } }
AddPermission(System.Net.NetworkInformation.NetworkInformationAccess access)7603         public void AddPermission(System.Net.NetworkInformation.NetworkInformationAccess access) { }
Copy()7604         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)7605         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)7606         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)7607         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()7608         public bool IsUnrestricted() { throw null; }
ToXml()7609         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)7610         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
7611     }
7612     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
7613     [System.SerializableAttribute]
7614     public sealed partial class NetworkInformationPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
7615     {
NetworkInformationPermissionAttribute(System.Security.Permissions.SecurityAction action)7616         public NetworkInformationPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
7617         public string Access { get { throw null; } set { } }
CreatePermission()7618         public override System.Security.IPermission CreatePermission() { throw null; }
7619     }
7620     public abstract partial class NetworkInterface
7621     {
NetworkInterface()7622         protected NetworkInterface() { }
7623         public virtual string Description { get { throw null; } }
7624         public virtual string Id { get { throw null; } }
7625         public static int IPv6LoopbackInterfaceIndex { get { throw null; } }
7626         public virtual bool IsReceiveOnly { get { throw null; } }
7627         public static int LoopbackInterfaceIndex { get { throw null; } }
7628         public virtual string Name { get { throw null; } }
7629         public virtual System.Net.NetworkInformation.NetworkInterfaceType NetworkInterfaceType { get { throw null; } }
7630         public virtual System.Net.NetworkInformation.OperationalStatus OperationalStatus { get { throw null; } }
7631         public virtual long Speed { get { throw null; } }
7632         public virtual bool SupportsMulticast { get { throw null; } }
GetAllNetworkInterfaces()7633         public static System.Net.NetworkInformation.NetworkInterface[] GetAllNetworkInterfaces() { throw null; }
GetIPProperties()7634         public virtual System.Net.NetworkInformation.IPInterfaceProperties GetIPProperties() { throw null; }
GetIPStatistics()7635         public virtual System.Net.NetworkInformation.IPInterfaceStatistics GetIPStatistics() { throw null; }
GetIPv4Statistics()7636         public virtual System.Net.NetworkInformation.IPv4InterfaceStatistics GetIPv4Statistics() { throw null; }
GetIsNetworkAvailable()7637         public static bool GetIsNetworkAvailable() { throw null; }
GetPhysicalAddress()7638         public virtual System.Net.NetworkInformation.PhysicalAddress GetPhysicalAddress() { throw null; }
Supports(System.Net.NetworkInformation.NetworkInterfaceComponent networkInterfaceComponent)7639         public virtual bool Supports(System.Net.NetworkInformation.NetworkInterfaceComponent networkInterfaceComponent) { throw null; }
7640     }
7641     public enum NetworkInterfaceComponent
7642     {
7643         IPv4 = 0,
7644         IPv6 = 1,
7645     }
7646     public enum NetworkInterfaceType
7647     {
7648         AsymmetricDsl = 94,
7649         Atm = 37,
7650         BasicIsdn = 20,
7651         Ethernet = 6,
7652         Ethernet3Megabit = 26,
7653         FastEthernetFx = 69,
7654         FastEthernetT = 62,
7655         Fddi = 15,
7656         GenericModem = 48,
7657         GigabitEthernet = 117,
7658         HighPerformanceSerialBus = 144,
7659         IPOverAtm = 114,
7660         Isdn = 63,
7661         Loopback = 24,
7662         MultiRateSymmetricDsl = 143,
7663         Ppp = 23,
7664         PrimaryIsdn = 21,
7665         RateAdaptDsl = 95,
7666         Slip = 28,
7667         SymmetricDsl = 96,
7668         TokenRing = 9,
7669         Tunnel = 131,
7670         Unknown = 1,
7671         VeryHighSpeedDsl = 97,
7672         Wireless80211 = 71,
7673         Wman = 237,
7674         Wwanpp = 243,
7675         Wwanpp2 = 244,
7676     }
7677     public enum OperationalStatus
7678     {
7679         Dormant = 5,
7680         Down = 2,
7681         LowerLayerDown = 7,
7682         NotPresent = 6,
7683         Testing = 3,
7684         Unknown = 4,
7685         Up = 1,
7686     }
7687     public partial class PhysicalAddress
7688     {
7689         public static readonly System.Net.NetworkInformation.PhysicalAddress None;
PhysicalAddress(byte[] address)7690         public PhysicalAddress(byte[] address) { }
Equals(object comparand)7691         public override bool Equals(object comparand) { throw null; }
GetAddressBytes()7692         public byte[] GetAddressBytes() { throw null; }
GetHashCode()7693         public override int GetHashCode() { throw null; }
Parse(string address)7694         public static System.Net.NetworkInformation.PhysicalAddress Parse(string address) { throw null; }
ToString()7695         public override string ToString() { throw null; }
7696     }
7697     [System.MonoTODOAttribute("IPv6 support is missing")]
7698     public partial class Ping : System.ComponentModel.Component, System.IDisposable
7699     {
Ping()7700         public Ping() { }
7701         public event System.Net.NetworkInformation.PingCompletedEventHandler PingCompleted { add { } remove { } }
OnPingCompleted(System.Net.NetworkInformation.PingCompletedEventArgs e)7702         protected void OnPingCompleted(System.Net.NetworkInformation.PingCompletedEventArgs e) { }
Send(System.Net.IPAddress address)7703         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address) { throw null; }
Send(System.Net.IPAddress address, int timeout)7704         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout) { throw null; }
Send(System.Net.IPAddress address, int timeout, byte[] buffer)7705         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)7706         public System.Net.NetworkInformation.PingReply Send(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
Send(string hostNameOrAddress)7707         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; }
Send(string hostNameOrAddress, int timeout)7708         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw null; }
Send(string hostNameOrAddress, int timeout, byte[] buffer)7709         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)7710         public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken)7711         public void SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken) { }
SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, object userToken)7712         public void SendAsync(System.Net.IPAddress address, int timeout, byte[] buffer, object userToken) { }
SendAsync(System.Net.IPAddress address, int timeout, object userToken)7713         public void SendAsync(System.Net.IPAddress address, int timeout, object userToken) { }
SendAsync(System.Net.IPAddress address, object userToken)7714         public void SendAsync(System.Net.IPAddress address, object userToken) { }
SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken)7715         public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options, object userToken) { }
SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken)7716         public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { }
SendAsync(string hostNameOrAddress, int timeout, object userToken)7717         public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { }
SendAsync(string hostNameOrAddress, object userToken)7718         public void SendAsync(string hostNameOrAddress, object userToken) { }
SendAsyncCancel()7719         public void SendAsyncCancel() { }
SendPingAsync(System.Net.IPAddress address)7720         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address) { throw null; }
SendPingAsync(System.Net.IPAddress address, int timeout)7721         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout) { throw null; }
SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer)7722         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer) { throw null; }
SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)7723         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(System.Net.IPAddress address, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
SendPingAsync(string hostNameOrAddress)7724         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress) { throw null; }
SendPingAsync(string hostNameOrAddress, int timeout)7725         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout) { throw null; }
SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer)7726         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer) { throw null; }
SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options)7727         public System.Threading.Tasks.Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInformation.PingOptions options) { throw null; }
System.IDisposable.Dispose()7728         void System.IDisposable.Dispose() { }
7729     }
7730     public partial class PingCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
7731     {
PingCompletedEventArgs()7732         internal PingCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { }
7733         public System.Net.NetworkInformation.PingReply Reply { get { throw null; } }
7734     }
PingCompletedEventHandler(object sender, System.Net.NetworkInformation.PingCompletedEventArgs e)7735     public delegate void PingCompletedEventHandler(object sender, System.Net.NetworkInformation.PingCompletedEventArgs e);
7736     [System.SerializableAttribute]
7737     public partial class PingException : System.InvalidOperationException
7738     {
PingException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)7739         protected PingException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
PingException(string message)7740         public PingException(string message) { }
PingException(string message, System.Exception innerException)7741         public PingException(string message, System.Exception innerException) { }
7742     }
7743     public partial class PingOptions
7744     {
PingOptions()7745         public PingOptions() { }
PingOptions(int ttl, bool dontFragment)7746         public PingOptions(int ttl, bool dontFragment) { }
7747         public bool DontFragment { get { throw null; } set { } }
7748         public int Ttl { get { throw null; } set { } }
7749     }
7750     public partial class PingReply
7751     {
PingReply()7752         internal PingReply() { }
7753         public System.Net.IPAddress Address { get { throw null; } }
7754         public byte[] Buffer { get { throw null; } }
7755         public System.Net.NetworkInformation.PingOptions Options { get { throw null; } }
7756         public long RoundtripTime { get { throw null; } }
7757         public System.Net.NetworkInformation.IPStatus Status { get { throw null; } }
7758     }
7759     public enum PrefixOrigin
7760     {
7761         Dhcp = 3,
7762         Manual = 1,
7763         Other = 0,
7764         RouterAdvertisement = 4,
7765         WellKnown = 2,
7766     }
7767     public enum ScopeLevel
7768     {
7769         Admin = 4,
7770         Global = 14,
7771         Interface = 1,
7772         Link = 2,
7773         None = 0,
7774         Organization = 8,
7775         Site = 5,
7776         Subnet = 3,
7777     }
7778     public enum SuffixOrigin
7779     {
7780         LinkLayerAddress = 4,
7781         Manual = 1,
7782         OriginDhcp = 3,
7783         Other = 0,
7784         Random = 5,
7785         WellKnown = 2,
7786     }
7787     public abstract partial class TcpConnectionInformation
7788     {
TcpConnectionInformation()7789         protected TcpConnectionInformation() { }
7790         public abstract System.Net.IPEndPoint LocalEndPoint { get; }
7791         public abstract System.Net.IPEndPoint RemoteEndPoint { get; }
7792         public abstract System.Net.NetworkInformation.TcpState State { get; }
7793     }
7794     public enum TcpState
7795     {
7796         Closed = 1,
7797         CloseWait = 8,
7798         Closing = 9,
7799         DeleteTcb = 12,
7800         Established = 5,
7801         FinWait1 = 6,
7802         FinWait2 = 7,
7803         LastAck = 10,
7804         Listen = 2,
7805         SynReceived = 4,
7806         SynSent = 3,
7807         TimeWait = 11,
7808         Unknown = 0,
7809     }
7810     public abstract partial class TcpStatistics
7811     {
TcpStatistics()7812         protected TcpStatistics() { }
7813         public abstract long ConnectionsAccepted { get; }
7814         public abstract long ConnectionsInitiated { get; }
7815         public abstract long CumulativeConnections { get; }
7816         public abstract long CurrentConnections { get; }
7817         public abstract long ErrorsReceived { get; }
7818         public abstract long FailedConnectionAttempts { get; }
7819         public abstract long MaximumConnections { get; }
7820         public abstract long MaximumTransmissionTimeout { get; }
7821         public abstract long MinimumTransmissionTimeout { get; }
7822         public abstract long ResetConnections { get; }
7823         public abstract long ResetsSent { get; }
7824         public abstract long SegmentsReceived { get; }
7825         public abstract long SegmentsResent { get; }
7826         public abstract long SegmentsSent { get; }
7827     }
7828     public abstract partial class UdpStatistics
7829     {
UdpStatistics()7830         protected UdpStatistics() { }
7831         public abstract long DatagramsReceived { get; }
7832         public abstract long DatagramsSent { get; }
7833         public abstract long IncomingDatagramsDiscarded { get; }
7834         public abstract long IncomingDatagramsWithErrors { get; }
7835         public abstract int UdpListeners { get; }
7836     }
7837     public abstract partial class UnicastIPAddressInformation : System.Net.NetworkInformation.IPAddressInformation
7838     {
UnicastIPAddressInformation()7839         protected UnicastIPAddressInformation() { }
7840         public abstract long AddressPreferredLifetime { get; }
7841         public abstract long AddressValidLifetime { get; }
7842         public abstract long DhcpLeaseLifetime { get; }
7843         public abstract System.Net.NetworkInformation.DuplicateAddressDetectionState DuplicateAddressDetectionState { get; }
7844         public abstract System.Net.IPAddress IPv4Mask { get; }
7845         public virtual int PrefixLength { get { throw null; } }
7846         public abstract System.Net.NetworkInformation.PrefixOrigin PrefixOrigin { get; }
7847         public abstract System.Net.NetworkInformation.SuffixOrigin SuffixOrigin { get; }
7848     }
7849     public partial class UnicastIPAddressInformationCollection : System.Collections.Generic.ICollection<System.Net.NetworkInformation.UnicastIPAddressInformation>, System.Collections.Generic.IEnumerable<System.Net.NetworkInformation.UnicastIPAddressInformation>, System.Collections.IEnumerable
7850     {
UnicastIPAddressInformationCollection()7851         protected internal UnicastIPAddressInformationCollection() { }
7852         public virtual int Count { get { throw null; } }
7853         public virtual bool IsReadOnly { get { throw null; } }
7854         public virtual System.Net.NetworkInformation.UnicastIPAddressInformation this[int index] { get { throw null; } }
Add(System.Net.NetworkInformation.UnicastIPAddressInformation address)7855         public virtual void Add(System.Net.NetworkInformation.UnicastIPAddressInformation address) { }
Clear()7856         public virtual void Clear() { }
Contains(System.Net.NetworkInformation.UnicastIPAddressInformation address)7857         public virtual bool Contains(System.Net.NetworkInformation.UnicastIPAddressInformation address) { throw null; }
CopyTo(System.Net.NetworkInformation.UnicastIPAddressInformation[] array, int offset)7858         public virtual void CopyTo(System.Net.NetworkInformation.UnicastIPAddressInformation[] array, int offset) { }
GetEnumerator()7859         public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.UnicastIPAddressInformation> GetEnumerator() { throw null; }
Remove(System.Net.NetworkInformation.UnicastIPAddressInformation address)7860         public virtual bool Remove(System.Net.NetworkInformation.UnicastIPAddressInformation address) { throw null; }
System.Collections.IEnumerable.GetEnumerator()7861         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
7862     }
7863 }
7864 namespace System.Net.Security
7865 {
7866     public abstract partial class AuthenticatedStream : System.IO.Stream
7867     {
AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)7868         protected AuthenticatedStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) { }
7869         protected System.IO.Stream InnerStream { get { throw null; } }
7870         public abstract bool IsAuthenticated { get; }
7871         public abstract bool IsEncrypted { get; }
7872         public abstract bool IsMutuallyAuthenticated { get; }
7873         public abstract bool IsServer { get; }
7874         public abstract bool IsSigned { get; }
7875         public bool LeaveInnerStreamOpen { get { throw null; } }
Dispose(bool disposing)7876         protected override void Dispose(bool disposing) { }
7877     }
7878     public enum AuthenticationLevel
7879     {
7880         MutualAuthRequested = 1,
7881         MutualAuthRequired = 2,
7882         None = 0,
7883     }
7884     public enum EncryptionPolicy
7885     {
7886         AllowNoEncryption = 1,
7887         NoEncryption = 2,
7888         RequireEncryption = 0,
7889     }
LocalCertificateSelectionCallback(object sender, string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection localCertificates, System.Security.Cryptography.X509Certificates.X509Certificate remoteCertificate, string[] acceptableIssuers)7890     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);
7891     public partial class NegotiateStream : System.Net.Security.AuthenticatedStream
7892     {
7893         [System.MonoTODOAttribute]
NegotiateStream(System.IO.Stream innerStream)7894         public NegotiateStream(System.IO.Stream innerStream) : base (default(System.IO.Stream), default(bool)) { }
7895         [System.MonoTODOAttribute]
NegotiateStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)7896         public NegotiateStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen) : base (default(System.IO.Stream), default(bool)) { }
7897         public override bool CanRead { get { throw null; } }
7898         public override bool CanSeek { get { throw null; } }
7899         [System.MonoTODOAttribute]
7900         public override bool CanTimeout { get { throw null; } }
7901         public override bool CanWrite { get { throw null; } }
7902         [System.MonoTODOAttribute]
7903         public virtual System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } }
7904         [System.MonoTODOAttribute]
7905         public override bool IsAuthenticated { get { throw null; } }
7906         [System.MonoTODOAttribute]
7907         public override bool IsEncrypted { get { throw null; } }
7908         [System.MonoTODOAttribute]
7909         public override bool IsMutuallyAuthenticated { get { throw null; } }
7910         [System.MonoTODOAttribute]
7911         public override bool IsServer { get { throw null; } }
7912         [System.MonoTODOAttribute]
7913         public override bool IsSigned { get { throw null; } }
7914         public override long Length { get { throw null; } }
7915         public override long Position { get { throw null; } set { } }
7916         public override int ReadTimeout { get { throw null; } set { } }
7917         [System.MonoTODOAttribute]
7918         public virtual System.Security.Principal.IIdentity RemoteIdentity { get { throw null; } }
7919         public override int WriteTimeout { get { throw null; } set { } }
7920         [System.MonoTODOAttribute]
AuthenticateAsClient()7921         public virtual void AuthenticateAsClient() { }
7922         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName)7923         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName) { }
7924         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)7925         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) { }
7926         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName)7927         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName) { }
7928         [System.MonoTODOAttribute]
AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)7929         public virtual void AuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { }
AuthenticateAsClientAsync()7930         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync() { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName)7931         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName) { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)7932         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel) { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName)7933         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName) { throw null; }
AuthenticateAsClientAsync(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel)7934         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; }
7935         [System.MonoTODOAttribute]
AuthenticateAsServer()7936         public virtual void AuthenticateAsServer() { }
7937         [System.MonoTODOAttribute]
AuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)7938         public virtual void AuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { }
7939         [System.MonoTODOAttribute]
AuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)7940         public virtual void AuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { }
7941         [System.MonoTODOAttribute]
AuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy)7942         public virtual void AuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy) { }
AuthenticateAsServerAsync()7943         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync() { throw null; }
AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)7944         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { throw null; }
AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel)7945         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel) { throw null; }
AuthenticateAsServerAsync(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy)7946         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy) { throw null; }
7947         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.AsyncCallback asyncCallback, object asyncState)7948         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7949         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.AsyncCallback asyncCallback, object asyncState)7950         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7951         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)7952         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; }
7953         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.AsyncCallback asyncCallback, object asyncState)7954         public virtual System.IAsyncResult BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7955         [System.MonoTODOAttribute]
BeginAuthenticateAsClient(System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)7956         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; }
7957         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.AsyncCallback asyncCallback, object asyncState)7958         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7959         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)7960         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; }
7961         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel requiredImpersonationLevel, System.AsyncCallback asyncCallback, object asyncState)7962         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; }
7963         [System.MonoTODOAttribute]
BeginAuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.AsyncCallback asyncCallback, object asyncState)7964         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy policy, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7965         [System.MonoTODOAttribute]
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7966         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7967         [System.MonoTODOAttribute]
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)7968         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
7969         [System.MonoTODOAttribute]
Dispose(bool disposing)7970         protected override void Dispose(bool disposing) { }
7971         [System.MonoTODOAttribute]
EndAuthenticateAsClient(System.IAsyncResult asyncResult)7972         public virtual void EndAuthenticateAsClient(System.IAsyncResult asyncResult) { }
7973         [System.MonoTODOAttribute]
EndAuthenticateAsServer(System.IAsyncResult asyncResult)7974         public virtual void EndAuthenticateAsServer(System.IAsyncResult asyncResult) { }
7975         [System.MonoTODOAttribute]
EndRead(System.IAsyncResult asyncResult)7976         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
7977         [System.MonoTODOAttribute]
EndWrite(System.IAsyncResult asyncResult)7978         public override void EndWrite(System.IAsyncResult asyncResult) { }
7979         [System.MonoTODOAttribute]
Flush()7980         public override void Flush() { }
7981         [System.MonoTODOAttribute]
Read(byte[] buffer, int offset, int count)7982         public override int Read(byte[] buffer, int offset, int count) { throw null; }
7983         [System.MonoTODOAttribute]
Seek(long offset, System.IO.SeekOrigin origin)7984         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
7985         [System.MonoTODOAttribute]
SetLength(long value)7986         public override void SetLength(long value) { }
7987         [System.MonoTODOAttribute]
Write(byte[] buffer, int offset, int count)7988         public override void Write(byte[] buffer, int offset, int count) { }
7989     }
7990     public enum ProtectionLevel
7991     {
7992         EncryptAndSign = 2,
7993         None = 0,
7994         Sign = 1,
7995     }
RemoteCertificateValidationCallback(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)7996     public delegate bool RemoteCertificateValidationCallback(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors);
7997     [System.FlagsAttribute]
7998     public enum SslPolicyErrors
7999     {
8000         None = 0,
8001         RemoteCertificateChainErrors = 4,
8002         RemoteCertificateNameMismatch = 2,
8003         RemoteCertificateNotAvailable = 1,
8004     }
8005     public partial class SslStream : System.Net.Security.AuthenticatedStream
8006     {
SslStream(System.IO.Stream innerStream)8007         public SslStream(System.IO.Stream innerStream) : base (default(System.IO.Stream), default(bool)) { }
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen)8008         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)8009         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)8010         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)) { }
8011         [System.MonoLimitationAttribute("encryptionPolicy is ignored")]
SslStream(System.IO.Stream innerStream, bool leaveInnerStreamOpen, System.Net.Security.RemoteCertificateValidationCallback userCertificateValidationCallback, System.Net.Security.LocalCertificateSelectionCallback userCertificateSelectionCallback, System.Net.Security.EncryptionPolicy encryptionPolicy)8012         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)) { }
8013         public override bool CanRead { get { throw null; } }
8014         public override bool CanSeek { get { throw null; } }
8015         public override bool CanTimeout { get { throw null; } }
8016         public override bool CanWrite { get { throw null; } }
8017         public virtual bool CheckCertRevocationStatus { get { throw null; } }
8018         public virtual System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get { throw null; } }
8019         public virtual int CipherStrength { get { throw null; } }
8020         public virtual System.Security.Authentication.HashAlgorithmType HashAlgorithm { get { throw null; } }
8021         public virtual int HashStrength { get { throw null; } }
8022         public override bool IsAuthenticated { get { throw null; } }
8023         public override bool IsEncrypted { get { throw null; } }
8024         public override bool IsMutuallyAuthenticated { get { throw null; } }
8025         public override bool IsServer { get { throw null; } }
8026         public override bool IsSigned { get { throw null; } }
8027         public virtual System.Security.Authentication.ExchangeAlgorithmType KeyExchangeAlgorithm { get { throw null; } }
8028         public virtual int KeyExchangeStrength { get { throw null; } }
8029         public override long Length { get { throw null; } }
8030         public virtual System.Security.Cryptography.X509Certificates.X509Certificate LocalCertificate { get { throw null; } }
8031         public override long Position { get { throw null; } set { } }
8032         public override int ReadTimeout { get { throw null; } set { } }
8033         public virtual System.Security.Cryptography.X509Certificates.X509Certificate RemoteCertificate { get { throw null; } }
8034         public virtual System.Security.Authentication.SslProtocols SslProtocol { get { throw null; } }
8035         public System.Net.TransportContext TransportContext { get { throw null; } }
8036         public override int WriteTimeout { get { throw null; } set { } }
AuthenticateAsClient(string targetHost)8037         public virtual void AuthenticateAsClient(string targetHost) { }
AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)8038         public virtual void AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
AuthenticateAsClientAsync(string targetHost)8039         public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost) { throw null; }
AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)8040         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)8041         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { }
AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)8042         public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate)8043         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { throw null; }
AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation)8044         public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { throw null; }
BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState)8045         public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)8046         public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState)8047         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState)8048         public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)8049         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState)8050         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
Dispose(bool disposing)8051         protected override void Dispose(bool disposing) { }
EndAuthenticateAsClient(System.IAsyncResult asyncResult)8052         public virtual void EndAuthenticateAsClient(System.IAsyncResult asyncResult) { }
EndAuthenticateAsServer(System.IAsyncResult asyncResult)8053         public virtual void EndAuthenticateAsServer(System.IAsyncResult asyncResult) { }
EndRead(System.IAsyncResult asyncResult)8054         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)8055         public override void EndWrite(System.IAsyncResult asyncResult) { }
Flush()8056         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)8057         public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read(byte[] buffer, int offset, int count)8058         public override int Read(byte[] buffer, int offset, int count) { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)8059         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)8060         public override void SetLength(long value) { }
ShutdownAsync()8061         public virtual System.Threading.Tasks.Task ShutdownAsync() { throw null; }
Write(byte[] buffer)8062         public void Write(byte[] buffer) { }
Write(byte[] buffer, int offset, int count)8063         public override void Write(byte[] buffer, int offset, int count) { }
8064     }
8065 }
8066 namespace System.Net.Sockets
8067 {
8068     public enum AddressFamily
8069     {
8070         AppleTalk = 16,
8071         Atm = 22,
8072         Banyan = 21,
8073         Ccitt = 10,
8074         Chaos = 5,
8075         Cluster = 24,
8076         DataKit = 9,
8077         DataLink = 13,
8078         DecNet = 12,
8079         Ecma = 8,
8080         FireFox = 19,
8081         HyperChannel = 15,
8082         Ieee12844 = 25,
8083         ImpLink = 3,
8084         InterNetwork = 2,
8085         InterNetworkV6 = 23,
8086         Ipx = 6,
8087         Irda = 26,
8088         Iso = 7,
8089         Lat = 14,
8090         Max = 29,
8091         NetBios = 17,
8092         NetworkDesigners = 28,
8093         NS = 6,
8094         Osi = 7,
8095         Pup = 4,
8096         Sna = 11,
8097         Unix = 1,
8098         Unknown = -1,
8099         Unspecified = 0,
8100         VoiceView = 18,
8101     }
8102     public enum IOControlCode : long
8103     {
8104         AbsorbRouterAlert = (long)2550136837,
8105         AddMulticastGroupOnInterface = (long)2550136842,
8106         AddressListChange = (long)671088663,
8107         AddressListQuery = (long)1207959574,
8108         AddressListSort = (long)3355443225,
8109         AssociateHandle = (long)2281701377,
8110         AsyncIO = (long)2147772029,
8111         BindToInterface = (long)2550136840,
8112         DataToRead = (long)1074030207,
8113         DeleteMulticastGroupFromInterface = (long)2550136843,
8114         EnableCircularQueuing = (long)671088642,
8115         Flush = (long)671088644,
8116         GetBroadcastAddress = (long)1207959557,
8117         GetExtensionFunctionPointer = (long)3355443206,
8118         GetGroupQos = (long)3355443208,
8119         GetQos = (long)3355443207,
8120         KeepAliveValues = (long)2550136836,
8121         LimitBroadcasts = (long)2550136839,
8122         MulticastInterface = (long)2550136841,
8123         MulticastScope = (long)2281701386,
8124         MultipointLoopback = (long)2281701385,
8125         NamespaceChange = (long)2281701401,
8126         NonBlockingIO = (long)2147772030,
8127         OobDataRead = (long)1074033415,
8128         QueryTargetPnpHandle = (long)1207959576,
8129         ReceiveAll = (long)2550136833,
8130         ReceiveAllIgmpMulticast = (long)2550136835,
8131         ReceiveAllMulticast = (long)2550136834,
8132         RoutingInterfaceChange = (long)2281701397,
8133         RoutingInterfaceQuery = (long)3355443220,
8134         SetGroupQos = (long)2281701388,
8135         SetQos = (long)2281701387,
8136         TranslateHandle = (long)3355443213,
8137         UnicastInterface = (long)2550136838,
8138     }
8139     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
8140     public partial struct IPPacketInformation
8141     {
8142         public System.Net.IPAddress Address { get { throw null; } }
8143         public int Interface { get { throw null; } }
EqualsSystem.Net.Sockets.IPPacketInformation8144         public override bool Equals(object comparand) { throw null; }
GetHashCodeSystem.Net.Sockets.IPPacketInformation8145         public override int GetHashCode() { throw null; }
operator ==System.Net.Sockets.IPPacketInformation8146         public static bool operator ==(System.Net.Sockets.IPPacketInformation packetInformation1, System.Net.Sockets.IPPacketInformation packetInformation2) { throw null; }
operator !=System.Net.Sockets.IPPacketInformation8147         public static bool operator !=(System.Net.Sockets.IPPacketInformation packetInformation1, System.Net.Sockets.IPPacketInformation packetInformation2) { throw null; }
8148     }
8149     public enum IPProtectionLevel
8150     {
8151         EdgeRestricted = 20,
8152         Restricted = 30,
8153         Unrestricted = 10,
8154         Unspecified = -1,
8155     }
8156     public partial class IPv6MulticastOption
8157     {
IPv6MulticastOption(System.Net.IPAddress group)8158         public IPv6MulticastOption(System.Net.IPAddress group) { }
IPv6MulticastOption(System.Net.IPAddress group, long ifindex)8159         public IPv6MulticastOption(System.Net.IPAddress group, long ifindex) { }
8160         public System.Net.IPAddress Group { get { throw null; } set { } }
8161         public long InterfaceIndex { get { throw null; } set { } }
8162     }
8163     public partial class LingerOption
8164     {
LingerOption(bool enable, int seconds)8165         public LingerOption(bool enable, int seconds) { }
8166         public bool Enabled { get { throw null; } set { } }
8167         public int LingerTime { get { throw null; } set { } }
8168     }
8169     public partial class MulticastOption
8170     {
MulticastOption(System.Net.IPAddress group)8171         public MulticastOption(System.Net.IPAddress group) { }
MulticastOption(System.Net.IPAddress group, int interfaceIndex)8172         public MulticastOption(System.Net.IPAddress group, int interfaceIndex) { }
MulticastOption(System.Net.IPAddress group, System.Net.IPAddress mcint)8173         public MulticastOption(System.Net.IPAddress group, System.Net.IPAddress mcint) { }
8174         public System.Net.IPAddress Group { get { throw null; } set { } }
8175         public int InterfaceIndex { get { throw null; } set { } }
8176         public System.Net.IPAddress LocalAddress { get { throw null; } set { } }
8177     }
8178     public partial class NetworkStream : System.IO.Stream
8179     {
NetworkStream(System.Net.Sockets.Socket socket)8180         public NetworkStream(System.Net.Sockets.Socket socket) { }
NetworkStream(System.Net.Sockets.Socket socket, bool ownsSocket)8181         public NetworkStream(System.Net.Sockets.Socket socket, bool ownsSocket) { }
NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access)8182         public NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access) { }
NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access, bool ownsSocket)8183         public NetworkStream(System.Net.Sockets.Socket socket, System.IO.FileAccess access, bool ownsSocket) { }
8184         public override bool CanRead { get { throw null; } }
8185         public override bool CanSeek { get { throw null; } }
8186         public override bool CanTimeout { get { throw null; } }
8187         public override bool CanWrite { get { throw null; } }
8188         public virtual bool DataAvailable { get { throw null; } }
8189         public override long Length { get { throw null; } }
8190         public override long Position { get { throw null; } set { } }
8191         protected bool Readable { get { throw null; } set { } }
8192         public override int ReadTimeout { get { throw null; } set { } }
8193         protected System.Net.Sockets.Socket Socket { get { throw null; } }
8194         protected bool Writeable { get { throw null; } set { } }
8195         public override int WriteTimeout { get { throw null; } set { } }
8196         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state)8197         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state) { throw null; }
8198         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state)8199         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int size, System.AsyncCallback callback, object state) { throw null; }
Close(int timeout)8200         public void Close(int timeout) { }
Dispose(bool disposing)8201         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)8202         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)8203         public override void EndWrite(System.IAsyncResult asyncResult) { }
~NetworkStream()8204         ~NetworkStream() { }
Flush()8205         public override void Flush() { }
FlushAsync(System.Threading.CancellationToken cancellationToken)8206         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)8207         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)8208         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)8209         public override void SetLength(long value) { }
Write(byte[] buffer, int offset, int size)8210         public override void Write(byte[] buffer, int offset, int size) { }
8211     }
8212     public enum ProtocolFamily
8213     {
8214         AppleTalk = 16,
8215         Atm = 22,
8216         Banyan = 21,
8217         Ccitt = 10,
8218         Chaos = 5,
8219         Cluster = 24,
8220         DataKit = 9,
8221         DataLink = 13,
8222         DecNet = 12,
8223         Ecma = 8,
8224         FireFox = 19,
8225         HyperChannel = 15,
8226         Ieee12844 = 25,
8227         ImpLink = 3,
8228         InterNetwork = 2,
8229         InterNetworkV6 = 23,
8230         Ipx = 6,
8231         Irda = 26,
8232         Iso = 7,
8233         Lat = 14,
8234         Max = 29,
8235         NetBios = 17,
8236         NetworkDesigners = 28,
8237         NS = 6,
8238         Osi = 7,
8239         Pup = 4,
8240         Sna = 11,
8241         Unix = 1,
8242         Unknown = -1,
8243         Unspecified = 0,
8244         VoiceView = 18,
8245     }
8246     public enum ProtocolType
8247     {
8248         Ggp = 3,
8249         Icmp = 1,
8250         IcmpV6 = 58,
8251         Idp = 22,
8252         Igmp = 2,
8253         IP = 0,
8254         IPSecAuthenticationHeader = 51,
8255         IPSecEncapsulatingSecurityPayload = 50,
8256         IPv4 = 4,
8257         IPv6 = 41,
8258         IPv6DestinationOptions = 60,
8259         IPv6FragmentHeader = 44,
8260         IPv6HopByHopOptions = 0,
8261         IPv6NoNextHeader = 59,
8262         IPv6RoutingHeader = 43,
8263         Ipx = 1000,
8264         ND = 77,
8265         Pup = 12,
8266         Raw = 255,
8267         Spx = 1256,
8268         SpxII = 1257,
8269         Tcp = 6,
8270         Udp = 17,
8271         Unknown = -1,
8272         Unspecified = 0,
8273     }
8274     public enum SelectMode
8275     {
8276         SelectError = 2,
8277         SelectRead = 0,
8278         SelectWrite = 1,
8279     }
8280     public partial class SendPacketsElement
8281     {
SendPacketsElement(byte[] buffer)8282         public SendPacketsElement(byte[] buffer) { }
SendPacketsElement(byte[] buffer, int offset, int count)8283         public SendPacketsElement(byte[] buffer, int offset, int count) { }
SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket)8284         public SendPacketsElement(byte[] buffer, int offset, int count, bool endOfPacket) { }
SendPacketsElement(string filepath)8285         public SendPacketsElement(string filepath) { }
SendPacketsElement(string filepath, int offset, int count)8286         public SendPacketsElement(string filepath, int offset, int count) { }
SendPacketsElement(string filepath, int offset, int count, bool endOfPacket)8287         public SendPacketsElement(string filepath, int offset, int count, bool endOfPacket) { }
8288         public byte[] Buffer { get { throw null; } }
8289         public int Count { get { throw null; } }
8290         public bool EndOfPacket { get { throw null; } }
8291         public string FilePath { get { throw null; } }
8292         public int Offset { get { throw null; } }
8293     }
8294     public partial class Socket : System.IDisposable
8295     {
Socket(System.Net.Sockets.AddressFamily addressFamily, System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType)8296         public Socket(System.Net.Sockets.AddressFamily addressFamily, System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType) { }
Socket(System.Net.Sockets.SocketInformation socketInformation)8297         public Socket(System.Net.Sockets.SocketInformation socketInformation) { }
Socket(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType)8298         public Socket(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType) { }
8299         public System.Net.Sockets.AddressFamily AddressFamily { get { throw null; } }
8300         public int Available { get { throw null; } }
8301         public bool Blocking { get { throw null; } set { } }
8302         public bool Connected { get { throw null; } }
8303         public bool DontFragment { get { throw null; } set { } }
8304         public bool DualMode { get { throw null; } set { } }
8305         public bool EnableBroadcast { get { throw null; } set { } }
8306         public bool ExclusiveAddressUse { get { throw null; } set { } }
8307         public System.IntPtr Handle { get { throw null; } }
8308         public bool IsBound { get { throw null; } }
8309         public System.Net.Sockets.LingerOption LingerState { get { throw null; } set { } }
8310         public System.Net.EndPoint LocalEndPoint { get { throw null; } }
8311         public bool MulticastLoopback { get { throw null; } set { } }
8312         public bool NoDelay { get { throw null; } set { } }
8313         public static bool OSSupportsIPv4 { get { throw null; } }
8314         public static bool OSSupportsIPv6 { get { throw null; } }
8315         public System.Net.Sockets.ProtocolType ProtocolType { get { throw null; } }
8316         public int ReceiveBufferSize { get { throw null; } set { } }
8317         public int ReceiveTimeout { get { throw null; } set { } }
8318         public System.Net.EndPoint RemoteEndPoint { get { throw null; } }
8319         public int SendBufferSize { get { throw null; } set { } }
8320         public int SendTimeout { get { throw null; } set { } }
8321         public System.Net.Sockets.SocketType SocketType { get { throw null; } }
8322         [System.ObsoleteAttribute("SupportsIPv4 is obsoleted for this type, please use OSSupportsIPv4 instead. http://go.microsoft.com/fwlink/?linkid=14202")]
8323         public static bool SupportsIPv4 { get { throw null; } }
8324         [System.ObsoleteAttribute("SupportsIPv6 is obsoleted for this type, please use OSSupportsIPv6 instead. http://go.microsoft.com/fwlink/?linkid=14202")]
8325         public static bool SupportsIPv6 { get { throw null; } }
8326         public short Ttl { get { throw null; } set { } }
8327         public bool UseOnlyOverlappedIO { get { throw null; } set { } }
Accept()8328         public System.Net.Sockets.Socket Accept() { throw null; }
AcceptAsync(System.Net.Sockets.SocketAsyncEventArgs e)8329         public bool AcceptAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
BeginAccept(System.AsyncCallback callback, object state)8330         public System.IAsyncResult BeginAccept(System.AsyncCallback callback, object state) { throw null; }
8331         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAccept(int receiveSize, System.AsyncCallback callback, object state)8332         public System.IAsyncResult BeginAccept(int receiveSize, System.AsyncCallback callback, object state) { throw null; }
BeginAccept(System.Net.Sockets.Socket acceptSocket, int receiveSize, System.AsyncCallback callback, object state)8333         public System.IAsyncResult BeginAccept(System.Net.Sockets.Socket acceptSocket, int receiveSize, System.AsyncCallback callback, object state) { throw null; }
BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)8334         public System.IAsyncResult BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state) { throw null; }
8335         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state)8336         public System.IAsyncResult BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state) { throw null; }
BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state)8337         public System.IAsyncResult BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state) { throw null; }
BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state)8338         public System.IAsyncResult BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state) { throw null; }
BeginDisconnect(bool reuseSocket, System.AsyncCallback callback, object state)8339         public System.IAsyncResult BeginDisconnect(bool reuseSocket, System.AsyncCallback callback, object state) { throw null; }
8340         [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)8341         public System.IAsyncResult BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)8342         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; }
8343         [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)8344         public System.IAsyncResult BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
8345         [System.CLSCompliantAttribute(false)]
BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)8346         public System.IAsyncResult BeginReceive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
BeginReceiveFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)8347         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; }
8348         [System.MonoTODOAttribute]
BeginReceiveMessageFrom(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)8349         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; }
8350         [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)8351         public System.IAsyncResult BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
BeginSend(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)8352         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; }
8353         [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)8354         public System.IAsyncResult BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, System.AsyncCallback callback, object state) { throw null; }
8355         [System.CLSCompliantAttribute(false)]
BeginSend(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state)8356         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; }
8357         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSendFile(string fileName, System.AsyncCallback callback, object state)8358         public System.IAsyncResult BeginSendFile(string fileName, System.AsyncCallback callback, object state) { throw null; }
BeginSendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags, System.AsyncCallback callback, object state)8359         public System.IAsyncResult BeginSendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags, System.AsyncCallback callback, object state) { throw null; }
BeginSendTo(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)8360         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)8361         public void Bind(System.Net.EndPoint localEP) { }
CancelConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)8362         public static void CancelConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { }
Close()8363         public void Close() { }
Close(int timeout)8364         public void Close(int timeout) { }
Connect(System.Net.EndPoint remoteEP)8365         public void Connect(System.Net.EndPoint remoteEP) { }
Connect(System.Net.IPAddress address, int port)8366         public void Connect(System.Net.IPAddress address, int port) { }
Connect(System.Net.IPAddress[] addresses, int port)8367         public void Connect(System.Net.IPAddress[] addresses, int port) { }
Connect(string host, int port)8368         public void Connect(string host, int port) { }
ConnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)8369         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)8370         public static bool ConnectAsync(System.Net.Sockets.SocketType socketType, System.Net.Sockets.ProtocolType protocolType, System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Disconnect(bool reuseSocket)8371         public void Disconnect(bool reuseSocket) { }
DisconnectAsync(System.Net.Sockets.SocketAsyncEventArgs e)8372         public bool DisconnectAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
Dispose()8373         public void Dispose() { }
Dispose(bool disposing)8374         protected virtual void Dispose(bool disposing) { }
8375         [System.MonoLimitationAttribute("We do not support passing sockets across processes, we merely allow this API to pass the socket across AppDomains")]
DuplicateAndClose(int targetProcessId)8376         public System.Net.Sockets.SocketInformation DuplicateAndClose(int targetProcessId) { throw null; }
EndAccept(out byte[] buffer, System.IAsyncResult asyncResult)8377         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)8378         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)8379         public System.Net.Sockets.Socket EndAccept(System.IAsyncResult asyncResult) { throw null; }
EndConnect(System.IAsyncResult asyncResult)8380         public void EndConnect(System.IAsyncResult asyncResult) { }
EndDisconnect(System.IAsyncResult asyncResult)8381         public void EndDisconnect(System.IAsyncResult asyncResult) { }
EndReceive(System.IAsyncResult asyncResult)8382         public int EndReceive(System.IAsyncResult asyncResult) { throw null; }
EndReceive(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode)8383         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)8384         public int EndReceiveFrom(System.IAsyncResult asyncResult, ref System.Net.EndPoint endPoint) { throw null; }
8385         [System.MonoTODOAttribute]
EndReceiveMessageFrom(System.IAsyncResult asyncResult, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint endPoint, out System.Net.Sockets.IPPacketInformation ipPacketInformation)8386         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)8387         public int EndSend(System.IAsyncResult asyncResult) { throw null; }
EndSend(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode)8388         public int EndSend(System.IAsyncResult asyncResult, out System.Net.Sockets.SocketError errorCode) { errorCode = default(System.Net.Sockets.SocketError); throw null; }
EndSendFile(System.IAsyncResult asyncResult)8389         public void EndSendFile(System.IAsyncResult asyncResult) { }
EndSendTo(System.IAsyncResult asyncResult)8390         public int EndSendTo(System.IAsyncResult asyncResult) { throw null; }
~Socket()8391         ~Socket() { }
GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName)8392         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)8393         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)8394         public byte[] GetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, int optionLength) { throw null; }
IOControl(int ioControlCode, byte[] optionInValue, byte[] optionOutValue)8395         public int IOControl(int ioControlCode, byte[] optionInValue, byte[] optionOutValue) { throw null; }
IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue)8396         public int IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) { throw null; }
Listen(int backlog)8397         public void Listen(int backlog) { }
Poll(int microSeconds, System.Net.Sockets.SelectMode mode)8398         public bool Poll(int microSeconds, System.Net.Sockets.SelectMode mode) { throw null; }
Receive(byte[] buffer)8399         public int Receive(byte[] buffer) { throw null; }
Receive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags)8400         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)8401         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)8402         public int Receive(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags)8403         public int Receive(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers)8404         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)8405         public int Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
8406         [System.CLSCompliantAttribute(false)]
Receive(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)8407         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)8408         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)8409         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)8410         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)8411         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)8412         public int ReceiveFrom(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP) { throw null; }
ReceiveFromAsync(System.Net.Sockets.SocketAsyncEventArgs e)8413         public bool ReceiveFromAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
8414         [System.MonoTODOAttribute("Not implemented")]
ReceiveMessageFrom(byte[] buffer, int offset, int size, ref System.Net.Sockets.SocketFlags socketFlags, ref System.Net.EndPoint remoteEP, out System.Net.Sockets.IPPacketInformation ipPacketInformation)8415         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; }
8416         [System.MonoTODOAttribute("Not implemented")]
ReceiveMessageFromAsync(System.Net.Sockets.SocketAsyncEventArgs e)8417         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)8418         public static void Select(System.Collections.IList checkRead, System.Collections.IList checkWrite, System.Collections.IList checkError, int microSeconds) { }
Send(byte[] buffer)8419         public int Send(byte[] buffer) { throw null; }
Send(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags)8420         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)8421         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)8422         public int Send(byte[] buffer, int size, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags)8423         public int Send(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers)8424         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)8425         public int Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
8426         [System.CLSCompliantAttribute(false)]
Send(System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode)8427         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)8428         public bool SendAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SendFile(string fileName)8429         public void SendFile(string fileName) { }
SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags)8430         public void SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, System.Net.Sockets.TransmitFileOptions flags) { }
8431         [System.MonoTODOAttribute("Not implemented")]
SendPacketsAsync(System.Net.Sockets.SocketAsyncEventArgs e)8432         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)8433         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)8434         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)8435         public int SendTo(byte[] buffer, System.Net.EndPoint remoteEP) { throw null; }
SendTo(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)8436         public int SendTo(byte[] buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e)8437         public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; }
SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level)8438         public void SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level) { }
SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, bool optionValue)8439         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)8440         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)8441         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)8442         public void SetSocketOption(System.Net.Sockets.SocketOptionLevel optionLevel, System.Net.Sockets.SocketOptionName optionName, object optionValue) { }
Shutdown(System.Net.Sockets.SocketShutdown how)8443         public void Shutdown(System.Net.Sockets.SocketShutdown how) { }
8444     }
8445     public partial class SocketAsyncEventArgs : System.EventArgs, System.IDisposable
8446     {
SocketAsyncEventArgs()8447         public SocketAsyncEventArgs() { }
8448         public System.Net.Sockets.Socket AcceptSocket { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8449         public byte[] Buffer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8450         public System.Collections.Generic.IList<System.ArraySegment<byte>> BufferList { get { throw null; } set { } }
8451         public int BytesTransferred { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8452         public System.Exception ConnectByNameError { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8453         public System.Net.Sockets.Socket ConnectSocket { get { throw null; } }
8454         public int Count { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8455         public bool DisconnectReuseSocket { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8456         public System.Net.Sockets.SocketAsyncOperation LastOperation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8457         public int Offset { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8458         public System.Net.Sockets.IPPacketInformation ReceiveMessageFromPacketInfo { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8459         public System.Net.EndPoint RemoteEndPoint { get { throw null; } set { } }
8460         public System.Net.Sockets.SendPacketsElement[] SendPacketsElements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8461         public System.Net.Sockets.TransmitFileOptions SendPacketsFlags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8462         [System.MonoTODOAttribute("unused property")]
8463         public int SendPacketsSendSize { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8464         public System.Net.Sockets.SocketError SocketError { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8465         public System.Net.Sockets.SocketFlags SocketFlags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8466         public object UserToken { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
8467         public event System.EventHandler<System.Net.Sockets.SocketAsyncEventArgs> Completed { add { } remove { } }
Dispose()8468         public void Dispose() { }
~SocketAsyncEventArgs()8469         ~SocketAsyncEventArgs() { }
OnCompleted(System.Net.Sockets.SocketAsyncEventArgs e)8470         protected virtual void OnCompleted(System.Net.Sockets.SocketAsyncEventArgs e) { }
SetBuffer(byte[] buffer, int offset, int count)8471         public void SetBuffer(byte[] buffer, int offset, int count) { }
SetBuffer(int offset, int count)8472         public void SetBuffer(int offset, int count) { }
8473     }
8474     public enum SocketAsyncOperation
8475     {
8476         Accept = 1,
8477         Connect = 2,
8478         Disconnect = 3,
8479         None = 0,
8480         Receive = 4,
8481         ReceiveFrom = 5,
8482         ReceiveMessageFrom = 6,
8483         Send = 7,
8484         SendPackets = 8,
8485         SendTo = 9,
8486     }
8487     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
8488     [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
8489     public enum SocketClientAccessPolicyProtocol
8490     {
8491         Http = 1,
8492         Tcp = 0,
8493     }
8494     public enum SocketError
8495     {
8496         AccessDenied = 10013,
8497         AddressAlreadyInUse = 10048,
8498         AddressFamilyNotSupported = 10047,
8499         AddressNotAvailable = 10049,
8500         AlreadyInProgress = 10037,
8501         ConnectionAborted = 10053,
8502         ConnectionRefused = 10061,
8503         ConnectionReset = 10054,
8504         DestinationAddressRequired = 10039,
8505         Disconnecting = 10101,
8506         Fault = 10014,
8507         HostDown = 10064,
8508         HostNotFound = 11001,
8509         HostUnreachable = 10065,
8510         InProgress = 10036,
8511         Interrupted = 10004,
8512         InvalidArgument = 10022,
8513         IOPending = 997,
8514         IsConnected = 10056,
8515         MessageSize = 10040,
8516         NetworkDown = 10050,
8517         NetworkReset = 10052,
8518         NetworkUnreachable = 10051,
8519         NoBufferSpaceAvailable = 10055,
8520         NoData = 11004,
8521         NoRecovery = 11003,
8522         NotConnected = 10057,
8523         NotInitialized = 10093,
8524         NotSocket = 10038,
8525         OperationAborted = 995,
8526         OperationNotSupported = 10045,
8527         ProcessLimit = 10067,
8528         ProtocolFamilyNotSupported = 10046,
8529         ProtocolNotSupported = 10043,
8530         ProtocolOption = 10042,
8531         ProtocolType = 10041,
8532         Shutdown = 10058,
8533         SocketError = -1,
8534         SocketNotSupported = 10044,
8535         Success = 0,
8536         SystemNotReady = 10091,
8537         TimedOut = 10060,
8538         TooManyOpenSockets = 10024,
8539         TryAgain = 11002,
8540         TypeNotFound = 10109,
8541         VersionNotSupported = 10092,
8542         WouldBlock = 10035,
8543     }
8544     [System.SerializableAttribute]
8545     public partial class SocketException : System.ComponentModel.Win32Exception
8546     {
SocketException()8547         public SocketException() { }
SocketException(int errorCode)8548         public SocketException(int errorCode) { }
SocketException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)8549         protected SocketException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
8550         public override int ErrorCode { get { throw null; } }
8551         public override string Message { get { throw null; } }
8552         public System.Net.Sockets.SocketError SocketErrorCode { get { throw null; } }
8553     }
8554     [System.FlagsAttribute]
8555     public enum SocketFlags
8556     {
8557         Broadcast = 1024,
8558         ControlDataTruncated = 512,
8559         DontRoute = 4,
8560         MaxIOVectorLength = 16,
8561         Multicast = 2048,
8562         None = 0,
8563         OutOfBand = 1,
8564         Partial = 32768,
8565         Peek = 2,
8566         Truncated = 256,
8567     }
8568     [System.SerializableAttribute]
8569     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
8570     public partial struct SocketInformation
8571     {
8572         public System.Net.Sockets.SocketInformationOptions Options { get { throw null; } set { } }
8573         public byte[] ProtocolInformation { get { throw null; } set { } }
8574     }
8575     [System.FlagsAttribute]
8576     public enum SocketInformationOptions
8577     {
8578         Connected = 2,
8579         Listening = 4,
8580         NonBlocking = 1,
8581         UseOnlyOverlappedIO = 8,
8582     }
8583     public enum SocketOptionLevel
8584     {
8585         IP = 0,
8586         IPv6 = 41,
8587         Socket = 65535,
8588         Tcp = 6,
8589         Udp = 17,
8590     }
8591     public enum SocketOptionName
8592     {
8593         AcceptConnection = 2,
8594         AddMembership = 12,
8595         AddSourceMembership = 15,
8596         BlockSource = 17,
8597         Broadcast = 32,
8598         BsdUrgent = 2,
8599         ChecksumCoverage = 20,
8600         Debug = 1,
8601         DontFragment = 14,
8602         DontLinger = -129,
8603         DontRoute = 16,
8604         DropMembership = 13,
8605         DropSourceMembership = 16,
8606         Error = 4103,
8607         ExclusiveAddressUse = -5,
8608         Expedited = 2,
8609         HeaderIncluded = 2,
8610         HopLimit = 21,
8611         IPOptions = 1,
8612         IPProtectionLevel = 23,
8613         IpTimeToLive = 4,
8614         IPv6Only = 27,
8615         KeepAlive = 8,
8616         Linger = 128,
8617         MaxConnections = 2147483647,
8618         MulticastInterface = 9,
8619         MulticastLoopback = 11,
8620         MulticastTimeToLive = 10,
8621         NoChecksum = 1,
8622         NoDelay = 1,
8623         OutOfBandInline = 256,
8624         PacketInformation = 19,
8625         ReceiveBuffer = 4098,
8626         ReceiveLowWater = 4100,
8627         ReceiveTimeout = 4102,
8628         ReuseAddress = 4,
8629         ReuseUnicastPort = 12295,
8630         SendBuffer = 4097,
8631         SendLowWater = 4099,
8632         SendTimeout = 4101,
8633         Type = 4104,
8634         TypeOfService = 3,
8635         UnblockSource = 18,
8636         UpdateAcceptContext = 28683,
8637         UpdateConnectContext = 28688,
8638         UseLoopback = 64,
8639     }
8640     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
8641     public partial struct SocketReceiveFromResult
8642     {
8643         public int ReceivedBytes;
8644         public System.Net.EndPoint RemoteEndPoint;
8645     }
8646     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
8647     public partial struct SocketReceiveMessageFromResult
8648     {
8649         public System.Net.Sockets.IPPacketInformation PacketInformation;
8650         public int ReceivedBytes;
8651         public System.Net.EndPoint RemoteEndPoint;
8652         public System.Net.Sockets.SocketFlags SocketFlags;
8653     }
8654     public enum SocketShutdown
8655     {
8656         Both = 2,
8657         Receive = 0,
8658         Send = 1,
8659     }
8660     public static partial class SocketTaskExtensions
8661     {
AcceptAsync(this System.Net.Sockets.Socket socket)8662         public static System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptAsync(this System.Net.Sockets.Socket socket) { throw null; }
AcceptAsync(this System.Net.Sockets.Socket socket, System.Net.Sockets.Socket acceptSocket)8663         public static System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptAsync(this System.Net.Sockets.Socket socket, System.Net.Sockets.Socket acceptSocket) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.EndPoint remoteEP)8664         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.EndPoint remoteEP) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress address, int port)8665         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress address, int port) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress[] addresses, int port)8666         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, System.Net.IPAddress[] addresses, int port) { throw null; }
ConnectAsync(this System.Net.Sockets.Socket socket, string host, int port)8667         public static System.Threading.Tasks.Task ConnectAsync(this System.Net.Sockets.Socket socket, string host, int port) { throw null; }
ReceiveAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags)8668         public static System.Threading.Tasks.Task<int> ReceiveAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
ReceiveAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags)8669         public static System.Threading.Tasks.Task<int> ReceiveAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
ReceiveFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint)8670         public static System.Threading.Tasks.Task<System.Net.Sockets.SocketReceiveFromResult> ReceiveFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint) { throw null; }
ReceiveMessageFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint)8671         public static System.Threading.Tasks.Task<System.Net.Sockets.SocketReceiveMessageFromResult> ReceiveMessageFromAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEndPoint) { throw null; }
SendAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags)8672         public static System.Threading.Tasks.Task<int> SendAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
SendAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags)8673         public static System.Threading.Tasks.Task<int> SendAsync(this System.Net.Sockets.Socket socket, System.Collections.Generic.IList<System.ArraySegment<byte>> buffers, System.Net.Sockets.SocketFlags socketFlags) { throw null; }
SendToAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP)8674         public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, System.ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP) { throw null; }
8675     }
8676     public enum SocketType
8677     {
8678         Dgram = 2,
8679         Raw = 3,
8680         Rdm = 4,
8681         Seqpacket = 5,
8682         Stream = 1,
8683         Unknown = -1,
8684     }
8685     public partial class TcpClient : System.IDisposable
8686     {
TcpClient()8687         public TcpClient() { }
TcpClient(System.Net.IPEndPoint localEP)8688         public TcpClient(System.Net.IPEndPoint localEP) { }
TcpClient(System.Net.Sockets.AddressFamily family)8689         public TcpClient(System.Net.Sockets.AddressFamily family) { }
TcpClient(string hostname, int port)8690         public TcpClient(string hostname, int port) { }
8691         protected bool Active { get { throw null; } set { } }
8692         public int Available { get { throw null; } }
8693         public System.Net.Sockets.Socket Client { get { throw null; } set { } }
8694         public bool Connected { get { throw null; } }
8695         public bool ExclusiveAddressUse { get { throw null; } set { } }
8696         public System.Net.Sockets.LingerOption LingerState { get { throw null; } set { } }
8697         public bool NoDelay { get { throw null; } set { } }
8698         public int ReceiveBufferSize { get { throw null; } set { } }
8699         public int ReceiveTimeout { get { throw null; } set { } }
8700         public int SendBufferSize { get { throw null; } set { } }
8701         public int SendTimeout { get { throw null; } set { } }
8702         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state)8703         public System.IAsyncResult BeginConnect(System.Net.IPAddress address, int port, System.AsyncCallback requestCallback, object state) { throw null; }
8704         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state)8705         public System.IAsyncResult BeginConnect(System.Net.IPAddress[] addresses, int port, System.AsyncCallback requestCallback, object state) { throw null; }
8706         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state)8707         public System.IAsyncResult BeginConnect(string host, int port, System.AsyncCallback requestCallback, object state) { throw null; }
Close()8708         public void Close() { }
Connect(System.Net.IPAddress address, int port)8709         public void Connect(System.Net.IPAddress address, int port) { }
Connect(System.Net.IPAddress[] ipAddresses, int port)8710         public void Connect(System.Net.IPAddress[] ipAddresses, int port) { }
Connect(System.Net.IPEndPoint remoteEP)8711         public void Connect(System.Net.IPEndPoint remoteEP) { }
Connect(string hostname, int port)8712         public void Connect(string hostname, int port) { }
8713         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(System.Net.IPAddress address, int port)8714         public System.Threading.Tasks.Task ConnectAsync(System.Net.IPAddress address, int port) { throw null; }
8715         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(System.Net.IPAddress[] addresses, int port)8716         public System.Threading.Tasks.Task ConnectAsync(System.Net.IPAddress[] addresses, int port) { throw null; }
8717         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ConnectAsync(string host, int port)8718         public System.Threading.Tasks.Task ConnectAsync(string host, int port) { throw null; }
Dispose()8719         public void Dispose() { }
Dispose(bool disposing)8720         protected virtual void Dispose(bool disposing) { }
EndConnect(System.IAsyncResult asyncResult)8721         public void EndConnect(System.IAsyncResult asyncResult) { }
~TcpClient()8722         ~TcpClient() { }
GetStream()8723         public System.Net.Sockets.NetworkStream GetStream() { throw null; }
8724     }
8725     public partial class TcpListener
8726     {
8727         [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)8728         public TcpListener(int port) { }
TcpListener(System.Net.IPAddress localaddr, int port)8729         public TcpListener(System.Net.IPAddress localaddr, int port) { }
TcpListener(System.Net.IPEndPoint localEP)8730         public TcpListener(System.Net.IPEndPoint localEP) { }
8731         protected bool Active { get { throw null; } }
8732         public bool ExclusiveAddressUse { get { throw null; } set { } }
8733         public System.Net.EndPoint LocalEndpoint { get { throw null; } }
8734         public System.Net.Sockets.Socket Server { get { throw null; } }
AcceptSocket()8735         public System.Net.Sockets.Socket AcceptSocket() { throw null; }
8736         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AcceptSocketAsync()8737         public System.Threading.Tasks.Task<System.Net.Sockets.Socket> AcceptSocketAsync() { throw null; }
AcceptTcpClient()8738         public System.Net.Sockets.TcpClient AcceptTcpClient() { throw null; }
8739         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
AcceptTcpClientAsync()8740         public System.Threading.Tasks.Task<System.Net.Sockets.TcpClient> AcceptTcpClientAsync() { throw null; }
AllowNatTraversal(bool allowed)8741         public void AllowNatTraversal(bool allowed) { }
8742         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAcceptSocket(System.AsyncCallback callback, object state)8743         public System.IAsyncResult BeginAcceptSocket(System.AsyncCallback callback, object state) { throw null; }
8744         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginAcceptTcpClient(System.AsyncCallback callback, object state)8745         public System.IAsyncResult BeginAcceptTcpClient(System.AsyncCallback callback, object state) { throw null; }
Create(int port)8746         public static System.Net.Sockets.TcpListener Create(int port) { throw null; }
EndAcceptSocket(System.IAsyncResult asyncResult)8747         public System.Net.Sockets.Socket EndAcceptSocket(System.IAsyncResult asyncResult) { throw null; }
EndAcceptTcpClient(System.IAsyncResult asyncResult)8748         public System.Net.Sockets.TcpClient EndAcceptTcpClient(System.IAsyncResult asyncResult) { throw null; }
Pending()8749         public bool Pending() { throw null; }
Start()8750         public void Start() { }
Start(int backlog)8751         public void Start(int backlog) { }
Stop()8752         public void Stop() { }
8753     }
8754     [System.FlagsAttribute]
8755     public enum TransmitFileOptions
8756     {
8757         Disconnect = 1,
8758         ReuseSocket = 2,
8759         UseDefaultWorkerThread = 0,
8760         UseKernelApc = 32,
8761         UseSystemThread = 16,
8762         WriteBehind = 4,
8763     }
8764     public partial class UdpClient : System.IDisposable
8765     {
UdpClient()8766         public UdpClient() { }
UdpClient(int port)8767         public UdpClient(int port) { }
UdpClient(int port, System.Net.Sockets.AddressFamily family)8768         public UdpClient(int port, System.Net.Sockets.AddressFamily family) { }
UdpClient(System.Net.IPEndPoint localEP)8769         public UdpClient(System.Net.IPEndPoint localEP) { }
UdpClient(System.Net.Sockets.AddressFamily family)8770         public UdpClient(System.Net.Sockets.AddressFamily family) { }
UdpClient(string hostname, int port)8771         public UdpClient(string hostname, int port) { }
8772         protected bool Active { get { throw null; } set { } }
8773         public int Available { get { throw null; } }
8774         public System.Net.Sockets.Socket Client { get { throw null; } set { } }
8775         public bool DontFragment { get { throw null; } set { } }
8776         public bool EnableBroadcast { get { throw null; } set { } }
8777         public bool ExclusiveAddressUse { get { throw null; } set { } }
8778         public bool MulticastLoopback { get { throw null; } set { } }
8779         public short Ttl { get { throw null; } set { } }
AllowNatTraversal(bool allowed)8780         public void AllowNatTraversal(bool allowed) { }
8781         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginReceive(System.AsyncCallback requestCallback, object state)8782         public System.IAsyncResult BeginReceive(System.AsyncCallback requestCallback, object state) { throw null; }
8783         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginSend(byte[] datagram, int bytes, System.AsyncCallback requestCallback, object state)8784         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, System.AsyncCallback requestCallback, object state) { throw null; }
8785         [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)8786         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint, System.AsyncCallback requestCallback, object state) { throw null; }
8787         [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)8788         public System.IAsyncResult BeginSend(byte[] datagram, int bytes, string hostname, int port, System.AsyncCallback requestCallback, object state) { throw null; }
Close()8789         public void Close() { }
Connect(System.Net.IPAddress addr, int port)8790         public void Connect(System.Net.IPAddress addr, int port) { }
Connect(System.Net.IPEndPoint endPoint)8791         public void Connect(System.Net.IPEndPoint endPoint) { }
Connect(string hostname, int port)8792         public void Connect(string hostname, int port) { }
Dispose()8793         public void Dispose() { }
Dispose(bool disposing)8794         protected virtual void Dispose(bool disposing) { }
DropMulticastGroup(System.Net.IPAddress multicastAddr)8795         public void DropMulticastGroup(System.Net.IPAddress multicastAddr) { }
DropMulticastGroup(System.Net.IPAddress multicastAddr, int ifindex)8796         public void DropMulticastGroup(System.Net.IPAddress multicastAddr, int ifindex) { }
EndReceive(System.IAsyncResult asyncResult, ref System.Net.IPEndPoint remoteEP)8797         public byte[] EndReceive(System.IAsyncResult asyncResult, ref System.Net.IPEndPoint remoteEP) { throw null; }
EndSend(System.IAsyncResult asyncResult)8798         public int EndSend(System.IAsyncResult asyncResult) { throw null; }
JoinMulticastGroup(int ifindex, System.Net.IPAddress multicastAddr)8799         public void JoinMulticastGroup(int ifindex, System.Net.IPAddress multicastAddr) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr)8800         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr, int timeToLive)8801         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr, int timeToLive) { }
JoinMulticastGroup(System.Net.IPAddress multicastAddr, System.Net.IPAddress localAddress)8802         public void JoinMulticastGroup(System.Net.IPAddress multicastAddr, System.Net.IPAddress localAddress) { }
Receive(ref System.Net.IPEndPoint remoteEP)8803         public byte[] Receive(ref System.Net.IPEndPoint remoteEP) { throw null; }
8804         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
ReceiveAsync()8805         public System.Threading.Tasks.Task<System.Net.Sockets.UdpReceiveResult> ReceiveAsync() { throw null; }
Send(byte[] dgram, int bytes)8806         public int Send(byte[] dgram, int bytes) { throw null; }
Send(byte[] dgram, int bytes, System.Net.IPEndPoint endPoint)8807         public int Send(byte[] dgram, int bytes, System.Net.IPEndPoint endPoint) { throw null; }
Send(byte[] dgram, int bytes, string hostname, int port)8808         public int Send(byte[] dgram, int bytes, string hostname, int port) { throw null; }
8809         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes)8810         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes) { throw null; }
8811         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint)8812         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes, System.Net.IPEndPoint endPoint) { throw null; }
8813         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SendAsync(byte[] datagram, int bytes, string hostname, int port)8814         public System.Threading.Tasks.Task<int> SendAsync(byte[] datagram, int bytes, string hostname, int port) { throw null; }
8815     }
8816     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
8817     public partial struct UdpReceiveResult : System.IEquatable<System.Net.Sockets.UdpReceiveResult>
8818     {
UdpReceiveResultSystem.Net.Sockets.UdpReceiveResult8819         public UdpReceiveResult(byte[] buffer, System.Net.IPEndPoint remoteEndPoint) { throw null;}
8820         public byte[] Buffer { get { throw null; } }
8821         public System.Net.IPEndPoint RemoteEndPoint { get { throw null; } }
EqualsSystem.Net.Sockets.UdpReceiveResult8822         public bool Equals(System.Net.Sockets.UdpReceiveResult other) { throw null; }
EqualsSystem.Net.Sockets.UdpReceiveResult8823         public override bool Equals(object obj) { throw null; }
GetHashCodeSystem.Net.Sockets.UdpReceiveResult8824         public override int GetHashCode() { throw null; }
operator ==System.Net.Sockets.UdpReceiveResult8825         public static bool operator ==(System.Net.Sockets.UdpReceiveResult left, System.Net.Sockets.UdpReceiveResult right) { throw null; }
operator !=System.Net.Sockets.UdpReceiveResult8826         public static bool operator !=(System.Net.Sockets.UdpReceiveResult left, System.Net.Sockets.UdpReceiveResult right) { throw null; }
8827     }
8828 }
8829 namespace System.Net.WebSockets
8830 {
8831     public sealed partial class ClientWebSocket : System.Net.WebSockets.WebSocket
8832     {
ClientWebSocket()8833         public ClientWebSocket() { }
8834         public override System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { get { throw null; } }
8835         public override string CloseStatusDescription { get { throw null; } }
8836         public System.Net.WebSockets.ClientWebSocketOptions Options { get { throw null; } }
8837         public override System.Net.WebSockets.WebSocketState State { get { throw null; } }
8838         public override string SubProtocol { get { throw null; } }
Abort()8839         public override void Abort() { }
CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)8840         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)8841         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)8842         public System.Threading.Tasks.Task ConnectAsync(System.Uri uri, System.Threading.CancellationToken cancellationToken) { throw null; }
Dispose()8843         public override void Dispose() { }
ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken)8844         public override System.Threading.Tasks.Task<System.Net.WebSockets.WebSocketReceiveResult> ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken)8845         public override System.Threading.Tasks.ValueTask<System.Net.WebSockets.ValueWebSocketReceiveResult> ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)8846         public override System.Threading.Tasks.Task SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)8847         public override System.Threading.Tasks.Task SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
8848     }
8849     public sealed partial class ClientWebSocketOptions
8850     {
ClientWebSocketOptions()8851         internal ClientWebSocketOptions() { }
8852         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } set { } }
8853         public System.Net.CookieContainer Cookies { get { throw null; } set { } }
8854         public System.Net.ICredentials Credentials { get { throw null; } set { } }
8855         public System.TimeSpan KeepAliveInterval { get { throw null; } set { } }
8856         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
8857         public bool UseDefaultCredentials { get { throw null; } set { } }
AddSubProtocol(string subProtocol)8858         public void AddSubProtocol(string subProtocol) { }
SetBuffer(int receiveBufferSize, int sendBufferSize)8859         public void SetBuffer(int receiveBufferSize, int sendBufferSize) { }
SetBuffer(int receiveBufferSize, int sendBufferSize, System.ArraySegment<byte> buffer)8860         public void SetBuffer(int receiveBufferSize, int sendBufferSize, System.ArraySegment<byte> buffer) { }
SetRequestHeader(string headerName, string headerValue)8861         public void SetRequestHeader(string headerName, string headerValue) { }
8862     }
8863     public partial class HttpListenerWebSocketContext : System.Net.WebSockets.WebSocketContext
8864     {
HttpListenerWebSocketContext()8865         internal HttpListenerWebSocketContext() { }
8866         public override System.Net.CookieCollection CookieCollection { get { throw null; } }
8867         public override System.Collections.Specialized.NameValueCollection Headers { get { throw null; } }
8868         public override bool IsAuthenticated { get { throw null; } }
8869         public override bool IsLocal { get { throw null; } }
8870         public override bool IsSecureConnection { get { throw null; } }
8871         public override string Origin { get { throw null; } }
8872         public override System.Uri RequestUri { get { throw null; } }
8873         public override string SecWebSocketKey { get { throw null; } }
8874         public override System.Collections.Generic.IEnumerable<string> SecWebSocketProtocols { get { throw null; } }
8875         public override string SecWebSocketVersion { get { throw null; } }
8876         public override System.Security.Principal.IPrincipal User { get { throw null; } }
8877         public override System.Net.WebSockets.WebSocket WebSocket { get { throw null; } }
8878     }
8879     [System.Runtime.CompilerServices.IsReadOnlyAttribute]
8880     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
8881     public partial struct ValueWebSocketReceiveResult
8882     {
ValueWebSocketReceiveResultSystem.Net.WebSockets.ValueWebSocketReceiveResult8883         public ValueWebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage) { throw null;}
8884         public int Count { get { throw null; } }
8885         public bool EndOfMessage { get { throw null; } }
8886         public System.Net.WebSockets.WebSocketMessageType MessageType { get { throw null; } }
8887     }
8888     public abstract partial class WebSocket : System.IDisposable
8889     {
WebSocket()8890         protected WebSocket() { }
8891         public abstract System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { get; }
8892         public abstract string CloseStatusDescription { get; }
8893         public static System.TimeSpan DefaultKeepAliveInterval { get { throw null; } }
8894         public abstract System.Net.WebSockets.WebSocketState State { get; }
8895         public abstract string SubProtocol { get; }
Abort()8896         public abstract void Abort();
CloseAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken)8897         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)8898         public abstract System.Threading.Tasks.Task CloseOutputAsync(System.Net.WebSockets.WebSocketCloseStatus closeStatus, string statusDescription, System.Threading.CancellationToken cancellationToken);
CreateClientBuffer(int receiveBufferSize, int sendBufferSize)8899         public static System.ArraySegment<byte> CreateClientBuffer(int receiveBufferSize, int sendBufferSize) { throw null; }
8900         [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)8901         public static System.Net.WebSockets.WebSocket CreateClientWebSocket(System.IO.Stream innerStream, string subProtocol, int receiveBufferSize, int sendBufferSize, System.TimeSpan keepAliveInterval, bool useZeroMaskingKey, System.ArraySegment<byte> internalBuffer) { throw null; }
CreateFromStream(System.IO.Stream stream, bool isServer, string subProtocol, System.TimeSpan keepAliveInterval, System.Memory<byte> buffer=default(System.Memory<byte>))8902         public static System.Net.WebSockets.WebSocket CreateFromStream(System.IO.Stream stream, bool isServer, string subProtocol, System.TimeSpan keepAliveInterval, System.Memory<byte> buffer=default(System.Memory<byte>)) { throw null; }
CreateServerBuffer(int receiveBufferSize)8903         public static System.ArraySegment<byte> CreateServerBuffer(int receiveBufferSize) { throw null; }
Dispose()8904         public abstract void Dispose();
8905         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
8906         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.")]
IsApplicationTargeting45()8907         public static bool IsApplicationTargeting45() { throw null; }
IsStateTerminal(System.Net.WebSockets.WebSocketState state)8908         protected static bool IsStateTerminal(System.Net.WebSockets.WebSocketState state) { throw null; }
ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken)8909         public abstract System.Threading.Tasks.Task<System.Net.WebSockets.WebSocketReceiveResult> ReceiveAsync(System.ArraySegment<byte> buffer, System.Threading.CancellationToken cancellationToken);
ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken)8910         public virtual System.Threading.Tasks.ValueTask<System.Net.WebSockets.ValueWebSocketReceiveResult> ReceiveAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken) { throw null; }
8911         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
RegisterPrefixes()8912         public static void RegisterPrefixes() { }
SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)8913         public abstract System.Threading.Tasks.Task SendAsync(System.ArraySegment<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken);
SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken)8914         public virtual System.Threading.Tasks.Task SendAsync(System.ReadOnlyMemory<byte> buffer, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Threading.CancellationToken cancellationToken) { throw null; }
ThrowOnInvalidState(System.Net.WebSockets.WebSocketState state, params System.Net.WebSockets.WebSocketState[] validStates)8915         protected static void ThrowOnInvalidState(System.Net.WebSockets.WebSocketState state, params System.Net.WebSockets.WebSocketState[] validStates) { }
8916     }
8917     public enum WebSocketCloseStatus
8918     {
8919         Empty = 1005,
8920         EndpointUnavailable = 1001,
8921         InternalServerError = 1011,
8922         InvalidMessageType = 1003,
8923         InvalidPayloadData = 1007,
8924         MandatoryExtension = 1010,
8925         MessageTooBig = 1009,
8926         NormalClosure = 1000,
8927         PolicyViolation = 1008,
8928         ProtocolError = 1002,
8929     }
8930     public abstract partial class WebSocketContext
8931     {
WebSocketContext()8932         protected WebSocketContext() { }
8933         public abstract System.Net.CookieCollection CookieCollection { get; }
8934         public abstract System.Collections.Specialized.NameValueCollection Headers { get; }
8935         public abstract bool IsAuthenticated { get; }
8936         public abstract bool IsLocal { get; }
8937         public abstract bool IsSecureConnection { get; }
8938         public abstract string Origin { get; }
8939         public abstract System.Uri RequestUri { get; }
8940         public abstract string SecWebSocketKey { get; }
8941         public abstract System.Collections.Generic.IEnumerable<string> SecWebSocketProtocols { get; }
8942         public abstract string SecWebSocketVersion { get; }
8943         public abstract System.Security.Principal.IPrincipal User { get; }
8944         public abstract System.Net.WebSockets.WebSocket WebSocket { get; }
8945     }
8946     public enum WebSocketError
8947     {
8948         ConnectionClosedPrematurely = 8,
8949         Faulted = 2,
8950         HeaderError = 7,
8951         InvalidMessageType = 1,
8952         InvalidState = 9,
8953         NativeError = 3,
8954         NotAWebSocket = 4,
8955         Success = 0,
8956         UnsupportedProtocol = 6,
8957         UnsupportedVersion = 5,
8958     }
8959     [System.SerializableAttribute]
8960     public sealed partial class WebSocketException : System.ComponentModel.Win32Exception
8961     {
WebSocketException()8962         public WebSocketException() { }
WebSocketException(int nativeError)8963         public WebSocketException(int nativeError) { }
WebSocketException(int nativeError, System.Exception innerException)8964         public WebSocketException(int nativeError, System.Exception innerException) { }
WebSocketException(int nativeError, string message)8965         public WebSocketException(int nativeError, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error)8966         public WebSocketException(System.Net.WebSockets.WebSocketError error) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, System.Exception innerException)8967         public WebSocketException(System.Net.WebSockets.WebSocketError error, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError)8968         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, System.Exception innerException)8969         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message)8970         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, System.Exception innerException)8971         public WebSocketException(System.Net.WebSockets.WebSocketError error, int nativeError, string message, System.Exception innerException) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, string message)8972         public WebSocketException(System.Net.WebSockets.WebSocketError error, string message) { }
WebSocketException(System.Net.WebSockets.WebSocketError error, string message, System.Exception innerException)8973         public WebSocketException(System.Net.WebSockets.WebSocketError error, string message, System.Exception innerException) { }
WebSocketException(string message)8974         public WebSocketException(string message) { }
WebSocketException(string message, System.Exception innerException)8975         public WebSocketException(string message, System.Exception innerException) { }
8976         public override int ErrorCode { get { throw null; } }
8977         public System.Net.WebSockets.WebSocketError WebSocketErrorCode { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)8978         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
8979     }
8980     public enum WebSocketMessageType
8981     {
8982         Binary = 1,
8983         Close = 2,
8984         Text = 0,
8985     }
8986     public partial class WebSocketReceiveResult
8987     {
WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage)8988         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)8989         public WebSocketReceiveResult(int count, System.Net.WebSockets.WebSocketMessageType messageType, bool endOfMessage, System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> closeStatus, string closeStatusDescription) { }
8990         public System.Nullable<System.Net.WebSockets.WebSocketCloseStatus> CloseStatus { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8991         public string CloseStatusDescription { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8992         public int Count { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8993         public bool EndOfMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8994         public System.Net.WebSockets.WebSocketMessageType MessageType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
8995     }
8996     public enum WebSocketState
8997     {
8998         Aborted = 6,
8999         Closed = 5,
9000         CloseReceived = 4,
9001         CloseSent = 3,
9002         Connecting = 1,
9003         None = 0,
9004         Open = 2,
9005     }
9006 }
9007 namespace System.Runtime.InteropServices
9008 {
9009     [System.AttributeUsageAttribute((System.AttributeTargets)(2048))]
9010     public sealed partial class DefaultParameterValueAttribute : System.Attribute
9011     {
DefaultParameterValueAttribute(object value)9012         public DefaultParameterValueAttribute(object value) { }
9013         public object Value { get { throw null; } }
9014     }
9015     public sealed partial class HandleCollector
9016     {
HandleCollector(string name, int initialThreshold)9017         public HandleCollector(string name, int initialThreshold) { }
HandleCollector(string name, int initialThreshold, int maximumThreshold)9018         public HandleCollector(string name, int initialThreshold, int maximumThreshold) { }
9019         public int Count { get { throw null; } }
9020         public int InitialThreshold { get { throw null; } }
9021         public int MaximumThreshold { get { throw null; } }
9022         public string Name { get { throw null; } }
Add()9023         public void Add() { }
Remove()9024         public void Remove() { }
9025     }
9026 }
9027 namespace System.Runtime.InteropServices.ComTypes
9028 {
9029     [System.FlagsAttribute]
9030     public enum ADVF
9031     {
9032         ADVFCACHE_FORCEBUILTIN = 16,
9033         ADVFCACHE_NOHANDLER = 8,
9034         ADVFCACHE_ONSAVE = 32,
9035         ADVF_DATAONSTOP = 64,
9036         ADVF_NODATA = 1,
9037         ADVF_ONLYONCE = 4,
9038         ADVF_PRIMEFIRST = 2,
9039     }
9040     public enum DATADIR
9041     {
9042         DATADIR_GET = 1,
9043         DATADIR_SET = 2,
9044     }
9045     [System.FlagsAttribute]
9046     public enum DVASPECT
9047     {
9048         DVASPECT_CONTENT = 1,
9049         DVASPECT_DOCPRINT = 8,
9050         DVASPECT_ICON = 4,
9051         DVASPECT_THUMBNAIL = 2,
9052     }
9053     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
9054     public partial struct FORMATETC
9055     {
9056         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U2)]
9057         public short cfFormat;
9058         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U4)]
9059         public System.Runtime.InteropServices.ComTypes.DVASPECT dwAspect;
9060         public int lindex;
9061         public System.IntPtr ptd;
9062         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.U4)]
9063         public System.Runtime.InteropServices.ComTypes.TYMED tymed;
9064     }
9065     [System.Runtime.InteropServices.GuidAttribute("0000010F-0000-0000-C000-000000000046")]
9066     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
9067     public partial interface IAdviseSink
9068     {
OnClose()9069         [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)9070         [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)9071         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnRename(System.Runtime.InteropServices.ComTypes.IMoniker moniker);
OnSave()9072         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnSave();
OnViewChange(int aspect, int index)9073         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void OnViewChange(int aspect, int index);
9074     }
9075     [System.Runtime.InteropServices.GuidAttribute("0000010e-0000-0000-C000-000000000046")]
9076     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
9077     public partial interface IDataObject
9078     {
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)9079         [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)9080         void DUnadvise(int connection);
EnumDAdvise(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA enumAdvise)9081         [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)9082         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)9083         [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)9084         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)9085         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)9086         [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)9087         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);
9088     }
9089     [System.Runtime.InteropServices.GuidAttribute("00000103-0000-0000-C000-000000000046")]
9090     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
9091     public partial interface IEnumFORMATETC
9092     {
Clone(out System.Runtime.InteropServices.ComTypes.IEnumFORMATETC newEnum)9093         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)9094         [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()9095         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset();
Skip(int celt)9096         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt);
9097     }
9098     [System.Runtime.InteropServices.GuidAttribute("00000103-0000-0000-C000-000000000046")]
9099     [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))]
9100     public partial interface IEnumSTATDATA
9101     {
Clone(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA newEnum)9102         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)9103         [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()9104         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset();
Skip(int celt)9105         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt);
9106     }
9107     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
9108     public partial struct STATDATA
9109     {
9110         public System.Runtime.InteropServices.ComTypes.ADVF advf;
9111         public System.Runtime.InteropServices.ComTypes.IAdviseSink advSink;
9112         public int connection;
9113         public System.Runtime.InteropServices.ComTypes.FORMATETC formatetc;
9114     }
9115     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
9116     public partial struct STGMEDIUM
9117     {
9118         [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]
9119         public object pUnkForRelease;
9120         public System.Runtime.InteropServices.ComTypes.TYMED tymed;
9121         public System.IntPtr unionmember;
9122     }
9123     [System.FlagsAttribute]
9124     public enum TYMED
9125     {
9126         TYMED_ENHMF = 64,
9127         TYMED_FILE = 2,
9128         TYMED_GDI = 16,
9129         TYMED_HGLOBAL = 1,
9130         TYMED_ISTORAGE = 8,
9131         TYMED_ISTREAM = 4,
9132         TYMED_MFPICT = 32,
9133         TYMED_NULL = 0,
9134     }
9135 }
9136 namespace System.Runtime.Versioning
9137 {
9138     [System.SerializableAttribute]
9139     public sealed partial class FrameworkName : System.IEquatable<System.Runtime.Versioning.FrameworkName>
9140     {
FrameworkName(string frameworkName)9141         public FrameworkName(string frameworkName) { }
FrameworkName(string identifier, System.Version version)9142         public FrameworkName(string identifier, System.Version version) { }
FrameworkName(string identifier, System.Version version, string profile)9143         public FrameworkName(string identifier, System.Version version, string profile) { }
9144         public string FullName { get { throw null; } }
9145         public string Identifier { get { throw null; } }
9146         public string Profile { get { throw null; } }
9147         public System.Version Version { get { throw null; } }
Equals(object obj)9148         public override bool Equals(object obj) { throw null; }
Equals(System.Runtime.Versioning.FrameworkName other)9149         public bool Equals(System.Runtime.Versioning.FrameworkName other) { throw null; }
GetHashCode()9150         public override int GetHashCode() { throw null; }
operator ==(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right)9151         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)9152         public static bool operator !=(System.Runtime.Versioning.FrameworkName left, System.Runtime.Versioning.FrameworkName right) { throw null; }
ToString()9153         public override string ToString() { throw null; }
9154     }
9155 }
9156 namespace System.Security.AccessControl
9157 {
9158     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9159     public sealed partial class SemaphoreAccessRule : System.Security.AccessControl.AccessRule
9160     {
SemaphoreAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AccessControlType type)9161         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)9162         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)) { }
9163         public System.Security.AccessControl.SemaphoreRights SemaphoreRights { get { throw null; } }
9164     }
9165     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9166     public sealed partial class SemaphoreAuditRule : System.Security.AccessControl.AuditRule
9167     {
SemaphoreAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.SemaphoreRights eventRights, System.Security.AccessControl.AuditFlags flags)9168         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)) { }
9169         public System.Security.AccessControl.SemaphoreRights SemaphoreRights { get { throw null; } }
9170     }
9171     [System.FlagsAttribute]
9172     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9173     public enum SemaphoreRights
9174     {
9175         ChangePermissions = 262144,
9176         Delete = 65536,
9177         FullControl = 2031619,
9178         Modify = 2,
9179         ReadPermissions = 131072,
9180         Synchronize = 1048576,
9181         TakeOwnership = 524288,
9182     }
9183     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
9184     public sealed partial class SemaphoreSecurity : System.Security.AccessControl.NativeObjectSecurity
9185     {
SemaphoreSecurity()9186         public SemaphoreSecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { }
SemaphoreSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections)9187         public SemaphoreSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { }
9188         public override System.Type AccessRightType { get { throw null; } }
9189         public override System.Type AccessRuleType { get { throw null; } }
9190         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)9191         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)9192         public void AddAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
AddAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)9193         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)9194         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)9195         public bool RemoveAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { throw null; }
RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule rule)9196         public void RemoveAccessRuleAll(System.Security.AccessControl.SemaphoreAccessRule rule) { }
RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule rule)9197         public void RemoveAccessRuleSpecific(System.Security.AccessControl.SemaphoreAccessRule rule) { }
RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)9198         public bool RemoveAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { throw null; }
RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule rule)9199         public void RemoveAuditRuleAll(System.Security.AccessControl.SemaphoreAuditRule rule) { }
RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule rule)9200         public void RemoveAuditRuleSpecific(System.Security.AccessControl.SemaphoreAuditRule rule) { }
ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)9201         public void ResetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule)9202         public void SetAccessRule(System.Security.AccessControl.SemaphoreAccessRule rule) { }
SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule)9203         public void SetAuditRule(System.Security.AccessControl.SemaphoreAuditRule rule) { }
9204     }
9205 }
9206 namespace System.Security.Authentication
9207 {
9208     [System.SerializableAttribute]
9209     public partial class AuthenticationException : System.SystemException
9210     {
AuthenticationException()9211         public AuthenticationException() { }
AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9212         protected AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
AuthenticationException(string message)9213         public AuthenticationException(string message) { }
AuthenticationException(string message, System.Exception innerException)9214         public AuthenticationException(string message, System.Exception innerException) { }
9215     }
9216     public enum CipherAlgorithmType
9217     {
9218         Aes = 26129,
9219         Aes128 = 26126,
9220         Aes192 = 26127,
9221         Aes256 = 26128,
9222         Des = 26113,
9223         None = 0,
9224         Null = 24576,
9225         Rc2 = 26114,
9226         Rc4 = 26625,
9227         TripleDes = 26115,
9228     }
9229     public enum ExchangeAlgorithmType
9230     {
9231         DiffieHellman = 43522,
9232         None = 0,
9233         RsaKeyX = 41984,
9234         RsaSign = 9216,
9235     }
9236     public enum HashAlgorithmType
9237     {
9238         Md5 = 32771,
9239         None = 0,
9240         Sha1 = 32772,
9241     }
9242     [System.SerializableAttribute]
9243     public partial class InvalidCredentialException : System.Security.Authentication.AuthenticationException
9244     {
InvalidCredentialException()9245         public InvalidCredentialException() { }
InvalidCredentialException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)9246         protected InvalidCredentialException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { }
InvalidCredentialException(string message)9247         public InvalidCredentialException(string message) { }
InvalidCredentialException(string message, System.Exception innerException)9248         public InvalidCredentialException(string message, System.Exception innerException) { }
9249     }
9250     [System.FlagsAttribute]
9251     public enum SslProtocols
9252     {
9253         Default = 240,
9254         None = 0,
9255         Ssl2 = 12,
9256         Ssl3 = 48,
9257         Tls = 192,
9258         [System.MonoTODOAttribute("unsupported")]
9259         Tls11 = 768,
9260         [System.MonoTODOAttribute("unsupported")]
9261         Tls12 = 3072,
9262     }
9263 }
9264 namespace System.Security.Authentication.ExtendedProtection
9265 {
9266     public abstract partial class ChannelBinding : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
9267     {
ChannelBinding()9268         protected ChannelBinding() : base (default(bool)) { }
ChannelBinding(bool ownsHandle)9269         protected ChannelBinding(bool ownsHandle) : base (default(bool)) { }
9270         public abstract int Size { get; }
9271     }
9272     public enum ChannelBindingKind
9273     {
9274         Endpoint = 26,
9275         Unique = 25,
9276         Unknown = 0,
9277     }
9278     [System.ComponentModel.TypeConverterAttribute(typeof(System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicyTypeConverter))]
9279     [System.MonoTODOAttribute]
9280     [System.SerializableAttribute]
9281     public partial class ExtendedProtectionPolicy : System.Runtime.Serialization.ISerializable
9282     {
ExtendedProtectionPolicy(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)9283         protected ExtendedProtectionPolicy(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
9284         [System.MonoTODOAttribute("Not implemented.")]
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement)9285         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement) { }
ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ChannelBinding customChannelBinding)9286         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)9287         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)9288         public ExtendedProtectionPolicy(System.Security.Authentication.ExtendedProtection.PolicyEnforcement policyEnforcement, System.Security.Authentication.ExtendedProtection.ProtectionScenario protectionScenario, System.Security.Authentication.ExtendedProtection.ServiceNameCollection customServiceNames) { }
9289         public System.Security.Authentication.ExtendedProtection.ChannelBinding CustomChannelBinding { get { throw null; } }
9290         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { throw null; } }
9291         public static bool OSSupportsExtendedProtection { get { throw null; } }
9292         public System.Security.Authentication.ExtendedProtection.PolicyEnforcement PolicyEnforcement { get { throw null; } }
9293         public System.Security.Authentication.ExtendedProtection.ProtectionScenario ProtectionScenario { get { throw null; } }
9294         [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)9295         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
9296         [System.MonoTODOAttribute]
ToString()9297         public override string ToString() { throw null; }
9298     }
9299     [System.MonoTODOAttribute]
9300     public partial class ExtendedProtectionPolicyTypeConverter : System.ComponentModel.TypeConverter
9301     {
ExtendedProtectionPolicyTypeConverter()9302         public ExtendedProtectionPolicyTypeConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)9303         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)9304         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
9305     }
9306     public enum PolicyEnforcement
9307     {
9308         Always = 2,
9309         Never = 0,
9310         WhenSupported = 1,
9311     }
9312     public enum ProtectionScenario
9313     {
9314         TransportSelected = 0,
9315         TrustedProxy = 1,
9316     }
9317     [System.SerializableAttribute]
9318     public partial class ServiceNameCollection : System.Collections.ReadOnlyCollectionBase
9319     {
ServiceNameCollection(System.Collections.ICollection items)9320         public ServiceNameCollection(System.Collections.ICollection items) { }
Contains(string searchServiceName)9321         public bool Contains(string searchServiceName) { throw null; }
Merge(System.Collections.IEnumerable serviceNames)9322         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection Merge(System.Collections.IEnumerable serviceNames) { throw null; }
Merge(string serviceName)9323         public System.Security.Authentication.ExtendedProtection.ServiceNameCollection Merge(string serviceName) { throw null; }
9324     }
9325     public partial class TokenBinding
9326     {
TokenBinding()9327         internal TokenBinding() { }
9328         public System.Security.Authentication.ExtendedProtection.TokenBindingType BindingType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetRawTokenBindingId()9329         public byte[] GetRawTokenBindingId() { throw null; }
9330     }
9331     public enum TokenBindingType
9332     {
9333         Provided = 0,
9334         Referred = 1,
9335     }
9336 }
9337 namespace System.Security.Cryptography
9338 {
9339     public partial class AsnEncodedData
9340     {
AsnEncodedData()9341         protected AsnEncodedData() { }
AsnEncodedData(byte[] rawData)9342         public AsnEncodedData(byte[] rawData) { }
AsnEncodedData(System.Security.Cryptography.AsnEncodedData asnEncodedData)9343         public AsnEncodedData(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
AsnEncodedData(System.Security.Cryptography.Oid oid, byte[] rawData)9344         public AsnEncodedData(System.Security.Cryptography.Oid oid, byte[] rawData) { }
AsnEncodedData(string oid, byte[] rawData)9345         public AsnEncodedData(string oid, byte[] rawData) { }
9346         public System.Security.Cryptography.Oid Oid { get { throw null; } set { } }
9347         public byte[] RawData { get { throw null; } set { } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)9348         public virtual void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
Format(bool multiLine)9349         public virtual string Format(bool multiLine) { throw null; }
9350     }
9351     public sealed partial class AsnEncodedDataCollection : System.Collections.ICollection, System.Collections.IEnumerable
9352     {
AsnEncodedDataCollection()9353         public AsnEncodedDataCollection() { }
AsnEncodedDataCollection(System.Security.Cryptography.AsnEncodedData asnEncodedData)9354         public AsnEncodedDataCollection(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
9355         public int Count { get { throw null; } }
9356         public bool IsSynchronized { get { throw null; } }
9357         public System.Security.Cryptography.AsnEncodedData this[int index] { get { throw null; } }
9358         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.AsnEncodedData asnEncodedData)9359         public int Add(System.Security.Cryptography.AsnEncodedData asnEncodedData) { throw null; }
CopyTo(System.Security.Cryptography.AsnEncodedData[] array, int index)9360         public void CopyTo(System.Security.Cryptography.AsnEncodedData[] array, int index) { }
GetEnumerator()9361         public System.Security.Cryptography.AsnEncodedDataEnumerator GetEnumerator() { throw null; }
Remove(System.Security.Cryptography.AsnEncodedData asnEncodedData)9362         public void Remove(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)9363         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()9364         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
9365     }
9366     public sealed partial class AsnEncodedDataEnumerator : System.Collections.IEnumerator
9367     {
AsnEncodedDataEnumerator()9368         internal AsnEncodedDataEnumerator() { }
9369         public System.Security.Cryptography.AsnEncodedData Current { get { throw null; } }
9370         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()9371         public bool MoveNext() { throw null; }
Reset()9372         public void Reset() { }
9373     }
9374     public sealed partial class Oid
9375     {
Oid()9376         public Oid() { }
Oid(System.Security.Cryptography.Oid oid)9377         public Oid(System.Security.Cryptography.Oid oid) { }
Oid(string oid)9378         public Oid(string oid) { }
Oid(string value, string friendlyName)9379         public Oid(string value, string friendlyName) { }
9380         public string FriendlyName { get { throw null; } set { } }
9381         public string Value { get { throw null; } set { } }
FromFriendlyName(string friendlyName, System.Security.Cryptography.OidGroup group)9382         public static System.Security.Cryptography.Oid FromFriendlyName(string friendlyName, System.Security.Cryptography.OidGroup group) { throw null; }
FromOidValue(string oidValue, System.Security.Cryptography.OidGroup group)9383         public static System.Security.Cryptography.Oid FromOidValue(string oidValue, System.Security.Cryptography.OidGroup group) { throw null; }
9384     }
9385     public sealed partial class OidCollection : System.Collections.ICollection, System.Collections.IEnumerable
9386     {
OidCollection()9387         public OidCollection() { }
9388         public int Count { get { throw null; } }
9389         public bool IsSynchronized { get { throw null; } }
9390         public System.Security.Cryptography.Oid this[int index] { get { throw null; } }
9391         public System.Security.Cryptography.Oid this[string oid] { get { throw null; } }
9392         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.Oid oid)9393         public int Add(System.Security.Cryptography.Oid oid) { throw null; }
CopyTo(System.Security.Cryptography.Oid[] array, int index)9394         public void CopyTo(System.Security.Cryptography.Oid[] array, int index) { }
GetEnumerator()9395         public System.Security.Cryptography.OidEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)9396         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()9397         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
9398     }
9399     public sealed partial class OidEnumerator : System.Collections.IEnumerator
9400     {
OidEnumerator()9401         internal OidEnumerator() { }
9402         public System.Security.Cryptography.Oid Current { get { throw null; } }
9403         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()9404         public bool MoveNext() { throw null; }
Reset()9405         public void Reset() { }
9406     }
9407     public enum OidGroup
9408     {
9409         All = 0,
9410         Attribute = 5,
9411         EncryptionAlgorithm = 2,
9412         EnhancedKeyUsage = 7,
9413         ExtensionOrAttribute = 6,
9414         HashAlgorithm = 1,
9415         KeyDerivationFunction = 10,
9416         Policy = 8,
9417         PublicKeyAlgorithm = 3,
9418         SignatureAlgorithm = 4,
9419         Template = 9,
9420     }
9421 }
9422 namespace System.Security.Cryptography.X509Certificates
9423 {
9424     [System.FlagsAttribute]
9425     public enum OpenFlags
9426     {
9427         IncludeArchived = 8,
9428         MaxAllowed = 2,
9429         OpenExistingOnly = 4,
9430         ReadOnly = 0,
9431         ReadWrite = 1,
9432     }
9433     public sealed partial class PublicKey
9434     {
PublicKey(System.Security.Cryptography.Oid oid, System.Security.Cryptography.AsnEncodedData parameters, System.Security.Cryptography.AsnEncodedData keyValue)9435         public PublicKey(System.Security.Cryptography.Oid oid, System.Security.Cryptography.AsnEncodedData parameters, System.Security.Cryptography.AsnEncodedData keyValue) { }
9436         public System.Security.Cryptography.AsnEncodedData EncodedKeyValue { get { throw null; } }
9437         public System.Security.Cryptography.AsnEncodedData EncodedParameters { get { throw null; } }
9438         public System.Security.Cryptography.AsymmetricAlgorithm Key { get { throw null; } }
9439         public System.Security.Cryptography.Oid Oid { get { throw null; } }
9440     }
9441     public enum StoreLocation
9442     {
9443         CurrentUser = 1,
9444         LocalMachine = 2,
9445     }
9446     public enum StoreName
9447     {
9448         AddressBook = 1,
9449         AuthRoot = 2,
9450         CertificateAuthority = 3,
9451         Disallowed = 4,
9452         My = 5,
9453         Root = 6,
9454         TrustedPeople = 7,
9455         TrustedPublisher = 8,
9456     }
9457     [System.MonoTODOAttribute("Some X500DistinguishedNameFlags options aren't supported, like DoNotUsePlusSign, DoNotUseQuotes and ForceUTF8Encoding")]
9458     public sealed partial class X500DistinguishedName : System.Security.Cryptography.AsnEncodedData
9459     {
X500DistinguishedName(byte[] encodedDistinguishedName)9460         public X500DistinguishedName(byte[] encodedDistinguishedName) { }
X500DistinguishedName(System.Security.Cryptography.AsnEncodedData encodedDistinguishedName)9461         public X500DistinguishedName(System.Security.Cryptography.AsnEncodedData encodedDistinguishedName) { }
X500DistinguishedName(System.Security.Cryptography.X509Certificates.X500DistinguishedName distinguishedName)9462         public X500DistinguishedName(System.Security.Cryptography.X509Certificates.X500DistinguishedName distinguishedName) { }
X500DistinguishedName(string distinguishedName)9463         public X500DistinguishedName(string distinguishedName) { }
X500DistinguishedName(string distinguishedName, System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag)9464         public X500DistinguishedName(string distinguishedName, System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag) { }
9465         public string Name { get { throw null; } }
Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag)9466         public string Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags flag) { throw null; }
Format(bool multiLine)9467         public override string Format(bool multiLine) { throw null; }
9468     }
9469     [System.FlagsAttribute]
9470     public enum X500DistinguishedNameFlags
9471     {
9472         DoNotUsePlusSign = 32,
9473         DoNotUseQuotes = 64,
9474         ForceUTF8Encoding = 16384,
9475         None = 0,
9476         Reversed = 1,
9477         UseCommas = 128,
9478         UseNewLines = 256,
9479         UseSemicolons = 16,
9480         UseT61Encoding = 8192,
9481         UseUTF8Encoding = 4096,
9482     }
9483     public sealed partial class X509BasicConstraintsExtension : System.Security.Cryptography.X509Certificates.X509Extension
9484     {
X509BasicConstraintsExtension()9485         public X509BasicConstraintsExtension() { }
X509BasicConstraintsExtension(bool certificateAuthority, bool hasPathLengthConstraint, int pathLengthConstraint, bool critical)9486         public X509BasicConstraintsExtension(bool certificateAuthority, bool hasPathLengthConstraint, int pathLengthConstraint, bool critical) { }
X509BasicConstraintsExtension(System.Security.Cryptography.AsnEncodedData encodedBasicConstraints, bool critical)9487         public X509BasicConstraintsExtension(System.Security.Cryptography.AsnEncodedData encodedBasicConstraints, bool critical) { }
9488         public bool CertificateAuthority { get { throw null; } }
9489         public bool HasPathLengthConstraint { get { throw null; } }
9490         public int PathLengthConstraint { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)9491         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
9492     }
9493     [System.SerializableAttribute]
9494     public partial class X509Certificate2 : System.Security.Cryptography.X509Certificates.X509Certificate
9495     {
X509Certificate2()9496         public X509Certificate2() { }
X509Certificate2(byte[] rawData)9497         public X509Certificate2(byte[] rawData) { }
X509Certificate2(byte[] rawData, System.Security.SecureString password)9498         public X509Certificate2(byte[] rawData, System.Security.SecureString password) { }
X509Certificate2(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9499         public X509Certificate2(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(byte[] rawData, string password)9500         public X509Certificate2(byte[] rawData, string password) { }
X509Certificate2(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9501         public X509Certificate2(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(System.IntPtr handle)9502         public X509Certificate2(System.IntPtr handle) { }
X509Certificate2(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)9503         protected X509Certificate2(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
X509Certificate2(System.Security.Cryptography.X509Certificates.X509Certificate certificate)9504         public X509Certificate2(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { }
X509Certificate2(string fileName)9505         public X509Certificate2(string fileName) { }
X509Certificate2(string fileName, System.Security.SecureString password)9506         public X509Certificate2(string fileName, System.Security.SecureString password) { }
X509Certificate2(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9507         public X509Certificate2(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
X509Certificate2(string fileName, string password)9508         public X509Certificate2(string fileName, string password) { }
X509Certificate2(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9509         public X509Certificate2(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
9510         public bool Archived { get { throw null; } set { } }
9511         public System.Security.Cryptography.X509Certificates.X509ExtensionCollection Extensions { get { throw null; } }
9512         public string FriendlyName { get { throw null; } set { } }
9513         public bool HasPrivateKey { get { throw null; } }
9514         public System.Security.Cryptography.X509Certificates.X500DistinguishedName IssuerName { get { throw null; } }
9515         public System.DateTime NotAfter { get { throw null; } }
9516         public System.DateTime NotBefore { get { throw null; } }
9517         public System.Security.Cryptography.AsymmetricAlgorithm PrivateKey { get { throw null; } set { } }
9518         public System.Security.Cryptography.X509Certificates.PublicKey PublicKey { get { throw null; } }
9519         public byte[] RawData { get { throw null; } }
9520         public string SerialNumber { get { throw null; } }
9521         public System.Security.Cryptography.Oid SignatureAlgorithm { get { throw null; } }
9522         public System.Security.Cryptography.X509Certificates.X500DistinguishedName SubjectName { get { throw null; } }
9523         public string Thumbprint { get { throw null; } }
9524         public int Version { get { throw null; } }
9525         [System.MonoTODOAttribute("X509ContentType.SerializedCert is not supported")]
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password)9526         public override byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password) { throw null; }
9527         [System.MonoTODOAttribute("Detection limited to Cert, Pfx, Pkcs12, Pkcs7 and Unknown")]
GetCertContentType(byte[] rawData)9528         public static System.Security.Cryptography.X509Certificates.X509ContentType GetCertContentType(byte[] rawData) { throw null; }
9529         [System.MonoTODOAttribute("Detection limited to Cert, Pfx, Pkcs12 and Unknown")]
GetCertContentType(string fileName)9530         public static System.Security.Cryptography.X509Certificates.X509ContentType GetCertContentType(string fileName) { throw null; }
9531         [System.MonoTODOAttribute("always return String.Empty for UpnName, DnsFromAlternativeName and UrlName")]
GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType nameType, bool forIssuer)9532         public string GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType nameType, bool forIssuer) { throw null; }
Import(byte[] rawData)9533         public override void Import(byte[] rawData) { }
9534         [System.MonoTODOAttribute("SecureString is incomplete")]
Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9535         public override void Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
9536         [System.MonoTODOAttribute("missing KeyStorageFlags support")]
Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9537         public override void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Import(string fileName)9538         public override void Import(string fileName) { }
9539         [System.MonoTODOAttribute("SecureString is incomplete")]
Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9540         public override void Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
9541         [System.MonoTODOAttribute("missing KeyStorageFlags support")]
Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9542         public override void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Reset()9543         public override void Reset() { }
ToString()9544         public override string ToString() { throw null; }
ToString(bool verbose)9545         public override string ToString(bool verbose) { throw null; }
9546         [System.MonoTODOAttribute("by default this depends on the incomplete X509Chain")]
Verify()9547         public bool Verify() { throw null; }
9548     }
9549     public partial class X509Certificate2Collection : System.Security.Cryptography.X509Certificates.X509CertificateCollection
9550     {
X509Certificate2Collection()9551         public X509Certificate2Collection() { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9552         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)9553         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)9554         public X509Certificate2Collection(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
9555         public new System.Security.Cryptography.X509Certificates.X509Certificate2 this[int index] { get { throw null; } set { } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9556         public int Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
9557         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)9558         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
9559         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)9560         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
Contains(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9561         public bool Contains(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
9562         [System.MonoTODOAttribute("only support X509ContentType.Cert")]
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType)9563         public byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType) { throw null; }
9564         [System.MonoTODOAttribute("only support X509ContentType.Cert")]
Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password)9565         public byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password) { throw null; }
9566         [System.MonoTODOAttribute("Does not support X509FindType.FindByTemplateName, FindByApplicationPolicy and FindByCertificatePolicy")]
Find(System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue, bool validOnly)9567         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection Find(System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue, bool validOnly) { throw null; }
GetEnumerator()9568         public new System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator GetEnumerator() { throw null; }
9569         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(byte[] rawData)9570         public void Import(byte[] rawData) { }
9571         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9572         public void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
9573         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(string fileName)9574         public void Import(string fileName) { }
9575         [System.MonoTODOAttribute("same limitations as X509Certificate2.Import")]
Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags)9576         public void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { }
Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9577         public void Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9578         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
9579         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)9580         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
9581         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates)9582         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates) { }
9583     }
9584     public sealed partial class X509Certificate2Enumerator : System.Collections.IEnumerator
9585     {
X509Certificate2Enumerator()9586         internal X509Certificate2Enumerator() { }
9587         public System.Security.Cryptography.X509Certificates.X509Certificate2 Current { get { throw null; } }
9588         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()9589         public bool MoveNext() { throw null; }
Reset()9590         public void Reset() { }
System.Collections.IEnumerator.MoveNext()9591         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()9592         void System.Collections.IEnumerator.Reset() { }
9593     }
9594     [System.SerializableAttribute]
9595     public partial class X509CertificateCollection : System.Collections.CollectionBase
9596     {
X509CertificateCollection()9597         public X509CertificateCollection() { }
X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509CertificateCollection value)9598         public X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509CertificateCollection value) { }
X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509Certificate[] value)9599         public X509CertificateCollection(System.Security.Cryptography.X509Certificates.X509Certificate[] value) { }
9600         public System.Security.Cryptography.X509Certificates.X509Certificate this[int index] { get { throw null; } set { } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate value)9601         public int Add(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection value)9602         public void AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection value) { }
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[] value)9603         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[] value) { }
Contains(System.Security.Cryptography.X509Certificates.X509Certificate value)9604         public bool Contains(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[] array, int index)9605         public void CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[] array, int index) { }
GetEnumerator()9606         public new System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator GetEnumerator() { throw null; }
GetHashCode()9607         public override int GetHashCode() { throw null; }
IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate value)9608         public int IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate value) { throw null; }
Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate value)9609         public void Insert(int index, System.Security.Cryptography.X509Certificates.X509Certificate value) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate value)9610         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate value) { }
9611         public partial class X509CertificateEnumerator : System.Collections.IEnumerator
9612         {
X509CertificateEnumerator(System.Security.Cryptography.X509Certificates.X509CertificateCollection mappings)9613             public X509CertificateEnumerator(System.Security.Cryptography.X509Certificates.X509CertificateCollection mappings) { }
9614             public System.Security.Cryptography.X509Certificates.X509Certificate Current { get { throw null; } }
9615             object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()9616             public bool MoveNext() { throw null; }
Reset()9617             public void Reset() { }
System.Collections.IEnumerator.MoveNext()9618             bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()9619             void System.Collections.IEnumerator.Reset() { }
9620         }
9621     }
9622     public partial class X509Chain : System.IDisposable
9623     {
X509Chain()9624         public X509Chain() { }
X509Chain(bool useMachineContext)9625         public X509Chain(bool useMachineContext) { }
9626         [System.MonoTODOAttribute("Mono's X509Chain is fully managed. All handles are invalid.")]
X509Chain(System.IntPtr chainContext)9627         public X509Chain(System.IntPtr chainContext) { }
9628         [System.MonoTODOAttribute("Mono's X509Chain is fully managed. Always returns IntPtr.Zero.")]
9629         public System.IntPtr ChainContext { get { throw null; } }
9630         public System.Security.Cryptography.X509Certificates.X509ChainElementCollection ChainElements { get { throw null; } }
9631         public System.Security.Cryptography.X509Certificates.X509ChainPolicy ChainPolicy { get { throw null; } set { } }
9632         public System.Security.Cryptography.X509Certificates.X509ChainStatus[] ChainStatus { get { throw null; } }
9633         public Microsoft.Win32.SafeHandles.SafeX509ChainHandle SafeHandle { get { throw null; } }
9634         [System.MonoTODOAttribute("Not totally RFC3280 compliant, but neither is MS implementation...")]
Build(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9635         public bool Build(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { throw null; }
Create()9636         public static System.Security.Cryptography.X509Certificates.X509Chain Create() { throw null; }
Dispose()9637         public void Dispose() { }
Dispose(bool disposing)9638         protected virtual void Dispose(bool disposing) { }
~X509Chain()9639         ~X509Chain() { }
Reset()9640         public void Reset() { }
9641     }
9642     public partial class X509ChainElement
9643     {
X509ChainElement()9644         internal X509ChainElement() { }
9645         public System.Security.Cryptography.X509Certificates.X509Certificate2 Certificate { get { throw null; } }
9646         public System.Security.Cryptography.X509Certificates.X509ChainStatus[] ChainElementStatus { get { throw null; } }
9647         public string Information { get { throw null; } }
9648     }
9649     public sealed partial class X509ChainElementCollection : System.Collections.ICollection, System.Collections.IEnumerable
9650     {
X509ChainElementCollection()9651         internal X509ChainElementCollection() { }
9652         public int Count { get { throw null; } }
9653         public bool IsSynchronized { get { throw null; } }
9654         public System.Security.Cryptography.X509Certificates.X509ChainElement this[int index] { get { throw null; } }
9655         public object SyncRoot { get { throw null; } }
CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[] array, int index)9656         public void CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[] array, int index) { }
GetEnumerator()9657         public System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)9658         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()9659         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
9660     }
9661     public sealed partial class X509ChainElementEnumerator : System.Collections.IEnumerator
9662     {
X509ChainElementEnumerator()9663         internal X509ChainElementEnumerator() { }
9664         public System.Security.Cryptography.X509Certificates.X509ChainElement Current { get { throw null; } }
9665         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()9666         public bool MoveNext() { throw null; }
Reset()9667         public void Reset() { }
9668     }
9669     public sealed partial class X509ChainPolicy
9670     {
X509ChainPolicy()9671         public X509ChainPolicy() { }
9672         public System.Security.Cryptography.OidCollection ApplicationPolicy { get { throw null; } }
9673         public System.Security.Cryptography.OidCollection CertificatePolicy { get { throw null; } }
9674         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection ExtraStore { get { throw null; } }
9675         public System.Security.Cryptography.X509Certificates.X509RevocationFlag RevocationFlag { get { throw null; } set { } }
9676         public System.Security.Cryptography.X509Certificates.X509RevocationMode RevocationMode { get { throw null; } set { } }
9677         public System.TimeSpan UrlRetrievalTimeout { get { throw null; } set { } }
9678         public System.Security.Cryptography.X509Certificates.X509VerificationFlags VerificationFlags { get { throw null; } set { } }
9679         public System.DateTime VerificationTime { get { throw null; } set { } }
Reset()9680         public void Reset() { }
9681     }
9682     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
9683     public partial struct X509ChainStatus
9684     {
9685         public System.Security.Cryptography.X509Certificates.X509ChainStatusFlags Status { get { throw null; } set { } }
9686         public string StatusInformation { get { throw null; } set { } }
9687     }
9688     [System.FlagsAttribute]
9689     public enum X509ChainStatusFlags
9690     {
9691         CtlNotSignatureValid = 262144,
9692         CtlNotTimeValid = 131072,
9693         CtlNotValidForUsage = 524288,
9694         Cyclic = 128,
9695         ExplicitDistrust = 67108864,
9696         HasExcludedNameConstraint = 32768,
9697         HasNotDefinedNameConstraint = 8192,
9698         HasNotPermittedNameConstraint = 16384,
9699         HasNotSupportedCriticalExtension = 134217728,
9700         HasNotSupportedNameConstraint = 4096,
9701         HasWeakSignature = 1048576,
9702         InvalidBasicConstraints = 1024,
9703         InvalidExtension = 256,
9704         InvalidNameConstraints = 2048,
9705         InvalidPolicyConstraints = 512,
9706         NoError = 0,
9707         NoIssuanceChainPolicy = 33554432,
9708         NotSignatureValid = 8,
9709         NotTimeNested = 2,
9710         NotTimeValid = 1,
9711         NotValidForUsage = 16,
9712         OfflineRevocation = 16777216,
9713         PartialChain = 65536,
9714         RevocationStatusUnknown = 64,
9715         Revoked = 4,
9716         UntrustedRoot = 32,
9717     }
9718     public sealed partial class X509EnhancedKeyUsageExtension : System.Security.Cryptography.X509Certificates.X509Extension
9719     {
X509EnhancedKeyUsageExtension()9720         public X509EnhancedKeyUsageExtension() { }
X509EnhancedKeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedEnhancedKeyUsages, bool critical)9721         public X509EnhancedKeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedEnhancedKeyUsages, bool critical) { }
X509EnhancedKeyUsageExtension(System.Security.Cryptography.OidCollection enhancedKeyUsages, bool critical)9722         public X509EnhancedKeyUsageExtension(System.Security.Cryptography.OidCollection enhancedKeyUsages, bool critical) { }
9723         public System.Security.Cryptography.OidCollection EnhancedKeyUsages { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)9724         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
9725     }
9726     public partial class X509Extension : System.Security.Cryptography.AsnEncodedData
9727     {
X509Extension()9728         protected X509Extension() { }
X509Extension(System.Security.Cryptography.AsnEncodedData encodedExtension, bool critical)9729         public X509Extension(System.Security.Cryptography.AsnEncodedData encodedExtension, bool critical) { }
X509Extension(System.Security.Cryptography.Oid oid, byte[] rawData, bool critical)9730         public X509Extension(System.Security.Cryptography.Oid oid, byte[] rawData, bool critical) { }
X509Extension(string oid, byte[] rawData, bool critical)9731         public X509Extension(string oid, byte[] rawData, bool critical) { }
9732         public bool Critical { get { throw null; } set { } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)9733         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
9734     }
9735     public sealed partial class X509ExtensionCollection : System.Collections.ICollection, System.Collections.IEnumerable
9736     {
X509ExtensionCollection()9737         public X509ExtensionCollection() { }
9738         public int Count { get { throw null; } }
9739         public bool IsSynchronized { get { throw null; } }
9740         public System.Security.Cryptography.X509Certificates.X509Extension this[int index] { get { throw null; } }
9741         public System.Security.Cryptography.X509Certificates.X509Extension this[string oid] { get { throw null; } }
9742         public object SyncRoot { get { throw null; } }
Add(System.Security.Cryptography.X509Certificates.X509Extension extension)9743         public int Add(System.Security.Cryptography.X509Certificates.X509Extension extension) { throw null; }
CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[] array, int index)9744         public void CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[] array, int index) { }
GetEnumerator()9745         public System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)9746         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()9747         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
9748     }
9749     public sealed partial class X509ExtensionEnumerator : System.Collections.IEnumerator
9750     {
X509ExtensionEnumerator()9751         internal X509ExtensionEnumerator() { }
9752         public System.Security.Cryptography.X509Certificates.X509Extension Current { get { throw null; } }
9753         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()9754         public bool MoveNext() { throw null; }
Reset()9755         public void Reset() { }
9756     }
9757     public enum X509FindType
9758     {
9759         FindByApplicationPolicy = 10,
9760         FindByCertificatePolicy = 11,
9761         FindByExtension = 12,
9762         FindByIssuerDistinguishedName = 4,
9763         FindByIssuerName = 3,
9764         FindByKeyUsage = 13,
9765         FindBySerialNumber = 5,
9766         FindBySubjectDistinguishedName = 2,
9767         FindBySubjectKeyIdentifier = 14,
9768         FindBySubjectName = 1,
9769         FindByTemplateName = 9,
9770         FindByThumbprint = 0,
9771         FindByTimeExpired = 8,
9772         FindByTimeNotYetValid = 7,
9773         FindByTimeValid = 6,
9774     }
9775     public enum X509IncludeOption
9776     {
9777         EndCertOnly = 2,
9778         ExcludeRoot = 1,
9779         None = 0,
9780         WholeChain = 3,
9781     }
9782     public sealed partial class X509KeyUsageExtension : System.Security.Cryptography.X509Certificates.X509Extension
9783     {
X509KeyUsageExtension()9784         public X509KeyUsageExtension() { }
X509KeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedKeyUsage, bool critical)9785         public X509KeyUsageExtension(System.Security.Cryptography.AsnEncodedData encodedKeyUsage, bool critical) { }
X509KeyUsageExtension(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags keyUsages, bool critical)9786         public X509KeyUsageExtension(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags keyUsages, bool critical) { }
9787         public System.Security.Cryptography.X509Certificates.X509KeyUsageFlags KeyUsages { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)9788         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
9789     }
9790     [System.FlagsAttribute]
9791     public enum X509KeyUsageFlags
9792     {
9793         CrlSign = 2,
9794         DataEncipherment = 16,
9795         DecipherOnly = 32768,
9796         DigitalSignature = 128,
9797         EncipherOnly = 1,
9798         KeyAgreement = 8,
9799         KeyCertSign = 4,
9800         KeyEncipherment = 32,
9801         None = 0,
9802         NonRepudiation = 64,
9803     }
9804     public enum X509NameType
9805     {
9806         DnsFromAlternativeName = 4,
9807         DnsName = 3,
9808         EmailName = 1,
9809         SimpleName = 0,
9810         UpnName = 2,
9811         UrlName = 5,
9812     }
9813     public enum X509RevocationFlag
9814     {
9815         EndCertificateOnly = 0,
9816         EntireChain = 1,
9817         ExcludeRoot = 2,
9818     }
9819     public enum X509RevocationMode
9820     {
9821         NoCheck = 0,
9822         Offline = 2,
9823         Online = 1,
9824     }
9825     public sealed partial class X509Store : System.IDisposable
9826     {
X509Store()9827         public X509Store() { }
9828         [System.MonoTODOAttribute("Mono's stores are fully managed. All handles are invalid.")]
9829         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]
X509Store(System.IntPtr storeHandle)9830         public X509Store(System.IntPtr storeHandle) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)9831         public X509Store(System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName)9832         public X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName) { }
X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)9833         public X509Store(System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
X509Store(string storeName)9834         public X509Store(string storeName) { }
X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation)9835         public X509Store(string storeName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation) { }
9836         public System.Security.Cryptography.X509Certificates.X509Certificate2Collection Certificates { get { throw null; } }
9837         public System.Security.Cryptography.X509Certificates.StoreLocation Location { get { throw null; } }
9838         public string Name { get { throw null; } }
9839         [System.MonoTODOAttribute("Mono's stores are fully managed. Always returns IntPtr.Zero.")]
9840         public System.IntPtr StoreHandle { get { throw null; } }
Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9841         public void Add(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
9842         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)9843         public void AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
Close()9844         public void Close() { }
Dispose()9845         public void Dispose() { }
Open(System.Security.Cryptography.X509Certificates.OpenFlags flags)9846         public void Open(System.Security.Cryptography.X509Certificates.OpenFlags flags) { }
Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)9847         public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) { }
9848         [System.MonoTODOAttribute("Method isn't transactional (like documented)")]
RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates)9849         public void RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) { }
9850     }
9851     public sealed partial class X509SubjectKeyIdentifierExtension : System.Security.Cryptography.X509Certificates.X509Extension
9852     {
X509SubjectKeyIdentifierExtension()9853         public X509SubjectKeyIdentifierExtension() { }
X509SubjectKeyIdentifierExtension(byte[] subjectKeyIdentifier, bool critical)9854         public X509SubjectKeyIdentifierExtension(byte[] subjectKeyIdentifier, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.AsnEncodedData encodedSubjectKeyIdentifier, bool critical)9855         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.AsnEncodedData encodedSubjectKeyIdentifier, bool critical) { }
X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, bool critical)9856         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)9857         public X509SubjectKeyIdentifierExtension(System.Security.Cryptography.X509Certificates.PublicKey key, System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm algorithm, bool critical) { }
X509SubjectKeyIdentifierExtension(string subjectKeyIdentifier, bool critical)9858         public X509SubjectKeyIdentifierExtension(string subjectKeyIdentifier, bool critical) { }
9859         public string SubjectKeyIdentifier { get { throw null; } }
CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData)9860         public override void CopyFrom(System.Security.Cryptography.AsnEncodedData asnEncodedData) { }
9861     }
9862     public enum X509SubjectKeyIdentifierHashAlgorithm
9863     {
9864         CapiSha1 = 2,
9865         Sha1 = 0,
9866         ShortSha1 = 1,
9867     }
9868     [System.FlagsAttribute]
9869     public enum X509VerificationFlags
9870     {
9871         AllFlags = 4095,
9872         AllowUnknownCertificateAuthority = 16,
9873         IgnoreCertificateAuthorityRevocationUnknown = 1024,
9874         IgnoreCtlNotTimeValid = 2,
9875         IgnoreCtlSignerRevocationUnknown = 512,
9876         IgnoreEndRevocationUnknown = 256,
9877         IgnoreInvalidBasicConstraints = 8,
9878         IgnoreInvalidName = 64,
9879         IgnoreInvalidPolicy = 128,
9880         IgnoreNotTimeNested = 4,
9881         IgnoreNotTimeValid = 1,
9882         IgnoreRootRevocationUnknown = 2048,
9883         IgnoreWrongUsage = 32,
9884         NoFlag = 0,
9885     }
9886 }
9887 namespace System.Security.Permissions
9888 {
9889     [System.SerializableAttribute]
9890     public sealed partial class TypeDescriptorPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
9891     {
TypeDescriptorPermission(System.Security.Permissions.PermissionState state)9892         public TypeDescriptorPermission(System.Security.Permissions.PermissionState state) { }
TypeDescriptorPermission(System.Security.Permissions.TypeDescriptorPermissionFlags flag)9893         public TypeDescriptorPermission(System.Security.Permissions.TypeDescriptorPermissionFlags flag) { }
9894         public System.Security.Permissions.TypeDescriptorPermissionFlags Flags { get { throw null; } set { } }
Copy()9895         public override System.Security.IPermission Copy() { throw null; }
FromXml(System.Security.SecurityElement securityElement)9896         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)9897         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)9898         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()9899         public bool IsUnrestricted() { throw null; }
ToXml()9900         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)9901         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
9902     }
9903     [System.FlagsAttribute]
9904     [System.SerializableAttribute]
9905     public enum TypeDescriptorPermissionFlags
9906     {
9907         NoFlags = 0,
9908         RestrictedRegistrationAccess = 1,
9909     }
9910 }
9911 namespace System.Text.RegularExpressions
9912 {
9913     [System.SerializableAttribute]
9914     public partial class Capture
9915     {
Capture()9916         internal Capture() { }
9917         public int Index { get { throw null; } }
9918         public int Length { get { throw null; } }
9919         public string Value { get { throw null; } }
ToString()9920         public override string ToString() { throw null; }
9921     }
9922     [System.SerializableAttribute]
9923     public partial class CaptureCollection : System.Collections.ICollection, System.Collections.IEnumerable
9924     {
CaptureCollection()9925         internal CaptureCollection() { }
9926         public int Count { get { throw null; } }
9927         public bool IsReadOnly { get { throw null; } }
9928         public bool IsSynchronized { get { throw null; } }
9929         public System.Text.RegularExpressions.Capture this[int i] { get { throw null; } }
9930         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)9931         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()9932         public System.Collections.IEnumerator GetEnumerator() { throw null; }
9933     }
9934     [System.SerializableAttribute]
9935     public partial class Group : System.Text.RegularExpressions.Capture
9936     {
Group()9937         internal Group() { }
9938         public System.Text.RegularExpressions.CaptureCollection Captures { get { throw null; } }
9939         public string Name { get { throw null; } }
9940         public bool Success { get { throw null; } }
Synchronized(System.Text.RegularExpressions.Group inner)9941         public static System.Text.RegularExpressions.Group Synchronized(System.Text.RegularExpressions.Group inner) { throw null; }
9942     }
9943     [System.SerializableAttribute]
9944     public partial class GroupCollection : System.Collections.ICollection, System.Collections.IEnumerable
9945     {
GroupCollection()9946         internal GroupCollection() { }
9947         public int Count { get { throw null; } }
9948         public bool IsReadOnly { get { throw null; } }
9949         public bool IsSynchronized { get { throw null; } }
9950         public System.Text.RegularExpressions.Group this[int groupnum] { get { throw null; } }
9951         public System.Text.RegularExpressions.Group this[string groupname] { get { throw null; } }
9952         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)9953         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()9954         public System.Collections.IEnumerator GetEnumerator() { throw null; }
9955     }
9956     [System.SerializableAttribute]
9957     public partial class Match : System.Text.RegularExpressions.Group
9958     {
Match()9959         internal Match() { }
9960         public static System.Text.RegularExpressions.Match Empty { get { throw null; } }
9961         public virtual System.Text.RegularExpressions.GroupCollection Groups { get { throw null; } }
NextMatch()9962         public System.Text.RegularExpressions.Match NextMatch() { throw null; }
Result(string replacement)9963         public virtual string Result(string replacement) { throw null; }
Synchronized(System.Text.RegularExpressions.Match inner)9964         public static System.Text.RegularExpressions.Match Synchronized(System.Text.RegularExpressions.Match inner) { throw null; }
9965     }
9966     [System.SerializableAttribute]
9967     public partial class MatchCollection : System.Collections.ICollection, System.Collections.IEnumerable
9968     {
MatchCollection()9969         internal MatchCollection() { }
9970         public int Count { get { throw null; } }
9971         public bool IsReadOnly { get { throw null; } }
9972         public bool IsSynchronized { get { throw null; } }
9973         public virtual System.Text.RegularExpressions.Match this[int i] { get { throw null; } }
9974         public object SyncRoot { get { throw null; } }
CopyTo(System.Array array, int arrayIndex)9975         public void CopyTo(System.Array array, int arrayIndex) { }
GetEnumerator()9976         public System.Collections.IEnumerator GetEnumerator() { throw null; }
9977     }
9978     [System.SerializableAttribute]
MatchEvaluator(System.Text.RegularExpressions.Match match)9979     public delegate string MatchEvaluator(System.Text.RegularExpressions.Match match);
9980     [System.SerializableAttribute]
9981     public partial class Regex : System.Runtime.Serialization.ISerializable
9982     {
9983         protected internal System.Collections.Hashtable capnames;
9984         protected internal System.Collections.Hashtable caps;
9985         protected internal int capsize;
9986         protected internal string[] capslist;
9987         protected internal System.Text.RegularExpressions.RegexRunnerFactory factory;
9988         [System.NonSerializedAttribute]
9989         public static readonly System.TimeSpan InfiniteMatchTimeout;
9990         [System.Runtime.Serialization.OptionalFieldAttribute(VersionAdded=2)]
9991         protected internal System.TimeSpan internalMatchTimeout;
9992         protected internal string pattern;
9993         protected internal System.Text.RegularExpressions.RegexOptions roptions;
Regex()9994         protected Regex() { }
Regex(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)9995         protected Regex(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Regex(string pattern)9996         public Regex(string pattern) { }
Regex(string pattern, System.Text.RegularExpressions.RegexOptions options)9997         public Regex(string pattern, System.Text.RegularExpressions.RegexOptions options) { }
Regex(string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)9998         public Regex(string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { }
9999         public static int CacheSize { get { throw null; } set { } }
10000         [System.CLSCompliantAttribute(false)]
10001         protected System.Collections.IDictionary CapNames { get { throw null; } set { } }
10002         [System.CLSCompliantAttribute(false)]
10003         protected System.Collections.IDictionary Caps { get { throw null; } set { } }
10004         public System.TimeSpan MatchTimeout { get { throw null; } }
10005         public System.Text.RegularExpressions.RegexOptions Options { get { throw null; } }
10006         public bool RightToLeft { get { throw null; } }
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname)10007         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname) { }
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes)10008         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes) { }
CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes, string resourceFile)10009         public static void CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[] regexinfos, System.Reflection.AssemblyName assemblyname, System.Reflection.Emit.CustomAttributeBuilder[] attributes, string resourceFile) { }
Escape(string str)10010         public static string Escape(string str) { throw null; }
GetGroupNames()10011         public string[] GetGroupNames() { throw null; }
GetGroupNumbers()10012         public int[] GetGroupNumbers() { throw null; }
GroupNameFromNumber(int i)10013         public string GroupNameFromNumber(int i) { throw null; }
GroupNumberFromName(string name)10014         public int GroupNumberFromName(string name) { throw null; }
InitializeReferences()10015         protected void InitializeReferences() { }
IsMatch(string input)10016         public bool IsMatch(string input) { throw null; }
IsMatch(string input, int startat)10017         public bool IsMatch(string input, int startat) { throw null; }
IsMatch(string input, string pattern)10018         public static bool IsMatch(string input, string pattern) { throw null; }
IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)10019         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)10020         public static bool IsMatch(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Match(string input)10021         public System.Text.RegularExpressions.Match Match(string input) { throw null; }
Match(string input, int startat)10022         public System.Text.RegularExpressions.Match Match(string input, int startat) { throw null; }
Match(string input, int beginning, int length)10023         public System.Text.RegularExpressions.Match Match(string input, int beginning, int length) { throw null; }
Match(string input, string pattern)10024         public static System.Text.RegularExpressions.Match Match(string input, string pattern) { throw null; }
Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)10025         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)10026         public static System.Text.RegularExpressions.Match Match(string input, string pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; }
Matches(string input)10027         public System.Text.RegularExpressions.MatchCollection Matches(string input) { throw null; }
Matches(string input, int startat)10028         public System.Text.RegularExpressions.MatchCollection Matches(string input, int startat) { throw null; }
Matches(string input, string pattern)10029         public static System.Text.RegularExpressions.MatchCollection Matches(string input, string pattern) { throw null; }
Matches(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)10030         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)10031         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)10032         public string Replace(string input, string replacement) { throw null; }
Replace(string input, string replacement, int count)10033         public string Replace(string input, string replacement, int count) { throw null; }
Replace(string input, string replacement, int count, int startat)10034         public string Replace(string input, string replacement, int count, int startat) { throw null; }
Replace(string input, string pattern, string replacement)10035         public static string Replace(string input, string pattern, string replacement) { throw null; }
Replace(string input, string pattern, string replacement, System.Text.RegularExpressions.RegexOptions options)10036         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)10037         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)10038         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)10039         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)10040         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)10041         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator) { throw null; }
Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count)10042         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)10043         public string Replace(string input, System.Text.RegularExpressions.MatchEvaluator evaluator, int count, int startat) { throw null; }
Split(string input)10044         public string[] Split(string input) { throw null; }
Split(string input, int count)10045         public string[] Split(string input, int count) { throw null; }
Split(string input, int count, int startat)10046         public string[] Split(string input, int count, int startat) { throw null; }
Split(string input, string pattern)10047         public static string[] Split(string input, string pattern) { throw null; }
Split(string input, string pattern, System.Text.RegularExpressions.RegexOptions options)10048         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)10049         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)10050         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
ToString()10051         public override string ToString() { throw null; }
Unescape(string str)10052         public static string Unescape(string str) { throw null; }
UseOptionC()10053         protected bool UseOptionC() { throw null; }
UseOptionR()10054         protected bool UseOptionR() { throw null; }
ValidateMatchTimeout(System.TimeSpan matchTimeout)10055         protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { }
10056     }
10057     [System.SerializableAttribute]
10058     public partial class RegexCompilationInfo
10059     {
RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic)10060         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)10061         public RegexCompilationInfo(string pattern, System.Text.RegularExpressions.RegexOptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { }
10062         public bool IsPublic { get { throw null; } set { } }
10063         public System.TimeSpan MatchTimeout { get { throw null; } set { } }
10064         public string Name { get { throw null; } set { } }
10065         public string Namespace { get { throw null; } set { } }
10066         public System.Text.RegularExpressions.RegexOptions Options { get { throw null; } set { } }
10067         public string Pattern { get { throw null; } set { } }
10068     }
10069     [System.SerializableAttribute]
10070     public partial class RegexMatchTimeoutException : System.TimeoutException, System.Runtime.Serialization.ISerializable
10071     {
RegexMatchTimeoutException()10072         public RegexMatchTimeoutException() { }
10073         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
RegexMatchTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10074         protected RegexMatchTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
RegexMatchTimeoutException(string message)10075         public RegexMatchTimeoutException(string message) { }
RegexMatchTimeoutException(string message, System.Exception inner)10076         public RegexMatchTimeoutException(string message, System.Exception inner) { }
RegexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout)10077         public RegexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { }
10078         public string Input { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
10079         public System.TimeSpan MatchTimeout { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
10080         public string Pattern { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]get { throw null; } }
10081         [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)10082         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
10083     }
10084     [System.FlagsAttribute]
10085     public enum RegexOptions
10086     {
10087         Compiled = 8,
10088         CultureInvariant = 512,
10089         ECMAScript = 256,
10090         ExplicitCapture = 4,
10091         IgnoreCase = 1,
10092         IgnorePatternWhitespace = 32,
10093         Multiline = 2,
10094         None = 0,
10095         RightToLeft = 64,
10096         Singleline = 16,
10097     }
10098     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
10099     public abstract partial class RegexRunner
10100     {
10101         protected internal int[] runcrawl;
10102         protected internal int runcrawlpos;
10103         protected internal System.Text.RegularExpressions.Match runmatch;
10104         protected internal System.Text.RegularExpressions.Regex runregex;
10105         protected internal int[] runstack;
10106         protected internal int runstackpos;
10107         protected internal string runtext;
10108         protected internal int runtextbeg;
10109         protected internal int runtextend;
10110         protected internal int runtextpos;
10111         protected internal int runtextstart;
10112         protected internal int[] runtrack;
10113         protected internal int runtrackcount;
10114         protected internal int runtrackpos;
RegexRunner()10115         protected internal RegexRunner() { }
Capture(int capnum, int start, int end)10116         protected void Capture(int capnum, int start, int end) { }
CharInClass(char ch, string charClass)10117         protected static bool CharInClass(char ch, string charClass) { throw null; }
CharInSet(char ch, string @set, string category)10118         protected static bool CharInSet(char ch, string @set, string category) { throw null; }
CheckTimeout()10119         protected void CheckTimeout() { }
Crawl(int i)10120         protected void Crawl(int i) { }
Crawlpos()10121         protected int Crawlpos() { throw null; }
DoubleCrawl()10122         protected void DoubleCrawl() { }
DoubleStack()10123         protected void DoubleStack() { }
DoubleTrack()10124         protected void DoubleTrack() { }
EnsureStorage()10125         protected void EnsureStorage() { }
FindFirstChar()10126         protected abstract bool FindFirstChar();
Go()10127         protected abstract void Go();
InitTrackCount()10128         protected abstract void InitTrackCount();
IsBoundary(int index, int startpos, int endpos)10129         protected bool IsBoundary(int index, int startpos, int endpos) { throw null; }
IsECMABoundary(int index, int startpos, int endpos)10130         protected bool IsECMABoundary(int index, int startpos, int endpos) { throw null; }
IsMatched(int cap)10131         protected bool IsMatched(int cap) { throw null; }
MatchIndex(int cap)10132         protected int MatchIndex(int cap) { throw null; }
MatchLength(int cap)10133         protected int MatchLength(int cap) { throw null; }
Popcrawl()10134         protected int Popcrawl() { throw null; }
Scan(System.Text.RegularExpressions.Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick)10135         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)10136         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)10137         protected void TransferCapture(int capnum, int uncapnum, int start, int end) { }
Uncapture()10138         protected void Uncapture() { }
10139     }
10140     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
10141     public abstract partial class RegexRunnerFactory
10142     {
RegexRunnerFactory()10143         protected RegexRunnerFactory() { }
CreateInstance()10144         protected internal abstract System.Text.RegularExpressions.RegexRunner CreateInstance();
10145     }
10146 }
10147 namespace System.Threading
10148 {
10149     [System.Diagnostics.DebuggerDisplayAttribute("Participant Count={ParticipantCount},Participants Remaining={ParticipantsRemaining}")]
10150     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
10151     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
10152     public partial class Barrier : System.IDisposable
10153     {
Barrier(int participantCount)10154         public Barrier(int participantCount) { }
Barrier(int participantCount, System.Action<System.Threading.Barrier> postPhaseAction)10155         public Barrier(int participantCount, System.Action<System.Threading.Barrier> postPhaseAction) { }
10156         public long CurrentPhaseNumber { get { throw null; } }
10157         public int ParticipantCount { get { throw null; } }
10158         public int ParticipantsRemaining { get { throw null; } }
AddParticipant()10159         public long AddParticipant() { throw null; }
AddParticipants(int participantCount)10160         public long AddParticipants(int participantCount) { throw null; }
Dispose()10161         public void Dispose() { }
Dispose(bool disposing)10162         protected virtual void Dispose(bool disposing) { }
RemoveParticipant()10163         public void RemoveParticipant() { }
RemoveParticipants(int participantCount)10164         public void RemoveParticipants(int participantCount) { }
SignalAndWait()10165         public void SignalAndWait() { }
SignalAndWait(int millisecondsTimeout)10166         public bool SignalAndWait(int millisecondsTimeout) { throw null; }
SignalAndWait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken)10167         public bool SignalAndWait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; }
SignalAndWait(System.Threading.CancellationToken cancellationToken)10168         public void SignalAndWait(System.Threading.CancellationToken cancellationToken) { }
SignalAndWait(System.TimeSpan timeout)10169         public bool SignalAndWait(System.TimeSpan timeout) { throw null; }
SignalAndWait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken)10170         public bool SignalAndWait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; }
10171     }
10172     [System.SerializableAttribute]
10173     public partial class BarrierPostPhaseException : System.Exception
10174     {
BarrierPostPhaseException()10175         public BarrierPostPhaseException() { }
BarrierPostPhaseException(System.Exception innerException)10176         public BarrierPostPhaseException(System.Exception innerException) { }
10177         [System.Security.SecurityCriticalAttribute]
BarrierPostPhaseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)10178         protected BarrierPostPhaseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
BarrierPostPhaseException(string message)10179         public BarrierPostPhaseException(string message) { }
BarrierPostPhaseException(string message, System.Exception innerException)10180         public BarrierPostPhaseException(string message, System.Exception innerException) { }
10181     }
10182     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
10183     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
10184     public sealed partial class Semaphore : System.Threading.WaitHandle
10185     {
10186         [System.Security.SecuritySafeCriticalAttribute]
Semaphore(int initialCount, int maximumCount)10187         public Semaphore(int initialCount, int maximumCount) { }
10188         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
Semaphore(int initialCount, int maximumCount, string name)10189         public Semaphore(int initialCount, int maximumCount, string name) { }
10190         [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)10191         public Semaphore(int initialCount, int maximumCount, string name, out bool createdNew) { createdNew = default(bool); }
10192         [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)10193         public Semaphore(int initialCount, int maximumCount, string name, out bool createdNew, System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity) { createdNew = default(bool); }
GetAccessControl()10194         public System.Security.AccessControl.SemaphoreSecurity GetAccessControl() { throw null; }
10195         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
OpenExisting(string name)10196         public static System.Threading.Semaphore OpenExisting(string name) { throw null; }
10197         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
OpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights)10198         public static System.Threading.Semaphore OpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights) { throw null; }
10199         [System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute]
10200         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Release()10201         public int Release() { throw null; }
10202         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Release(int releaseCount)10203         public int Release(int releaseCount) { throw null; }
SetAccessControl(System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity)10204         public void SetAccessControl(System.Security.AccessControl.SemaphoreSecurity semaphoreSecurity) { }
10205         [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)10206         public static bool TryOpenExisting(string name, System.Security.AccessControl.SemaphoreRights rights, out System.Threading.Semaphore result) { result = default(System.Threading.Semaphore); throw null; }
10207         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(2))]
TryOpenExisting(string name, out System.Threading.Semaphore result)10208         public static bool TryOpenExisting(string name, out System.Threading.Semaphore result) { result = default(System.Threading.Semaphore); throw null; }
10209     }
10210     public partial class ThreadExceptionEventArgs : System.EventArgs
10211     {
ThreadExceptionEventArgs(System.Exception t)10212         public ThreadExceptionEventArgs(System.Exception t) { }
10213         public System.Exception Exception { get { throw null; } }
10214     }
ThreadExceptionEventHandler(object sender, System.Threading.ThreadExceptionEventArgs e)10215     public delegate void ThreadExceptionEventHandler(object sender, System.Threading.ThreadExceptionEventArgs e);
10216 }
10217 namespace System.Timers
10218 {
10219     public partial class ElapsedEventArgs : System.EventArgs
10220     {
ElapsedEventArgs()10221         internal ElapsedEventArgs() { }
10222         public System.DateTime SignalTime { get { throw null; } }
10223     }
ElapsedEventHandler(object sender, System.Timers.ElapsedEventArgs e)10224     public delegate void ElapsedEventHandler(object sender, System.Timers.ElapsedEventArgs e);
10225     [System.ComponentModel.DefaultEventAttribute("Elapsed")]
10226     [System.ComponentModel.DefaultPropertyAttribute("Interval")]
10227     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)]
10228     public partial class Timer : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize
10229     {
Timer()10230         public Timer() { }
Timer(double interval)10231         public Timer(double interval) { }
10232         [System.ComponentModel.CategoryAttribute("Behavior")]
10233         [System.ComponentModel.DefaultValueAttribute(true)]
10234         [System.Timers.TimersDescriptionAttribute("Indicates whether the timer will be restarted when it is enabled.")]
10235         public bool AutoReset { get { throw null; } set { } }
10236         [System.ComponentModel.CategoryAttribute("Behavior")]
10237         [System.ComponentModel.DefaultValueAttribute(false)]
10238         [System.Timers.TimersDescriptionAttribute("Indicates whether the timer is enabled to fire events at a defined interval.")]
10239         public bool Enabled { get { throw null; } set { } }
10240         [System.ComponentModel.CategoryAttribute("Behavior")]
10241         [System.ComponentModel.DefaultValueAttribute(100)]
10242         [System.ComponentModel.SettingsBindableAttribute(true)]
10243         [System.Timers.TimersDescriptionAttribute("The number of milliseconds between timer events.")]
10244         public double Interval { get { throw null; } set { } }
10245         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
10246         [System.ComponentModel.BrowsableAttribute(false)]
10247         [System.ComponentModel.DefaultValueAttribute(null)]
10248         [System.Timers.TimersDescriptionAttribute("The object used to marshal the event handler calls issued when an interval has elapsed.")]
10249         public System.ComponentModel.ISynchronizeInvoke SynchronizingObject { get { throw null; } set { } }
10250         [System.ComponentModel.CategoryAttribute("Behavior")]
10251         [System.Timers.TimersDescriptionAttribute("Occurs when the Interval has elapsed.")]
10252         public event System.Timers.ElapsedEventHandler Elapsed { add { } remove { } }
BeginInit()10253         public void BeginInit() { }
Close()10254         public void Close() { }
Dispose(bool disposing)10255         protected override void Dispose(bool disposing) { }
EndInit()10256         public void EndInit() { }
Start()10257         public void Start() { }
Stop()10258         public void Stop() { }
10259     }
10260     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
10261     public partial class TimersDescriptionAttribute : System.ComponentModel.DescriptionAttribute
10262     {
TimersDescriptionAttribute(string description)10263         public TimersDescriptionAttribute(string description) { }
10264         public override string Description { get { throw null; } }
10265     }
10266 }
10267 namespace System.Windows.Input
10268 {
10269     [System.Runtime.CompilerServices.TypeForwardedFromAttribute("PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
10270     public partial interface ICommand
10271     {
10272         event System.EventHandler CanExecuteChanged;
CanExecute(object parameter)10273         bool CanExecute(object parameter);
Execute(object parameter)10274         void Execute(object parameter);
10275     }
10276 }
10277 namespace System.Windows.Markup
10278 {
10279     [System.AttributeUsageAttribute((System.AttributeTargets)(1244), AllowMultiple=false, Inherited=true)]
10280     public sealed partial class ValueSerializerAttribute : System.Attribute
10281     {
ValueSerializerAttribute(string valueSerializerTypeName)10282         public ValueSerializerAttribute(string valueSerializerTypeName) { }
ValueSerializerAttribute(System.Type valueSerializerType)10283         public ValueSerializerAttribute(System.Type valueSerializerType) { }
10284         public System.Type ValueSerializerType { get { throw null; } }
10285         public string ValueSerializerTypeName { get { throw null; } }
10286     }
10287 }
10288